HGCM.cpp revision 55f72d08ca2ada22d085555ae1d6fafcdf82a320
/** @file
*
* VBoxGuestLib - A support library for VirtualBox guest additions:
* Host-Guest Communication Manager
*/
/*
* 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.
*/
/* These public functions can be only used by other drivers.
* They all do an IOCTL to VBoxGuest.
*/
/* Entire file is ifdef'ed with !VBGL_VBOXGUEST */
#ifndef VBGL_VBOXGUEST
#include <VBox/VBoxGuestLib.h>
#include "VBGLInternal.h"
#include <iprt/semaphore.h>
#define VBGL_HGCM_ASSERTMsg AssertReleaseMsg
int vbglHGCMInit (void)
{
return VINF_SUCCESS;
}
int vbglHGCMTerminate (void)
{
return VINF_SUCCESS;
}
DECLINLINE(int) vbglHandleHeapEnter (void)
{
("Failed to request handle heap mutex, rc = %Vrc\n", rc));
return rc;
}
DECLINLINE(void) vbglHandleHeapLeave (void)
{
}
struct VBGLHGCMHANDLEDATA *vbglHGCMHandleAlloc (void)
{
struct VBGLHGCMHANDLEDATA *p;
int rc = vbglHandleHeapEnter ();
uint32_t i;
if (VBOX_FAILURE (rc))
return NULL;
p = NULL;
/** Simple linear search in array. This will be called not so often, only connect/disconnect.
* @todo bitmap for faster search and other obvious optimizations.
*/
{
{
p = &g_vbgldata.aHGCMHandleData[i];
p->fAllocated = 1;
break;
}
}
VBGL_HGCM_ASSERTMsg(p != NULL,
("Not enough HGCM handles.\n"));
return p;
}
{
int rc;
if (!pHandle)
return;
rc = vbglHandleHeapEnter ();
if (VBOX_FAILURE (rc))
return;
("Freeing not allocated handle.\n"));
return;
}
{
int rc;
struct VBGLHGCMHANDLEDATA *pHandleData;
return VERR_INVALID_PARAMETER;
rc = VINF_SUCCESS;
if (!pHandleData)
{
rc = VERR_NO_MEMORY;
}
else
{
if (VBOX_SUCCESS(rc))
{
if (VBOX_SUCCESS(rc))
{
*pHandle = pHandleData;
}
else
{
}
}
if (VBOX_FAILURE(rc))
{
}
}
return rc;
}
{
int rc = VINF_SUCCESS;
return rc;
}
{
int rc = VINF_SUCCESS;
VBGL_HGCM_ASSERTMsg(cbData >= sizeof (VBoxGuestHGCMCallInfo) + pData->cParms * sizeof (HGCMFunctionParameter),
("cbData = %d, cParms = %d (calculated size %d)\n", cbData, pData->cParms, sizeof (VBoxGuestHGCMCallInfo) + pData->cParms * sizeof (VBoxGuestHGCMCallInfo)));
return rc;
}
#endif /* VBGL_VBOXGUEST */