VirtualBox

source: vbox/trunk/src/VBox/Main/cbinding/VBoxXPCOMCGlue.c@ 18241

Last change on this file since 18241 was 18241, checked in by vboxsync, 16 years ago

VBoxXPCOMCGlue.*: Reverted back the licensing changes as per 2221#c147

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.4 KB
Line 
1/* $Revision: 18241 $ */
2/** @file
3 * Glue code for dynamically linking to VBoxXPCOMC.
4 */
5
6/*
7 * Copyright (C) 2008-2009 Sun Microsystems, Inc.
8 *
9 * Permission is hereby granted, free of charge, to any person
10 * obtaining a copy of this software and associated documentation
11 * files (the "Software"), to deal in the Software without
12 * restriction, including without limitation the rights to use,
13 * copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following
16 * conditions:
17 *
18 * The above copyright notice and this permission notice shall be
19 * included in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
23 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
25 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
26 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31/*******************************************************************************
32* Header Files *
33*******************************************************************************/
34#include <stdio.h>
35#include <string.h>
36#include <stdlib.h>
37#include <dlfcn.h>
38
39#include "VBoxXPCOMCGlue.h"
40
41
42/*******************************************************************************
43* Defined Constants And Macros *
44*******************************************************************************/
45#if defined(__linux__) || defined(__linux_gnu__) || defined(__sun__)
46# define DYNLIB_NAME "VBoxXPCOMC.so"
47#elif defined(__APPLE__)
48# define DYNLIB_NAME "VBoxXPCOMC.dylib"
49#elif defined(_MSC_VER) || defined(__OS2__)
50# define DYNLIB_NAME "VBoxXPCOMC.dll"
51#else
52# error "Port me"
53#endif
54
55
56/*******************************************************************************
57* Global Variables *
58*******************************************************************************/
59/** The dlopen handle for VBoxXPCOMC. */
60void *g_hVBoxXPCOMC = NULL;
61/** The last load error. */
62char g_szVBoxErrMsg[256];
63/** Pointer to the VBoxXPCOMC function table. */
64PCVBOXXPCOM g_pVBoxFuncs = NULL;
65/** Pointer to VBoxGetXPCOMCFunctions for the loaded VBoxXPCOMC so/dylib/dll. */
66PFNVBOXGETXPCOMCFUNCTIONS g_pfnGetFunctions = NULL;
67
68
69/**
70 * Try load VBoxXPCOMC.so/dylib/dll from the specified location and resolve all
71 * the symbols we need.
72 *
73 * @returns 0 on success, -1 on failure.
74 * @param pszHome The director where to try load VBoxXPCOMC from. Can be NULL.
75 */
76static int tryLoadOne(const char *pszHome)
77{
78 size_t cchHome = pszHome ? strlen(pszHome) : 0;
79 size_t cbReq;
80 char szBuf[4096];
81 char * pszBuf;
82 int rc = -1;
83
84 /*
85 * Construct the full name.
86 */
87 cbReq = cchHome + sizeof("/" DYNLIB_NAME);
88 if (cbReq > sizeof(szBuf))
89 {
90 sprintf(g_szVBoxErrMsg, "path buffer too small: %u bytes required", (unsigned)cbReq);
91 return -1;
92 }
93 if (pszHome)
94 {
95 memcpy(pszBuf, pszHome, cchHome);
96 pszBuf[cchHome] = '/';
97 cchHome++;
98 }
99 memcpy(&pszBuf[cchHome], DYNLIB_NAME, sizeof(DYNLIB_NAME));
100
101 /*
102 * Try load it by that name, setting the VBOX_APP_HOME first (for now).
103 * Then resolve and call the function table getter.
104 */
105 setenv("VBOX_APP_HOME", pszHome, 0 /* no need to overwrite */);
106 g_hVBoxXPCOMC = dlopen(pszBuf, RTLD_NOW | RTLD_LOCAL);
107 if (g_hVBoxXPCOMC)
108 {
109 PFNVBOXGETXPCOMCFUNCTIONS pfnGetFunctions;
110 pfnGetFunctions = (PFNVBOXGETXPCOMCFUNCTIONS)
111 dlsym(g_hVBoxXPCOMC, VBOX_GET_XPCOMC_FUNCTIONS_SYMBOL_NAME);
112 if (pfnGetFunctions)
113 {
114 g_pVBoxFuncs = pfnGetFunctions(VBOX_XPCOMC_VERSION);
115 if (g_pVBoxFuncs)
116 {
117 g_pfnGetFunctions = pfnGetFunctions;
118 rc = 0;
119 }
120 else
121 sprintf(g_szVBoxErrMsg, "%.80s: pfnGetFunctions(%#x) failed",
122 pszBuf, VBOX_XPCOMC_VERSION);
123 }
124 else
125 sprintf(g_szVBoxErrMsg, "dlsym(%.80s/%.32s): %128s",
126 pszBuf, VBOX_GET_XPCOMC_FUNCTIONS_SYMBOL_NAME, dlerror());
127 if (rc != 0)
128 {
129 dlclose(g_hVBoxXPCOMC);
130 g_hVBoxXPCOMC = NULL;
131 }
132 }
133 else
134 sprintf(g_szVBoxErrMsg, "dlopen(%.80s): %128s", pszBuf, dlerror());
135 return rc;
136}
137
138
139/**
140 * Tries to locate and load VBoxXPCOMC.so/dylib/dll, resolving all the related
141 * function pointers.
142 *
143 * @returns 0 on success, -1 on failure.
144 *
145 * @remark This should be considered moved into a separate glue library since
146 * its its going to be pretty much the same for any user of VBoxXPCOMC
147 * and it will just cause trouble to have duplicate versions of this
148 * source code all around the place.
149 */
150int VBoxCGlueInit(void)
151{
152 /*
153 * If the user specifies the location, try only that.
154 */
155 const char *pszHome = getenv("VBOX_APP_HOME");
156 if (pszHome)
157 return tryLoadOne(pszHome);
158
159 /*
160 * Try the known standard locations.
161 */
162#if defined(__gnu__linux__) || defined(__linux__)
163 if (tryLoadOne("/opt/VirtualBox") == 0)
164 return 0;
165 if (tryLoadOne("/usr/lib/virtualbox") == 0)
166 return 0;
167#elif defined(__sun__)
168 if (tryLoadOne("/opt/VirtualBox/amd64") == 0)
169 return 0;
170 if (tryLoadOne("/opt/VirtualBox/i386") == 0)
171 return 0;
172#elif defined(__APPLE__)
173 if (tryLoadOne("/Application/VirtualBox.app/Contents/MacOS") == 0)
174 return 0;
175#else
176# error "port me"
177#endif
178
179 /*
180 * Finally try the dynamic linker search path.
181 */
182 if (tryLoadOne(NULL) == 0)
183 return 0;
184
185 /* No luck, return failure. */
186 return -1;
187}
188
189
190/**
191 * Terminate the C glue library.
192 */
193void VBoxCGlueTerm(void)
194{
195 if (g_hVBoxXPCOMC)
196 {
197#if 0 /* VBoxRT.so doesn't like being reloaded. See @bugref{3725}. */
198 dlclose(g_hVBoxXPCOMC);
199#endif
200 g_hVBoxXPCOMC = NULL;
201 }
202 g_pVBoxFuncs = NULL;
203 g_pfnGetFunctions = NULL;
204 memset(g_szVBoxErrMsg, 0, sizeof(g_szVBoxErrMsg));
205}
206
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