2 * QEMU Guest Agent win32 VSS Provider installer
4 * Copyright Hitachi Data Systems Corp. 2013
7 * Tomoki Sekiyama <tomoki.sekiyama@hds.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
15 #include "vss-common.h"
16 #include <inc/win2003/vscoordint.h>
22 extern HINSTANCE g_hinstDll
;
24 const GUID CLSID_COMAdminCatalog
= { 0xF618C514, 0xDFB8, 0x11d1,
25 {0xA2, 0xCF, 0x00, 0x80, 0x5F, 0xC7, 0x92, 0x35} };
26 const GUID IID_ICOMAdminCatalog2
= { 0x790C6E0B, 0x9194, 0x4cc9,
27 {0x94, 0x26, 0xA4, 0x8A, 0x63, 0x18, 0x56, 0x96} };
28 const GUID CLSID_WbemLocator
= { 0x4590f811, 0x1d3a, 0x11d0,
29 {0x89, 0x1f, 0x00, 0xaa, 0x00, 0x4b, 0x2e, 0x24} };
30 const GUID IID_IWbemLocator
= { 0xdc12a687, 0x737f, 0x11cf,
31 {0x88, 0x4d, 0x00, 0xaa, 0x00, 0x4b, 0x2e, 0x24} };
33 void errmsg(DWORD err
, const char *text
)
36 * `text' contains function call statement when errmsg is called via chk().
37 * To make error message more readable, we cut off the text after '('.
38 * If text doesn't contains '(', negative precision is given, which is
39 * treated as though it were missing.
41 char *msg
= NULL
, *nul
= strchr(text
, '(');
42 int len
= nul
? nul
- text
: -1;
44 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER
|
45 FORMAT_MESSAGE_FROM_SYSTEM
| FORMAT_MESSAGE_IGNORE_INSERTS
,
46 NULL
, err
, MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
),
47 (char *)&msg
, 0, NULL
);
48 fprintf(stderr
, "%.*s. (Error: %lx) %s\n", len
, text
, err
, msg
);
52 static void errmsg_dialog(DWORD err
, const char *text
, const char *opt
= "")
56 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER
|
57 FORMAT_MESSAGE_FROM_SYSTEM
| FORMAT_MESSAGE_IGNORE_INSERTS
,
58 NULL
, err
, MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
),
59 (char *)&msg
, 0, NULL
);
60 snprintf(buf
, sizeof(buf
), "%s%s. (Error: %lx) %s", text
, opt
, err
, msg
);
61 MessageBox(NULL
, buf
, "Error from " QGA_PROVIDER_NAME
, MB_OK
|MB_ICONERROR
);
65 #define _chk(hr, status, msg, err_label) \
74 #define chk(status) _chk(hr, status, "Failed to " #status, out)
76 #if !defined(__MINGW64_VERSION_MAJOR) || !defined(__MINGW64_VERSION_MINOR) || \
77 __MINGW64_VERSION_MAJOR * 100 + __MINGW64_VERSION_MINOR < 301
78 void __stdcall
_com_issue_error(HRESULT hr
)
80 errmsg(hr
, "Unexpected error in COM");
85 HRESULT
put_Value(ICatalogObject
*pObj
, LPCWSTR name
, T val
)
87 return pObj
->put_Value(_bstr_t(name
), _variant_t(val
));
90 /* Lookup Administrators group name from winmgmt */
91 static HRESULT
GetAdminName(_bstr_t
*name
)
94 COMPointer
<IWbemLocator
> pLoc
;
95 COMPointer
<IWbemServices
> pSvc
;
96 COMPointer
<IEnumWbemClassObject
> pEnum
;
97 COMPointer
<IWbemClassObject
> pWobj
;
101 chk(CoCreateInstance(CLSID_WbemLocator
, NULL
, CLSCTX_INPROC_SERVER
,
102 IID_IWbemLocator
, (LPVOID
*)pLoc
.replace()));
103 chk(pLoc
->ConnectServer(_bstr_t(L
"ROOT\\CIMV2"), NULL
, NULL
, NULL
,
104 0, 0, 0, pSvc
.replace()));
105 chk(CoSetProxyBlanket(pSvc
, RPC_C_AUTHN_WINNT
, RPC_C_AUTHZ_NONE
,
106 NULL
, RPC_C_AUTHN_LEVEL_CALL
,
107 RPC_C_IMP_LEVEL_IMPERSONATE
, NULL
, EOAC_NONE
));
108 chk(pSvc
->ExecQuery(_bstr_t(L
"WQL"),
109 _bstr_t(L
"select * from Win32_Account where "
110 "SID='S-1-5-32-544' and localAccount=TRUE"),
111 WBEM_FLAG_RETURN_IMMEDIATELY
| WBEM_FLAG_FORWARD_ONLY
,
112 NULL
, pEnum
.replace()));
115 errmsg(hr
, "Failed to query for Administrators");
118 chk(pEnum
->Next(WBEM_INFINITE
, 1, pWobj
.replace(), &returned
));
121 errmsg(hr
, "No Administrators found");
125 chk(pWobj
->Get(_bstr_t(L
"Name"), 0, &var
, 0, 0));
130 errmsg(hr
, "Failed to get name of Administrators");
138 /* Find and iterate QGA VSS provider in COM+ Application Catalog */
139 static HRESULT
QGAProviderFind(
140 HRESULT (*found
)(ICatalogCollection
*, int, void *), void *arg
)
143 COMInitializer initializer
;
144 COMPointer
<IUnknown
> pUnknown
;
145 COMPointer
<ICOMAdminCatalog2
> pCatalog
;
146 COMPointer
<ICatalogCollection
> pColl
;
147 COMPointer
<ICatalogObject
> pObj
;
151 chk(CoCreateInstance(CLSID_COMAdminCatalog
, NULL
, CLSCTX_INPROC_SERVER
,
152 IID_IUnknown
, (void **)pUnknown
.replace()));
153 chk(pUnknown
->QueryInterface(IID_ICOMAdminCatalog2
,
154 (void **)pCatalog
.replace()));
155 chk(pCatalog
->GetCollection(_bstr_t(L
"Applications"),
156 (IDispatch
**)pColl
.replace()));
157 chk(pColl
->Populate());
159 chk(pColl
->get_Count(&n
));
160 for (i
= n
- 1; i
>= 0; i
--) {
161 chk(pColl
->get_Item(i
, (IDispatch
**)pObj
.replace()));
162 chk(pObj
->get_Value(_bstr_t(L
"Name"), &var
));
163 if (var
== _variant_t(QGA_PROVIDER_LNAME
)) {
164 if (FAILED(found(pColl
, i
, arg
))) {
169 chk(pColl
->SaveChanges(&n
));
175 /* Count QGA VSS provider in COM+ Application Catalog */
176 static HRESULT
QGAProviderCount(ICatalogCollection
*coll
, int i
, void *arg
)
182 /* Remove QGA VSS provider from COM+ Application Catalog Collection */
183 static HRESULT
QGAProviderRemove(ICatalogCollection
*coll
, int i
, void *arg
)
187 fprintf(stderr
, "Removing COM+ Application: %s\n", QGA_PROVIDER_NAME
);
188 chk(coll
->Remove(i
));
193 /* Unregister this module from COM+ Applications Catalog */
194 STDAPI
COMUnregister(void)
198 DllUnregisterServer();
199 chk(QGAProviderFind(QGAProviderRemove
, NULL
));
204 /* Register this module to COM+ Applications Catalog */
205 STDAPI
COMRegister(void)
208 COMInitializer initializer
;
209 COMPointer
<IUnknown
> pUnknown
;
210 COMPointer
<ICOMAdminCatalog2
> pCatalog
;
211 COMPointer
<ICatalogCollection
> pApps
, pRoles
, pUsersInRole
;
212 COMPointer
<ICatalogObject
> pObj
;
216 CHAR dllPath
[MAX_PATH
], tlbPath
[MAX_PATH
];
217 bool unregisterOnFailure
= false;
221 errmsg(E_FAIL
, "Failed to initialize DLL");
225 chk(QGAProviderFind(QGAProviderCount
, (void *)&count
));
227 errmsg(E_ABORT
, "QGA VSS Provider is already installed");
231 chk(CoCreateInstance(CLSID_COMAdminCatalog
, NULL
, CLSCTX_INPROC_SERVER
,
232 IID_IUnknown
, (void **)pUnknown
.replace()));
233 chk(pUnknown
->QueryInterface(IID_ICOMAdminCatalog2
,
234 (void **)pCatalog
.replace()));
236 /* Install COM+ Component */
238 chk(pCatalog
->GetCollection(_bstr_t(L
"Applications"),
239 (IDispatch
**)pApps
.replace()));
240 chk(pApps
->Populate());
241 chk(pApps
->Add((IDispatch
**)&pObj
));
242 chk(put_Value(pObj
, L
"Name", QGA_PROVIDER_LNAME
));
243 chk(put_Value(pObj
, L
"Description", QGA_PROVIDER_LNAME
));
244 chk(put_Value(pObj
, L
"ApplicationAccessChecksEnabled", true));
245 chk(put_Value(pObj
, L
"Authentication", short(6)));
246 chk(put_Value(pObj
, L
"AuthenticationCapability", short(2)));
247 chk(put_Value(pObj
, L
"ImpersonationLevel", short(2)));
248 chk(pApps
->SaveChanges(&n
));
250 /* The app should be deleted if something fails after SaveChanges */
251 unregisterOnFailure
= true;
253 chk(pObj
->get_Key(&key
));
255 if (!GetModuleFileName(g_hinstDll
, dllPath
, sizeof(dllPath
))) {
256 hr
= HRESULT_FROM_WIN32(GetLastError());
257 errmsg(hr
, "GetModuleFileName failed");
263 errmsg(hr
, "Failed to lookup dll");
266 strcpy(tlbPath
, dllPath
);
267 strcpy(tlbPath
+n
-3, "tlb");
268 fprintf(stderr
, "Registering " QGA_PROVIDER_NAME
":\n");
269 fprintf(stderr
, " %s\n", dllPath
);
270 fprintf(stderr
, " %s\n", tlbPath
);
271 if (!PathFileExists(tlbPath
)) {
272 hr
= HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND
);
273 errmsg(hr
, "Failed to lookup tlb");
277 chk(pCatalog
->CreateServiceForApplication(
278 _bstr_t(QGA_PROVIDER_LNAME
), _bstr_t(QGA_PROVIDER_LNAME
),
279 _bstr_t(L
"SERVICE_DEMAND_START"), _bstr_t(L
"SERVICE_ERROR_NORMAL"),
280 _bstr_t(L
""), _bstr_t(L
".\\localsystem"), _bstr_t(L
""), FALSE
));
281 chk(pCatalog
->InstallComponent(_bstr_t(QGA_PROVIDER_LNAME
),
282 _bstr_t(dllPath
), _bstr_t(tlbPath
),
285 /* Setup roles of the applicaion */
287 chk(pApps
->GetCollection(_bstr_t(L
"Roles"), key
,
288 (IDispatch
**)pRoles
.replace()));
289 chk(pRoles
->Populate());
290 chk(pRoles
->Add((IDispatch
**)pObj
.replace()));
291 chk(put_Value(pObj
, L
"Name", L
"Administrators"));
292 chk(put_Value(pObj
, L
"Description", L
"Administrators group"));
293 chk(pRoles
->SaveChanges(&n
));
294 chk(pObj
->get_Key(&key
));
296 /* Setup users in the role */
298 chk(pRoles
->GetCollection(_bstr_t(L
"UsersInRole"), key
,
299 (IDispatch
**)pUsersInRole
.replace()));
300 chk(pUsersInRole
->Populate());
302 chk(pUsersInRole
->Add((IDispatch
**)pObj
.replace()));
303 chk(GetAdminName(&name
));
304 chk(put_Value(pObj
, L
"User", _bstr_t(".\\") + name
));
306 chk(pUsersInRole
->Add((IDispatch
**)pObj
.replace()));
307 chk(put_Value(pObj
, L
"User", L
"SYSTEM"));
308 chk(pUsersInRole
->SaveChanges(&n
));
311 if (unregisterOnFailure
&& FAILED(hr
)) {
319 static BOOL
CreateRegistryKey(LPCTSTR key
, LPCTSTR value
, LPCTSTR data
)
325 ret
= RegCreateKeyEx(HKEY_CLASSES_ROOT
, key
, 0, NULL
,
326 REG_OPTION_NON_VOLATILE
, KEY_WRITE
, NULL
, &hKey
, NULL
);
327 if (ret
!= ERROR_SUCCESS
) {
332 size
= strlen(data
) + 1;
337 ret
= RegSetValueEx(hKey
, value
, 0, REG_SZ
, (LPBYTE
)data
, size
);
341 if (ret
!= ERROR_SUCCESS
) {
342 /* As we cannot printf within DllRegisterServer(), show a dialog. */
343 errmsg_dialog(ret
, "Cannot add registry", key
);
349 /* Register this dll as a VSS provider */
350 STDAPI
DllRegisterServer(void)
352 COMInitializer initializer
;
353 COMPointer
<IVssAdmin
> pVssAdmin
;
355 char dllPath
[MAX_PATH
];
359 errmsg_dialog(hr
, "Module instance is not available");
363 /* Add this module to registery */
365 sprintf(key
, "CLSID\\%s", g_szClsid
);
366 if (!CreateRegistryKey(key
, NULL
, g_szClsid
)) {
370 if (!GetModuleFileName(g_hinstDll
, dllPath
, sizeof(dllPath
))) {
371 errmsg_dialog(GetLastError(), "GetModuleFileName failed");
375 sprintf(key
, "CLSID\\%s\\InprocServer32", g_szClsid
);
376 if (!CreateRegistryKey(key
, NULL
, dllPath
)) {
380 if (!CreateRegistryKey(key
, "ThreadingModel", "Apartment")) {
384 sprintf(key
, "CLSID\\%s\\ProgID", g_szClsid
);
385 if (!CreateRegistryKey(key
, NULL
, g_szProgid
)) {
389 if (!CreateRegistryKey(g_szProgid
, NULL
, QGA_PROVIDER_NAME
)) {
393 sprintf(key
, "%s\\CLSID", g_szProgid
);
394 if (!CreateRegistryKey(key
, NULL
, g_szClsid
)) {
398 hr
= CoCreateInstance(CLSID_VSSCoordinator
, NULL
, CLSCTX_ALL
,
399 IID_IVssAdmin
, (void **)pVssAdmin
.replace());
401 errmsg_dialog(hr
, "CoCreateInstance(VSSCoordinator) failed");
405 hr
= pVssAdmin
->RegisterProvider(g_gProviderId
, CLSID_QGAVSSProvider
,
406 const_cast<WCHAR
*>(QGA_PROVIDER_LNAME
),
408 const_cast<WCHAR
*>(QGA_PROVIDER_VERSION
),
411 errmsg_dialog(hr
, "RegisterProvider failed");
416 DllUnregisterServer();
422 /* Unregister this VSS hardware provider from the system */
423 STDAPI
DllUnregisterServer(void)
426 COMInitializer initializer
;
427 COMPointer
<IVssAdmin
> pVssAdmin
;
429 HRESULT hr
= CoCreateInstance(CLSID_VSSCoordinator
,
430 NULL
, CLSCTX_ALL
, IID_IVssAdmin
,
431 (void **)pVssAdmin
.replace());
433 hr
= pVssAdmin
->UnregisterProvider(g_gProviderId
);
435 errmsg(hr
, "CoCreateInstance(VSSCoordinator) failed");
438 sprintf(key
, "CLSID\\%s", g_szClsid
);
439 SHDeleteKey(HKEY_CLASSES_ROOT
, key
);
440 SHDeleteKey(HKEY_CLASSES_ROOT
, g_szProgid
);
442 return S_OK
; /* Uninstall should never fail */
446 /* Support function to convert ASCII string into BSTR (used in _bstr_t) */
449 BSTR WINAPI
ConvertStringToBSTR(const char *ascii
) {
450 int len
= strlen(ascii
);
451 BSTR bstr
= SysAllocStringLen(NULL
, len
);
457 if (mbstowcs(bstr
, ascii
, len
) == (size_t)-1) {
458 fprintf(stderr
, "Failed to convert string '%s' into BSTR", ascii
);
465 /* Stop QGA VSS provider service from COM+ Application Admin Catalog */
467 STDAPI
StopService(void)
470 COMInitializer initializer
;
471 COMPointer
<IUnknown
> pUnknown
;
472 COMPointer
<ICOMAdminCatalog2
> pCatalog
;
476 chk(QGAProviderFind(QGAProviderCount
, (void *)&count
));
478 chk(CoCreateInstance(CLSID_COMAdminCatalog
, NULL
, CLSCTX_INPROC_SERVER
,
479 IID_IUnknown
, (void **)pUnknown
.replace()));
480 chk(pUnknown
->QueryInterface(IID_ICOMAdminCatalog2
,
481 (void **)pCatalog
.replace()));
482 chk(pCatalog
->ShutdownApplication(_bstr_t(QGA_PROVIDER_LNAME
)));