1 | /* $Id: com.cpp 55987 2015-05-20 21:36:09Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * MS COM / XPCOM Abstraction Layer
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2005-2013 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 |
|
---|
18 | #if !defined (VBOX_WITH_XPCOM)
|
---|
19 |
|
---|
20 | # include <objbase.h>
|
---|
21 |
|
---|
22 | #else /* !defined (VBOX_WITH_XPCOM) */
|
---|
23 | # include <stdlib.h>
|
---|
24 | # include <nsCOMPtr.h>
|
---|
25 | # include <nsIServiceManagerUtils.h>
|
---|
26 | # include <nsIComponentManager.h>
|
---|
27 | # include <ipcIService.h>
|
---|
28 | # include <ipcCID.h>
|
---|
29 | # include <ipcIDConnectService.h>
|
---|
30 | # include <nsIInterfaceInfo.h>
|
---|
31 | # include <nsIInterfaceInfoManager.h>
|
---|
32 | // official XPCOM headers don't define it yet
|
---|
33 | #define IPC_DCONNECTSERVICE_CONTRACTID \
|
---|
34 | "@mozilla.org/ipc/dconnect-service;1"
|
---|
35 | #endif /* !defined (VBOX_WITH_XPCOM) */
|
---|
36 |
|
---|
37 | #include "VBox/com/com.h"
|
---|
38 | #include "VBox/com/assert.h"
|
---|
39 |
|
---|
40 | #include "VBox/com/Guid.h"
|
---|
41 | #include "VBox/com/array.h"
|
---|
42 |
|
---|
43 | #include <package-generated.h>
|
---|
44 |
|
---|
45 | #include <iprt/buildconfig.h>
|
---|
46 | #include <iprt/param.h>
|
---|
47 | #include <iprt/path.h>
|
---|
48 | #include <iprt/dir.h>
|
---|
49 | #include <iprt/env.h>
|
---|
50 | #include <iprt/string.h>
|
---|
51 | #include <iprt/system.h>
|
---|
52 | #include <iprt/process.h>
|
---|
53 |
|
---|
54 | #include <VBox/err.h>
|
---|
55 | #include <VBox/version.h>
|
---|
56 |
|
---|
57 | #if !defined(RT_OS_DARWIN) && !defined(RT_OS_WINDOWS)
|
---|
58 | char szXdgConfigHome[RTPATH_MAX] = "";
|
---|
59 | #endif
|
---|
60 |
|
---|
61 | /**
|
---|
62 | * Possible locations for the VirtualBox user configuration folder,
|
---|
63 | * listed from oldest (as in legacy) to newest. These can be either
|
---|
64 | * absolute or relative to the home directory. We use the first entry
|
---|
65 | * of the list which corresponds to a real folder on storage, or
|
---|
66 | * create a folder corresponding to the last in the list (the least
|
---|
67 | * legacy) if none do.
|
---|
68 | */
|
---|
69 | const char *const apcszUserHome[] =
|
---|
70 | #ifdef RT_OS_DARWIN
|
---|
71 | { "Library/VirtualBox" };
|
---|
72 | #elif defined RT_OS_WINDOWS
|
---|
73 | { ".VirtualBox" };
|
---|
74 | #else
|
---|
75 | { ".VirtualBox", szXdgConfigHome };
|
---|
76 | #endif
|
---|
77 |
|
---|
78 | #include "Logging.h"
|
---|
79 |
|
---|
80 | namespace com
|
---|
81 | {
|
---|
82 |
|
---|
83 | void GetInterfaceNameByIID(const GUID &aIID, BSTR *aName)
|
---|
84 | {
|
---|
85 | AssertPtrReturnVoid(aName);
|
---|
86 | *aName = NULL;
|
---|
87 |
|
---|
88 | #if !defined(VBOX_WITH_XPCOM)
|
---|
89 |
|
---|
90 | LONG rc;
|
---|
91 | LPOLESTR iidStr = NULL;
|
---|
92 | if (StringFromIID(aIID, &iidStr) == S_OK)
|
---|
93 | {
|
---|
94 | HKEY ifaceKey;
|
---|
95 | rc = RegOpenKeyExW(HKEY_CLASSES_ROOT, L"Interface",
|
---|
96 | 0, KEY_QUERY_VALUE, &ifaceKey);
|
---|
97 | if (rc == ERROR_SUCCESS)
|
---|
98 | {
|
---|
99 | HKEY iidKey;
|
---|
100 | rc = RegOpenKeyExW(ifaceKey, iidStr, 0, KEY_QUERY_VALUE, &iidKey);
|
---|
101 | if (rc == ERROR_SUCCESS)
|
---|
102 | {
|
---|
103 | /* determine the size and type */
|
---|
104 | DWORD sz, type;
|
---|
105 | rc = RegQueryValueExW(iidKey, NULL, NULL, &type, NULL, &sz);
|
---|
106 | if (rc == ERROR_SUCCESS && type == REG_SZ)
|
---|
107 | {
|
---|
108 | /* query the value to BSTR */
|
---|
109 | *aName = SysAllocStringLen(NULL, (sz + 1) / sizeof(TCHAR) + 1);
|
---|
110 | rc = RegQueryValueExW(iidKey, NULL, NULL, NULL, (LPBYTE) *aName, &sz);
|
---|
111 | if (rc != ERROR_SUCCESS)
|
---|
112 | {
|
---|
113 | SysFreeString(*aName);
|
---|
114 | *aName = NULL;
|
---|
115 | }
|
---|
116 | }
|
---|
117 | RegCloseKey(iidKey);
|
---|
118 | }
|
---|
119 | RegCloseKey(ifaceKey);
|
---|
120 | }
|
---|
121 | CoTaskMemFree(iidStr);
|
---|
122 | }
|
---|
123 |
|
---|
124 | #else /* !defined (VBOX_WITH_XPCOM) */
|
---|
125 |
|
---|
126 | nsresult rv;
|
---|
127 | nsCOMPtr<nsIInterfaceInfoManager> iim =
|
---|
128 | do_GetService(NS_INTERFACEINFOMANAGER_SERVICE_CONTRACTID, &rv);
|
---|
129 | if (NS_SUCCEEDED(rv))
|
---|
130 | {
|
---|
131 | nsCOMPtr<nsIInterfaceInfo> iinfo;
|
---|
132 | rv = iim->GetInfoForIID(&aIID, getter_AddRefs(iinfo));
|
---|
133 | if (NS_SUCCEEDED(rv))
|
---|
134 | {
|
---|
135 | const char *iname = NULL;
|
---|
136 | iinfo->GetNameShared(&iname);
|
---|
137 | char *utf8IName = NULL;
|
---|
138 | if (RT_SUCCESS(RTStrCurrentCPToUtf8(&utf8IName, iname)))
|
---|
139 | {
|
---|
140 | PRTUTF16 utf16IName = NULL;
|
---|
141 | if (RT_SUCCESS(RTStrToUtf16(utf8IName, &utf16IName)))
|
---|
142 | {
|
---|
143 | *aName = SysAllocString((OLECHAR *) utf16IName);
|
---|
144 | RTUtf16Free(utf16IName);
|
---|
145 | }
|
---|
146 | RTStrFree(utf8IName);
|
---|
147 | }
|
---|
148 | }
|
---|
149 | }
|
---|
150 |
|
---|
151 | #endif /* !defined (VBOX_WITH_XPCOM) */
|
---|
152 | }
|
---|
153 |
|
---|
154 | #ifdef VBOX_WITH_XPCOM
|
---|
155 |
|
---|
156 | HRESULT GlueCreateObjectOnServer(const CLSID &clsid,
|
---|
157 | const char *serverName,
|
---|
158 | const nsIID &id,
|
---|
159 | void** ppobj)
|
---|
160 | {
|
---|
161 | HRESULT rc;
|
---|
162 | nsCOMPtr<ipcIService> ipcServ = do_GetService(IPC_SERVICE_CONTRACTID, &rc);
|
---|
163 | if (SUCCEEDED(rc))
|
---|
164 | {
|
---|
165 | PRUint32 serverID = 0;
|
---|
166 | rc = ipcServ->ResolveClientName(serverName, &serverID);
|
---|
167 | if (SUCCEEDED (rc))
|
---|
168 | {
|
---|
169 | nsCOMPtr<ipcIDConnectService> dconServ = do_GetService(IPC_DCONNECTSERVICE_CONTRACTID, &rc);
|
---|
170 | if (SUCCEEDED(rc))
|
---|
171 | rc = dconServ->CreateInstance(serverID,
|
---|
172 | clsid,
|
---|
173 | id,
|
---|
174 | ppobj);
|
---|
175 | }
|
---|
176 | }
|
---|
177 | return rc;
|
---|
178 | }
|
---|
179 |
|
---|
180 | HRESULT GlueCreateInstance(const CLSID &clsid,
|
---|
181 | const nsIID &id,
|
---|
182 | void** ppobj)
|
---|
183 | {
|
---|
184 | nsCOMPtr<nsIComponentManager> manager;
|
---|
185 | HRESULT rc = NS_GetComponentManager(getter_AddRefs(manager));
|
---|
186 | if (SUCCEEDED(rc))
|
---|
187 | rc = manager->CreateInstance(clsid,
|
---|
188 | nsnull,
|
---|
189 | id,
|
---|
190 | ppobj);
|
---|
191 | return rc;
|
---|
192 | }
|
---|
193 |
|
---|
194 | #endif // VBOX_WITH_XPCOM
|
---|
195 |
|
---|
196 | static int composeHomePath(char *aDir, size_t aDirLen,
|
---|
197 | const char *pcszBase)
|
---|
198 | {
|
---|
199 | int vrc;
|
---|
200 | if (RTPathStartsWithRoot(pcszBase))
|
---|
201 | vrc = RTStrCopy(aDir, aDirLen, pcszBase);
|
---|
202 | else
|
---|
203 | {
|
---|
204 | /* compose the config directory (full path) */
|
---|
205 | /** @todo r=bird: RTPathUserHome doesn't necessarily return a
|
---|
206 | * full (abs) path like the comment above seems to indicate. */
|
---|
207 | vrc = RTPathUserHome(aDir, aDirLen);
|
---|
208 | if (RT_SUCCESS(vrc))
|
---|
209 | vrc = RTPathAppend(aDir, aDirLen, pcszBase);
|
---|
210 | }
|
---|
211 | return vrc;
|
---|
212 | }
|
---|
213 |
|
---|
214 | int GetVBoxUserHomeDirectory(char *aDir, size_t aDirLen, bool fCreateDir)
|
---|
215 | {
|
---|
216 | AssertReturn(aDir, VERR_INVALID_POINTER);
|
---|
217 | AssertReturn(aDirLen > 0, VERR_BUFFER_OVERFLOW);
|
---|
218 |
|
---|
219 | /* start with null */
|
---|
220 | *aDir = 0;
|
---|
221 |
|
---|
222 | char szTmp[RTPATH_MAX];
|
---|
223 | int vrc = RTEnvGetEx(RTENV_DEFAULT, "VBOX_USER_HOME", szTmp, sizeof(szTmp), NULL);
|
---|
224 | if (RT_SUCCESS(vrc) || vrc == VERR_ENV_VAR_NOT_FOUND)
|
---|
225 | {
|
---|
226 | bool fFound = false;
|
---|
227 | if (RT_SUCCESS(vrc))
|
---|
228 | {
|
---|
229 | /* get the full path name */
|
---|
230 | vrc = RTPathAbs(szTmp, aDir, aDirLen);
|
---|
231 | }
|
---|
232 | else
|
---|
233 | {
|
---|
234 | #if !defined(RT_OS_WINDOWS) && !defined(RT_OS_DARWIN)
|
---|
235 | const char *pcszConfigHome = RTEnvGet("XDG_CONFIG_HOME");
|
---|
236 | if (pcszConfigHome && pcszConfigHome[0])
|
---|
237 | {
|
---|
238 | vrc = RTStrCopy(szXdgConfigHome,
|
---|
239 | sizeof(szXdgConfigHome),
|
---|
240 | pcszConfigHome);
|
---|
241 | if (RT_SUCCESS(vrc))
|
---|
242 | vrc = RTPathAppend(szXdgConfigHome,
|
---|
243 | sizeof(szXdgConfigHome),
|
---|
244 | "VirtualBox");
|
---|
245 | }
|
---|
246 | else
|
---|
247 | vrc = RTStrCopy(szXdgConfigHome,
|
---|
248 | sizeof(szXdgConfigHome),
|
---|
249 | ".config/VirtualBox");
|
---|
250 | #endif
|
---|
251 | for (unsigned i = 0; i < RT_ELEMENTS(apcszUserHome); ++i)
|
---|
252 | {
|
---|
253 | vrc = composeHomePath(aDir, aDirLen, apcszUserHome[i]);
|
---|
254 | if ( RT_SUCCESS(vrc)
|
---|
255 | && RTDirExists(aDir))
|
---|
256 | {
|
---|
257 | fFound = true;
|
---|
258 | break;
|
---|
259 | }
|
---|
260 | }
|
---|
261 | }
|
---|
262 |
|
---|
263 | /* ensure the home directory exists */
|
---|
264 | if (RT_SUCCESS(vrc))
|
---|
265 | if (!fFound && fCreateDir)
|
---|
266 | vrc = RTDirCreateFullPath(aDir, 0700);
|
---|
267 | }
|
---|
268 |
|
---|
269 | return vrc;
|
---|
270 | }
|
---|
271 |
|
---|
272 | static const char *g_pszLogEntity = NULL;
|
---|
273 |
|
---|
274 | static void vboxHeaderFooter(PRTLOGGER pReleaseLogger, RTLOGPHASE enmPhase, PFNRTLOGPHASEMSG pfnLog)
|
---|
275 | {
|
---|
276 | /* some introductory information */
|
---|
277 | static RTTIMESPEC s_TimeSpec;
|
---|
278 | char szTmp[256];
|
---|
279 | if (enmPhase == RTLOGPHASE_BEGIN)
|
---|
280 | RTTimeNow(&s_TimeSpec);
|
---|
281 | RTTimeSpecToString(&s_TimeSpec, szTmp, sizeof(szTmp));
|
---|
282 |
|
---|
283 | switch (enmPhase)
|
---|
284 | {
|
---|
285 | case RTLOGPHASE_BEGIN:
|
---|
286 | {
|
---|
287 | bool fOldBuffered = RTLogSetBuffering(pReleaseLogger, true /*fBuffered*/);
|
---|
288 | pfnLog(pReleaseLogger,
|
---|
289 | "VirtualBox %s %s r%u %s (%s %s) release log\n"
|
---|
290 | #ifdef VBOX_BLEEDING_EDGE
|
---|
291 | "EXPERIMENTAL build " VBOX_BLEEDING_EDGE "\n"
|
---|
292 | #endif
|
---|
293 | "Log opened %s\n",
|
---|
294 | g_pszLogEntity, VBOX_VERSION_STRING, RTBldCfgRevision(),
|
---|
295 | RTBldCfgTargetDotArch(), __DATE__, __TIME__, szTmp);
|
---|
296 |
|
---|
297 | pfnLog(pReleaseLogger, "Build Type: %s\n", KBUILD_TYPE);
|
---|
298 | int vrc = RTSystemQueryOSInfo(RTSYSOSINFO_PRODUCT, szTmp, sizeof(szTmp));
|
---|
299 | if (RT_SUCCESS(vrc) || vrc == VERR_BUFFER_OVERFLOW)
|
---|
300 | pfnLog(pReleaseLogger, "OS Product: %s\n", szTmp);
|
---|
301 | vrc = RTSystemQueryOSInfo(RTSYSOSINFO_RELEASE, szTmp, sizeof(szTmp));
|
---|
302 | if (RT_SUCCESS(vrc) || vrc == VERR_BUFFER_OVERFLOW)
|
---|
303 | pfnLog(pReleaseLogger, "OS Release: %s\n", szTmp);
|
---|
304 | vrc = RTSystemQueryOSInfo(RTSYSOSINFO_VERSION, szTmp, sizeof(szTmp));
|
---|
305 | if (RT_SUCCESS(vrc) || vrc == VERR_BUFFER_OVERFLOW)
|
---|
306 | pfnLog(pReleaseLogger, "OS Version: %s\n", szTmp);
|
---|
307 | vrc = RTSystemQueryOSInfo(RTSYSOSINFO_SERVICE_PACK, szTmp, sizeof(szTmp));
|
---|
308 | if (RT_SUCCESS(vrc) || vrc == VERR_BUFFER_OVERFLOW)
|
---|
309 | pfnLog(pReleaseLogger, "OS Service Pack: %s\n", szTmp);
|
---|
310 |
|
---|
311 | vrc = RTSystemQueryDmiString(RTSYSDMISTR_PRODUCT_NAME, szTmp, sizeof(szTmp));
|
---|
312 | if (RT_SUCCESS(vrc) || vrc == VERR_BUFFER_OVERFLOW)
|
---|
313 | pfnLog(pReleaseLogger, "DMI Product Name: %s\n", szTmp);
|
---|
314 | vrc = RTSystemQueryDmiString(RTSYSDMISTR_PRODUCT_VERSION, szTmp, sizeof(szTmp));
|
---|
315 | if (RT_SUCCESS(vrc) || vrc == VERR_BUFFER_OVERFLOW)
|
---|
316 | pfnLog(pReleaseLogger, "DMI Product Version: %s\n", szTmp);
|
---|
317 |
|
---|
318 | uint64_t cbHostRam = 0, cbHostRamAvail = 0;
|
---|
319 | vrc = RTSystemQueryTotalRam(&cbHostRam);
|
---|
320 | if (RT_SUCCESS(vrc))
|
---|
321 | vrc = RTSystemQueryAvailableRam(&cbHostRamAvail);
|
---|
322 | if (RT_SUCCESS(vrc))
|
---|
323 | pfnLog(pReleaseLogger, "Host RAM: %lluMB total, %lluMB available\n",
|
---|
324 | cbHostRam / _1M, cbHostRamAvail / _1M);
|
---|
325 |
|
---|
326 | /* the package type is interesting for Linux distributions */
|
---|
327 | char szExecName[RTPATH_MAX];
|
---|
328 | char *pszExecName = RTProcGetExecutablePath(szExecName, sizeof(szExecName));
|
---|
329 | pfnLog(pReleaseLogger,
|
---|
330 | "Executable: %s\n"
|
---|
331 | "Process ID: %u\n"
|
---|
332 | "Package type: %s"
|
---|
333 | #ifdef VBOX_OSE
|
---|
334 | " (OSE)"
|
---|
335 | #endif
|
---|
336 | "\n",
|
---|
337 | pszExecName ? pszExecName : "unknown",
|
---|
338 | RTProcSelf(),
|
---|
339 | VBOX_PACKAGE_STRING);
|
---|
340 | RTLogSetBuffering(pReleaseLogger, fOldBuffered);
|
---|
341 | break;
|
---|
342 | }
|
---|
343 | case RTLOGPHASE_PREROTATE:
|
---|
344 | pfnLog(pReleaseLogger, "Log rotated - Log started %s\n", szTmp);
|
---|
345 | break;
|
---|
346 |
|
---|
347 | case RTLOGPHASE_POSTROTATE:
|
---|
348 | pfnLog(pReleaseLogger, "Log continuation - Log started %s\n", szTmp);
|
---|
349 | break;
|
---|
350 |
|
---|
351 | case RTLOGPHASE_END:
|
---|
352 | pfnLog(pReleaseLogger, "End of log file - Log started %s\n", szTmp);
|
---|
353 | break;
|
---|
354 |
|
---|
355 | default:
|
---|
356 | /* nothing */;
|
---|
357 | }
|
---|
358 | }
|
---|
359 |
|
---|
360 | int VBoxLogRelCreate(const char *pcszEntity, const char *pcszLogFile,
|
---|
361 | uint32_t fFlags, const char *pcszGroupSettings,
|
---|
362 | const char *pcszEnvVarBase, uint32_t fDestFlags,
|
---|
363 | uint32_t cMaxEntriesPerGroup, uint32_t cHistory,
|
---|
364 | uint32_t uHistoryFileTime, uint64_t uHistoryFileSize,
|
---|
365 | char *pszError, size_t cbError)
|
---|
366 | {
|
---|
367 | Assert(cbError >= RTPATH_MAX + 128);
|
---|
368 |
|
---|
369 | /* create release logger */
|
---|
370 | PRTLOGGER pReleaseLogger;
|
---|
371 | static const char * const s_apszGroups[] = VBOX_LOGGROUP_NAMES;
|
---|
372 | #if defined(RT_OS_WINDOWS) || defined(RT_OS_OS2)
|
---|
373 | fFlags |= RTLOGFLAGS_USECRLF;
|
---|
374 | #endif
|
---|
375 | g_pszLogEntity = pcszEntity;
|
---|
376 | int vrc = RTLogCreateEx(&pReleaseLogger, fFlags, pcszGroupSettings,
|
---|
377 | pcszEnvVarBase, RT_ELEMENTS(s_apszGroups), s_apszGroups, fDestFlags,
|
---|
378 | vboxHeaderFooter, cHistory, uHistoryFileSize, uHistoryFileTime,
|
---|
379 | pszError, cbError,
|
---|
380 | pcszLogFile ? "%s" : NULL, pcszLogFile);
|
---|
381 | if (RT_SUCCESS(vrc))
|
---|
382 | {
|
---|
383 | /* make sure that we don't flood logfiles */
|
---|
384 | RTLogSetGroupLimit(pReleaseLogger, cMaxEntriesPerGroup);
|
---|
385 |
|
---|
386 | /* explicitly flush the log, to have some info when buffering */
|
---|
387 | RTLogFlush(pReleaseLogger);
|
---|
388 |
|
---|
389 | /* register this logger as the release logger */
|
---|
390 | RTLogRelSetDefaultInstance(pReleaseLogger);
|
---|
391 | }
|
---|
392 | return vrc;
|
---|
393 | }
|
---|
394 |
|
---|
395 |
|
---|
396 | /* static */
|
---|
397 | const Guid Guid::Empty; /* default ctor is OK */
|
---|
398 |
|
---|
399 | #if defined (VBOX_WITH_XPCOM)
|
---|
400 |
|
---|
401 | /* static */
|
---|
402 | const nsID *SafeGUIDArray::nsIDRef::Empty = (const nsID *)Guid::Empty.raw();
|
---|
403 |
|
---|
404 | #endif /* (VBOX_WITH_XPCOM) */
|
---|
405 |
|
---|
406 | } /* namespace com */
|
---|