wined3d: Fix CopyRects if pDestPointsArray is NULL.
[wine] / dlls / msxml3 / regsvr.c
1 /*
2  *      MSXML3 self-registerable dll functions
3  *
4  * Copyright (C) 2003 John K. Hohm
5  * Copyright (C) 2006 Robert Shearman
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include <stdarg.h>
23 #include <string.h>
24
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "winreg.h"
29 #include "winerror.h"
30 #include "ole2.h"
31 #include "msxml.h"
32 #include "xmldom.h"
33 #include "xmldso.h"
34
35 #include "msxml_private.h"
36
37 #include "wine/debug.h"
38
39 WINE_DEFAULT_DEBUG_CHANNEL(ole);
40
41 /*
42  * Near the bottom of this file are the exported DllRegisterServer and
43  * DllUnregisterServer, which make all this worthwhile.
44  */
45
46 /***********************************************************************
47  *              interface for self-registering
48  */
49 struct regsvr_interface
50 {
51     IID const *iid;             /* NULL for end of list */
52     LPCSTR name;                /* can be NULL to omit */
53     IID const *base_iid;        /* can be NULL to omit */
54     int num_methods;            /* can be <0 to omit */
55     CLSID const *ps_clsid;      /* can be NULL to omit */
56     CLSID const *ps_clsid32;    /* can be NULL to omit */
57 };
58
59 static HRESULT register_interfaces(struct regsvr_interface const *list);
60 static HRESULT unregister_interfaces(struct regsvr_interface const *list);
61
62 struct regsvr_coclass
63 {
64     CLSID const *clsid;         /* NULL for end of list */
65     LPCSTR name;                /* can be NULL to omit */
66     LPCSTR ips;                 /* can be NULL to omit */
67     LPCSTR ips32;               /* can be NULL to omit */
68     LPCSTR ips32_tmodel;        /* can be NULL to omit */
69     LPCSTR clsid_str;           /* can be NULL to omit */
70     LPCSTR progid;              /* can be NULL to omit */
71 };
72
73 static HRESULT register_coclasses(struct regsvr_coclass const *list);
74 static HRESULT unregister_coclasses(struct regsvr_coclass const *list);
75
76 /***********************************************************************
77  *              static string constants
78  */
79 static WCHAR const interface_keyname[10] = {
80     'I', 'n', 't', 'e', 'r', 'f', 'a', 'c', 'e', 0 };
81 static WCHAR const base_ifa_keyname[14] = {
82     'B', 'a', 's', 'e', 'I', 'n', 't', 'e', 'r', 'f', 'a', 'c',
83     'e', 0 };
84 static WCHAR const num_methods_keyname[11] = {
85     'N', 'u', 'm', 'M', 'e', 't', 'h', 'o', 'd', 's', 0 };
86 static WCHAR const ps_clsid_keyname[15] = {
87     'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
88     'i', 'd', 0 };
89 static WCHAR const ps_clsid32_keyname[17] = {
90     'P', 'r', 'o', 'x', 'y', 'S', 't', 'u', 'b', 'C', 'l', 's',
91     'i', 'd', '3', '2', 0 };
92 static WCHAR const clsid_keyname[6] = {
93     'C', 'L', 'S', 'I', 'D', 0 };
94 static WCHAR const ips_keyname[13] = {
95     'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
96     0 };
97 static WCHAR const ips32_keyname[15] = {
98     'I', 'n', 'P', 'r', 'o', 'c', 'S', 'e', 'r', 'v', 'e', 'r',
99     '3', '2', 0 };
100 static WCHAR const progid_keyname[7] = {
101     'P', 'r', 'o', 'g', 'I', 'D', 0 };
102 static char const tmodel_valuename[] = "ThreadingModel";
103
104 /***********************************************************************
105  *              static helper functions
106  */
107 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid);
108 static LONG register_key_defvalueW(HKEY base, WCHAR const *name,
109                                    WCHAR const *value);
110 static LONG register_key_defvalueA(HKEY base, WCHAR const *name,
111                                    char const *value);
112 static LONG recursive_delete_key(HKEY key);
113 static LONG recursive_delete_keyA(HKEY base, char const *name);
114 static LONG recursive_delete_keyW(HKEY base, WCHAR const *name);
115
116 /***********************************************************************
117  *              register_interfaces
118  */
119 static HRESULT register_interfaces(struct regsvr_interface const *list)
120 {
121     LONG res = ERROR_SUCCESS;
122     HKEY interface_key;
123
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;
127
128     for (; res == ERROR_SUCCESS && list->iid; ++list) {
129         WCHAR buf[39];
130         HKEY iid_key;
131
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;
136
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;
142         }
143
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;
147         }
148
149         if (0 <= list->num_methods) {
150             static WCHAR const fmt[3] = { '%', 'd', 0 };
151             HKEY key;
152
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;
156
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);
162
163             if (res != ERROR_SUCCESS) goto error_close_iid_key;
164         }
165
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;
169         }
170
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;
174         }
175
176     error_close_iid_key:
177         RegCloseKey(iid_key);
178     }
179
180 error_close_interface_key:
181     RegCloseKey(interface_key);
182 error_return:
183     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
184 }
185
186 /***********************************************************************
187  *              unregister_interfaces
188  */
189 static HRESULT unregister_interfaces(struct regsvr_interface const *list)
190 {
191     LONG res = ERROR_SUCCESS;
192     HKEY interface_key;
193
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;
198
199     for (; res == ERROR_SUCCESS && list->iid; ++list) {
200         WCHAR buf[39];
201
202         StringFromGUID2(list->iid, buf, 39);
203         res = recursive_delete_keyW(interface_key, buf);
204     }
205
206     RegCloseKey(interface_key);
207 error_return:
208     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
209 }
210
211 /***********************************************************************
212  *              register_coclasses
213  */
214 static HRESULT register_coclasses(struct regsvr_coclass const *list)
215 {
216     LONG res = ERROR_SUCCESS;
217     HKEY coclass_key;
218
219     res = RegCreateKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0, NULL, 0,
220                           KEY_READ | KEY_WRITE, NULL, &coclass_key, NULL);
221     if (res != ERROR_SUCCESS) goto error_return;
222
223     for (; res == ERROR_SUCCESS && list->clsid; ++list) {
224         WCHAR buf[39];
225         HKEY clsid_key;
226
227         StringFromGUID2(list->clsid, buf, 39);
228         res = RegCreateKeyExW(coclass_key, buf, 0, NULL, 0,
229                               KEY_READ | KEY_WRITE, NULL, &clsid_key, NULL);
230         if (res != ERROR_SUCCESS) goto error_close_coclass_key;
231
232         if (list->name) {
233             res = RegSetValueExA(clsid_key, NULL, 0, REG_SZ,
234                                  (CONST BYTE*)(list->name),
235                                  strlen(list->name) + 1);
236             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
237         }
238
239         if (list->ips) {
240             res = register_key_defvalueA(clsid_key, ips_keyname, list->ips);
241             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
242         }
243
244         if (list->ips32) {
245             HKEY ips32_key;
246
247             res = RegCreateKeyExW(clsid_key, ips32_keyname, 0, NULL, 0,
248                                   KEY_READ | KEY_WRITE, NULL,
249                                   &ips32_key, NULL);
250             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
251
252             res = RegSetValueExA(ips32_key, NULL, 0, REG_SZ,
253                                  (CONST BYTE*)list->ips32,
254                                  lstrlenA(list->ips32) + 1);
255             if (res == ERROR_SUCCESS && list->ips32_tmodel)
256                 res = RegSetValueExA(ips32_key, tmodel_valuename, 0, REG_SZ,
257                                      (CONST BYTE*)list->ips32_tmodel,
258                                      strlen(list->ips32_tmodel) + 1);
259             RegCloseKey(ips32_key);
260             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
261         }
262
263         if (list->clsid_str) {
264             res = register_key_defvalueA(clsid_key, clsid_keyname,
265                                          list->clsid_str);
266             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
267         }
268
269         if (list->progid) {
270             HKEY progid_key;
271
272             res = register_key_defvalueA(clsid_key, progid_keyname,
273                                          list->progid);
274             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
275
276             res = RegCreateKeyExA(HKEY_CLASSES_ROOT, list->progid, 0,
277                                   NULL, 0, KEY_READ | KEY_WRITE, NULL,
278                                   &progid_key, NULL);
279             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
280
281             res = register_key_defvalueW(progid_key, clsid_keyname, buf);
282             RegCloseKey(progid_key);
283             if (res != ERROR_SUCCESS) goto error_close_clsid_key;
284         }
285
286     error_close_clsid_key:
287         RegCloseKey(clsid_key);
288     }
289
290 error_close_coclass_key:
291     RegCloseKey(coclass_key);
292 error_return:
293     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
294 }
295
296 /***********************************************************************
297  *              unregister_coclasses
298  */
299 static HRESULT unregister_coclasses(struct regsvr_coclass const *list)
300 {
301     LONG res = ERROR_SUCCESS;
302     HKEY coclass_key;
303
304     res = RegOpenKeyExW(HKEY_CLASSES_ROOT, clsid_keyname, 0,
305                         KEY_READ | KEY_WRITE, &coclass_key);
306     if (res == ERROR_FILE_NOT_FOUND) return S_OK;
307     if (res != ERROR_SUCCESS) goto error_return;
308
309     for (; res == ERROR_SUCCESS && list->clsid; ++list) {
310         WCHAR buf[39];
311
312         StringFromGUID2(list->clsid, buf, 39);
313         res = recursive_delete_keyW(coclass_key, buf);
314         if (res != ERROR_SUCCESS) goto error_close_coclass_key;
315
316         if (list->progid) {
317             res = recursive_delete_keyA(HKEY_CLASSES_ROOT, list->progid);
318             if (res != ERROR_SUCCESS) goto error_close_coclass_key;
319         }
320     }
321
322 error_close_coclass_key:
323     RegCloseKey(coclass_key);
324 error_return:
325     return res != ERROR_SUCCESS ? HRESULT_FROM_WIN32(res) : S_OK;
326 }
327
328 /***********************************************************************
329  *              regsvr_key_guid
330  */
331 static LONG register_key_guid(HKEY base, WCHAR const *name, GUID const *guid)
332 {
333     WCHAR buf[39];
334
335     StringFromGUID2(guid, buf, 39);
336     return register_key_defvalueW(base, name, buf);
337 }
338
339 /***********************************************************************
340  *              regsvr_key_defvalueW
341  */
342 static LONG register_key_defvalueW(
343     HKEY base,
344     WCHAR const *name,
345     WCHAR const *value)
346 {
347     LONG res;
348     HKEY key;
349
350     res = RegCreateKeyExW(base, name, 0, NULL, 0,
351                           KEY_READ | KEY_WRITE, NULL, &key, NULL);
352     if (res != ERROR_SUCCESS) return res;
353     res = RegSetValueExW(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
354                          (lstrlenW(value) + 1) * sizeof(WCHAR));
355     RegCloseKey(key);
356     return res;
357 }
358
359 /***********************************************************************
360  *              regsvr_key_defvalueA
361  */
362 static LONG register_key_defvalueA(
363     HKEY base,
364     WCHAR const *name,
365     char const *value)
366 {
367     LONG res;
368     HKEY key;
369
370     res = RegCreateKeyExW(base, name, 0, NULL, 0,
371                           KEY_READ | KEY_WRITE, NULL, &key, NULL);
372     if (res != ERROR_SUCCESS) return res;
373     res = RegSetValueExA(key, NULL, 0, REG_SZ, (CONST BYTE*)value,
374                          lstrlenA(value) + 1);
375     RegCloseKey(key);
376     return res;
377 }
378
379 /***********************************************************************
380  *              recursive_delete_key
381  */
382 static LONG recursive_delete_key(HKEY key)
383 {
384     LONG res;
385     WCHAR subkey_name[MAX_PATH];
386     DWORD cName;
387     HKEY subkey;
388
389     for (;;) {
390         cName = sizeof(subkey_name) / sizeof(WCHAR);
391         res = RegEnumKeyExW(key, 0, subkey_name, &cName,
392                             NULL, NULL, NULL, NULL);
393         if (res != ERROR_SUCCESS && res != ERROR_MORE_DATA) {
394             res = ERROR_SUCCESS; /* presumably we're done enumerating */
395             break;
396         }
397         res = RegOpenKeyExW(key, subkey_name, 0,
398                             KEY_READ | KEY_WRITE, &subkey);
399         if (res == ERROR_FILE_NOT_FOUND) continue;
400         if (res != ERROR_SUCCESS) break;
401
402         res = recursive_delete_key(subkey);
403         RegCloseKey(subkey);
404         if (res != ERROR_SUCCESS) break;
405     }
406
407     if (res == ERROR_SUCCESS) res = RegDeleteKeyW(key, 0);
408     return res;
409 }
410
411 /***********************************************************************
412  *              recursive_delete_keyA
413  */
414 static LONG recursive_delete_keyA(HKEY base, char const *name)
415 {
416     LONG res;
417     HKEY key;
418
419     res = RegOpenKeyExA(base, name, 0, KEY_READ | KEY_WRITE, &key);
420     if (res == ERROR_FILE_NOT_FOUND) return ERROR_SUCCESS;
421     if (res != ERROR_SUCCESS) return res;
422     res = recursive_delete_key(key);
423     RegCloseKey(key);
424     return res;
425 }
426
427 /***********************************************************************
428  *              recursive_delete_keyW
429  */
430 static LONG recursive_delete_keyW(HKEY base, WCHAR const *name)
431 {
432     LONG res;
433     HKEY key;
434
435     res = RegOpenKeyExW(base, name, 0, KEY_READ | KEY_WRITE, &key);
436     if (res == ERROR_FILE_NOT_FOUND) return ERROR_SUCCESS;
437     if (res != ERROR_SUCCESS) return res;
438     res = recursive_delete_key(key);
439     RegCloseKey(key);
440     return res;
441 }
442
443 /***********************************************************************
444  *              coclass list
445  */
446 static struct regsvr_coclass const coclass_list[] = {
447     {   &CLSID_DOMDocument,
448         "XML DOM Document",
449         NULL,
450         "msxml3.dll",
451         "Both",
452         "XML DOM Document",
453     "Microsoft.XMLDOM"
454     },
455     {   &CLSID_DOMFreeThreadedDocument,
456         "Free threaded XML DOM Document",
457         NULL,
458         "msxml3.dll",
459         "Free",
460         "Free threaded XML DOM Document",
461     "Microsoft.FreeThreadedXMLDOM"
462     },
463     {   &CLSID_XMLHTTPRequest,
464         "XML HTTP Request",
465         NULL,
466         "msxml3.dll",
467         "Apartment",
468         "XML HTTP Request",
469         "Microsoft.XMLHTTP"
470     },
471     {   &CLSID_XMLDSOControl,
472         "XML Data Source Object",
473         NULL,
474         "msxml3.dll",
475         "Apartment",
476         "XML Data Source Object",
477         "Microsoft.XMLDSO"
478     },
479     {   &CLSID_XMLDocument,
480         "Msxml",
481         NULL,
482         "msxml3.dll",
483         "Both",
484         "Msxml",
485         "Msxml"
486     },
487     { NULL }                    /* list terminator */
488 };
489
490 /***********************************************************************
491  *              interface list
492  */
493 static struct regsvr_interface const interface_list[] = {
494     { NULL }                    /* list terminator */
495 };
496
497 /***********************************************************************
498  *              DllRegisterServer (OLEAUT32.@)
499  */
500 HRESULT WINAPI DllRegisterServer(void)
501 {
502     HRESULT hr;
503
504     TRACE("\n");
505
506     hr = register_coclasses(coclass_list);
507     if (SUCCEEDED(hr))
508         hr = register_interfaces(interface_list);
509     return hr;
510 }
511
512 /***********************************************************************
513  *              DllUnregisterServer (OLEAUT32.@)
514  */
515 HRESULT WINAPI DllUnregisterServer(void)
516 {
517     HRESULT hr;
518
519     TRACE("\n");
520
521     hr = unregister_coclasses(coclass_list);
522     if (SUCCEEDED(hr))
523         hr = unregister_interfaces(interface_list);
524     return hr;
525 }