GuestProcessImpl.cpp revision cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5f
/* $Id$ */
/** @file
* VirtualBox Main - XXX.
*/
/*
* Copyright (C) 2012 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* 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.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include "GuestProcessImpl.h"
#include "GuestSessionImpl.h"
#include "ConsoleImpl.h"
#include "Global.h"
#include "AutoCaller.h"
#include "Logging.h"
#include "VMMDev.h"
#include <memory> /* For auto_ptr. */
#include <iprt/asm.h>
#include <iprt/getopt.h>
#include <VBox/VMMDev.h>
#include <VBox/com/array.h>
struct GuestProcessTask
{
GuestProcessTask(GuestProcess *pProcess)
: mProcess(pProcess),
mRC(VINF_SUCCESS) { }
virtual ~GuestProcessTask(void) { }
int rc(void) const { return mRC; }
bool isOk(void) const { return RT_SUCCESS(rc()); }
const ComObjPtr<GuestProcess> mProcess;
private:
int mRC;
};
struct GuestProcessStartTask : public GuestProcessTask
{
GuestProcessStartTask(GuestProcess *pProcess)
: GuestProcessTask(pProcess) { }
};
// constructor / destructor
/////////////////////////////////////////////////////////////////////////////
DEFINE_EMPTY_CTOR_DTOR(GuestProcess)
HRESULT GuestProcess::FinalConstruct(void)
{
LogFlowThisFuncEnter();
mData.mExitCode = 0;
mData.mNextContextID = 0;
mData.mPID = 0;
mData.mProcessID = 0;
mData.mRC = VINF_SUCCESS;
mData.mStatus = ProcessStatus_Undefined;
mData.mWaitCount = 0;
mData.mWaitEvent = NULL;
HRESULT hr = BaseFinalConstruct();
LogFlowFuncLeaveRC(hr);
return hr;
}
void GuestProcess::FinalRelease(void)
{
LogFlowThisFuncEnter();
uninit();
BaseFinalRelease();
LogFlowThisFuncLeave();
}
// public initializer/uninitializer for internal purposes only
/////////////////////////////////////////////////////////////////////////////
int GuestProcess::init(Console *aConsole, GuestSession *aSession, ULONG aProcessID, const GuestProcessInfo &aProcInfo)
{
LogFlowThisFunc(("aConsole=%p, aSession=%p, aProcessID=%RU32\n",
aConsole, aSession, aProcessID));
AssertPtrReturn(aSession, VERR_INVALID_POINTER);
/* Enclose the state transition NotReady->InInit->Ready. */
AutoInitSpan autoInitSpan(this);
AssertReturn(autoInitSpan.isOk(), VERR_OBJECT_DESTROYED);
mData.mConsole = aConsole;
mData.mParent = aSession;
mData.mProcessID = aProcessID;
mData.mProcess = aProcInfo;
/* Everything else will be set by the actual starting routine. */
/* Confirm a successful initialization when it's the case. */
autoInitSpan.setSucceeded();
return VINF_SUCCESS;
}
/**
* Uninitializes the instance.
* Called from FinalRelease().
*/
void GuestProcess::uninit(void)
{
LogFlowThisFunc(("\n"));
/* Enclose the state transition Ready->InUninit->NotReady. */
AutoUninitSpan autoUninitSpan(this);
if (autoUninitSpan.uninitDone())
return;
#ifndef VBOX_WITH_GUEST_CONTROL
close();
mData.mParent->processClose(this);
LogFlowFuncLeave();
#endif
}
// implementation of public getters/setters for attributes
/////////////////////////////////////////////////////////////////////////////
STDMETHODIMP GuestProcess::COMGETTER(Arguments)(ComSafeArrayOut(BSTR, aArguments))
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
CheckComArgOutSafeArrayPointerValid(aArguments);
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
com::SafeArray<BSTR> collection(mData.mProcess.mArguments.size());
size_t s = 0;
for (ProcessArguments::const_iterator it = mData.mProcess.mArguments.begin();
it != mData.mProcess.mArguments.end();
it++, s++)
{
Bstr tmp = *it;
tmp.cloneTo(&collection[s]);
}
collection.detachTo(ComSafeArrayOutArg(aArguments));
LogFlowFuncLeaveRC(S_OK);
return S_OK;
#endif /* VBOX_WITH_GUEST_CONTROL */
}
STDMETHODIMP GuestProcess::COMGETTER(Environment)(ComSafeArrayOut(BSTR, aEnvironment))
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
CheckComArgOutSafeArrayPointerValid(aEnvironment);
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
com::SafeArray<BSTR> arguments(mData.mProcess.mEnvironment.Size());
for (size_t i = 0; i < arguments.size(); i++)
{
Bstr tmp = mData.mProcess.mEnvironment.Get(i);
tmp.cloneTo(&arguments[i]);
}
arguments.detachTo(ComSafeArrayOutArg(aEnvironment));
LogFlowFuncLeaveRC(S_OK);
return S_OK;
#endif /* VBOX_WITH_GUEST_CONTROL */
}
STDMETHODIMP GuestProcess::COMGETTER(ExecutablePath)(BSTR *aExecutablePath)
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
CheckComArgOutPointerValid(aExecutablePath);
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
mData.mProcess.mCommand.cloneTo(aExecutablePath);
LogFlowFuncLeaveRC(S_OK);
return S_OK;
#endif /* VBOX_WITH_GUEST_CONTROL */
}
STDMETHODIMP GuestProcess::COMGETTER(ExitCode)(LONG *aExitCode)
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
CheckComArgOutPointerValid(aExitCode);
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
*aExitCode = mData.mExitCode;
LogFlowFuncLeaveRC(S_OK);
return S_OK;
#endif /* VBOX_WITH_GUEST_CONTROL */
}
STDMETHODIMP GuestProcess::COMGETTER(Name)(BSTR *aName)
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
CheckComArgOutPointerValid(aName);
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
mData.mName.cloneTo(aName);
LogFlowFuncLeaveRC(S_OK);
return S_OK;
#endif /* VBOX_WITH_GUEST_CONTROL */
}
STDMETHODIMP GuestProcess::COMGETTER(Pid)(ULONG *aPID)
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
CheckComArgOutPointerValid(aPID);
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
*aPID = mData.mPID;
LogFlowFuncLeaveRC(S_OK);
return S_OK;
#endif /* VBOX_WITH_GUEST_CONTROL */
}
STDMETHODIMP GuestProcess::COMGETTER(Status)(ProcessStatus_T *aStatus)
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
*aStatus = mData.mStatus;
LogFlowFuncLeaveRC(S_OK);
return S_OK;
#endif /* VBOX_WITH_GUEST_CONTROL */
}
// private methods
/////////////////////////////////////////////////////////////////////////////
/*
SYNC TO ASK:
Everything which involves HGCM communication (start, read/write/status(?)/...)
either can be called synchronously or asynchronously by running in a Main worker
thread.
Rules:
- Only one async operation per process a time can be around.
*/
inline int GuestProcess::callbackAdd(GuestCtrlCallback *pCallback, ULONG *puContextID)
{
const ComObjPtr<GuestSession> pSession(mData.mParent);
Assert(!pSession.isNull());
ULONG uSessionID = 0;
HRESULT hr = pSession->COMGETTER(Id)(&uSessionID);
ComAssertComRC(hr);
/* Create a new context ID and assign it. */
int rc = VERR_NOT_FOUND;
ULONG uNewContextID = 0;
ULONG uTries = 0;
for (;;)
{
/* Create a new context ID ... */
uNewContextID = VBOX_GUESTCTRL_CONTEXTID_MAKE(uSessionID,
mData.mProcessID, mData.mNextContextID);
if (mData.mNextContextID == VBOX_GUESTCTRL_MAX_CONTEXTS)
mData.mNextContextID = 0;
/* Is the context ID already used? Try next ID ... */
if (!callbackExists(uNewContextID))
{
/* Callback with context ID was not found. This means
* we can use this context ID for our new callback we want
* to add below. */
rc = VINF_SUCCESS;
break;
}
mData.mNextContextID++;
if (++uTries == UINT32_MAX)
break; /* Don't try too hard. */
}
if (RT_SUCCESS(rc))
{
/* Add callback with new context ID to our callback map. */
mData.mCallbacks[uNewContextID] = pCallback;
Assert(mData.mCallbacks.size());
/* Report back new context ID. */
if (puContextID)
*puContextID = uNewContextID;
LogFlowFunc(("Added new callback (Session: %RU32, Process: %RU32, Count=%RU32) CID=%RU32\n",
uSessionID, mData.mProcessID, mData.mNextContextID, uNewContextID));
}
return rc;
}
int GuestProcess::callbackDispatcher(uint32_t uContextID, uint32_t uFunction, void *pvData, size_t cbData)
{
/* LogFlowFunc(("uPID=%RU32, uContextID=%RU32, uFunction=%RU32, pvData=%p, cbData=%z\n",
mData.mPID, uContextID, uFunction, pvData, cbData));*/
AssertPtrReturn(pvData, VERR_INVALID_POINTER);
AssertReturn(cbData, VERR_INVALID_PARAMETER);
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
int rc;
GuestCtrlCallbacks::const_iterator it
= mData.mCallbacks.find(VBOX_GUESTCTRL_CONTEXTID_GET_COUNT(uContextID));
if (it != mData.mCallbacks.end())
{
GuestCtrlCallback *pCallback = it->second;
AssertPtr(pCallback);
switch (uFunction)
{
case GUEST_DISCONNECTED:
{
PCALLBACKDATACLIENTDISCONNECTED pCallbackData = reinterpret_cast<PCALLBACKDATACLIENTDISCONNECTED>(pvData);
AssertPtr(pCallbackData);
AssertReturn(sizeof(CALLBACKDATACLIENTDISCONNECTED) == cbData, VERR_INVALID_PARAMETER);
AssertReturn(CALLBACKDATAMAGIC_CLIENT_DISCONNECTED == pCallbackData->hdr.u32Magic, VERR_INVALID_PARAMETER);
rc = onGuestDisconnected(pCallback, pCallbackData); /* Affects all callbacks. */
break;
}
case GUEST_EXEC_SEND_STATUS:
{
PCALLBACKDATAEXECSTATUS pCallbackData = reinterpret_cast<PCALLBACKDATAEXECSTATUS>(pvData);
AssertPtr(pCallbackData);
AssertReturn(sizeof(CALLBACKDATAEXECSTATUS) == cbData, VERR_INVALID_PARAMETER);
AssertReturn(CALLBACKDATAMAGIC_EXEC_STATUS == pCallbackData->hdr.u32Magic, VERR_INVALID_PARAMETER);
rc = onProcessStatusChange(pCallback, pCallbackData);
break;
}
case GUEST_EXEC_SEND_OUTPUT:
{
PCALLBACKDATAEXECOUT pCallbackData = reinterpret_cast<PCALLBACKDATAEXECOUT>(pvData);
AssertPtr(pCallbackData);
AssertReturn(sizeof(CALLBACKDATAEXECOUT) == cbData, VERR_INVALID_PARAMETER);
AssertReturn(CALLBACKDATAMAGIC_EXEC_OUT == pCallbackData->hdr.u32Magic, VERR_INVALID_PARAMETER);
Assert(mData.mPID == pCallbackData->u32PID);
rc = onProcessOutput(pCallback, pCallbackData);
break;
}
case GUEST_EXEC_SEND_INPUT_STATUS:
{
PCALLBACKDATAEXECINSTATUS pCallbackData = reinterpret_cast<PCALLBACKDATAEXECINSTATUS>(pvData);
AssertPtr(pCallbackData);
AssertReturn(sizeof(CALLBACKDATAEXECINSTATUS) == cbData, VERR_INVALID_PARAMETER);
AssertReturn(CALLBACKDATAMAGIC_EXEC_IN_STATUS == pCallbackData->hdr.u32Magic, VERR_INVALID_PARAMETER);
Assert(mData.mPID == pCallbackData->u32PID);
rc = onProcessInputStatus(pCallback, pCallbackData);
break;
}
default:
/* Silently ignore not implemented functions. */
rc = VERR_NOT_IMPLEMENTED;
break;
}
}
else
rc = VERR_NOT_FOUND;
//LogFlowFuncLeaveRC(rc);
return rc;
}
inline bool GuestProcess::callbackExists(ULONG uContextID)
{
GuestCtrlCallbacks::const_iterator it = mData.mCallbacks.find(uContextID);
return (it == mData.mCallbacks.end()) ? false : true;
}
inline int GuestProcess::callbackRemove(ULONG uContextID)
{
GuestCtrlCallbacks::iterator it = mData.mCallbacks.find(uContextID);
if (it == mData.mCallbacks.end())
{
delete it->second;
mData.mCallbacks.erase(it);
return VINF_SUCCESS;
}
return VERR_NOT_FOUND;
}
inline bool GuestProcess::isAlive(void)
{
return ( mData.mStatus == ProcessStatus_Started
|| mData.mStatus == ProcessStatus_Paused
|| mData.mStatus == ProcessStatus_Terminating);
}
void GuestProcess::close(void)
{
LogFlowThisFuncEnter();
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
/*
* Cancel all callbacks + waiters.
* Note: Deleting them is the job of the caller!
*/
for (GuestCtrlCallbacks::iterator itCallbacks = mData.mCallbacks.begin();
itCallbacks != mData.mCallbacks.end(); ++itCallbacks)
{
GuestCtrlCallback *pCallback = itCallbacks->second;
AssertPtr(pCallback);
int rc2 = pCallback->Cancel();
AssertRC(rc2);
}
mData.mCallbacks.clear();
if (mData.mWaitEvent)
{
int rc2 = mData.mWaitEvent->Cancel();
AssertRC(rc2);
}
mData.mStatus = ProcessStatus_Down; /** @todo Correct? */
LogFlowThisFuncLeave();
}
bool GuestProcess::isReady(void)
{
AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
if (mData.mStatus == ProcessStatus_Started)
{
Assert(mData.mPID); /* PID must not be 0. */
return true;
}
return false;
}
int GuestProcess::onGuestDisconnected(GuestCtrlCallback *pCallback, PCALLBACKDATACLIENTDISCONNECTED pData)
{
AssertPtrReturn(pCallback, VERR_INVALID_POINTER);
AssertPtrReturn(pData, VERR_INVALID_POINTER);
LogFlowFunc(("uPID=%RU32, pCallback=%p, pData=%p\n", mData.mPID, pCallback, pData));
mData.mStatus = ProcessStatus_Down;
/* First, signal callback in every case. */
pCallback->Signal();
/* Do we need to report a termination? */
ProcessWaitResult_T waitRes;
if (mData.mProcess.mFlags & ProcessCreateFlag_IgnoreOrphanedProcesses)
waitRes = ProcessWaitResult_Status; /* No, just report a status. */
else
waitRes = ProcessWaitResult_Terminate;
/* Signal in any case. */
int rc = signalWaiters(waitRes);
AssertRC(rc);
LogFlowFuncLeaveRC(rc);
return rc;
}
int GuestProcess::onProcessInputStatus(GuestCtrlCallback *pCallback, PCALLBACKDATAEXECINSTATUS pData)
{
AssertPtrReturn(pCallback, VERR_INVALID_POINTER);
AssertPtrReturn(pData, VERR_INVALID_POINTER);
LogFlowFunc(("uPID=%RU32, uStatus=%RU32, uFlags=%RU32, cbProcessed=%RU32, pCallback=%p, pData=%p\n",
mData.mPID, pData->u32Status, pData->u32Flags, pData->cbProcessed, pCallback, pData));
int rc = VINF_SUCCESS;
/** @todo Fill data into callback. */
/* First, signal callback in every case. */
pCallback->Signal();
/* Then do the WaitFor signalling stuff. */
uint32_t uWaitFlags = mData.mWaitEvent
? mData.mWaitEvent->GetWaitFlags() : 0;
if (uWaitFlags & ProcessWaitForFlag_StdIn)
rc = signalWaiters(ProcessWaitResult_StdIn);
AssertRC(rc);
LogFlowFuncLeaveRC(rc);
return rc;
}
int GuestProcess::onProcessStatusChange(GuestCtrlCallback *pCallback, PCALLBACKDATAEXECSTATUS pData)
{
AssertPtrReturn(pCallback, VERR_INVALID_POINTER);
AssertPtrReturn(pData, VERR_INVALID_POINTER);
LogFlowFunc(("uPID=%RU32, uStatus=%RU32, uFlags=%RU32, pCallback=%p, pData=%p\n",
pData->u32PID, pData->u32Status, pData->u32Flags, pCallback, pData));
int rc = VINF_SUCCESS;
/* Get data from the callback payload. */
if (mData.mPID)
Assert(mData.mPID == pData->u32PID);
BOOL fSignal = FALSE;
ProcessWaitResult_T waitRes;
uint32_t uWaitFlags = mData.mWaitEvent
? mData.mWaitEvent->GetWaitFlags() : 0;
switch (pData->u32Status)
{
case PROC_STS_STARTED:
{
fSignal = (uWaitFlags & ProcessWaitForFlag_Start);
waitRes = ProcessWaitResult_Status;
mData.mStatus = ProcessStatus_Started;
mData.mPID = pData->u32PID;
break;
}
case PROC_STS_TEN:
{
fSignal = (uWaitFlags & ProcessWaitForFlag_Terminate);
waitRes = ProcessWaitResult_Status;
mData.mStatus = ProcessStatus_TerminatedNormally;
mData.mExitCode = pData->u32Flags; /* Contains the exit code. */
break;
}
case PROC_STS_TES:
{
fSignal = (uWaitFlags & ProcessWaitForFlag_Terminate);
waitRes = ProcessWaitResult_Status;
mData.mStatus = ProcessStatus_TerminatedSignal;
mData.mExitCode = pData->u32Flags; /* Contains the signal. */
break;
}
case PROC_STS_TEA:
{
fSignal = (uWaitFlags & ProcessWaitForFlag_Terminate);
waitRes = ProcessWaitResult_Status;
mData.mStatus = ProcessStatus_TerminatedAbnormally;
break;
}
case PROC_STS_TOK:
{
fSignal = (uWaitFlags & ProcessWaitForFlag_Terminate);
waitRes = ProcessWaitResult_Timeout;
mData.mStatus = ProcessStatus_TimedOutKilled;
break;
}
case PROC_STS_TOA:
{
fSignal = (uWaitFlags & ProcessWaitForFlag_Terminate);
waitRes = ProcessWaitResult_Timeout;
mData.mStatus = ProcessStatus_TimedOutAbnormally;
break;
}
case PROC_STS_DWN:
{
fSignal = (uWaitFlags & ProcessWaitForFlag_Terminate);
waitRes = (mData.mProcess.mFlags & ProcessCreateFlag_IgnoreOrphanedProcesses)
? ProcessWaitResult_Terminate : ProcessWaitResult_Status;
mData.mStatus = ProcessStatus_Down;
break;
}
case PROC_STS_ERROR:
{
fSignal = TRUE; /* Signal in any case. */
waitRes = ProcessWaitResult_Error;
mData.mStatus = ProcessStatus_Error;
Utf8Str strError = Utf8StrFmt(tr("Guest process \"%s\" could not be started: ", mData.mProcess.mCommand.c_str()));
/* Note: It's not required that the process has been started before. */
if (mData.mPID)
{
strError += Utf8StrFmt(tr("Error rc=%Rrc occured (PID %RU32)"), rc, mData.mPID);
}
else
{
/** @todo pData->u32Flags; /** @todo int vs. uint32 -- IPRT errors are *negative* !!! */
switch (pData->u32Flags) /* pData->u32Flags contains the IPRT error code from guest side. */
{
case VERR_FILE_NOT_FOUND: /* This is the most likely error. */
strError += Utf8StrFmt(tr("The specified file was not found on guest"));
break;
case VERR_PATH_NOT_FOUND:
strError += Utf8StrFmt(tr("Could not resolve path to specified file was not found on guest"));
break;
case VERR_BAD_EXE_FORMAT:
strError += Utf8StrFmt(tr("The specified file is not an executable format on guest"));
break;
case VERR_AUTHENTICATION_FAILURE:
strError += Utf8StrFmt(tr("The specified user was not able to logon on guest"));
break;
case VERR_INVALID_NAME:
strError += Utf8StrFmt(tr("The specified file is an invalid name"));
break;
case VERR_TIMEOUT:
strError += Utf8StrFmt(tr("The guest did not respond within time"));
break;
case VERR_CANCELLED:
strError += Utf8StrFmt(tr("The execution operation was canceled"));
break;
case VERR_PERMISSION_DENIED:
strError += Utf8StrFmt(tr("Invalid user/password credentials"));
break;
case VERR_MAX_PROCS_REACHED:
strError += Utf8StrFmt(tr("Maximum number of parallel guest processes has been reached"));
break;
default:
strError += Utf8StrFmt(tr("Reported error %Rrc"), pData->u32Flags);
break;
}
}
rc = setErrorInternal(pData->u32Flags, strError);
AssertRC(rc);
break;
}
case PROC_STS_UNDEFINED:
default:
{
/* Silently skip this request. */
fSignal = TRUE; /* Signal in any case. */
waitRes = ProcessWaitResult_Status;
mData.mStatus = ProcessStatus_Undefined;
break;
}
}
LogFlowFunc(("Got rc=%Rrc, waitResult=%d\n",
rc, waitRes));
/*
* Now do the signalling stuff.
*/
rc = pCallback->Signal();
if (fSignal)
{
int rc2 = signalWaiters(waitRes);
if (RT_SUCCESS(rc))
rc = rc2;
}
LogFlowFuncLeaveRC(rc);
return rc;
}
int GuestProcess::onProcessOutput(GuestCtrlCallback *pCallback, PCALLBACKDATAEXECOUT pData)
{
AssertPtrReturn(pCallback, VERR_INVALID_POINTER);
AssertPtrReturn(pData, VERR_INVALID_POINTER);
LogFlowFunc(("uPID=%RU32, uHandle=%RU32, uFlags=%RU32, pvData=%p, cbData=%RU32, pCallback=%p, pData=%p\n",
mData.mPID, pData->u32HandleId, pData->u32Flags, pData->pvData, pData->cbData, pCallback, pData));
/* Copy data into callback. */
int rc = pCallback->FillData(pData->pvData, pData->cbData);
/* First, signal callback in every case. */
int rc2 = pCallback->Signal();
if (RT_SUCCESS(rc))
rc = rc2;
/* Then do the WaitFor signalling stuff. */
BOOL fSignal = FALSE;
uint32_t uWaitFlags = mData.mWaitEvent
? mData.mWaitEvent->GetWaitFlags() : 0;
if ( (uWaitFlags & ProcessWaitForFlag_StdOut)
|| (uWaitFlags & ProcessWaitForFlag_StdErr))
{
fSignal = TRUE;
}
else if ( (uWaitFlags & ProcessWaitForFlag_StdOut)
&& (pData->u32HandleId == OUTPUT_HANDLE_ID_STDOUT))
{
fSignal = TRUE;
}
else if ( (uWaitFlags & ProcessWaitForFlag_StdErr)
&& (pData->u32HandleId == OUTPUT_HANDLE_ID_STDERR))
{
fSignal = TRUE;
}
if (fSignal)
{
rc2 = signalWaiters( pData->u32HandleId == OUTPUT_HANDLE_ID_STDOUT
? ProcessWaitResult_StdOut : ProcessWaitResult_StdErr);
if (RT_SUCCESS(rc))
rc = rc2;
}
AssertRC(rc);
LogFlowFuncLeaveRC(rc);
return rc;
}
int GuestProcess::readData(ULONG uHandle, ULONG uSize, ULONG uTimeoutMS, BYTE *pbData, size_t cbData)
{
LogFlowFunc(("uPID=%RU32, uHandle=%RU32, uSize=%RU32, uTimeoutMS=%RU32, pbData=%p, cbData=%z\n",
mData.mPID, uHandle, uSize, uTimeoutMS, pbData, cbData));
AssertReturn(uSize, VERR_INVALID_PARAMETER);
AssertPtrReturn(pbData, VERR_INVALID_POINTER);
AssertReturn(cbData >= uSize, VERR_INVALID_PARAMETER);
LogFlowFuncLeave();
return 0;
}
int GuestProcess::sendCommand(uint32_t uFunction,
uint32_t uParms, PVBOXHGCMSVCPARM paParms)
{
LogFlowThisFuncEnter();
Console *pConsole = mData.mConsole;
AssertPtr(pConsole);
/* Forward the information to the VMM device. */
VMMDev *pVMMDev = pConsole->getVMMDev();
AssertPtr(pVMMDev);
LogFlowFunc(("uFunction=%RU32, uParms=%RU32\n", uFunction, uParms));
int rc = pVMMDev->hgcmHostCall("VBoxGuestControlSvc", uFunction, uParms, paParms);
if (RT_FAILURE(rc))
{
}
LogFlowFuncLeaveRC(rc);
return rc;
}
int GuestProcess::setErrorInternal(int rc, const Utf8Str &strMessage)
{
LogFlowFunc(("rc=%Rrc, strMsg=%s\n", rc, strMessage.c_str()));
Assert(RT_FAILURE(rc));
Assert(!strMessage.isEmpty());
#ifdef DEBUG
/* Do not allow overwriting an already set error. If this happens
* this means we forgot some error checking/locking somewhere. */
Assert(RT_SUCCESS(mData.mRC));
Assert(mData.mErrorMsg.isEmpty());
#endif
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
mData.mStatus = ProcessStatus_Error;
mData.mRC = rc;
mData.mErrorMsg = strMessage;
int rc2 = signalWaiters(ProcessWaitResult_Error);
LogFlowFuncLeaveRC(rc2);
return rc2;
}
int GuestProcess::setErrorExternal(void)
{
return RT_SUCCESS(mData.mRC)
? S_OK : setError(VBOX_E_IPRT_ERROR, "%s", mData.mErrorMsg.c_str());
}
int GuestProcess::signalWaiters(ProcessWaitResult_T enmWaitResult)
{
LogFlowFunc(("enmWaitResult=%d, mWaitCount=%RU32, mWaitEvent=%p\n",
enmWaitResult, mData.mWaitCount, mData.mWaitEvent));
/* Note: No write locking here -- already done in the caller. */
int rc = VINF_SUCCESS;
if (mData.mWaitEvent)
rc = mData.mWaitEvent->Signal(enmWaitResult);
LogFlowFuncLeaveRC(rc);
return rc;
}
int GuestProcess::startProcess(void)
{
LogFlowFunc(("aCmd=%s, aTimeoutMS=%RU32, fFlags=%x\n",
mData.mProcess.mCommand.c_str(), mData.mProcess.mTimeoutMS, mData.mProcess.mFlags));
/* Wait until the caller function (if kicked off by a thread)
* has returned and continue operation. */
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
int rc;
ULONG uContextID = 0;
GuestCtrlCallback *pCallbackStart = new GuestCtrlCallback();
if (!pCallbackStart)
return VERR_NO_MEMORY;
mData.mStatus = ProcessStatus_Starting;
/* Create callback and add it to the map. */
rc = pCallbackStart->Init(VBOXGUESTCTRLCALLBACKTYPE_EXEC_START);
if (RT_SUCCESS(rc))
rc = callbackAdd(pCallbackStart, &uContextID);
if (RT_SUCCESS(rc))
{
// AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
GuestSession *pSession = mData.mParent;
AssertPtr(pSession);
const GuestCredentials &sessionCreds = pSession->getCredentials();
/* Prepare arguments. */
char *pszArgs = NULL;
size_t cArgs = mData.mProcess.mArguments.size();
if (cArgs)
{
char **papszArgv = (char**)RTMemAlloc(sizeof(char*) * (cArgs + 1));
AssertReturn(papszArgv, VERR_NO_MEMORY);
for (size_t i = 0; RT_SUCCESS(rc) && i < cArgs; i++)
rc = RTStrDupEx(&papszArgv[i], mData.mProcess.mArguments[i].c_str());
papszArgv[cArgs] = NULL;
if (RT_SUCCESS(rc))
rc = RTGetOptArgvToString(&pszArgs, papszArgv, RTGETOPTARGV_CNV_QUOTE_MS_CRT);
}
size_t cbArgs = pszArgs ? strlen(pszArgs) + 1 : 0; /* Include terminating zero. */
/* Prepare environment. */
void *pvEnv = NULL;
size_t cbEnv = 0;
rc = mData.mProcess.mEnvironment.BuildEnvironmentBlock(&pvEnv, &cbEnv, NULL /* cEnv */);
if (RT_SUCCESS(rc))
{
/* Prepare HGCM call. */
VBOXHGCMSVCPARM paParms[15];
int i = 0;
paParms[i++].setUInt32(uContextID);
paParms[i++].setPointer((void*)mData.mProcess.mCommand.c_str(),
(ULONG)mData.mProcess.mCommand.length() + 1);
paParms[i++].setUInt32(mData.mProcess.mFlags);
paParms[i++].setUInt32(mData.mProcess.mArguments.size());
paParms[i++].setPointer((void*)pszArgs, cbArgs);
paParms[i++].setUInt32(mData.mProcess.mEnvironment.Size());
paParms[i++].setUInt32(cbEnv);
paParms[i++].setPointer((void*)pvEnv, cbEnv);
paParms[i++].setPointer((void*)sessionCreds.mUser.c_str(), (ULONG)sessionCreds.mUser.length() + 1);
paParms[i++].setPointer((void*)sessionCreds.mPassword.c_str(), (ULONG)sessionCreds.mPassword.length() + 1);
/** @todo New command needs the domain as well! */
/*
* If the WaitForProcessStartOnly flag is set, we only want to define and wait for a timeout
* until the process was started - the process itself then gets an infinite timeout for execution.
* This is handy when we want to start a process inside a worker thread within a certain timeout
* but let the started process perform lengthly operations then.
*/
if (mData.mProcess.mFlags & ProcessCreateFlag_WaitForProcessStartOnly)
paParms[i++].setUInt32(UINT32_MAX /* Infinite timeout */);
else
paParms[i++].setUInt32(mData.mProcess.mTimeoutMS);
rc = sendCommand(HOST_EXEC_CMD, i, paParms);
if (RT_FAILURE(rc))
{
int rc2;
if (rc == VERR_INVALID_VM_HANDLE)
rc2 = setErrorInternal(rc, tr("VMM device is not available (is the VM running?)"));
else if (rc == VERR_NOT_FOUND)
rc2 = setErrorInternal(rc, tr("The guest execution service is not ready (yet)"));
else if (rc == VERR_HGCM_SERVICE_NOT_FOUND)
rc2 = setErrorInternal(rc, tr("The guest execution service is not available"));
else
rc2 = setErrorInternal(rc, Utf8StrFmt(tr("The HGCM call failed with error %Rrc"), rc));
AssertRC(rc2);
}
}
GuestEnvironment::FreeEnvironmentBlock(pvEnv);
if (pszArgs)
RTStrFree(pszArgs);
uint32_t uTimeoutMS = mData.mProcess.mTimeoutMS;
alock.release(); /* Drop the read lock again. */
if (RT_SUCCESS(rc))
{
/*
* Let's wait for the process being started.
* Note: Be sure not keeping a AutoRead/WriteLock here.
*/
LogFlowFunc(("Waiting for callback (%RU32ms) ...\n", uTimeoutMS));
rc = pCallbackStart->Wait(uTimeoutMS);
if (RT_SUCCESS(rc)) /* Wait was successful, check for supplied information. */
{
rc = pCallbackStart->GetResultCode();
LogFlowFunc(("Callback returned rc=%Rrc\n", rc));
}
else
rc = VERR_TIMEOUT;
}
AutoWriteLock awlock(this COMMA_LOCKVAL_SRC_POS);
AssertPtr(pCallbackStart);
int rc2 = callbackRemove(uContextID);
if (RT_SUCCESS(rc))
rc = rc2;
}
LogFlowFuncLeaveRC(rc);
return rc;
}
int GuestProcess::startProcessAsync(void)
{
LogFlowThisFuncEnter();
/* Asynchronously start the process on the guest by kicking off a
* worker thread. */
std::auto_ptr<GuestProcessStartTask> pTask(new GuestProcessStartTask(this));
AssertReturn(pTask->isOk(), pTask->rc());
int rc = RTThreadCreate(NULL, GuestProcess::startProcessThread,
(void *)pTask.get(), 0,
RTTHREADTYPE_MAIN_WORKER, 0,
"gctlPrcStart");
if (RT_SUCCESS(rc))
{
/* pTask is now owned by startProcessThread(), so release it. */
pTask.release();
}
LogFlowFuncLeaveRC(rc);
return rc;
}
DECLCALLBACK(int) GuestProcess::startProcessThread(RTTHREAD Thread, void *pvUser)
{
LogFlowFuncEnter();
std::auto_ptr<GuestProcessStartTask> pTask(static_cast<GuestProcessStartTask*>(pvUser));
AssertPtr(pTask.get());
const ComObjPtr<GuestProcess> pProcess(pTask->mProcess);
Assert(!pProcess.isNull());
AutoCaller autoCaller(pProcess);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
int rc = pProcess->startProcess();
if (RT_FAILURE(rc))
{
/** @todo What now? */
}
LogFlowFuncLeaveRC(rc);
return VINF_SUCCESS;
}
int GuestProcess::terminateProcess(void)
{
LogFlowThisFuncEnter();
LogFlowFuncLeave();
return VERR_NOT_IMPLEMENTED;
}
int GuestProcess::waitFor(uint32_t fWaitFlags, ULONG uTimeoutMS, GuestProcessWaitResult &waitRes)
{
LogFlowThisFuncEnter();
AssertReturn(fWaitFlags, VERR_INVALID_PARAMETER);
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
LogFlowFunc(("fWaitFlags=%x, uTimeoutMS=%RU32, mStatus=%RU32, mWaitCount=%RU32, mWaitEvent=%p\n",
fWaitFlags, uTimeoutMS, mData.mStatus, mData.mWaitCount, mData.mWaitEvent));
ProcessStatus_T curStatus = mData.mStatus;
/* Did some error occur before? Then skip waiting and return. */
if (curStatus == ProcessStatus_Error)
{
waitRes.mResult = ProcessWaitResult_Error;
return VINF_SUCCESS;
}
waitRes.mResult = ProcessWaitResult_None;
waitRes.mRC = VINF_SUCCESS;
if ( (fWaitFlags & ProcessWaitForFlag_Terminate)
|| (fWaitFlags & ProcessWaitForFlag_StdIn)
|| (fWaitFlags & ProcessWaitForFlag_StdOut)
|| (fWaitFlags & ProcessWaitForFlag_StdErr))
{
switch (mData.mStatus)
{
case ProcessStatus_TerminatedNormally:
case ProcessStatus_TerminatedSignal:
case ProcessStatus_TerminatedAbnormally:
case ProcessStatus_Down:
waitRes.mResult = ProcessWaitResult_Terminate;
break;
case ProcessStatus_TimedOutKilled:
case ProcessStatus_TimedOutAbnormally:
waitRes.mResult = ProcessWaitResult_Timeout;
break;
case ProcessStatus_Error:
waitRes.mResult = ProcessWaitResult_Error;
waitRes.mRC = mData.mRC;
break;
case ProcessStatus_Undefined:
case ProcessStatus_Starting:
/* Do the waiting below. */
break;
default:
AssertMsgFailed(("Unhandled process status %ld\n", mData.mStatus));
return VERR_NOT_IMPLEMENTED;
}
}
else if (fWaitFlags & ProcessWaitForFlag_Start)
{
switch (mData.mStatus)
{
case ProcessStatus_Started:
case ProcessStatus_Paused:
case ProcessStatus_Terminating:
case ProcessStatus_TerminatedNormally:
case ProcessStatus_TerminatedSignal:
case ProcessStatus_TerminatedAbnormally:
case ProcessStatus_Down:
waitRes.mResult = ProcessWaitResult_Start;
break;
case ProcessStatus_Error:
waitRes.mResult = ProcessWaitResult_Error;
waitRes.mRC = mData.mRC;
break;
case ProcessStatus_Undefined:
case ProcessStatus_Starting:
/* Do the waiting below. */
break;
default:
AssertMsgFailed(("Unhandled process status %ld\n", mData.mStatus));
return VERR_NOT_IMPLEMENTED;
}
}
LogFlowFunc(("waitResult=%ld, waitRC=%Rrc\n", waitRes.mResult, waitRes.mRC));
/* No waiting needed? Return immediately. */
if (waitRes.mResult != ProcessWaitResult_None)
return VINF_SUCCESS;
if (mData.mWaitCount > 0)
return VERR_ALREADY_EXISTS;
mData.mWaitCount++;
Assert(mData.mWaitEvent == NULL);
mData.mWaitEvent = new GuestProcessEvent(fWaitFlags);
AssertPtrReturn(mData.mWaitEvent, VERR_NO_MEMORY);
alock.release(); /* Release lock before waiting. */
int rc = mData.mWaitEvent->Wait(uTimeoutMS);
if (RT_SUCCESS(rc))
waitRes = mData.mWaitEvent->GetResult();
alock.acquire(); /* Get the lock again. */
/* Note: The caller always is responsible of deleting the
* stuff it created before. See close() for more information. */
delete mData.mWaitEvent;
mData.mWaitEvent = NULL;
mData.mWaitCount--;
LogFlowFuncLeaveRC(rc);
return rc;
}
HRESULT GuestProcess::waitResultToErrorEx(const GuestProcessWaitResult &waitResult, bool fLog)
{
int rc = waitResult.mRC;
Utf8Str strMsg;
ProcessStatus_T procStatus = mData.mStatus;
switch (procStatus)
{
case ProcessStatus_Started:
strMsg = Utf8StrFmt(tr("Guest process \"%s\" was started (PID %RU32)"),
mData.mProcess.mCommand.c_str(), mData.mPID);
break;
case ProcessStatus_TerminatedNormally:
strMsg = Utf8StrFmt(tr("Guest process \"%s\" (PID %RU32) terminated normally (exit code: %ld)"),
mData.mProcess.mCommand.c_str(), mData.mPID, mData.mExitCode);
break;
case ProcessStatus_TerminatedSignal:
{
strMsg = Utf8StrFmt(tr("Guest process \"%s\" (PID %RU32) terminated through signal (signal: %ld)"),
mData.mProcess.mCommand.c_str(), mData.mPID, mData.mExitCode);
break;
}
case ProcessStatus_TerminatedAbnormally:
{
strMsg = Utf8StrFmt(tr("Guest process \"%s\" (PID %RU32) terminated abnormally (exit code: %ld)"),
mData.mProcess.mCommand.c_str(), mData.mPID, mData.mExitCode);
break;
}
case ProcessStatus_TimedOutKilled:
{
strMsg = Utf8StrFmt(tr("Guest process \"%s\" (PID %RU32) timed out and was killed"),
mData.mProcess.mCommand.c_str(), mData.mPID);
break;
}
case ProcessStatus_TimedOutAbnormally:
{
strMsg = Utf8StrFmt(tr("Guest process \"%s\" (PID %RU32) timed out and could not be killed\n"),
mData.mProcess.mCommand.c_str(), mData.mPID);
break;
}
case ProcessStatus_Down:
{
strMsg = Utf8StrFmt(tr("Guest process \"%s\" (PID %RU32) was killed because guest OS is shutting down\n"),
mData.mProcess.mCommand.c_str(), mData.mPID);
break;
}
case ProcessStatus_Error:
{
strMsg = Utf8StrFmt(tr("Guest process \"%s\" could not be started: ", mData.mProcess.mCommand.c_str()));
/* Note: It's not required that the process has been started before. */
if (mData.mPID)
{
strMsg += Utf8StrFmt(tr("Error rc=%Rrc occured (PID %RU32)"), rc, mData.mPID);
}
else
{
switch (rc) /* rc contains the IPRT error code from guest side. */
{
case VERR_FILE_NOT_FOUND: /* This is the most likely error. */
strMsg += Utf8StrFmt(tr("The specified file was not found on guest"));
break;
case VERR_PATH_NOT_FOUND:
strMsg += Utf8StrFmt(tr("Could not resolve path to specified file was not found on guest"));
break;
case VERR_BAD_EXE_FORMAT:
strMsg += Utf8StrFmt(tr("The specified file is not an executable format on guest"));
break;
case VERR_AUTHENTICATION_FAILURE:
strMsg += Utf8StrFmt(tr("The specified user was not able to logon on guest"));
break;
case VERR_INVALID_NAME:
strMsg += Utf8StrFmt(tr("The specified file is an invalid name"));
break;
case VERR_TIMEOUT:
strMsg += Utf8StrFmt(tr("The guest did not respond within time"));
break;
case VERR_CANCELLED:
strMsg += Utf8StrFmt(tr("The execution operation was canceled"));
break;
case VERR_PERMISSION_DENIED:
strMsg += Utf8StrFmt(tr("Invalid user/password credentials"));
break;
case VERR_MAX_PROCS_REACHED:
strMsg += Utf8StrFmt(tr("Maximum number of parallel guest processes has been reached"));
break;
default:
strMsg += Utf8StrFmt(tr("Reported error %Rrc"), rc);
break;
}
}
break;
}
case ProcessStatus_Undefined:
default:
/* Silently skip this request. */
break;
}
HRESULT hr = S_OK;
if (RT_FAILURE(rc))
{
Assert(!strMsg.isEmpty());
hr = setError(VBOX_E_IPRT_ERROR, "%s", strMsg.c_str());
}
if (fLog)
{
Assert(!strMsg.isEmpty());
strMsg.append("\n");
LogRel(("%s", strMsg.c_str()));
}
return hr;
}
int GuestProcess::writeData(ULONG uHandle, const BYTE *pbData, size_t cbData, ULONG uTimeoutMS, ULONG *puWritten)
{
LogFlowFunc(("uPID=%RU32, uHandle=%RU32, pbData=%p, cbData=%z, uTimeoutMS=%RU32, puWritten=%p\n",
mData.mPID, uHandle, pbData, cbData, uTimeoutMS, puWritten));
AssertPtrReturn(pbData, VERR_INVALID_POINTER);
AssertReturn(pbData, VERR_INVALID_PARAMETER);
/* Rest is optional. */
LogFlowFuncLeave();
return 0;
}
// implementation of public methods
/////////////////////////////////////////////////////////////////////////////
STDMETHODIMP GuestProcess::Read(ULONG aHandle, ULONG aSize, ULONG aTimeoutMS, ComSafeArrayOut(BYTE, aData))
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
if (aSize == 0)
return setError(E_INVALIDARG, tr("Invalid size to read specified"));
CheckComArgOutSafeArrayPointerValid(aData);
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
com::SafeArray<BYTE> data(aSize);
int rc = readData(aHandle, aSize, aTimeoutMS, data.raw(), aSize);
if (RT_SUCCESS(rc))
data.detachTo(ComSafeArrayOutArg(aData));
/** @todo Do setError() here. */
HRESULT hr = RT_SUCCESS(rc) ? S_OK : VBOX_E_IPRT_ERROR;
LogFlowFuncLeaveRC(hr);
return hr;
#endif /* VBOX_WITH_GUEST_CONTROL */
}
STDMETHODIMP GuestProcess::Terminate(void)
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
int rc = terminateProcess();
/** @todo Do setError() here. */
HRESULT hr = RT_SUCCESS(rc) ? S_OK : VBOX_E_IPRT_ERROR;
LogFlowFuncLeaveRC(hr);
return hr;
#endif /* VBOX_WITH_GUEST_CONTROL */
}
STDMETHODIMP GuestProcess::WaitFor(ULONG aWaitFlags, ULONG aTimeoutMS, ProcessWaitResult_T *aReason)
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
CheckComArgOutPointerValid(aReason);
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
/*
* Note: Do not hold any locks here while waiting!
*/
HRESULT hr;
GuestProcessWaitResult waitRes;
int rc = waitFor(aWaitFlags, aTimeoutMS, waitRes);
if (RT_SUCCESS(rc))
{
*aReason = waitRes.mResult;
hr = setErrorExternal();
}
else
{
if (rc == VERR_TIMEOUT)
hr = setError(VBOX_E_IPRT_ERROR,
tr("Process \"%s\" (PID %RU32) did not respond within time (%RU32ms)"),
mData.mProcess.mCommand.c_str(), mData.mPID, aTimeoutMS);
else
hr = setError(VBOX_E_IPRT_ERROR,
tr("Waiting for process \"%s\" (PID %RU32) failed with rc=%Rrc"),
mData.mProcess.mCommand.c_str(), mData.mPID, rc);
}
LogFlowFuncLeaveRC(rc);
return hr;
#endif /* VBOX_WITH_GUEST_CONTROL */
}
STDMETHODIMP GuestProcess::WaitForArray(ComSafeArrayIn(ProcessWaitForFlag_T, aFlags), ULONG aTimeoutMS, ProcessWaitResult_T *aReason)
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
CheckComArgOutPointerValid(aReason);
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
/*
* Note: Do not hold any locks here while waiting!
*/
uint32_t fWaitFor = ProcessWaitForFlag_None;
com::SafeArray<ProcessWaitForFlag_T> flags(ComSafeArrayInArg(aFlags));
for (size_t i = 0; i < flags.size(); i++)
fWaitFor |= flags[i];
HRESULT hr = WaitFor(fWaitFor, aTimeoutMS, aReason);
LogFlowFuncLeaveRC(hr);
return hr;
#endif /* VBOX_WITH_GUEST_CONTROL */
}
STDMETHODIMP GuestProcess::Write(ULONG aHandle, ComSafeArrayIn(BYTE, aData), ULONG aTimeoutMS, ULONG *aWritten)
{
#ifndef VBOX_WITH_GUEST_CONTROL
ReturnComNotImplemented();
#else
LogFlowThisFuncEnter();
CheckComArgOutPointerValid(aWritten);
AutoCaller autoCaller(this);
if (FAILED(autoCaller.rc())) return autoCaller.rc();
AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
com::SafeArray<BYTE> data(ComSafeArrayInArg(aData));
int rc = writeData(aHandle, data.raw(), data.size(), aTimeoutMS, aWritten);
/** @todo Do setError() here. */
HRESULT hr = RT_SUCCESS(rc) ? S_OK : VBOX_E_IPRT_ERROR;
LogFlowFuncLeaveRC(hr);
return hr;
#endif /* VBOX_WITH_GUEST_CONTROL */
}