VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuestLib/Init.cpp@ 42019

Last change on this file since 42019 was 42019, checked in by vboxsync, 13 years ago

GuestLib: fix uninit

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.8 KB
Line 
1/* $Revision: 42019 $ */
2/** @file
3 * VBoxGuestLibR0 - Library initialization.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27/*******************************************************************************
28* Header Files *
29*******************************************************************************/
30#define VBGL_DECL_DATA
31#include "VBGLInternal.h"
32
33#include <iprt/string.h>
34#include <iprt/assert.h>
35#include <iprt/semaphore.h>
36
37/*******************************************************************************
38* Global Variables *
39*******************************************************************************/
40/** The global VBGL instance data. */
41VBGLDATA g_vbgldata;
42
43/**
44 * Used by vbglQueryDriverInfo and VbglInit to try get the host feature mask and
45 * version information (g_vbgldata::hostVersion).
46 *
47 * This was first implemented by the host in 3.1 and we quietly ignore failures
48 * for that reason.
49 */
50static void vbglR0QueryHostVersion (void)
51{
52 VMMDevReqHostVersion *pReq;
53
54 int rc = VbglGRAlloc ((VMMDevRequestHeader **) &pReq, sizeof (*pReq), VMMDevReq_GetHostVersion);
55
56 if (RT_SUCCESS (rc))
57 {
58 rc = VbglGRPerform (&pReq->header);
59
60 if (RT_SUCCESS (rc))
61 {
62 g_vbgldata.hostVersion = *pReq;
63 Log (("vbglR0QueryHostVersion: %u.%u.%ur%u %#x\n",
64 pReq->major, pReq->minor, pReq->build, pReq->revision, pReq->features));
65 }
66
67 VbglGRFree (&pReq->header);
68 }
69}
70
71#ifndef VBGL_VBOXGUEST
72/**
73 * The guest library uses lazy initialization for VMMDev port and memory,
74 * because these values are provided by the VBoxGuest driver and it might
75 * be loaded later than other drivers.
76 *
77 * The VbglEnter checks the current library status, tries to retrieve these
78 * values and fails if they are unavailable.
79 *
80 */
81static void vbglQueryDriverInfo (void)
82{
83 int rc = VINF_SUCCESS;
84
85 rc = RTSemFastMutexRequest(g_vbgldata.mutexDriverInit);
86
87 if (RT_FAILURE(rc))
88 return;
89
90 if (g_vbgldata.status == VbglStatusReady)
91 {
92 RTSemFastMutexRelease(g_vbgldata.mutexDriverInit);
93 return;
94 }
95
96 rc = vbglDriverOpen(&g_vbgldata.driver);
97
98 if (RT_SUCCESS(rc))
99 {
100 /*
101 * Try query the port info.
102 */
103 VBoxGuestPortInfo port;
104
105 rc = vbglDriverIOCtl (&g_vbgldata.driver,
106 VBOXGUEST_IOCTL_GETVMMDEVPORT, &port,
107 sizeof (port));
108
109 if (RT_SUCCESS (rc))
110 {
111 dprintf (("port = 0x%04X, mem = %p\n", port.portAddress, port.pVMMDevMemory));
112
113 g_vbgldata.portVMMDev = port.portAddress;
114 g_vbgldata.pVMMDevMemory = port.pVMMDevMemory;
115
116 g_vbgldata.status = VbglStatusReady;
117
118 vbglR0QueryHostVersion();
119 }
120 }
121 RTSemFastMutexRelease(g_vbgldata.mutexDriverInit);
122 dprintf (("vbglQueryDriverInfo rc = %d\n", rc));
123}
124#endif /* !VBGL_VBOXGUEST */
125
126/**
127 * Checks if VBGL has been initialized.
128 *
129 * The client library, this will lazily complete the initialization.
130 *
131 * @return VINF_SUCCESS or VERR_VBGL_NOT_INITIALIZED.
132 */
133int vbglR0Enter (void)
134{
135 int rc;
136
137#ifndef VBGL_VBOXGUEST
138 if (g_vbgldata.status == VbglStatusInitializing)
139 {
140 vbglQueryDriverInfo ();
141 }
142#endif
143
144 rc = g_vbgldata.status == VbglStatusReady? VINF_SUCCESS: VERR_VBGL_NOT_INITIALIZED;
145
146 // dprintf(("VbglEnter: rc = %d\n", rc));
147
148 return rc;
149}
150
151int vbglInitCommon (void)
152{
153 int rc = VINF_SUCCESS;
154
155 RT_ZERO(g_vbgldata);
156
157 g_vbgldata.status = VbglStatusInitializing;
158
159 rc = VbglPhysHeapInit ();
160
161 if (RT_SUCCESS(rc))
162 {
163 /* other subsystems, none yet */
164 ;
165 }
166 else
167 LogRel(("vbglInitCommon: VbglPhysHeapInit failed. rc=%Rrc\n", rc));
168
169 dprintf(("vbglInitCommon: rc = %d\n", rc));
170
171 return rc;
172}
173
174DECLVBGL(void) vbglTerminateCommon (void)
175{
176 VbglPhysHeapTerminate ();
177
178 return;
179}
180
181#ifdef VBGL_VBOXGUEST
182
183DECLVBGL(int) VbglInit (VBGLIOPORT portVMMDev, VMMDevMemory *pVMMDevMemory)
184{
185 int rc = VINF_SUCCESS;
186
187# ifdef RT_OS_WINDOWS /** @todo r=bird: this doesn't make sense. Is there something special going on on windows? */
188 dprintf(("vbglInit: starts g_vbgldata.status %d\n", g_vbgldata.status));
189
190 if (g_vbgldata.status == VbglStatusInitializing
191 || g_vbgldata.status == VbglStatusReady)
192 {
193 /* Initialization is already in process. */
194 return rc;
195 }
196# else
197 dprintf(("vbglInit: starts\n"));
198# endif
199
200 rc = vbglInitCommon ();
201
202 if (RT_SUCCESS(rc))
203 {
204 g_vbgldata.portVMMDev = portVMMDev;
205 g_vbgldata.pVMMDevMemory = pVMMDevMemory;
206
207 g_vbgldata.status = VbglStatusReady;
208
209 vbglR0QueryHostVersion();
210 }
211 else
212 {
213 g_vbgldata.status = VbglStatusNotInitialized;
214 }
215
216 return rc;
217}
218
219DECLVBGL(void) VbglTerminate (void)
220{
221 vbglTerminateCommon ();
222
223 return;
224}
225
226
227#else /* !VBGL_VBOXGUEST */
228
229DECLVBGL(int) VbglInit (void)
230{
231 int rc = VINF_SUCCESS;
232
233 if (g_vbgldata.status == VbglStatusInitializing
234 || g_vbgldata.status == VbglStatusReady)
235 {
236 /* Initialization is already in process. */
237 return rc;
238 }
239
240 rc = vbglInitCommon ();
241
242 if (RT_SUCCESS(rc))
243 {
244 rc = RTSemFastMutexCreate(&g_vbgldata.mutexDriverInit);
245 if (RT_SUCCESS(rc))
246 {
247 /* Try to obtain VMMDev port via IOCTL to VBoxGuest main driver. */
248 vbglQueryDriverInfo ();
249
250# ifdef VBOX_WITH_HGCM
251 rc = vbglR0HGCMInit ();
252# endif /* VBOX_WITH_HGCM */
253
254 if (RT_FAILURE(rc))
255 {
256 RTSemFastMutexDestroy(g_vbgldata.mutexDriverInit);
257 g_vbgldata.mutexDriverInit = NIL_RTSEMFASTMUTEX;
258 }
259 }
260
261 if (RT_FAILURE(rc))
262 {
263 vbglTerminateCommon ();
264 }
265
266 }
267
268 return rc;
269}
270
271DECLVBGL(bool) VbglIsReady(void)
272{
273 return(g_vbgldata.status == VbglStatusReady);
274}
275
276DECLVBGL(void) VbglTerminate (void)
277{
278# ifdef VBOX_WITH_HGCM
279 vbglR0HGCMTerminate ();
280# endif
281
282 /* driver open could fail, which does not prevent VbglInit from succeeding,
283 * close the driver only if it is opened */
284 if (vbglDriverIsOpened(&g_vbgldata.driver))
285 vbglDriverClose(&g_vbgldata.driver);
286 RTSemFastMutexDestroy(g_vbgldata.mutexDriverInit);
287 g_vbgldata.mutexDriverInit = NIL_RTSEMFASTMUTEX;
288
289 /* note: do vbglTerminateCommon as a last step since it zeroez up the g_vbgldata
290 * conceptually, doing vbglTerminateCommon last is correct
291 * since this is the reverse order to how init is done */
292 vbglTerminateCommon ();
293
294 return;
295}
296
297int vbglGetDriver(VBGLDRIVER **ppDriver)
298{
299 if (g_vbgldata.status != VbglStatusReady)
300 {
301 vbglQueryDriverInfo();
302 if (g_vbgldata.status != VbglStatusReady)
303 return VERR_TRY_AGAIN;
304 }
305 *ppDriver = &g_vbgldata.driver;
306 return VINF_SUCCESS;
307}
308
309#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