push 92ef5b88da02911741c0a2f56030fd2e20189321
[wine/hacks.git] / dlls / ole32 / regsvr.c
blob51b4f0644b619f88ad0500af4ae29ef7c5c61e1a
1 /*
2 * self-registerable dll functions for ole32.dll
4 * Copyright (C) 2003 John K. Hohm
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
23 #include <stdarg.h>
24 #include <string.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "winreg.h"
30 #include "winerror.h"
31 #include "objbase.h"
33 #include "ole2.h"
34 #include "olectl.h"
35 #include "initguid.h"
36 #include "compobj_private.h"
37 #include "moniker.h"
39 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(ole);
44 * Near the bottom of this file are the exported DllRegisterServer and
45 * DllUnregisterServer, which make all this worthwhile.
48 /***********************************************************************
49 * interface for self-registering
51 struct regsvr_interface
53 IID const *iid; /* NULL for end of list */
54 LPCSTR name; /* can be NULL to omit */
55 IID const *base_iid; /* can be NULL to omit */
56 int num_methods; /* can be <0 to omit */
57 CLSID const *ps_clsid; /* can be NULL to omit */
58 CLSID const *ps_clsid32; /* can be NULL to omit */
61 static HRESULT register_interfaces(struct regsvr_interface const *list);
62 static HRESULT unregister_interfaces(struct regsvr_interface const *list);
64 struct regsvr_coclass
66 CLSID const *clsid; /* NULL for end of list */
67 LPCSTR name; /* can be NULL to omit */
68 LPCSTR ips; /* can be NULL to omit */
69 LPCSTR ips32; /* can be NULL to omit */
70 LPCSTR ips32_tmodel; /* can be NULL to omit */
71 LPCSTR progid; /* can be NULL to omit */
74 static HRESULT register_coclasses(struct regsvr_coclass const *list);
75 static HRESULT unregister_coclasses(struct regsvr_coclass const *list);
77 /***********************************************************************
78 * static string constants
80 static WCHAR const interface_keyname[10] = {
81 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c', 'e', 0 };
82 static WCHAR const base_ifa_keyname[14] = {
83 'B', 'a', 's', 'e', 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c',
84 'e', 0 };
85 static WCHAR const num_methods_keyname[11] = {
86 'N', 'u', 'm', 'M', 'e', 't', 'h', 'o', 'd', 's', 0 };
87 static WCHAR const ps_clsid_keyname[15] = {
88 'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
89 'i', 'd', 0 };
90 static WCHAR const ps_clsid32_keyname[17] = {
91 'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
92 'i', 'd', '3', '2', 0 };
93 static WCHAR const clsid_keyname[6] = {
94 'C', 'L', 'S', 'I', 'D', 0 };
95 static WCHAR const ips_keyname[13] = {
96 'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
97 0 };
98 static WCHAR const ips32_keyname[15] = {
99 'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
100 '3', '2', 0 };
101 static WCHAR const progid_keyname[7] = {
102 'P', 'r', 'o', 'g', 'I', 'D', 0 };
103 static char const tmodel_valuename[] = "ThreadingModel";
105 /***********************************************************************
106 * static helper functions
108 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid);
109 static LONG register_key_defvalueW(HKEY base, WCHAR const *name,
110 WCHAR const *value);
111 static LONG register_key_defvalueA(HKEY base, WCHAR const *name,
112 char const *value);
113 static LONG register_progid(WCHAR const *clsid, char const *progid,
114 char const *name);
116 /***********************************************************************
117 * register_interfaces
119 static HRESULT register_interfaces(struct regsvr_interface const *list)
121 LONG res = ERROR_SUCCESS;
122 HKEY interface_key;
124 res = RegCreateKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0, NULL, 0,
125 KEY_READ | KEY_WRITE, NULL, &interface_key, NULL);
126 if (res != ERROR_SUCCESS) goto error_return;
128 for (; res == ERROR_SUCCESS && list->iid; ++list) {
129 WCHAR buf[39];
130 HKEY iid_key;
132 StringFromGUID2(list->iid, buf, 39);
133 res = RegCreateKeyExW(interface_key, buf, 0, NULL, 0,
134 KEY_READ | KEY_WRITE, NULL, &iid_key, NULL);
135 if (res != ERROR_SUCCESS) goto error_close_interface_key;
137 if (list->name) {
138 res = RegSetValueExA(iid_key, NULL, 0, REG_SZ,
139 (CONST BYTE*)(list->name),
140 strlen(list->name) + 1);
141 if (res != ERROR_SUCCESS) goto error_close_iid_key;
144 if (list->base_iid) {
145 res = register_key_guid(iid_key, base_ifa_keyname, list->base_iid);
146 if (res != ERROR_SUCCESS) goto error_close_iid_key;
149 if (0 <= list->num_methods) {
150 static WCHAR const fmt[3] = { '%', 'd', 0 };
151 HKEY key;
153 res = RegCreateKeyExW(iid_key, num_methods_keyname, 0, NULL, 0,
154 KEY_READ | KEY_WRITE, NULL, &key, NULL);
155 if (res != ERROR_SUCCESS) goto error_close_iid_key;
157 wsprintfW(buf, fmt, list->num_methods);
158 res = RegSetValueExW(key, NULL, 0, REG_SZ,
159 (CONST BYTE*)buf,
160 (lstrlenW(buf) + 1) * sizeof(WCHAR));
161 RegCloseKey(key);
163 if (res != ERROR_SUCCESS) goto error_close_iid_key;
166 if (list->ps_clsid) {
167 res = register_key_guid(iid_key, ps_clsid_keyname, list->ps_clsid);
168 if (res != ERROR_SUCCESS) goto error_close_iid_key;
171 if (list->ps_clsid32) {
172 res = register_key_guid(iid_key, ps_clsid32_keyname, list->ps_clsid32);
173 if (res != ERROR_SUCCESS) goto error_close_iid_key;
176 error_close_iid_key:
177 RegCloseKey(iid_key);
180 error_close_interface_key:
181 RegCloseKey(interface_key);
182 error_return:
183 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
186 /***********************************************************************
187 * unregister_interfaces
189 static HRESULT unregister_interfaces(struct regsvr_interface const *list)
191 LONG res = ERROR_SUCCESS;
192 HKEY interface_key;
194 res = RegOpenKeyExW(HKEY_CLASSES_ROOT, interface_keyname, 0,
195 KEY_READ | KEY_WRITE, &interface_key);
196 if (res == ERROR_FILE_NOT_FOUND) return S_OK;
197 if (res != ERROR_SUCCESS) goto error_return;
199 for (; res == ERROR_SUCCESS && list->iid; ++list) {
200 WCHAR buf[39];
202 StringFromGUID2(list->iid, buf, 39);
203 res = RegDeleteTreeW(interface_key, buf);
204 if (res == ERROR_FILE_NOT_FOUND) res = ERROR_SUCCESS;
207 RegCloseKey(interface_key);
208 error_return:
209 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
212 /***********************************************************************
213 * register_coclasses
215 static HRESULT register_coclasses(struct regsvr_coclass const *list)
217 LONG res = ERROR_SUCCESS;
218 HKEY coclass_key;
220 res = RegCreateKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0, NULL, 0,
221 KEY_READ | KEY_WRITE, NULL, &coclass_key, NULL);
222 if (res != ERROR_SUCCESS) goto error_return;
224 for (; res == ERROR_SUCCESS && list->clsid; ++list) {
225 WCHAR buf[39];
226 HKEY clsid_key;
228 StringFromGUID2(list->clsid, buf, 39);
229 res = RegCreateKeyExW(coclass_key, buf, 0, NULL, 0,
230 KEY_READ | KEY_WRITE, NULL, &clsid_key, NULL);
231 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
233 if (list->name) {
234 res = RegSetValueExA(clsid_key, NULL, 0, REG_SZ,
235 (CONST BYTE*)(list->name),
236 strlen(list->name) + 1);
237 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
240 if (list->ips) {
241 res = register_key_defvalueA(clsid_key, ips_keyname, list->ips);
242 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
245 if (list->ips32) {
246 HKEY ips32_key;
248 res = RegCreateKeyExW(clsid_key, ips32_keyname, 0, NULL, 0,
249 KEY_READ | KEY_WRITE, NULL,
250 &ips32_key, NULL);
251 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
253 res = RegSetValueExA(ips32_key, NULL, 0, REG_SZ,
254 (CONST BYTE*)list->ips32,
255 lstrlenA(list->ips32) + 1);
256 if (res == ERROR_SUCCESS && list->ips32_tmodel)
257 res = RegSetValueExA(ips32_key, tmodel_valuename, 0, REG_SZ,
258 (CONST BYTE*)list->ips32_tmodel,
259 strlen(list->ips32_tmodel) + 1);
260 RegCloseKey(ips32_key);
261 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
264 if (list->progid) {
265 res = register_key_defvalueA(clsid_key, progid_keyname,
266 list->progid);
267 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
269 res = register_progid(buf, list->progid, list->name);
270 if (res != ERROR_SUCCESS) goto error_close_clsid_key;
273 error_close_clsid_key:
274 RegCloseKey(clsid_key);
277 error_close_coclass_key:
278 RegCloseKey(coclass_key);
279 error_return:
280 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
283 /***********************************************************************
284 * unregister_coclasses
286 static HRESULT unregister_coclasses(struct regsvr_coclass const *list)
288 LONG res = ERROR_SUCCESS;
289 HKEY coclass_key;
291 res = RegOpenKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0,
292 KEY_READ | KEY_WRITE, &coclass_key);
293 if (res == ERROR_FILE_NOT_FOUND) return S_OK;
294 if (res != ERROR_SUCCESS) goto error_return;
296 for (; res == ERROR_SUCCESS && list->clsid; ++list) {
297 WCHAR buf[39];
299 StringFromGUID2(list->clsid, buf, 39);
300 res = RegDeleteTreeW(coclass_key, buf);
301 if (res == ERROR_FILE_NOT_FOUND) res = ERROR_SUCCESS;
302 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
304 if (list->progid) {
305 res = RegDeleteTreeA(HKEY_CLASSES_ROOT, list->progid);
306 if (res == ERROR_FILE_NOT_FOUND) res = ERROR_SUCCESS;
307 if (res != ERROR_SUCCESS) goto error_close_coclass_key;
311 error_close_coclass_key:
312 RegCloseKey(coclass_key);
313 error_return:
314 return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
317 /***********************************************************************
318 * regsvr_key_guid
320 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid)
322 WCHAR buf[39];
324 StringFromGUID2(guid, buf, 39);
325 return register_key_defvalueW(base, name, buf);
328 /***********************************************************************
329 * regsvr_key_defvalueW
331 static LONG register_key_defvalueW(
332 HKEY base,
333 WCHAR const *name,
334 WCHAR const *value)
336 LONG res;
337 HKEY key;
339 res = RegCreateKeyExW(base, name, 0, NULL, 0,
340 KEY_READ | KEY_WRITE, NULL, &key, NULL);
341 if (res != ERROR_SUCCESS) return res;
342 res = RegSetValueExW(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
343 (lstrlenW(value) + 1) * sizeof(WCHAR));
344 RegCloseKey(key);
345 return res;
348 /***********************************************************************
349 * regsvr_key_defvalueA
351 static LONG register_key_defvalueA(
352 HKEY base,
353 WCHAR const *name,
354 char const *value)
356 LONG res;
357 HKEY key;
359 res = RegCreateKeyExW(base, name, 0, NULL, 0,
360 KEY_READ | KEY_WRITE, NULL, &key, NULL);
361 if (res != ERROR_SUCCESS) return res;
362 res = RegSetValueExA(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
363 lstrlenA(value) + 1);
364 RegCloseKey(key);
365 return res;
368 /***********************************************************************
369 * regsvr_progid
371 static LONG register_progid(
372 WCHAR const *clsid,
373 char const *progid,
374 char const *name)
376 LONG res;
377 HKEY progid_key;
379 res = RegCreateKeyExA(HKEY_CLASSES_ROOT, progid, 0,
380 NULL, 0, KEY_READ | KEY_WRITE, NULL,
381 &progid_key, NULL);
382 if (res != ERROR_SUCCESS) return res;
384 if (name) {
385 res = RegSetValueExA(progid_key, NULL, 0, REG_SZ,
386 (CONST BYTE*)name, strlen(name) + 1);
387 if (res != ERROR_SUCCESS) goto error_close_progid_key;
390 if (clsid) {
391 res = register_key_defvalueW(progid_key, clsid_keyname, clsid);
392 if (res != ERROR_SUCCESS) goto error_close_progid_key;
395 error_close_progid_key:
396 RegCloseKey(progid_key);
397 return res;
400 /***********************************************************************
401 * coclass list
403 static GUID const CLSID_StdOleLink = {
404 0x00000300, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
406 static GUID const CLSID_PointerMoniker = {
407 0x00000306, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
409 static GUID const CLSID_PackagerMoniker = {
410 0x00000308, 0x0000, 0x0000, {0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46} };
412 extern GUID const CLSID_Picture_Metafile;
413 extern GUID const CLSID_Picture_Dib;
415 static struct regsvr_coclass const coclass_list[] = {
416 { &CLSID_StdOleLink,
417 "StdOleLink",
418 NULL,
419 "ole32.dll",
420 NULL
422 { &CLSID_FileMoniker,
423 "FileMoniker",
424 NULL,
425 "ole32.dll",
426 "Both",
427 "file"
429 { &CLSID_ItemMoniker,
430 "ItemMoniker",
431 NULL,
432 "ole32.dll",
433 "Both"
435 { &CLSID_AntiMoniker,
436 "AntiMoniker",
437 NULL,
438 "ole32.dll",
439 "Both"
441 { &CLSID_PointerMoniker,
442 "PointerMoniker",
443 NULL,
444 "ole32.dll",
445 "Both"
447 { &CLSID_PackagerMoniker,
448 "PackagerMoniker",
449 NULL,
450 "ole32.dll",
451 "Both"
453 { &CLSID_CompositeMoniker,
454 "CompositeMoniker",
455 NULL,
456 "ole32.dll",
457 "Both"
459 { &CLSID_DfMarshal,
460 "DfMarshal",
461 NULL,
462 "ole32.dll",
463 "Both"
465 { &CLSID_Picture_Metafile,
466 "Picture (Metafile)",
467 NULL,
468 "ole32.dll",
469 NULL,
470 "StaticMetafile"
472 { &CLSID_Picture_Dib,
473 "Picture (Device Independent Bitmap)",
474 NULL,
475 "ole32.dll",
476 NULL,
477 "StaticDib"
479 { &CLSID_ClassMoniker,
480 "ClassMoniker",
481 NULL,
482 "ole32.dll",
483 "Both",
484 "CLSID"
486 { &CLSID_PSFactoryBuffer,
487 "PSFactoryBuffer",
488 NULL,
489 "ole32.dll",
490 "Both"
492 { &CLSID_StdGlobalInterfaceTable,
493 "StdGlobalInterfaceTable",
494 NULL,
495 "ole32.dll",
496 "Apartment"
498 { NULL } /* list terminator */
501 /***********************************************************************
502 * interface list
505 #define INTERFACE_ENTRY(interface, base, clsid32, clsid16) { &IID_##interface, #interface, base, sizeof(interface##Vtbl)/sizeof(void*), clsid16, clsid32 }
506 #define BAS_INTERFACE_ENTRY(interface, base) INTERFACE_ENTRY(interface, &IID_##base, &CLSID_PSFactoryBuffer, NULL)
507 #define STD_INTERFACE_ENTRY(interface) INTERFACE_ENTRY(interface, NULL, &CLSID_PSFactoryBuffer, NULL)
508 #define LCL_INTERFACE_ENTRY(interface) INTERFACE_ENTRY(interface, NULL, NULL, NULL)
510 static const struct regsvr_interface interface_list[] = {
511 LCL_INTERFACE_ENTRY(IUnknown),
512 STD_INTERFACE_ENTRY(IClassFactory),
513 LCL_INTERFACE_ENTRY(IMalloc),
514 LCL_INTERFACE_ENTRY(IMarshal),
515 STD_INTERFACE_ENTRY(ILockBytes),
516 STD_INTERFACE_ENTRY(IStorage),
517 STD_INTERFACE_ENTRY(IStream),
518 STD_INTERFACE_ENTRY(IEnumSTATSTG),
519 STD_INTERFACE_ENTRY(IBindCtx),
520 BAS_INTERFACE_ENTRY(IMoniker, IPersistStream),
521 STD_INTERFACE_ENTRY(IRunningObjectTable),
522 STD_INTERFACE_ENTRY(IRootStorage),
523 LCL_INTERFACE_ENTRY(IMessageFilter),
524 LCL_INTERFACE_ENTRY(IStdMarshalInfo),
525 LCL_INTERFACE_ENTRY(IExternalConnection),
526 LCL_INTERFACE_ENTRY(IMallocSpy),
527 LCL_INTERFACE_ENTRY(IMultiQI),
528 STD_INTERFACE_ENTRY(IEnumUnknown),
529 STD_INTERFACE_ENTRY(IEnumString),
530 STD_INTERFACE_ENTRY(IEnumMoniker),
531 STD_INTERFACE_ENTRY(IEnumFORMATETC),
532 STD_INTERFACE_ENTRY(IEnumOLEVERB),
533 STD_INTERFACE_ENTRY(IEnumSTATDATA),
534 BAS_INTERFACE_ENTRY(IPersistStream, IPersist),
535 BAS_INTERFACE_ENTRY(IPersistStorage, IPersist),
536 BAS_INTERFACE_ENTRY(IPersistFile, IPersist),
537 STD_INTERFACE_ENTRY(IPersist),
538 STD_INTERFACE_ENTRY(IViewObject),
539 STD_INTERFACE_ENTRY(IDataObject),
540 STD_INTERFACE_ENTRY(IAdviseSink),
541 LCL_INTERFACE_ENTRY(IDataAdviseHolder),
542 LCL_INTERFACE_ENTRY(IOleAdviseHolder),
543 STD_INTERFACE_ENTRY(IOleObject),
544 BAS_INTERFACE_ENTRY(IOleInPlaceObject, IOleWindow),
545 STD_INTERFACE_ENTRY(IOleWindow),
546 BAS_INTERFACE_ENTRY(IOleInPlaceUIWindow, IOleWindow),
547 STD_INTERFACE_ENTRY(IOleInPlaceFrame),
548 BAS_INTERFACE_ENTRY(IOleInPlaceActiveObject, IOleWindow),
549 STD_INTERFACE_ENTRY(IOleClientSite),
550 BAS_INTERFACE_ENTRY(IOleInPlaceSite, IOleWindow),
551 STD_INTERFACE_ENTRY(IParseDisplayName),
552 BAS_INTERFACE_ENTRY(IOleContainer, IParseDisplayName),
553 BAS_INTERFACE_ENTRY(IOleItemContainer, IOleContainer),
554 STD_INTERFACE_ENTRY(IOleLink),
555 STD_INTERFACE_ENTRY(IOleCache),
556 LCL_INTERFACE_ENTRY(IDropSource),
557 STD_INTERFACE_ENTRY(IDropTarget),
558 BAS_INTERFACE_ENTRY(IAdviseSink2, IAdviseSink),
559 STD_INTERFACE_ENTRY(IRunnableObject),
560 BAS_INTERFACE_ENTRY(IViewObject2, IViewObject),
561 BAS_INTERFACE_ENTRY(IOleCache2, IOleCache),
562 STD_INTERFACE_ENTRY(IOleCacheControl),
563 STD_INTERFACE_ENTRY(IRemUnknown),
564 LCL_INTERFACE_ENTRY(IClientSecurity),
565 LCL_INTERFACE_ENTRY(IServerSecurity),
566 STD_INTERFACE_ENTRY(ISequentialStream),
567 { NULL } /* list terminator */
570 /***********************************************************************
571 * DllRegisterServer (OLE32.@)
573 HRESULT WINAPI DllRegisterServer(void)
575 HRESULT hr;
577 TRACE("\n");
579 hr = register_coclasses(coclass_list);
580 if (SUCCEEDED(hr))
581 hr = register_interfaces(interface_list);
582 return hr;
585 /***********************************************************************
586 * DllUnregisterServer (OLE32.@)
588 HRESULT WINAPI DllUnregisterServer(void)
590 HRESULT hr;
592 TRACE("\n");
594 hr = unregister_coclasses(coclass_list);
595 if (SUCCEEDED(hr))
596 hr = unregister_interfaces(interface_list);
597 return hr;