VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuestLib/HGCM.cpp@ 1

Last change on this file since 1 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 KB
Line 
1/** @file
2 *
3 * VBoxGuestLib - A support library for VirtualBox guest additions:
4 * Host-Guest Communication Manager
5 */
6
7/*
8 * Copyright (C) 2006 InnoTek Systemberatung GmbH
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License as published by the Free Software Foundation,
14 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
15 * distribution. VirtualBox OSE is distributed in the hope that it will
16 * be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * If you received this file as part of a commercial VirtualBox
19 * distribution, then only the terms of your commercial VirtualBox
20 * license agreement apply instead of the previous paragraph.
21 */
22
23/* These public functions can be only used by other drivers.
24 * They all do an IOCTL to VBoxGuest.
25 */
26
27/* Entire file is ifdef'ed with !VBGL_VBOXGUEST */
28#ifndef VBGL_VBOXGUEST
29
30/** @todo r=bird: These two issues with string.h and bool are handled by
31 * iprt/string.h and iprt/types.h respectivly. Please change after the release. */
32#if defined(__LINUX__) && defined(__KERNEL__)
33#ifndef bool /* Linux 2.6.19 C++ nightmare */
34#define bool bool_type
35#define true true_type
36#define false false_type
37#define _Bool int
38#define bool_HGCM_cpp
39#endif
40#include <linux/string.h>
41#ifdef bool_HGCM_cpp
42#undef bool
43#undef true
44#undef false
45#undef _Bool
46#undef bool_HGCM_cpp
47#endif
48#else
49#include <string.h>
50#endif
51
52#include <VBox/VBoxGuestLib.h>
53#include "VBGLInternal.h"
54
55#include <iprt/assert.h>
56#include <iprt/semaphore.h>
57
58#define VBGL_HGCM_ASSERTMsg AssertReleaseMsg
59
60int vbglHGCMInit (void)
61{
62 RTSemFastMutexCreate(&g_vbgldata.mutexHGCMHandle);
63
64 return VINF_SUCCESS;
65}
66
67int vbglHGCMTerminate (void)
68{
69 RTSemFastMutexDestroy(g_vbgldata.mutexHGCMHandle);
70
71 return VINF_SUCCESS;
72}
73
74DECLINLINE(int) vbglHandleHeapEnter (void)
75{
76 int rc = RTSemFastMutexRequest(g_vbgldata.mutexHGCMHandle);
77
78 VBGL_HGCM_ASSERTMsg(VBOX_SUCCESS(rc),
79 ("Failed to request handle heap mutex, rc = %Vrc\n", rc));
80
81 return rc;
82}
83
84DECLINLINE(void) vbglHandleHeapLeave (void)
85{
86 RTSemFastMutexRelease(g_vbgldata.mutexHGCMHandle);
87}
88
89VBGLHGCMHANDLEDATA *vbglHGCMHandleAlloc (void)
90{
91 int rc = vbglHandleHeapEnter ();
92
93 if (VBOX_FAILURE (rc))
94 {
95 return NULL;
96 }
97
98 VBGLHGCMHANDLEDATA *p = NULL;
99
100 /** Simple linear search in array. This will be called not so often, only connect/disconnect.
101 * @todo bitmap for faster search and other obvious optimizations.
102 */
103
104 uint32_t i;
105
106 for (i = 0; i < ELEMENTS(g_vbgldata.aHGCMHandleData); i++)
107 {
108 if (!g_vbgldata.aHGCMHandleData[i].fAllocated)
109 {
110 p = &g_vbgldata.aHGCMHandleData[i];
111
112 p->fAllocated = 1;
113
114 break;
115 }
116 }
117
118 vbglHandleHeapLeave ();
119
120 VBGL_HGCM_ASSERTMsg(p != NULL,
121 ("Not enough HGCM handles.\n"));
122
123 return p;
124}
125
126void vbglHGCMHandleFree (VBGLHGCMHANDLEDATA *pHandle)
127{
128 if (!pHandle)
129 {
130 return;
131 }
132
133 int rc = vbglHandleHeapEnter ();
134
135 if (VBOX_FAILURE (rc))
136 {
137 return;
138 }
139
140 VBGL_HGCM_ASSERTMsg(pHandle->fAllocated,
141 ("Freeing not allocated handle.\n"));
142
143 memset(pHandle, 0, sizeof (VBGLHGCMHANDLEDATA));
144
145 vbglHandleHeapLeave ();
146
147 return;
148}
149
150DECLVBGL(int) VbglHGCMConnect (VBGLHGCMHANDLE *pHandle, VBoxGuestHGCMConnectInfo *pData)
151{
152 if (!pHandle || !pData)
153 {
154 return VERR_INVALID_PARAMETER;
155 }
156
157 VBGLHGCMHANDLEDATA *pHandleData = vbglHGCMHandleAlloc ();
158
159 int rc = VINF_SUCCESS;
160
161 if (!pHandleData)
162 {
163 rc = VERR_NO_MEMORY;
164 }
165 else
166 {
167 rc = vbglDriverOpen (&pHandleData->driver);
168
169 if (VBOX_SUCCESS(rc))
170 {
171 rc = vbglDriverIOCtl (&pHandleData->driver, IOCTL_VBOXGUEST_HGCM_CONNECT, pData, sizeof (*pData));
172
173 if (VBOX_SUCCESS(rc))
174 {
175 *pHandle = pHandleData;
176 }
177 else
178 {
179 vbglDriverClose (&pHandleData->driver);
180 }
181 }
182
183 if (VBOX_FAILURE(rc))
184 {
185 vbglHGCMHandleFree (pHandleData);
186 }
187 }
188
189 return rc;
190}
191
192DECLVBGL(int) VbglHGCMDisconnect (VBGLHGCMHANDLE handle, VBoxGuestHGCMDisconnectInfo *pData)
193{
194 int rc = VINF_SUCCESS;
195
196 rc = vbglDriverIOCtl (&handle->driver, IOCTL_VBOXGUEST_HGCM_DISCONNECT, pData, sizeof (*pData));
197
198 vbglDriverClose (&handle->driver);
199
200 vbglHGCMHandleFree (handle);
201
202 return rc;
203}
204
205DECLVBGL(int) VbglHGCMCall (VBGLHGCMHANDLE handle, VBoxGuestHGCMCallInfo *pData, uint32_t cbData)
206{
207 int rc = VINF_SUCCESS;
208
209 VBGL_HGCM_ASSERTMsg(cbData >= sizeof (VBoxGuestHGCMCallInfo) + pData->cParms * sizeof (HGCMFunctionParameter),
210 ("cbData = %d, cParms = %d (calculated size %d)\n", cbData, pData->cParms, sizeof (VBoxGuestHGCMCallInfo) + pData->cParms * sizeof (VBoxGuestHGCMCallInfo)));
211
212 rc = vbglDriverIOCtl (&handle->driver, IOCTL_VBOXGUEST_HGCM_CALL, pData, cbData);
213
214 dprintf(("vbglDriverIOCtl rc = %Vrc\n", rc));
215
216 return rc;
217}
218
219#endif /* VBGL_VBOXGUEST */
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette