GenericRequest.cpp revision 4e70517ea7c253ad227af80a841e38adb5420203
/** @file
*
* VBoxGuestLib - A support library for VirtualBox guest additions:
* Generic VMMDev request management
*/
/*
* 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;
* 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.
*
* 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.
*/
#include <VBox/VBoxGuestLib.h>
#include "VBGLInternal.h"
#include <iprt/asm.h>
#include <iprt/string.h>
#include <iprt/assert.h>
DECLVBGL(int) VbglGRAlloc (VMMDevRequestHeader **ppReq, uint32_t cbSize, VMMDevRequestType reqType)
{
VMMDevRequestHeader *pReq;
int rc = VbglEnter ();
if (VBOX_FAILURE(rc))
return rc;
if (!ppReq || cbSize < sizeof (VMMDevRequestHeader))
{
dprintf(("VbglGRAlloc: Invalid parameter: ppReq = %p, cbSize = %d\n", ppReq, cbSize));
return VERR_INVALID_PARAMETER;
}
pReq = (VMMDevRequestHeader *)VbglPhysHeapAlloc (cbSize);
if (!pReq)
{
AssertMsgFailed(("VbglGRAlloc: no memory\n"));
rc = VERR_NO_MEMORY;
}
else
{
memset(pReq, 0xAA, cbSize);
pReq->size = cbSize;
pReq->version = VMMDEV_REQUEST_HEADER_VERSION;
pReq->requestType = reqType;
pReq->rc = VERR_GENERAL_FAILURE;
pReq->reserved1 = 0;
pReq->reserved2 = 0;
*ppReq = pReq;
}
return rc;
}
DECLVBGL(int) VbglGRPerform (VMMDevRequestHeader *pReq)
{
RTCCPHYS physaddr;
int rc = VbglEnter ();
if (VBOX_FAILURE(rc))
return rc;
if (!pReq)
return VERR_INVALID_PARAMETER;
physaddr = VbglPhysHeapGetPhysAddr (pReq);
if ( !physaddr
|| (physaddr >> 32) != 0) /* Port IO is 32 bit. */
{
rc = VERR_VBGL_INVALID_ADDR;
}
else
{
ASMOutU32(g_vbgldata.portVMMDev + PORT_VMMDEV_REQUEST_OFFSET, (uint32_t)physaddr);
/* Make the compiler aware that the host has changed memory. */
ASMCompilerBarrier();
rc = pReq->rc;
}
return rc;
}
DECLVBGL(void) VbglGRFree (VMMDevRequestHeader *pReq)
{
int rc = VbglEnter ();
if (VBOX_FAILURE(rc))
return;
VbglPhysHeapFree (pReq);
}