1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
/* $Id$ */
/** @file
* VBoxC - COM DLL exports and DLL init/term.
*/
/*
* Copyright (C) 2006-2017 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* 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.
*/
/*********************************************************************************************************************************
* Header Files *
*********************************************************************************************************************************/
#include "VBox/com/defs.h"
#include <SessionImpl.h>
#include <VirtualBoxClientImpl.h>
#include <iprt/initterm.h>
/*********************************************************************************************************************************
* Global Variables *
*********************************************************************************************************************************/
static ATL::CComModule *g_pAtlComModule;
BEGIN_OBJECT_MAP(ObjectMap)
OBJECT_ENTRY(CLSID_Session, Session)
OBJECT_ENTRY(CLSID_VirtualBoxClient, VirtualBoxClient)
END_OBJECT_MAP()
/////////////////////////////////////////////////////////////////////////////
// DLL Entry Point
extern "C"
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
{
if (dwReason == DLL_PROCESS_ATTACH)
{
// idempotent, so doesn't harm, and needed for COM embedding scenario
RTR3InitDll(RTR3INIT_FLAGS_UNOBTRUSIVE);
g_pAtlComModule = new(ATL::CComModule);
if (!g_pAtlComModule)
return FALSE;
g_pAtlComModule->Init(ObjectMap, hInstance, &LIBID_VirtualBox);
DisableThreadLibraryCalls(hInstance);
}
else if (dwReason == DLL_PROCESS_DETACH)
{
if (g_pAtlComModule)
{
g_pAtlComModule->Term();
delete g_pAtlComModule;
g_pAtlComModule = NULL;
}
}
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// Used to determine whether the DLL can be unloaded by OLE
STDAPI DllCanUnloadNow(void)
{
AssertReturn(g_pAtlComModule, S_OK);
LONG const cLocks = g_pAtlComModule->GetLockCount();
Assert(cLocks >= VirtualBoxClient::s_cUnnecessaryAtlModuleLocks);
return cLocks <= VirtualBoxClient::s_cUnnecessaryAtlModuleLocks ? S_OK : S_FALSE;
}
/////////////////////////////////////////////////////////////////////////////
// Returns a class factory to create an object of the requested type
STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
{
AssertReturn(g_pAtlComModule, E_UNEXPECTED);
return g_pAtlComModule->GetClassObject(rclsid, riid, ppv);
}
/////////////////////////////////////////////////////////////////////////////
// DllRegisterServer - Adds entries to the system registry
STDAPI DllRegisterServer(void)
{
#ifndef VBOX_WITH_MIDL_PROXY_STUB
// registers object, typelib and all interfaces in typelib
AssertReturn(g_pAtlComModule, E_UNEXPECTED);
return g_pAtlComModule->RegisterServer(TRUE);
#else
return S_OK; /* VBoxProxyStub does all the work, no need to duplicate it here. */
#endif
}
/////////////////////////////////////////////////////////////////////////////
// DllUnregisterServer - Removes entries from the system registry
STDAPI DllUnregisterServer(void)
{
#ifndef VBOX_WITH_MIDL_PROXY_STUB
AssertReturn(g_pAtlComModule, E_UNEXPECTED);
HRESULT hrc = g_pAtlComModule->UnregisterServer(TRUE);
return hrc;
#else
return S_OK; /* VBoxProxyStub does all the work, no need to duplicate it here. */
#endif
}
#ifdef RT_OS_WINDOWS
/*
* HACK ALERT! Really ugly trick to make the VirtualBoxClient object go away
* when nobody uses it anymore. This is to prevent its uninit()
* method from accessing IVirtualBox and similar proxy stubs after
* COM has been officially shut down.
*
* It is simply TOO LATE to destroy the client object from DllMain/detach!
*
* This hack ASSUMES ObjectMap order.
* This hack is subject to a re-instantiation race.
*/
ULONG VirtualBoxClient::InternalRelease()
{
ULONG cRefs = VirtualBoxClientWrap::InternalRelease();
# ifdef DEBUG_bird
char szMsg[64];
RTStrPrintf(szMsg, sizeof(szMsg), "VirtualBoxClient: cRefs=%d\n", cRefs);
OutputDebugStringA(szMsg);
# endif
# if 1 /* enable ugly hack */
if (cRefs == 1)
{
/* Make the factory to drop its reference. */
if (ObjectMap[1].pCF)
{
InternalAddRef();
CMyComClassFactorySingleton<VirtualBoxClient> *pFactory;
pFactory = dynamic_cast<CMyComClassFactorySingleton<VirtualBoxClient> *>(ObjectMap[1].pCF);
Assert(pFactory);
if (pFactory)
{
IUnknown *pUnknown = pFactory->m_spObj;
pFactory->m_spObj = NULL;
if (pUnknown)
pUnknown->Release();
}
cRefs = VirtualBoxClientWrap::InternalRelease();
}
}
# endif
return cRefs;
}
#endif
|