1aaf4d931217e6902b8233ac82e8fad476497692
[reactos.git] / reactos / dll / win32 / msi / msi.c
1 /*
2 * Implementation of the Microsoft Installer (msi.dll)
3 *
4 * Copyright 2002,2003,2004,2005 Mike McCormack for CodeWeavers
5 *
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.
10 *
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.
15 *
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
19 */
20
21 #include <stdarg.h>
22
23 #define COBJMACROS
24 #define NONAMELESSUNION
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winreg.h"
29 #include "winnls.h"
30 #include "shlwapi.h"
31 #include "wine/debug.h"
32 #include "msi.h"
33 #include "msidefs.h"
34 #include "msiquery.h"
35 #include "msipriv.h"
36 #include "wincrypt.h"
37 #include "winver.h"
38 #include "winuser.h"
39 #include "shlobj.h"
40 #include "shobjidl.h"
41 #include "objidl.h"
42 #include "wine/unicode.h"
43
44 WINE_DEFAULT_DEBUG_CHANNEL(msi);
45
46 static const WCHAR installerW[] = {'\\','I','n','s','t','a','l','l','e','r',0};
47
48 UINT WINAPI MsiOpenProductA(LPCSTR szProduct, MSIHANDLE *phProduct)
49 {
50 UINT r;
51 LPWSTR szwProd = NULL;
52
53 TRACE("%s %p\n",debugstr_a(szProduct), phProduct);
54
55 if( szProduct )
56 {
57 szwProd = strdupAtoW( szProduct );
58 if( !szwProd )
59 return ERROR_OUTOFMEMORY;
60 }
61
62 r = MsiOpenProductW( szwProd, phProduct );
63
64 msi_free( szwProd );
65
66 return r;
67 }
68
69 static UINT MSI_OpenProductW( LPCWSTR szProduct, MSIPACKAGE **ppackage )
70 {
71 LPWSTR path = NULL;
72 UINT r;
73 HKEY hKeyProduct = NULL;
74 DWORD count, type;
75
76 TRACE("%s %p\n", debugstr_w(szProduct), ppackage );
77
78 r = MSIREG_OpenUninstallKey(szProduct,&hKeyProduct,FALSE);
79 if( r != ERROR_SUCCESS )
80 {
81 r = ERROR_UNKNOWN_PRODUCT;
82 goto end;
83 }
84
85 /* find the size of the path */
86 type = count = 0;
87 r = RegQueryValueExW( hKeyProduct, INSTALLPROPERTY_LOCALPACKAGEW,
88 NULL, &type, NULL, &count );
89 if( r != ERROR_SUCCESS )
90 {
91 r = ERROR_UNKNOWN_PRODUCT;
92 goto end;
93 }
94
95 /* now alloc and fetch the path of the database to open */
96 path = msi_alloc( count );
97 if( !path )
98 goto end;
99
100 r = RegQueryValueExW( hKeyProduct, INSTALLPROPERTY_LOCALPACKAGEW,
101 NULL, &type, (LPBYTE) path, &count );
102 if( r != ERROR_SUCCESS )
103 {
104 r = ERROR_UNKNOWN_PRODUCT;
105 goto end;
106 }
107
108 r = MSI_OpenPackageW( path, ppackage );
109
110 end:
111 msi_free( path );
112 if( hKeyProduct )
113 RegCloseKey( hKeyProduct );
114
115 return r;
116 }
117
118 UINT WINAPI MsiOpenProductW( LPCWSTR szProduct, MSIHANDLE *phProduct )
119 {
120 MSIPACKAGE *package = NULL;
121 UINT r;
122
123 r = MSI_OpenProductW( szProduct, &package );
124 if( r == ERROR_SUCCESS )
125 {
126 *phProduct = alloc_msihandle( &package->hdr );
127 if (! *phProduct)
128 r = ERROR_NOT_ENOUGH_MEMORY;
129 msiobj_release( &package->hdr );
130 }
131 return r;
132 }
133
134 UINT WINAPI MsiAdvertiseProductA(LPCSTR szPackagePath, LPCSTR szScriptfilePath,
135 LPCSTR szTransforms, LANGID lgidLanguage)
136 {
137 FIXME("%s %s %s %08x\n",debugstr_a(szPackagePath),
138 debugstr_a(szScriptfilePath), debugstr_a(szTransforms), lgidLanguage);
139 return ERROR_CALL_NOT_IMPLEMENTED;
140 }
141
142 UINT WINAPI MsiAdvertiseProductW(LPCWSTR szPackagePath, LPCWSTR szScriptfilePath,
143 LPCWSTR szTransforms, LANGID lgidLanguage)
144 {
145 FIXME("%s %s %s %08x\n",debugstr_w(szPackagePath),
146 debugstr_w(szScriptfilePath), debugstr_w(szTransforms), lgidLanguage);
147 return ERROR_CALL_NOT_IMPLEMENTED;
148 }
149
150 UINT WINAPI MsiAdvertiseProductExA(LPCSTR szPackagePath, LPCSTR szScriptfilePath,
151 LPCSTR szTransforms, LANGID lgidLanguage, DWORD dwPlatform, DWORD dwOptions)
152 {
153 FIXME("%s %s %s %08x %08x %08x\n", debugstr_a(szPackagePath),
154 debugstr_a(szScriptfilePath), debugstr_a(szTransforms),
155 lgidLanguage, dwPlatform, dwOptions);
156 return ERROR_CALL_NOT_IMPLEMENTED;
157 }
158
159 UINT WINAPI MsiAdvertiseProductExW( LPCWSTR szPackagePath, LPCWSTR szScriptfilePath,
160 LPCWSTR szTransforms, LANGID lgidLanguage, DWORD dwPlatform, DWORD dwOptions)
161 {
162 FIXME("%s %s %s %08x %08x %08x\n", debugstr_w(szPackagePath),
163 debugstr_w(szScriptfilePath), debugstr_w(szTransforms),
164 lgidLanguage, dwPlatform, dwOptions);
165 return ERROR_CALL_NOT_IMPLEMENTED;
166 }
167
168 UINT WINAPI MsiInstallProductA(LPCSTR szPackagePath, LPCSTR szCommandLine)
169 {
170 LPWSTR szwPath = NULL, szwCommand = NULL;
171 UINT r = ERROR_OUTOFMEMORY;
172
173 TRACE("%s %s\n",debugstr_a(szPackagePath), debugstr_a(szCommandLine));
174
175 if( szPackagePath )
176 {
177 szwPath = strdupAtoW( szPackagePath );
178 if( !szwPath )
179 goto end;
180 }
181
182 if( szCommandLine )
183 {
184 szwCommand = strdupAtoW( szCommandLine );
185 if( !szwCommand )
186 goto end;
187 }
188
189 r = MsiInstallProductW( szwPath, szwCommand );
190
191 end:
192 msi_free( szwPath );
193 msi_free( szwCommand );
194
195 return r;
196 }
197
198 UINT WINAPI MsiInstallProductW(LPCWSTR szPackagePath, LPCWSTR szCommandLine)
199 {
200 MSIPACKAGE *package = NULL;
201 UINT r;
202
203 TRACE("%s %s\n",debugstr_w(szPackagePath), debugstr_w(szCommandLine));
204
205 r = MSI_OpenPackageW( szPackagePath, &package );
206 if (r == ERROR_SUCCESS)
207 {
208 r = MSI_InstallPackage( package, szPackagePath, szCommandLine );
209 msiobj_release( &package->hdr );
210 }
211
212 return r;
213 }
214
215 UINT WINAPI MsiReinstallProductA(LPCSTR szProduct, DWORD dwReinstallMode)
216 {
217 FIXME("%s %08x\n", debugstr_a(szProduct), dwReinstallMode);
218 return ERROR_CALL_NOT_IMPLEMENTED;
219 }
220
221 UINT WINAPI MsiReinstallProductW(LPCWSTR szProduct, DWORD dwReinstallMode)
222 {
223 FIXME("%s %08x\n", debugstr_w(szProduct), dwReinstallMode);
224 return ERROR_CALL_NOT_IMPLEMENTED;
225 }
226
227 UINT WINAPI MsiApplyPatchA(LPCSTR szPatchPackage, LPCSTR szInstallPackage,
228 INSTALLTYPE eInstallType, LPCSTR szCommandLine)
229 {
230 LPWSTR patch_package = NULL;
231 LPWSTR install_package = NULL;
232 LPWSTR command_line = NULL;
233 UINT r = ERROR_OUTOFMEMORY;
234
235 TRACE("%s %s %d %s\n", debugstr_a(szPatchPackage), debugstr_a(szInstallPackage),
236 eInstallType, debugstr_a(szCommandLine));
237
238 if (szPatchPackage && !(patch_package = strdupAtoW(szPatchPackage)))
239 goto done;
240
241 if (szInstallPackage && !(install_package = strdupAtoW(szInstallPackage)))
242 goto done;
243
244 if (szCommandLine && !(command_line = strdupAtoW(szCommandLine)))
245 goto done;
246
247 r = MsiApplyPatchW(patch_package, install_package, eInstallType, command_line);
248
249 done:
250 msi_free(patch_package);
251 msi_free(install_package);
252 msi_free(command_line);
253
254 return r;
255 }
256
257 UINT WINAPI MsiApplyPatchW(LPCWSTR szPatchPackage, LPCWSTR szInstallPackage,
258 INSTALLTYPE eInstallType, LPCWSTR szCommandLine)
259 {
260 MSIHANDLE patch, info;
261 UINT r, type;
262 DWORD size = 0;
263 LPCWSTR cmd_ptr = szCommandLine;
264 LPWSTR beg, end;
265 LPWSTR cmd = NULL, codes = NULL;
266
267 static const WCHAR space[] = {' ',0};
268 static const WCHAR patcheq[] = {'P','A','T','C','H','=',0};
269 static WCHAR empty[] = {0};
270
271 TRACE("%s %s %d %s\n", debugstr_w(szPatchPackage), debugstr_w(szInstallPackage),
272 eInstallType, debugstr_w(szCommandLine));
273
274 if (szInstallPackage || eInstallType == INSTALLTYPE_NETWORK_IMAGE ||
275 eInstallType == INSTALLTYPE_SINGLE_INSTANCE)
276 {
277 FIXME("Only reading target products from patch\n");
278 return ERROR_CALL_NOT_IMPLEMENTED;
279 }
280
281 r = MsiOpenDatabaseW(szPatchPackage, MSIDBOPEN_READONLY, &patch);
282 if (r != ERROR_SUCCESS)
283 return r;
284
285 r = MsiGetSummaryInformationW(patch, NULL, 0, &info);
286 if (r != ERROR_SUCCESS)
287 goto done;
288
289 r = MsiSummaryInfoGetPropertyW(info, PID_TEMPLATE, &type, NULL, NULL, empty, &size);
290 if (r != ERROR_MORE_DATA || !size || type != VT_LPSTR)
291 {
292 ERR("Failed to read product codes from patch\n");
293 goto done;
294 }
295
296 codes = msi_alloc(++size * sizeof(WCHAR));
297 if (!codes)
298 {
299 r = ERROR_OUTOFMEMORY;
300 goto done;
301 }
302
303 r = MsiSummaryInfoGetPropertyW(info, PID_TEMPLATE, &type, NULL, NULL, codes, &size);
304 if (r != ERROR_SUCCESS)
305 goto done;
306
307 if (!szCommandLine)
308 cmd_ptr = empty;
309
310 size = lstrlenW(cmd_ptr) + lstrlenW(patcheq) + lstrlenW(szPatchPackage) + 1;
311 cmd = msi_alloc(size * sizeof(WCHAR));
312 if (!cmd)
313 {
314 r = ERROR_OUTOFMEMORY;
315 goto done;
316 }
317
318 lstrcpyW(cmd, cmd_ptr);
319 if (szCommandLine) lstrcatW(cmd, space);
320 lstrcatW(cmd, patcheq);
321 lstrcatW(cmd, szPatchPackage);
322
323 beg = codes;
324 while ((end = strchrW(beg, '}')))
325 {
326 *(end + 1) = '\0';
327
328 r = MsiConfigureProductExW(beg, INSTALLLEVEL_DEFAULT, INSTALLSTATE_DEFAULT, cmd);
329 if (r != ERROR_SUCCESS)
330 goto done;
331
332 beg = end + 2;
333 }
334
335 done:
336 msi_free(cmd);
337 msi_free(codes);
338
339 MsiCloseHandle(info);
340 MsiCloseHandle(patch);
341
342 return r;
343 }
344
345 UINT WINAPI MsiConfigureProductExW(LPCWSTR szProduct, int iInstallLevel,
346 INSTALLSTATE eInstallState, LPCWSTR szCommandLine)
347 {
348 MSIPACKAGE* package = NULL;
349 UINT r;
350 DWORD sz;
351 WCHAR sourcepath[MAX_PATH];
352 WCHAR filename[MAX_PATH];
353 static const WCHAR szInstalled[] = {
354 ' ','I','n','s','t','a','l','l','e','d','=','1',0};
355 LPWSTR commandline;
356
357 TRACE("%s %d %d %s\n",debugstr_w(szProduct), iInstallLevel, eInstallState,
358 debugstr_w(szCommandLine));
359
360 if (eInstallState != INSTALLSTATE_LOCAL &&
361 eInstallState != INSTALLSTATE_DEFAULT)
362 {
363 FIXME("Not implemented for anything other than local installs\n");
364 return ERROR_CALL_NOT_IMPLEMENTED;
365 }
366
367 sz = sizeof(sourcepath);
368 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERUNMANAGED,
369 MSICODE_PRODUCT, INSTALLPROPERTY_LASTUSEDSOURCEW, sourcepath,
370 &sz);
371
372 sz = sizeof(filename);
373 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERUNMANAGED,
374 MSICODE_PRODUCT, INSTALLPROPERTY_PACKAGENAMEW, filename, &sz);
375
376 lstrcatW(sourcepath,filename);
377
378 /*
379 * ok 1, we need to find the msi file for this product.
380 * 2, find the source dir for the files
381 * 3, do the configure/install.
382 * 4, cleanupany runonce entry.
383 */
384
385 r = MSI_OpenProductW( szProduct, &package );
386 if (r != ERROR_SUCCESS)
387 return r;
388
389 sz = lstrlenW(szInstalled) + 1;
390
391 if (szCommandLine)
392 sz += lstrlenW(szCommandLine);
393
394 commandline = msi_alloc(sz * sizeof(WCHAR));
395 if (!commandline )
396 {
397 r = ERROR_OUTOFMEMORY;
398 goto end;
399 }
400
401 commandline[0] = 0;
402 if (szCommandLine)
403 lstrcpyW(commandline,szCommandLine);
404
405 if (MsiQueryProductStateW(szProduct) != INSTALLSTATE_UNKNOWN)
406 lstrcatW(commandline,szInstalled);
407
408 r = MSI_InstallPackage( package, sourcepath, commandline );
409
410 msi_free(commandline);
411
412 end:
413 msiobj_release( &package->hdr );
414
415 return r;
416 }
417
418 UINT WINAPI MsiConfigureProductExA(LPCSTR szProduct, int iInstallLevel,
419 INSTALLSTATE eInstallState, LPCSTR szCommandLine)
420 {
421 LPWSTR szwProduct = NULL;
422 LPWSTR szwCommandLine = NULL;
423 UINT r = ERROR_OUTOFMEMORY;
424
425 if( szProduct )
426 {
427 szwProduct = strdupAtoW( szProduct );
428 if( !szwProduct )
429 goto end;
430 }
431
432 if( szCommandLine)
433 {
434 szwCommandLine = strdupAtoW( szCommandLine );
435 if( !szwCommandLine)
436 goto end;
437 }
438
439 r = MsiConfigureProductExW( szwProduct, iInstallLevel, eInstallState,
440 szwCommandLine );
441 end:
442 msi_free( szwProduct );
443 msi_free( szwCommandLine);
444
445 return r;
446 }
447
448 UINT WINAPI MsiConfigureProductA(LPCSTR szProduct, int iInstallLevel,
449 INSTALLSTATE eInstallState)
450 {
451 LPWSTR szwProduct = NULL;
452 UINT r;
453
454 TRACE("%s %d %d\n",debugstr_a(szProduct), iInstallLevel, eInstallState);
455
456 if( szProduct )
457 {
458 szwProduct = strdupAtoW( szProduct );
459 if( !szwProduct )
460 return ERROR_OUTOFMEMORY;
461 }
462
463 r = MsiConfigureProductW( szwProduct, iInstallLevel, eInstallState );
464 msi_free( szwProduct );
465
466 return r;
467 }
468
469 UINT WINAPI MsiConfigureProductW(LPCWSTR szProduct, int iInstallLevel,
470 INSTALLSTATE eInstallState)
471 {
472 return MsiConfigureProductExW(szProduct, iInstallLevel, eInstallState, NULL);
473 }
474
475 UINT WINAPI MsiGetProductCodeA(LPCSTR szComponent, LPSTR szBuffer)
476 {
477 LPWSTR szwComponent = NULL;
478 UINT r;
479 WCHAR szwBuffer[GUID_SIZE];
480
481 TRACE("%s %s\n",debugstr_a(szComponent), debugstr_a(szBuffer));
482
483 if( szComponent )
484 {
485 szwComponent = strdupAtoW( szComponent );
486 if( !szwComponent )
487 return ERROR_OUTOFMEMORY;
488 }
489
490 *szwBuffer = '\0';
491 r = MsiGetProductCodeW( szwComponent, szwBuffer );
492
493 if(*szwBuffer)
494 WideCharToMultiByte(CP_ACP, 0, szwBuffer, -1, szBuffer, GUID_SIZE, NULL, NULL);
495
496 msi_free( szwComponent );
497
498 return r;
499 }
500
501 UINT WINAPI MsiGetProductCodeW(LPCWSTR szComponent, LPWSTR szBuffer)
502 {
503 UINT rc, index;
504 HKEY compkey, prodkey;
505 WCHAR squished_comp[GUID_SIZE];
506 WCHAR squished_prod[GUID_SIZE];
507 DWORD sz = GUID_SIZE;
508
509 TRACE("%s %p\n", debugstr_w(szComponent), szBuffer);
510
511 if (!szComponent || !*szComponent)
512 return ERROR_INVALID_PARAMETER;
513
514 if (!squash_guid(szComponent, squished_comp))
515 return ERROR_INVALID_PARAMETER;
516
517 if (MSIREG_OpenUserDataComponentKey(szComponent, &compkey, FALSE) != ERROR_SUCCESS &&
518 MSIREG_OpenLocalSystemComponentKey(szComponent, &compkey, FALSE) != ERROR_SUCCESS)
519 {
520 return ERROR_UNKNOWN_COMPONENT;
521 }
522
523 rc = RegEnumValueW(compkey, 0, squished_prod, &sz, NULL, NULL, NULL, NULL);
524 if (rc != ERROR_SUCCESS)
525 {
526 RegCloseKey(compkey);
527 return ERROR_UNKNOWN_COMPONENT;
528 }
529
530 /* check simple case, only one product */
531 rc = RegEnumValueW(compkey, 1, squished_prod, &sz, NULL, NULL, NULL, NULL);
532 if (rc == ERROR_NO_MORE_ITEMS)
533 {
534 rc = ERROR_SUCCESS;
535 goto done;
536 }
537
538 index = 0;
539 while ((rc = RegEnumValueW(compkey, index, squished_prod, &sz,
540 NULL, NULL, NULL, NULL)) != ERROR_NO_MORE_ITEMS)
541 {
542 index++;
543 sz = GUID_SIZE;
544 unsquash_guid(squished_prod, szBuffer);
545
546 if (MSIREG_OpenLocalManagedProductKey(szBuffer, &prodkey, FALSE) == ERROR_SUCCESS ||
547 MSIREG_OpenUserProductsKey(szBuffer, &prodkey, FALSE) == ERROR_SUCCESS ||
548 MSIREG_OpenLocalClassesProductKey(szBuffer, &prodkey, FALSE) == ERROR_SUCCESS)
549 {
550 RegCloseKey(prodkey);
551 rc = ERROR_SUCCESS;
552 goto done;
553 }
554 }
555
556 rc = ERROR_INSTALL_FAILURE;
557
558 done:
559 RegCloseKey(compkey);
560 unsquash_guid(squished_prod, szBuffer);
561 return rc;
562 }
563
564 static LPWSTR msi_reg_get_value(HKEY hkey, LPCWSTR name, DWORD *type)
565 {
566 DWORD dval;
567 LONG res;
568 WCHAR temp[20];
569
570 static const WCHAR format[] = {'%','d',0};
571
572 res = RegQueryValueExW(hkey, name, NULL, type, NULL, NULL);
573 if (res != ERROR_SUCCESS)
574 return NULL;
575
576 if (*type == REG_SZ)
577 return msi_reg_get_val_str(hkey, name);
578
579 if (!msi_reg_get_val_dword(hkey, name, &dval))
580 return NULL;
581
582 sprintfW(temp, format, dval);
583 return strdupW(temp);
584 }
585
586 static UINT WINAPI MSI_GetProductInfo(LPCWSTR szProduct, LPCWSTR szAttribute,
587 awstring *szValue, LPDWORD pcchValueBuf)
588 {
589 UINT r = ERROR_UNKNOWN_PROPERTY;
590 HKEY prodkey, userdata, source;
591 LPWSTR val = NULL;
592 WCHAR squished_pc[GUID_SIZE];
593 WCHAR packagecode[GUID_SIZE];
594 BOOL classes = FALSE;
595 BOOL badconfig = FALSE;
596 LONG res;
597 DWORD save, type = REG_NONE;
598
599 static WCHAR empty[] = {0};
600 static const WCHAR sourcelist[] = {
601 'S','o','u','r','c','e','L','i','s','t',0};
602 static const WCHAR display_name[] = {
603 'D','i','s','p','l','a','y','N','a','m','e',0};
604 static const WCHAR display_version[] = {
605 'D','i','s','p','l','a','y','V','e','r','s','i','o','n',0};
606 static const WCHAR assignment[] = {
607 'A','s','s','i','g','n','m','e','n','t',0};
608
609 TRACE("%s %s %p %p\n", debugstr_w(szProduct),
610 debugstr_w(szAttribute), szValue, pcchValueBuf);
611
612 if ((szValue->str.w && !pcchValueBuf) || !szProduct || !szAttribute)
613 return ERROR_INVALID_PARAMETER;
614
615 if (!squash_guid(szProduct, squished_pc))
616 return ERROR_INVALID_PARAMETER;
617
618 r = MSIREG_OpenLocalManagedProductKey(szProduct, &prodkey, FALSE);
619 if (r != ERROR_SUCCESS)
620 {
621 r = MSIREG_OpenUserProductsKey(szProduct, &prodkey, FALSE);
622 if (r != ERROR_SUCCESS)
623 {
624 r = MSIREG_OpenLocalClassesProductKey(szProduct, &prodkey, FALSE);
625 if (r == ERROR_SUCCESS)
626 classes = TRUE;
627 }
628 }
629
630 if (classes)
631 MSIREG_OpenLocalSystemProductKey(szProduct, &userdata, FALSE);
632 else
633 MSIREG_OpenCurrentUserInstallProps(szProduct, &userdata, FALSE);
634
635 if (!lstrcmpW(szAttribute, INSTALLPROPERTY_HELPLINKW) ||
636 !lstrcmpW(szAttribute, INSTALLPROPERTY_HELPTELEPHONEW) ||
637 !lstrcmpW(szAttribute, INSTALLPROPERTY_INSTALLDATEW) ||
638 !lstrcmpW(szAttribute, INSTALLPROPERTY_INSTALLEDPRODUCTNAMEW) ||
639 !lstrcmpW(szAttribute, INSTALLPROPERTY_INSTALLLOCATIONW) ||
640 !lstrcmpW(szAttribute, INSTALLPROPERTY_INSTALLSOURCEW) ||
641 !lstrcmpW(szAttribute, INSTALLPROPERTY_LOCALPACKAGEW) ||
642 !lstrcmpW(szAttribute, INSTALLPROPERTY_PUBLISHERW) ||
643 !lstrcmpW(szAttribute, INSTALLPROPERTY_URLINFOABOUTW) ||
644 !lstrcmpW(szAttribute, INSTALLPROPERTY_URLUPDATEINFOW) ||
645 !lstrcmpW(szAttribute, INSTALLPROPERTY_VERSIONMINORW) ||
646 !lstrcmpW(szAttribute, INSTALLPROPERTY_VERSIONMAJORW) ||
647 !lstrcmpW(szAttribute, INSTALLPROPERTY_VERSIONSTRINGW) ||
648 !lstrcmpW(szAttribute, INSTALLPROPERTY_PRODUCTIDW) ||
649 !lstrcmpW(szAttribute, INSTALLPROPERTY_REGCOMPANYW) ||
650 !lstrcmpW(szAttribute, INSTALLPROPERTY_REGOWNERW))
651 {
652 if (!prodkey)
653 {
654 r = ERROR_UNKNOWN_PRODUCT;
655 goto done;
656 }
657
658 if (!userdata)
659 return ERROR_UNKNOWN_PROPERTY;
660
661 if (!lstrcmpW(szAttribute, INSTALLPROPERTY_INSTALLEDPRODUCTNAMEW))
662 szAttribute = display_name;
663 else if (!lstrcmpW(szAttribute, INSTALLPROPERTY_VERSIONSTRINGW))
664 szAttribute = display_version;
665
666 val = msi_reg_get_value(userdata, szAttribute, &type);
667 if (!val)
668 val = empty;
669 }
670 else if (!lstrcmpW(szAttribute, INSTALLPROPERTY_INSTANCETYPEW) ||
671 !lstrcmpW(szAttribute, INSTALLPROPERTY_TRANSFORMSW) ||
672 !lstrcmpW(szAttribute, INSTALLPROPERTY_LANGUAGEW) ||
673 !lstrcmpW(szAttribute, INSTALLPROPERTY_PRODUCTNAMEW) ||
674 !lstrcmpW(szAttribute, INSTALLPROPERTY_ASSIGNMENTTYPEW) ||
675 !lstrcmpW(szAttribute, INSTALLPROPERTY_PACKAGECODEW) ||
676 !lstrcmpW(szAttribute, INSTALLPROPERTY_VERSIONW) ||
677 !lstrcmpW(szAttribute, INSTALLPROPERTY_PRODUCTICONW) ||
678 !lstrcmpW(szAttribute, INSTALLPROPERTY_PACKAGENAMEW) ||
679 !lstrcmpW(szAttribute, INSTALLPROPERTY_AUTHORIZED_LUA_APPW))
680 {
681 if (!prodkey)
682 {
683 r = ERROR_UNKNOWN_PRODUCT;
684 goto done;
685 }
686
687 if (!lstrcmpW(szAttribute, INSTALLPROPERTY_ASSIGNMENTTYPEW))
688 szAttribute = assignment;
689
690 if (!lstrcmpW(szAttribute, INSTALLPROPERTY_PACKAGENAMEW))
691 {
692 res = RegOpenKeyW(prodkey, sourcelist, &source);
693 if (res == ERROR_SUCCESS)
694 val = msi_reg_get_value(source, szAttribute, &type);
695
696 RegCloseKey(source);
697 }
698 else
699 {
700 val = msi_reg_get_value(prodkey, szAttribute, &type);
701 if (!val)
702 val = empty;
703 }
704
705 if (val != empty && type != REG_DWORD &&
706 !lstrcmpW(szAttribute, INSTALLPROPERTY_PACKAGECODEW))
707 {
708 if (lstrlenW(val) != SQUISH_GUID_SIZE - 1)
709 badconfig = TRUE;
710 else
711 {
712 unsquash_guid(val, packagecode);
713 msi_free(val);
714 val = strdupW(packagecode);
715 }
716 }
717 }
718
719 if (!val)
720 {
721 r = ERROR_UNKNOWN_PROPERTY;
722 goto done;
723 }
724
725 if (pcchValueBuf)
726 {
727 save = *pcchValueBuf;
728
729 if (lstrlenW(val) < *pcchValueBuf)
730 r = msi_strcpy_to_awstring(val, szValue, pcchValueBuf);
731 else if (szValue->str.a || szValue->str.w)
732 r = ERROR_MORE_DATA;
733
734 if (!badconfig)
735 *pcchValueBuf = lstrlenW(val);
736 else if (r == ERROR_SUCCESS)
737 {
738 *pcchValueBuf = save;
739 r = ERROR_BAD_CONFIGURATION;
740 }
741 }
742 else if (badconfig)
743 r = ERROR_BAD_CONFIGURATION;
744
745 if (val != empty)
746 msi_free(val);
747
748 done:
749 RegCloseKey(prodkey);
750 RegCloseKey(userdata);
751 return r;
752 }
753
754 UINT WINAPI MsiGetProductInfoA(LPCSTR szProduct, LPCSTR szAttribute,
755 LPSTR szBuffer, LPDWORD pcchValueBuf)
756 {
757 LPWSTR szwProduct, szwAttribute = NULL;
758 UINT r = ERROR_OUTOFMEMORY;
759 awstring buffer;
760
761 TRACE("%s %s %p %p\n", debugstr_a(szProduct), debugstr_a(szAttribute),
762 szBuffer, pcchValueBuf);
763
764 szwProduct = strdupAtoW( szProduct );
765 if( szProduct && !szwProduct )
766 goto end;
767
768 szwAttribute = strdupAtoW( szAttribute );
769 if( szAttribute && !szwAttribute )
770 goto end;
771
772 buffer.unicode = FALSE;
773 buffer.str.a = szBuffer;
774
775 r = MSI_GetProductInfo( szwProduct, szwAttribute,
776 &buffer, pcchValueBuf );
777
778 end:
779 msi_free( szwProduct );
780 msi_free( szwAttribute );
781
782 return r;
783 }
784
785 UINT WINAPI MsiGetProductInfoW(LPCWSTR szProduct, LPCWSTR szAttribute,
786 LPWSTR szBuffer, LPDWORD pcchValueBuf)
787 {
788 awstring buffer;
789
790 TRACE("%s %s %p %p\n", debugstr_w(szProduct), debugstr_w(szAttribute),
791 szBuffer, pcchValueBuf);
792
793 buffer.unicode = TRUE;
794 buffer.str.w = szBuffer;
795
796 return MSI_GetProductInfo( szProduct, szAttribute,
797 &buffer, pcchValueBuf );
798 }
799
800 UINT WINAPI MsiGetProductInfoExA(LPCSTR szProductCode, LPCSTR szUserSid,
801 MSIINSTALLCONTEXT dwContext, LPCSTR szProperty,
802 LPSTR szValue, LPDWORD pcchValue)
803 {
804 LPWSTR product = NULL;
805 LPWSTR usersid = NULL;
806 LPWSTR property = NULL;
807 LPWSTR value = NULL;
808 DWORD len = 0;
809 UINT r;
810
811 TRACE("(%s, %s, %d, %s, %p, %p)\n", debugstr_a(szProductCode),
812 debugstr_a(szUserSid), dwContext, debugstr_a(szProperty),
813 szValue, pcchValue);
814
815 if (szValue && !pcchValue)
816 return ERROR_INVALID_PARAMETER;
817
818 if (szProductCode) product = strdupAtoW(szProductCode);
819 if (szUserSid) usersid = strdupAtoW(szUserSid);
820 if (szProperty) property = strdupAtoW(szProperty);
821
822 r = MsiGetProductInfoExW(product, usersid, dwContext, property,
823 NULL, &len);
824 if (r != ERROR_SUCCESS)
825 goto done;
826
827 value = msi_alloc(++len * sizeof(WCHAR));
828 if (!value)
829 {
830 r = ERROR_OUTOFMEMORY;
831 goto done;
832 }
833
834 r = MsiGetProductInfoExW(product, usersid, dwContext, property,
835 value, &len);
836 if (r != ERROR_SUCCESS)
837 goto done;
838
839 if (!pcchValue)
840 goto done;
841
842 len = WideCharToMultiByte(CP_ACP, 0, value, -1, NULL, 0, NULL, NULL);
843 if (*pcchValue >= len)
844 WideCharToMultiByte(CP_ACP, 0, value, -1, szValue, len, NULL, NULL);
845 else if (szValue)
846 {
847 r = ERROR_MORE_DATA;
848 if (*pcchValue > 0)
849 *szValue = '\0';
850 }
851
852 if (*pcchValue <= len || !szValue)
853 len = len * sizeof(WCHAR) - 1;
854
855 *pcchValue = len - 1;
856
857 done:
858 msi_free(product);
859 msi_free(usersid);
860 msi_free(property);
861 msi_free(value);
862
863 return r;
864 }
865
866 static UINT msi_copy_outval(LPWSTR val, LPWSTR out, LPDWORD size)
867 {
868 UINT r;
869
870 if (!val)
871 return ERROR_UNKNOWN_PROPERTY;
872
873 if (out)
874 {
875 if (lstrlenW(val) >= *size)
876 {
877 r = ERROR_MORE_DATA;
878 if (*size > 0)
879 *out = '\0';
880 }
881 else
882 lstrcpyW(out, val);
883 }
884
885 if (size)
886 *size = lstrlenW(val);
887
888 return ERROR_SUCCESS;
889 }
890
891 UINT WINAPI MsiGetProductInfoExW(LPCWSTR szProductCode, LPCWSTR szUserSid,
892 MSIINSTALLCONTEXT dwContext, LPCWSTR szProperty,
893 LPWSTR szValue, LPDWORD pcchValue)
894 {
895 WCHAR squished_pc[GUID_SIZE];
896 LPWSTR val = NULL;
897 LPCWSTR package = NULL;
898 HKEY props = NULL, prod;
899 HKEY classes = NULL, managed;
900 HKEY hkey = NULL;
901 DWORD type;
902 UINT r = ERROR_UNKNOWN_PRODUCT;
903
904 static const WCHAR one[] = {'1',0};
905 static const WCHAR five[] = {'5',0};
906 static const WCHAR empty[] = {0};
907 static const WCHAR displayname[] = {
908 'D','i','s','p','l','a','y','N','a','m','e',0};
909 static const WCHAR displayversion[] = {
910 'D','i','s','p','l','a','y','V','e','r','s','i','o','n',0};
911 static const WCHAR managed_local_package[] = {
912 'M','a','n','a','g','e','d','L','o','c','a','l',
913 'P','a','c','k','a','g','e',0};
914
915 TRACE("(%s, %s, %d, %s, %p, %p)\n", debugstr_w(szProductCode),
916 debugstr_w(szUserSid), dwContext, debugstr_w(szProperty),
917 szValue, pcchValue);
918
919 if (!szProductCode || !squash_guid(szProductCode, squished_pc))
920 return ERROR_INVALID_PARAMETER;
921
922 if (szValue && !pcchValue)
923 return ERROR_INVALID_PARAMETER;
924
925 if (dwContext != MSIINSTALLCONTEXT_USERUNMANAGED &&
926 dwContext != MSIINSTALLCONTEXT_USERMANAGED &&
927 dwContext != MSIINSTALLCONTEXT_MACHINE)
928 return ERROR_INVALID_PARAMETER;
929
930 if (!szProperty || !*szProperty)
931 return ERROR_INVALID_PARAMETER;
932
933 if (dwContext == MSIINSTALLCONTEXT_MACHINE && szUserSid)
934 return ERROR_INVALID_PARAMETER;
935
936 MSIREG_OpenLocalManagedProductKey(szProductCode, &managed, FALSE);
937 MSIREG_OpenUserProductsKey(szProductCode, &prod, FALSE);
938
939 if (dwContext == MSIINSTALLCONTEXT_USERUNMANAGED)
940 {
941 package = INSTALLPROPERTY_LOCALPACKAGEW;
942 MSIREG_OpenCurrentUserInstallProps(szProductCode, &props, FALSE);
943
944 if (!props && !prod)
945 goto done;
946 }
947 else if (dwContext == MSIINSTALLCONTEXT_USERMANAGED)
948 {
949 package = managed_local_package;
950 MSIREG_OpenCurrentUserInstallProps(szProductCode, &props, FALSE);
951
952 if (!props && !managed)
953 goto done;
954 }
955 else if (dwContext == MSIINSTALLCONTEXT_MACHINE)
956 {
957 package = INSTALLPROPERTY_LOCALPACKAGEW;
958 MSIREG_OpenLocalSystemProductKey(szProductCode, &props, FALSE);
959 MSIREG_OpenLocalClassesProductKey(szProductCode, &classes, FALSE);
960
961 if (!props && !classes)
962 goto done;
963 }
964
965 if (!lstrcmpW(szProperty, INSTALLPROPERTY_HELPLINKW) ||
966 !lstrcmpW(szProperty, INSTALLPROPERTY_HELPTELEPHONEW) ||
967 !lstrcmpW(szProperty, INSTALLPROPERTY_INSTALLDATEW) ||
968 !lstrcmpW(szProperty, INSTALLPROPERTY_INSTALLEDPRODUCTNAMEW) ||
969 !lstrcmpW(szProperty, INSTALLPROPERTY_INSTALLLOCATIONW) ||
970 !lstrcmpW(szProperty, INSTALLPROPERTY_INSTALLSOURCEW) ||
971 !lstrcmpW(szProperty, INSTALLPROPERTY_LOCALPACKAGEW) ||
972 !lstrcmpW(szProperty, INSTALLPROPERTY_PUBLISHERW) ||
973 !lstrcmpW(szProperty, INSTALLPROPERTY_URLINFOABOUTW) ||
974 !lstrcmpW(szProperty, INSTALLPROPERTY_URLUPDATEINFOW) ||
975 !lstrcmpW(szProperty, INSTALLPROPERTY_VERSIONMINORW) ||
976 !lstrcmpW(szProperty, INSTALLPROPERTY_VERSIONMAJORW) ||
977 !lstrcmpW(szProperty, INSTALLPROPERTY_VERSIONSTRINGW) ||
978 !lstrcmpW(szProperty, INSTALLPROPERTY_PRODUCTIDW) ||
979 !lstrcmpW(szProperty, INSTALLPROPERTY_REGCOMPANYW) ||
980 !lstrcmpW(szProperty, INSTALLPROPERTY_REGOWNERW) ||
981 !lstrcmpW(szProperty, INSTALLPROPERTY_INSTANCETYPEW))
982 {
983 val = msi_reg_get_value(props, package, &type);
984 if (!val)
985 {
986 if (prod || classes)
987 r = ERROR_UNKNOWN_PROPERTY;
988
989 goto done;
990 }
991
992 msi_free(val);
993
994 if (!lstrcmpW(szProperty, INSTALLPROPERTY_INSTALLEDPRODUCTNAMEW))
995 szProperty = displayname;
996 else if (!lstrcmpW(szProperty, INSTALLPROPERTY_VERSIONSTRINGW))
997 szProperty = displayversion;
998
999 val = msi_reg_get_value(props, szProperty, &type);
1000 if (!val)
1001 val = strdupW(empty);
1002
1003 r = msi_copy_outval(val, szValue, pcchValue);
1004 }
1005 else if (!lstrcmpW(szProperty, INSTALLPROPERTY_TRANSFORMSW) ||
1006 !lstrcmpW(szProperty, INSTALLPROPERTY_LANGUAGEW) ||
1007 !lstrcmpW(szProperty, INSTALLPROPERTY_PRODUCTNAMEW) ||
1008 !lstrcmpW(szProperty, INSTALLPROPERTY_PACKAGECODEW) ||
1009 !lstrcmpW(szProperty, INSTALLPROPERTY_VERSIONW) ||
1010 !lstrcmpW(szProperty, INSTALLPROPERTY_PRODUCTICONW) ||
1011 !lstrcmpW(szProperty, INSTALLPROPERTY_PACKAGENAMEW) ||
1012 !lstrcmpW(szProperty, INSTALLPROPERTY_AUTHORIZED_LUA_APPW))
1013 {
1014 if (!prod && !classes)
1015 goto done;
1016
1017 if (dwContext == MSIINSTALLCONTEXT_USERUNMANAGED)
1018 hkey = prod;
1019 else if (dwContext == MSIINSTALLCONTEXT_USERMANAGED)
1020 hkey = managed;
1021 else if (dwContext == MSIINSTALLCONTEXT_MACHINE)
1022 hkey = classes;
1023
1024 val = msi_reg_get_value(hkey, szProperty, &type);
1025 if (!val)
1026 val = strdupW(empty);
1027
1028 r = msi_copy_outval(val, szValue, pcchValue);
1029 }
1030 else if (!lstrcmpW(szProperty, INSTALLPROPERTY_PRODUCTSTATEW))
1031 {
1032 if (dwContext == MSIINSTALLCONTEXT_MACHINE)
1033 {
1034 if (props)
1035 {
1036 val = msi_reg_get_value(props, package, &type);
1037 if (!val)
1038 goto done;
1039
1040 msi_free(val);
1041 val = strdupW(five);
1042 }
1043 else
1044 val = strdupW(one);
1045
1046 r = msi_copy_outval(val, szValue, pcchValue);
1047 goto done;
1048 }
1049 else if (props && (val = msi_reg_get_value(props, package, &type)))
1050 {
1051 msi_free(val);
1052 val = strdupW(five);
1053 r = msi_copy_outval(val, szValue, pcchValue);
1054 goto done;
1055 }
1056
1057 if (prod || managed)
1058 val = strdupW(one);
1059 else
1060 goto done;
1061
1062 r = msi_copy_outval(val, szValue, pcchValue);
1063 }
1064 else if (!lstrcmpW(szProperty, INSTALLPROPERTY_ASSIGNMENTTYPEW))
1065 {
1066 if (!prod && !classes)
1067 goto done;
1068
1069 /* FIXME */
1070 val = strdupW(empty);
1071 r = msi_copy_outval(val, szValue, pcchValue);
1072 }
1073 else
1074 r = ERROR_UNKNOWN_PROPERTY;
1075
1076 done:
1077 RegCloseKey(props);
1078 RegCloseKey(prod);
1079 RegCloseKey(managed);
1080 RegCloseKey(classes);
1081 msi_free(val);
1082
1083 return r;
1084 }
1085
1086 UINT WINAPI MsiEnableLogA(DWORD dwLogMode, LPCSTR szLogFile, DWORD attributes)
1087 {
1088 LPWSTR szwLogFile = NULL;
1089 UINT r;
1090
1091 TRACE("%08x %s %08x\n", dwLogMode, debugstr_a(szLogFile), attributes);
1092
1093 if( szLogFile )
1094 {
1095 szwLogFile = strdupAtoW( szLogFile );
1096 if( !szwLogFile )
1097 return ERROR_OUTOFMEMORY;
1098 }
1099 r = MsiEnableLogW( dwLogMode, szwLogFile, attributes );
1100 msi_free( szwLogFile );
1101 return r;
1102 }
1103
1104 UINT WINAPI MsiEnableLogW(DWORD dwLogMode, LPCWSTR szLogFile, DWORD attributes)
1105 {
1106 HANDLE file = INVALID_HANDLE_VALUE;
1107
1108 TRACE("%08x %s %08x\n", dwLogMode, debugstr_w(szLogFile), attributes);
1109
1110 if (szLogFile)
1111 {
1112 lstrcpyW(gszLogFile,szLogFile);
1113 if (!(attributes & INSTALLLOGATTRIBUTES_APPEND))
1114 DeleteFileW(szLogFile);
1115 file = CreateFileW(szLogFile, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
1116 FILE_ATTRIBUTE_NORMAL, NULL);
1117 if (file != INVALID_HANDLE_VALUE)
1118 CloseHandle(file);
1119 else
1120 ERR("Unable to enable log %s\n",debugstr_w(szLogFile));
1121 }
1122 else
1123 gszLogFile[0] = '\0';
1124
1125 return ERROR_SUCCESS;
1126 }
1127
1128 UINT WINAPI MsiEnumComponentCostsW(MSIHANDLE hInstall, LPCWSTR szComponent,
1129 DWORD dwIndex, INSTALLSTATE iState,
1130 LPWSTR lpDriveBuf, DWORD *pcchDriveBuf,
1131 int *piCost, int *pTempCost)
1132 {
1133 FIXME("(%ld, %s, %d, %d, %p, %p, %p %p): stub!\n", hInstall,
1134 debugstr_w(szComponent), dwIndex, iState, lpDriveBuf,
1135 pcchDriveBuf, piCost, pTempCost);
1136
1137 return ERROR_NO_MORE_ITEMS;
1138 }
1139
1140 UINT WINAPI MsiQueryComponentStateA(LPCSTR szProductCode,
1141 LPCSTR szUserSid, MSIINSTALLCONTEXT dwContext,
1142 LPCSTR szComponent, INSTALLSTATE *pdwState)
1143 {
1144 LPWSTR prodcode = NULL, usersid = NULL, comp = NULL;
1145 UINT r;
1146
1147 TRACE("(%s, %s, %d, %s, %p)\n", debugstr_a(szProductCode),
1148 debugstr_a(szUserSid), dwContext, debugstr_a(szComponent), pdwState);
1149
1150 if (szProductCode && !(prodcode = strdupAtoW(szProductCode)))
1151 return ERROR_OUTOFMEMORY;
1152
1153 if (szUserSid && !(usersid = strdupAtoW(szUserSid)))
1154 return ERROR_OUTOFMEMORY;
1155
1156 if (szComponent && !(comp = strdupAtoW(szComponent)))
1157 return ERROR_OUTOFMEMORY;
1158
1159 r = MsiQueryComponentStateW(prodcode, usersid, dwContext, comp, pdwState);
1160
1161 msi_free(prodcode);
1162 msi_free(usersid);
1163 msi_free(comp);
1164
1165 return r;
1166 }
1167
1168 static BOOL msi_comp_find_prod_key(LPCWSTR prodcode, MSIINSTALLCONTEXT context)
1169 {
1170 UINT r;
1171 HKEY hkey;
1172
1173 if (context == MSIINSTALLCONTEXT_MACHINE)
1174 r = MSIREG_OpenLocalClassesProductKey(prodcode, &hkey, FALSE);
1175 else if (context == MSIINSTALLCONTEXT_USERUNMANAGED)
1176 r = MSIREG_OpenUserProductsKey(prodcode, &hkey, FALSE);
1177 else
1178 r = MSIREG_OpenLocalManagedProductKey(prodcode, &hkey, FALSE);
1179
1180 RegCloseKey(hkey);
1181 return (r == ERROR_SUCCESS);
1182 }
1183
1184 static BOOL msi_comp_find_package(LPCWSTR prodcode, MSIINSTALLCONTEXT context)
1185 {
1186 LPCWSTR package;
1187 HKEY hkey;
1188 DWORD sz;
1189 LONG res;
1190 UINT r;
1191
1192 static const WCHAR local_package[] = {'L','o','c','a','l','P','a','c','k','a','g','e',0};
1193 static const WCHAR managed_local_package[] = {
1194 'M','a','n','a','g','e','d','L','o','c','a','l','P','a','c','k','a','g','e',0
1195 };
1196
1197 if (context == MSIINSTALLCONTEXT_MACHINE)
1198 r = MSIREG_OpenLocalSystemProductKey(prodcode, &hkey, FALSE);
1199 else
1200 r = MSIREG_OpenCurrentUserInstallProps(prodcode, &hkey, FALSE);
1201
1202 if (r != ERROR_SUCCESS)
1203 return FALSE;
1204
1205 if (context == MSIINSTALLCONTEXT_USERMANAGED)
1206 package = managed_local_package;
1207 else
1208 package = local_package;
1209
1210 sz = 0;
1211 res = RegQueryValueExW(hkey, package, NULL, NULL, NULL, &sz);
1212 RegCloseKey(hkey);
1213
1214 return (res == ERROR_SUCCESS);
1215 }
1216
1217 static BOOL msi_comp_find_prodcode(LPWSTR squished_pc,
1218 MSIINSTALLCONTEXT context,
1219 LPCWSTR comp, DWORD *sz)
1220 {
1221 HKEY hkey;
1222 LONG res;
1223 UINT r;
1224
1225 if (context == MSIINSTALLCONTEXT_MACHINE)
1226 r = MSIREG_OpenLocalSystemComponentKey(comp, &hkey, FALSE);
1227 else
1228 r = MSIREG_OpenUserDataComponentKey(comp, &hkey, FALSE);
1229
1230 if (r != ERROR_SUCCESS)
1231 return FALSE;
1232
1233 *sz = 0;
1234 res = RegQueryValueExW(hkey, squished_pc, NULL, NULL, NULL, sz);
1235 if (res != ERROR_SUCCESS)
1236 return FALSE;
1237
1238 RegCloseKey(hkey);
1239 return TRUE;
1240 }
1241
1242 UINT WINAPI MsiQueryComponentStateW(LPCWSTR szProductCode,
1243 LPCWSTR szUserSid, MSIINSTALLCONTEXT dwContext,
1244 LPCWSTR szComponent, INSTALLSTATE *pdwState)
1245 {
1246 WCHAR squished_pc[GUID_SIZE];
1247 BOOL found;
1248 DWORD sz;
1249
1250 TRACE("(%s, %s, %d, %s, %p)\n", debugstr_w(szProductCode),
1251 debugstr_w(szUserSid), dwContext, debugstr_w(szComponent), pdwState);
1252
1253 if (!pdwState)
1254 return ERROR_INVALID_PARAMETER;
1255
1256 if (!szProductCode || !*szProductCode || lstrlenW(szProductCode) != GUID_SIZE - 1)
1257 return ERROR_INVALID_PARAMETER;
1258
1259 if (!squash_guid(szProductCode, squished_pc))
1260 return ERROR_INVALID_PARAMETER;
1261
1262 found = msi_comp_find_prod_key(szProductCode, dwContext);
1263
1264 if (!msi_comp_find_package(szProductCode, dwContext))
1265 {
1266 if (found)
1267 {
1268 *pdwState = INSTALLSTATE_UNKNOWN;
1269 return ERROR_UNKNOWN_COMPONENT;
1270 }
1271
1272 return ERROR_UNKNOWN_PRODUCT;
1273 }
1274
1275 *pdwState = INSTALLSTATE_UNKNOWN;
1276
1277 if (!msi_comp_find_prodcode(squished_pc, dwContext, szComponent, &sz))
1278 return ERROR_UNKNOWN_COMPONENT;
1279
1280 if (sz == 0)
1281 *pdwState = INSTALLSTATE_NOTUSED;
1282 else
1283 *pdwState = INSTALLSTATE_LOCAL;
1284
1285 return ERROR_SUCCESS;
1286 }
1287
1288 INSTALLSTATE WINAPI MsiQueryProductStateA(LPCSTR szProduct)
1289 {
1290 LPWSTR szwProduct = NULL;
1291 INSTALLSTATE r;
1292
1293 if( szProduct )
1294 {
1295 szwProduct = strdupAtoW( szProduct );
1296 if( !szwProduct )
1297 return ERROR_OUTOFMEMORY;
1298 }
1299 r = MsiQueryProductStateW( szwProduct );
1300 msi_free( szwProduct );
1301 return r;
1302 }
1303
1304 INSTALLSTATE WINAPI MsiQueryProductStateW(LPCWSTR szProduct)
1305 {
1306 INSTALLSTATE state = INSTALLSTATE_ADVERTISED;
1307 HKEY prodkey = 0, userdata = 0;
1308 BOOL user = TRUE;
1309 DWORD val;
1310 UINT r;
1311
1312 static const WCHAR szWindowsInstaller[] = {
1313 'W','i','n','d','o','w','s','I','n','s','t','a','l','l','e','r',0};
1314
1315 TRACE("%s\n", debugstr_w(szProduct));
1316
1317 if (!szProduct || !*szProduct)
1318 return INSTALLSTATE_INVALIDARG;
1319
1320 if (lstrlenW(szProduct) != GUID_SIZE - 1)
1321 return INSTALLSTATE_INVALIDARG;
1322
1323 r = MSIREG_OpenLocalManagedProductKey(szProduct, &prodkey, FALSE);
1324 if (r != ERROR_SUCCESS)
1325 {
1326 r = MSIREG_OpenUserProductsKey(szProduct, &prodkey, FALSE);
1327 if (r != ERROR_SUCCESS)
1328 {
1329 r = MSIREG_OpenLocalClassesProductKey(szProduct, &prodkey, FALSE);
1330 if (r == ERROR_SUCCESS)
1331 user = FALSE;
1332 }
1333 }
1334
1335 if (user)
1336 {
1337 r = MSIREG_OpenCurrentUserInstallProps(szProduct, &userdata, FALSE);
1338 if (r != ERROR_SUCCESS)
1339 goto done;
1340 }
1341 else
1342 {
1343 r = MSIREG_OpenLocalSystemInstallProps(szProduct, &userdata, FALSE);
1344 if (r != ERROR_SUCCESS)
1345 goto done;
1346 }
1347
1348 if (!msi_reg_get_val_dword(userdata, szWindowsInstaller, &val))
1349 goto done;
1350
1351 if (val)
1352 state = INSTALLSTATE_DEFAULT;
1353 else
1354 state = INSTALLSTATE_UNKNOWN;
1355
1356 done:
1357 if (!prodkey)
1358 {
1359 state = INSTALLSTATE_UNKNOWN;
1360
1361 if (userdata)
1362 state = INSTALLSTATE_ABSENT;
1363 }
1364
1365 RegCloseKey(prodkey);
1366 RegCloseKey(userdata);
1367 return state;
1368 }
1369
1370 INSTALLUILEVEL WINAPI MsiSetInternalUI(INSTALLUILEVEL dwUILevel, HWND *phWnd)
1371 {
1372 INSTALLUILEVEL old = gUILevel;
1373 HWND oldwnd = gUIhwnd;
1374
1375 TRACE("%08x %p\n", dwUILevel, phWnd);
1376
1377 gUILevel = dwUILevel;
1378 if (phWnd)
1379 {
1380 gUIhwnd = *phWnd;
1381 *phWnd = oldwnd;
1382 }
1383 return old;
1384 }
1385
1386 INSTALLUI_HANDLERA WINAPI MsiSetExternalUIA(INSTALLUI_HANDLERA puiHandler,
1387 DWORD dwMessageFilter, LPVOID pvContext)
1388 {
1389 INSTALLUI_HANDLERA prev = gUIHandlerA;
1390
1391 TRACE("%p %x %p\n",puiHandler, dwMessageFilter,pvContext);
1392 gUIHandlerA = puiHandler;
1393 gUIFilter = dwMessageFilter;
1394 gUIContext = pvContext;
1395
1396 return prev;
1397 }
1398
1399 INSTALLUI_HANDLERW WINAPI MsiSetExternalUIW(INSTALLUI_HANDLERW puiHandler,
1400 DWORD dwMessageFilter, LPVOID pvContext)
1401 {
1402 INSTALLUI_HANDLERW prev = gUIHandlerW;
1403
1404 TRACE("%p %x %p\n",puiHandler,dwMessageFilter,pvContext);
1405 gUIHandlerW = puiHandler;
1406 gUIFilter = dwMessageFilter;
1407 gUIContext = pvContext;
1408
1409 return prev;
1410 }
1411
1412 /******************************************************************
1413 * MsiLoadStringW [MSI.@]
1414 *
1415 * Loads a string from MSI's string resources.
1416 *
1417 * PARAMS
1418 *
1419 * handle [I] only -1 is handled currently
1420 * id [I] id of the string to be loaded
1421 * lpBuffer [O] buffer for the string to be written to
1422 * nBufferMax [I] maximum size of the buffer in characters
1423 * lang [I] the preferred language for the string
1424 *
1425 * RETURNS
1426 *
1427 * If successful, this function returns the language id of the string loaded
1428 * If the function fails, the function returns zero.
1429 *
1430 * NOTES
1431 *
1432 * The type of the first parameter is unknown. LoadString's prototype
1433 * suggests that it might be a module handle. I have made it an MSI handle
1434 * for starters, as -1 is an invalid MSI handle, but not an invalid module
1435 * handle. Maybe strings can be stored in an MSI database somehow.
1436 */
1437 LANGID WINAPI MsiLoadStringW( MSIHANDLE handle, UINT id, LPWSTR lpBuffer,
1438 int nBufferMax, LANGID lang )
1439 {
1440 HRSRC hres;
1441 HGLOBAL hResData;
1442 LPWSTR p;
1443 DWORD i, len;
1444
1445 TRACE("%ld %u %p %d %d\n", handle, id, lpBuffer, nBufferMax, lang);
1446
1447 if( handle != -1 )
1448 FIXME("don't know how to deal with handle = %08lx\n", handle);
1449
1450 if( !lang )
1451 lang = GetUserDefaultLangID();
1452
1453 hres = FindResourceExW( msi_hInstance, (LPCWSTR) RT_STRING,
1454 (LPWSTR)1, lang );
1455 if( !hres )
1456 return 0;
1457 hResData = LoadResource( msi_hInstance, hres );
1458 if( !hResData )
1459 return 0;
1460 p = LockResource( hResData );
1461 if( !p )
1462 return 0;
1463
1464 for (i = 0; i < (id&0xf); i++)
1465 p += *p + 1;
1466 len = *p;
1467
1468 if( nBufferMax <= len )
1469 return 0;
1470
1471 memcpy( lpBuffer, p+1, len * sizeof(WCHAR));
1472 lpBuffer[ len ] = 0;
1473
1474 TRACE("found -> %s\n", debugstr_w(lpBuffer));
1475
1476 return lang;
1477 }
1478
1479 LANGID WINAPI MsiLoadStringA( MSIHANDLE handle, UINT id, LPSTR lpBuffer,
1480 int nBufferMax, LANGID lang )
1481 {
1482 LPWSTR bufW;
1483 LANGID r;
1484 DWORD len;
1485
1486 bufW = msi_alloc(nBufferMax*sizeof(WCHAR));
1487 r = MsiLoadStringW(handle, id, bufW, nBufferMax, lang);
1488 if( r )
1489 {
1490 len = WideCharToMultiByte(CP_ACP, 0, bufW, -1, NULL, 0, NULL, NULL );
1491 if( len <= nBufferMax )
1492 WideCharToMultiByte( CP_ACP, 0, bufW, -1,
1493 lpBuffer, nBufferMax, NULL, NULL );
1494 else
1495 r = 0;
1496 }
1497 msi_free(bufW);
1498 return r;
1499 }
1500
1501 INSTALLSTATE WINAPI MsiLocateComponentA(LPCSTR szComponent, LPSTR lpPathBuf,
1502 LPDWORD pcchBuf)
1503 {
1504 char szProduct[GUID_SIZE];
1505
1506 TRACE("%s %p %p\n", debugstr_a(szComponent), lpPathBuf, pcchBuf);
1507
1508 if (MsiGetProductCodeA( szComponent, szProduct ) != ERROR_SUCCESS)
1509 return INSTALLSTATE_UNKNOWN;
1510
1511 return MsiGetComponentPathA( szProduct, szComponent, lpPathBuf, pcchBuf );
1512 }
1513
1514 INSTALLSTATE WINAPI MsiLocateComponentW(LPCWSTR szComponent, LPWSTR lpPathBuf,
1515 LPDWORD pcchBuf)
1516 {
1517 WCHAR szProduct[GUID_SIZE];
1518
1519 TRACE("%s %p %p\n", debugstr_w(szComponent), lpPathBuf, pcchBuf);
1520
1521 if (MsiGetProductCodeW( szComponent, szProduct ) != ERROR_SUCCESS)
1522 return INSTALLSTATE_UNKNOWN;
1523
1524 return MsiGetComponentPathW( szProduct, szComponent, lpPathBuf, pcchBuf );
1525 }
1526
1527 UINT WINAPI MsiMessageBoxA(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType,
1528 WORD wLanguageId, DWORD f)
1529 {
1530 FIXME("%p %s %s %u %08x %08x\n", hWnd, debugstr_a(lpText), debugstr_a(lpCaption),
1531 uType, wLanguageId, f);
1532 return MessageBoxExA(hWnd,lpText,lpCaption,uType,wLanguageId);
1533 }
1534
1535 UINT WINAPI MsiMessageBoxW(HWND hWnd, LPCWSTR lpText, LPCWSTR lpCaption, UINT uType,
1536 WORD wLanguageId, DWORD f)
1537 {
1538 FIXME("%p %s %s %u %08x %08x\n", hWnd, debugstr_w(lpText), debugstr_w(lpCaption),
1539 uType, wLanguageId, f);
1540 return MessageBoxExW(hWnd,lpText,lpCaption,uType,wLanguageId);
1541 }
1542
1543 UINT WINAPI MsiProvideAssemblyA( LPCSTR szAssemblyName, LPCSTR szAppContext,
1544 DWORD dwInstallMode, DWORD dwAssemblyInfo, LPSTR lpPathBuf,
1545 LPDWORD pcchPathBuf )
1546 {
1547 FIXME("%s %s %08x %08x %p %p\n", debugstr_a(szAssemblyName),
1548 debugstr_a(szAppContext), dwInstallMode, dwAssemblyInfo, lpPathBuf,
1549 pcchPathBuf);
1550 return ERROR_CALL_NOT_IMPLEMENTED;
1551 }
1552
1553 UINT WINAPI MsiProvideAssemblyW( LPCWSTR szAssemblyName, LPCWSTR szAppContext,
1554 DWORD dwInstallMode, DWORD dwAssemblyInfo, LPWSTR lpPathBuf,
1555 LPDWORD pcchPathBuf )
1556 {
1557 FIXME("%s %s %08x %08x %p %p\n", debugstr_w(szAssemblyName),
1558 debugstr_w(szAppContext), dwInstallMode, dwAssemblyInfo, lpPathBuf,
1559 pcchPathBuf);
1560 return ERROR_CALL_NOT_IMPLEMENTED;
1561 }
1562
1563 UINT WINAPI MsiProvideComponentFromDescriptorA( LPCSTR szDescriptor,
1564 LPSTR szPath, LPDWORD pcchPath, LPDWORD pcchArgs )
1565 {
1566 FIXME("%s %p %p %p\n", debugstr_a(szDescriptor), szPath, pcchPath, pcchArgs );
1567 return ERROR_CALL_NOT_IMPLEMENTED;
1568 }
1569
1570 UINT WINAPI MsiProvideComponentFromDescriptorW( LPCWSTR szDescriptor,
1571 LPWSTR szPath, LPDWORD pcchPath, LPDWORD pcchArgs )
1572 {
1573 FIXME("%s %p %p %p\n", debugstr_w(szDescriptor), szPath, pcchPath, pcchArgs );
1574 return ERROR_CALL_NOT_IMPLEMENTED;
1575 }
1576
1577 HRESULT WINAPI MsiGetFileSignatureInformationA( LPCSTR szSignedObjectPath,
1578 DWORD dwFlags, PCCERT_CONTEXT* ppcCertContext, LPBYTE pbHashData,
1579 LPDWORD pcbHashData)
1580 {
1581 FIXME("%s %08x %p %p %p\n", debugstr_a(szSignedObjectPath), dwFlags,
1582 ppcCertContext, pbHashData, pcbHashData);
1583 return ERROR_CALL_NOT_IMPLEMENTED;
1584 }
1585
1586 HRESULT WINAPI MsiGetFileSignatureInformationW( LPCWSTR szSignedObjectPath,
1587 DWORD dwFlags, PCCERT_CONTEXT* ppcCertContext, LPBYTE pbHashData,
1588 LPDWORD pcbHashData)
1589 {
1590 FIXME("%s %08x %p %p %p\n", debugstr_w(szSignedObjectPath), dwFlags,
1591 ppcCertContext, pbHashData, pcbHashData);
1592 return ERROR_CALL_NOT_IMPLEMENTED;
1593 }
1594
1595 UINT WINAPI MsiGetProductPropertyA( MSIHANDLE hProduct, LPCSTR szProperty,
1596 LPSTR szValue, LPDWORD pccbValue )
1597 {
1598 FIXME("%ld %s %p %p\n", hProduct, debugstr_a(szProperty), szValue, pccbValue);
1599 return ERROR_CALL_NOT_IMPLEMENTED;
1600 }
1601
1602 UINT WINAPI MsiGetProductPropertyW( MSIHANDLE hProduct, LPCWSTR szProperty,
1603 LPWSTR szValue, LPDWORD pccbValue )
1604 {
1605 FIXME("%ld %s %p %p\n", hProduct, debugstr_w(szProperty), szValue, pccbValue);
1606 return ERROR_CALL_NOT_IMPLEMENTED;
1607 }
1608
1609 UINT WINAPI MsiVerifyPackageA( LPCSTR szPackage )
1610 {
1611 UINT r;
1612 LPWSTR szPack = NULL;
1613
1614 TRACE("%s\n", debugstr_a(szPackage) );
1615
1616 if( szPackage )
1617 {
1618 szPack = strdupAtoW( szPackage );
1619 if( !szPack )
1620 return ERROR_OUTOFMEMORY;
1621 }
1622
1623 r = MsiVerifyPackageW( szPack );
1624
1625 msi_free( szPack );
1626
1627 return r;
1628 }
1629
1630 UINT WINAPI MsiVerifyPackageW( LPCWSTR szPackage )
1631 {
1632 MSIHANDLE handle;
1633 UINT r;
1634
1635 TRACE("%s\n", debugstr_w(szPackage) );
1636
1637 r = MsiOpenDatabaseW( szPackage, MSIDBOPEN_READONLY, &handle );
1638 MsiCloseHandle( handle );
1639
1640 return r;
1641 }
1642
1643 static INSTALLSTATE WINAPI MSI_GetComponentPath(LPCWSTR szProduct, LPCWSTR szComponent,
1644 awstring* lpPathBuf, LPDWORD pcchBuf)
1645 {
1646 WCHAR squished_pc[GUID_SIZE];
1647 WCHAR squished_comp[GUID_SIZE];
1648 HKEY hkey;
1649 LPWSTR path = NULL;
1650 INSTALLSTATE state;
1651 DWORD version;
1652
1653 static const WCHAR wininstaller[] = {
1654 'W','i','n','d','o','w','s','I','n','s','t','a','l','l','e','r',0};
1655
1656 TRACE("%s %s %p %p\n", debugstr_w(szProduct),
1657 debugstr_w(szComponent), lpPathBuf->str.w, pcchBuf);
1658
1659 if (!szProduct || !szComponent)
1660 return INSTALLSTATE_INVALIDARG;
1661
1662 if (lpPathBuf->str.w && !pcchBuf)
1663 return INSTALLSTATE_INVALIDARG;
1664
1665 if (!squash_guid(szProduct, squished_pc) ||
1666 !squash_guid(szComponent, squished_comp))
1667 return INSTALLSTATE_INVALIDARG;
1668
1669 state = INSTALLSTATE_UNKNOWN;
1670
1671 if (MSIREG_OpenLocalSystemComponentKey(szComponent, &hkey, FALSE) == ERROR_SUCCESS ||
1672 MSIREG_OpenUserDataComponentKey(szComponent, &hkey, FALSE) == ERROR_SUCCESS)
1673 {
1674 path = msi_reg_get_val_str(hkey, squished_pc);
1675 RegCloseKey(hkey);
1676
1677 state = INSTALLSTATE_ABSENT;
1678
1679 if ((MSIREG_OpenLocalSystemProductKey(szProduct, &hkey, FALSE) == ERROR_SUCCESS ||
1680 MSIREG_OpenUserDataProductKey(szProduct, &hkey, FALSE) == ERROR_SUCCESS) &&
1681 msi_reg_get_val_dword(hkey, wininstaller, &version) &&
1682 GetFileAttributesW(path) != INVALID_FILE_ATTRIBUTES)
1683 {
1684 RegCloseKey(hkey);
1685 state = INSTALLSTATE_LOCAL;
1686 }
1687 }
1688
1689 if (state != INSTALLSTATE_LOCAL &&
1690 (MSIREG_OpenUserProductsKey(szProduct, &hkey, FALSE) == ERROR_SUCCESS ||
1691 MSIREG_OpenLocalClassesProductKey(szProduct, &hkey, FALSE) == ERROR_SUCCESS))
1692 {
1693 RegCloseKey(hkey);
1694
1695 if (MSIREG_OpenLocalSystemComponentKey(szComponent, &hkey, FALSE) == ERROR_SUCCESS ||
1696 MSIREG_OpenUserDataComponentKey(szComponent, &hkey, FALSE) == ERROR_SUCCESS)
1697 {
1698 msi_free(path);
1699 path = msi_reg_get_val_str(hkey, squished_pc);
1700 RegCloseKey(hkey);
1701
1702 state = INSTALLSTATE_ABSENT;
1703
1704 if (GetFileAttributesW(path) != INVALID_FILE_ATTRIBUTES)
1705 state = INSTALLSTATE_LOCAL;
1706 }
1707 }
1708
1709 if (!path)
1710 return INSTALLSTATE_UNKNOWN;
1711
1712 if (state == INSTALLSTATE_LOCAL && !*path)
1713 state = INSTALLSTATE_NOTUSED;
1714
1715 msi_strcpy_to_awstring(path, lpPathBuf, pcchBuf);
1716 msi_free(path);
1717 return state;
1718 }
1719
1720 /******************************************************************
1721 * MsiGetComponentPathW [MSI.@]
1722 */
1723 INSTALLSTATE WINAPI MsiGetComponentPathW(LPCWSTR szProduct, LPCWSTR szComponent,
1724 LPWSTR lpPathBuf, LPDWORD pcchBuf)
1725 {
1726 awstring path;
1727
1728 path.unicode = TRUE;
1729 path.str.w = lpPathBuf;
1730
1731 return MSI_GetComponentPath( szProduct, szComponent, &path, pcchBuf );
1732 }
1733
1734 /******************************************************************
1735 * MsiGetComponentPathA [MSI.@]
1736 */
1737 INSTALLSTATE WINAPI MsiGetComponentPathA(LPCSTR szProduct, LPCSTR szComponent,
1738 LPSTR lpPathBuf, LPDWORD pcchBuf)
1739 {
1740 LPWSTR szwProduct, szwComponent = NULL;
1741 INSTALLSTATE r = INSTALLSTATE_UNKNOWN;
1742 awstring path;
1743
1744 szwProduct = strdupAtoW( szProduct );
1745 if( szProduct && !szwProduct)
1746 goto end;
1747
1748 szwComponent = strdupAtoW( szComponent );
1749 if( szComponent && !szwComponent )
1750 goto end;
1751
1752 path.unicode = FALSE;
1753 path.str.a = lpPathBuf;
1754
1755 r = MSI_GetComponentPath( szwProduct, szwComponent, &path, pcchBuf );
1756
1757 end:
1758 msi_free( szwProduct );
1759 msi_free( szwComponent );
1760
1761 return r;
1762 }
1763
1764 /******************************************************************
1765 * MsiQueryFeatureStateA [MSI.@]
1766 */
1767 INSTALLSTATE WINAPI MsiQueryFeatureStateA(LPCSTR szProduct, LPCSTR szFeature)
1768 {
1769 LPWSTR szwProduct = NULL, szwFeature= NULL;
1770 INSTALLSTATE rc = INSTALLSTATE_UNKNOWN;
1771
1772 szwProduct = strdupAtoW( szProduct );
1773 if ( szProduct && !szwProduct )
1774 goto end;
1775
1776 szwFeature = strdupAtoW( szFeature );
1777 if ( szFeature && !szwFeature )
1778 goto end;
1779
1780 rc = MsiQueryFeatureStateW(szwProduct, szwFeature);
1781
1782 end:
1783 msi_free( szwProduct);
1784 msi_free( szwFeature);
1785
1786 return rc;
1787 }
1788
1789 /******************************************************************
1790 * MsiQueryFeatureStateW [MSI.@]
1791 *
1792 * Checks the state of a feature
1793 *
1794 * PARAMS
1795 * szProduct [I] Product's GUID string
1796 * szFeature [I] Feature's GUID string
1797 *
1798 * RETURNS
1799 * INSTALLSTATE_LOCAL Feature is installed and usable
1800 * INSTALLSTATE_ABSENT Feature is absent
1801 * INSTALLSTATE_ADVERTISED Feature should be installed on demand
1802 * INSTALLSTATE_UNKNOWN An error occurred
1803 * INSTALLSTATE_INVALIDARG One of the GUIDs was invalid
1804 *
1805 */
1806 INSTALLSTATE WINAPI MsiQueryFeatureStateW(LPCWSTR szProduct, LPCWSTR szFeature)
1807 {
1808 WCHAR squishProduct[33], comp[GUID_SIZE];
1809 GUID guid;
1810 LPWSTR components, p, parent_feature, path;
1811 UINT rc;
1812 HKEY hkey;
1813 INSTALLSTATE r;
1814 BOOL missing = FALSE;
1815
1816 TRACE("%s %s\n", debugstr_w(szProduct), debugstr_w(szFeature));
1817
1818 if (!szProduct || !szFeature)
1819 return INSTALLSTATE_INVALIDARG;
1820
1821 if (!squash_guid( szProduct, squishProduct ))
1822 return INSTALLSTATE_INVALIDARG;
1823
1824 /* check that it's installed at all */
1825 rc = MSIREG_OpenUserFeaturesKey(szProduct, &hkey, FALSE);
1826 if (rc != ERROR_SUCCESS)
1827 return INSTALLSTATE_UNKNOWN;
1828
1829 parent_feature = msi_reg_get_val_str( hkey, szFeature );
1830 RegCloseKey(hkey);
1831
1832 if (!parent_feature)
1833 return INSTALLSTATE_UNKNOWN;
1834
1835 r = (parent_feature[0] == 6) ? INSTALLSTATE_ABSENT : INSTALLSTATE_LOCAL;
1836 msi_free(parent_feature);
1837 if (r == INSTALLSTATE_ABSENT)
1838 return r;
1839
1840 /* now check if it's complete or advertised */
1841 rc = MSIREG_OpenUserDataFeaturesKey(szProduct, &hkey, FALSE);
1842 if (rc != ERROR_SUCCESS)
1843 return INSTALLSTATE_ADVERTISED;
1844
1845 components = msi_reg_get_val_str( hkey, szFeature );
1846 RegCloseKey(hkey);
1847
1848 TRACE("rc = %d buffer = %s\n", rc, debugstr_w(components));
1849
1850 if (!components)
1851 return INSTALLSTATE_ADVERTISED;
1852
1853 for( p = components; *p && *p != 2 ; p += 20)
1854 {
1855 if (!decode_base85_guid( p, &guid ))
1856 {
1857 if (p != components)
1858 break;
1859
1860 msi_free(components);
1861 return INSTALLSTATE_BADCONFIG;
1862 }
1863
1864 StringFromGUID2(&guid, comp, GUID_SIZE);
1865 rc = MSIREG_OpenUserDataComponentKey(comp, &hkey, FALSE);
1866 if (rc != ERROR_SUCCESS)
1867 {
1868 msi_free(components);
1869 return INSTALLSTATE_ADVERTISED;
1870 }
1871
1872 path = msi_reg_get_val_str(hkey, squishProduct);
1873 if (!path)
1874 missing = TRUE;
1875
1876 msi_free(path);
1877 }
1878
1879 TRACE("%s %s -> %d\n", debugstr_w(szProduct), debugstr_w(szFeature), r);
1880 msi_free(components);
1881
1882 if (missing)
1883 return INSTALLSTATE_ADVERTISED;
1884
1885 return INSTALLSTATE_LOCAL;
1886 }
1887
1888 /******************************************************************
1889 * MsiGetFileVersionA [MSI.@]
1890 */
1891 UINT WINAPI MsiGetFileVersionA(LPCSTR szFilePath, LPSTR lpVersionBuf,
1892 LPDWORD pcchVersionBuf, LPSTR lpLangBuf, LPDWORD pcchLangBuf)
1893 {
1894 LPWSTR szwFilePath = NULL, lpwVersionBuff = NULL, lpwLangBuff = NULL;
1895 UINT ret = ERROR_OUTOFMEMORY;
1896
1897 if ((lpVersionBuf && !pcchVersionBuf) ||
1898 (lpLangBuf && !pcchLangBuf))
1899 return ERROR_INVALID_PARAMETER;
1900
1901 if( szFilePath )
1902 {
1903 szwFilePath = strdupAtoW( szFilePath );
1904 if( !szwFilePath )
1905 goto end;
1906 }
1907
1908 if( lpVersionBuf && pcchVersionBuf && *pcchVersionBuf )
1909 {
1910 lpwVersionBuff = msi_alloc(*pcchVersionBuf*sizeof(WCHAR));
1911 if( !lpwVersionBuff )
1912 goto end;
1913 }
1914
1915 if( lpLangBuf && pcchLangBuf && *pcchLangBuf )
1916 {
1917 lpwLangBuff = msi_alloc(*pcchLangBuf*sizeof(WCHAR));
1918 if( !lpwLangBuff )
1919 goto end;
1920 }
1921
1922 ret = MsiGetFileVersionW(szwFilePath, lpwVersionBuff, pcchVersionBuf,
1923 lpwLangBuff, pcchLangBuf);
1924
1925 if( (ret == ERROR_SUCCESS || ret == ERROR_MORE_DATA) && lpwVersionBuff )
1926 WideCharToMultiByte(CP_ACP, 0, lpwVersionBuff, -1,
1927 lpVersionBuf, *pcchVersionBuf + 1, NULL, NULL);
1928 if( (ret == ERROR_SUCCESS || ret == ERROR_MORE_DATA) && lpwLangBuff )
1929 WideCharToMultiByte(CP_ACP, 0, lpwLangBuff, -1,
1930 lpLangBuf, *pcchLangBuf + 1, NULL, NULL);
1931
1932 end:
1933 msi_free(szwFilePath);
1934 msi_free(lpwVersionBuff);
1935 msi_free(lpwLangBuff);
1936
1937 return ret;
1938 }
1939
1940 /******************************************************************
1941 * MsiGetFileVersionW [MSI.@]
1942 */
1943 UINT WINAPI MsiGetFileVersionW(LPCWSTR szFilePath, LPWSTR lpVersionBuf,
1944 LPDWORD pcchVersionBuf, LPWSTR lpLangBuf, LPDWORD pcchLangBuf)
1945 {
1946 static const WCHAR szVersionResource[] = {'\\',0};
1947 static const WCHAR szVersionFormat[] = {
1948 '%','d','.','%','d','.','%','d','.','%','d',0};
1949 static const WCHAR szLangResource[] = {
1950 '\\','V','a','r','F','i','l','e','I','n','f','o','\\',
1951 'T','r','a','n','s','l','a','t','i','o','n',0};
1952 static const WCHAR szLangFormat[] = {'%','d',0};
1953 UINT ret = 0;
1954 DWORD dwVerLen, gle;
1955 LPVOID lpVer = NULL;
1956 VS_FIXEDFILEINFO *ffi;
1957 USHORT *lang;
1958 UINT puLen;
1959 WCHAR tmp[32];
1960
1961 TRACE("%s %p %d %p %d\n", debugstr_w(szFilePath),
1962 lpVersionBuf, pcchVersionBuf?*pcchVersionBuf:0,
1963 lpLangBuf, pcchLangBuf?*pcchLangBuf:0);
1964
1965 if ((lpVersionBuf && !pcchVersionBuf) ||
1966 (lpLangBuf && !pcchLangBuf))
1967 return ERROR_INVALID_PARAMETER;
1968
1969 dwVerLen = GetFileVersionInfoSizeW(szFilePath, NULL);
1970 if( !dwVerLen )
1971 {
1972 gle = GetLastError();
1973 if (gle == ERROR_BAD_PATHNAME)
1974 return ERROR_FILE_NOT_FOUND;
1975 else if (gle == ERROR_RESOURCE_DATA_NOT_FOUND)
1976 return ERROR_FILE_INVALID;
1977
1978 return gle;
1979 }
1980
1981 lpVer = msi_alloc(dwVerLen);
1982 if( !lpVer )
1983 {
1984 ret = ERROR_OUTOFMEMORY;
1985 goto end;
1986 }
1987
1988 if( !GetFileVersionInfoW(szFilePath, 0, dwVerLen, lpVer) )
1989 {
1990 ret = GetLastError();
1991 goto end;
1992 }
1993
1994 if (pcchVersionBuf)
1995 {
1996 if( VerQueryValueW(lpVer, szVersionResource, (LPVOID*)&ffi, &puLen) &&
1997 (puLen > 0) )
1998 {
1999 wsprintfW(tmp, szVersionFormat,
2000 HIWORD(ffi->dwFileVersionMS), LOWORD(ffi->dwFileVersionMS),
2001 HIWORD(ffi->dwFileVersionLS), LOWORD(ffi->dwFileVersionLS));
2002 if (lpVersionBuf) lstrcpynW(lpVersionBuf, tmp, *pcchVersionBuf);
2003
2004 if (lstrlenW(tmp) >= *pcchVersionBuf)
2005 ret = ERROR_MORE_DATA;
2006
2007 *pcchVersionBuf = lstrlenW(tmp);
2008 }
2009 else
2010 {
2011 if (lpVersionBuf) *lpVersionBuf = 0;
2012 *pcchVersionBuf = 0;
2013 }
2014 }
2015
2016 if (pcchLangBuf)
2017 {
2018 if (VerQueryValueW(lpVer, szLangResource, (LPVOID*)&lang, &puLen) &&
2019 (puLen > 0))
2020 {
2021 wsprintfW(tmp, szLangFormat, *lang);
2022 if (lpLangBuf) lstrcpynW(lpLangBuf, tmp, *pcchLangBuf);
2023
2024 if (lstrlenW(tmp) >= *pcchLangBuf)
2025 ret = ERROR_MORE_DATA;
2026
2027 *pcchLangBuf = lstrlenW(tmp);
2028 }
2029 else
2030 {
2031 if (lpLangBuf) *lpLangBuf = 0;
2032 *pcchLangBuf = 0;
2033 }
2034 }
2035
2036 end:
2037 msi_free(lpVer);
2038 return ret;
2039 }
2040
2041 /***********************************************************************
2042 * MsiGetFeatureUsageW [MSI.@]
2043 */
2044 UINT WINAPI MsiGetFeatureUsageW( LPCWSTR szProduct, LPCWSTR szFeature,
2045 LPDWORD pdwUseCount, LPWORD pwDateUsed )
2046 {
2047 FIXME("%s %s %p %p\n",debugstr_w(szProduct), debugstr_w(szFeature),
2048 pdwUseCount, pwDateUsed);
2049 return ERROR_CALL_NOT_IMPLEMENTED;
2050 }
2051
2052 /***********************************************************************
2053 * MsiGetFeatureUsageA [MSI.@]
2054 */
2055 UINT WINAPI MsiGetFeatureUsageA( LPCSTR szProduct, LPCSTR szFeature,
2056 LPDWORD pdwUseCount, LPWORD pwDateUsed )
2057 {
2058 LPWSTR prod = NULL, feat = NULL;
2059 UINT ret = ERROR_OUTOFMEMORY;
2060
2061 TRACE("%s %s %p %p\n", debugstr_a(szProduct), debugstr_a(szFeature),
2062 pdwUseCount, pwDateUsed);
2063
2064 prod = strdupAtoW( szProduct );
2065 if (szProduct && !prod)
2066 goto end;
2067
2068 feat = strdupAtoW( szFeature );
2069 if (szFeature && !feat)
2070 goto end;
2071
2072 ret = MsiGetFeatureUsageW( prod, feat, pdwUseCount, pwDateUsed );
2073
2074 end:
2075 msi_free( prod );
2076 msi_free( feat );
2077
2078 return ret;
2079 }
2080
2081 /***********************************************************************
2082 * MsiUseFeatureExW [MSI.@]
2083 */
2084 INSTALLSTATE WINAPI MsiUseFeatureExW( LPCWSTR szProduct, LPCWSTR szFeature,
2085 DWORD dwInstallMode, DWORD dwReserved )
2086 {
2087 INSTALLSTATE state;
2088
2089 TRACE("%s %s %i %i\n", debugstr_w(szProduct), debugstr_w(szFeature),
2090 dwInstallMode, dwReserved);
2091
2092 state = MsiQueryFeatureStateW( szProduct, szFeature );
2093
2094 if (dwReserved)
2095 return INSTALLSTATE_INVALIDARG;
2096
2097 if (state == INSTALLSTATE_LOCAL && dwInstallMode != INSTALLMODE_NODETECTION)
2098 {
2099 FIXME("mark product %s feature %s as used\n",
2100 debugstr_w(szProduct), debugstr_w(szFeature) );
2101 }
2102
2103 return state;
2104 }
2105
2106 /***********************************************************************
2107 * MsiUseFeatureExA [MSI.@]
2108 */
2109 INSTALLSTATE WINAPI MsiUseFeatureExA( LPCSTR szProduct, LPCSTR szFeature,
2110 DWORD dwInstallMode, DWORD dwReserved )
2111 {
2112 INSTALLSTATE ret = INSTALLSTATE_UNKNOWN;
2113 LPWSTR prod = NULL, feat = NULL;
2114
2115 TRACE("%s %s %i %i\n", debugstr_a(szProduct), debugstr_a(szFeature),
2116 dwInstallMode, dwReserved);
2117
2118 prod = strdupAtoW( szProduct );
2119 if (szProduct && !prod)
2120 goto end;
2121
2122 feat = strdupAtoW( szFeature );
2123 if (szFeature && !feat)
2124 goto end;
2125
2126 ret = MsiUseFeatureExW( prod, feat, dwInstallMode, dwReserved );
2127
2128 end:
2129 msi_free( prod );
2130 msi_free( feat );
2131
2132 return ret;
2133 }
2134
2135 /***********************************************************************
2136 * MsiUseFeatureW [MSI.@]
2137 */
2138 INSTALLSTATE WINAPI MsiUseFeatureW( LPCWSTR szProduct, LPCWSTR szFeature )
2139 {
2140 return MsiUseFeatureExW(szProduct, szFeature, 0, 0);
2141 }
2142
2143 /***********************************************************************
2144 * MsiUseFeatureA [MSI.@]
2145 */
2146 INSTALLSTATE WINAPI MsiUseFeatureA( LPCSTR szProduct, LPCSTR szFeature )
2147 {
2148 return MsiUseFeatureExA(szProduct, szFeature, 0, 0);
2149 }
2150
2151 /***********************************************************************
2152 * MSI_ProvideQualifiedComponentEx [internal]
2153 */
2154 static UINT WINAPI MSI_ProvideQualifiedComponentEx(LPCWSTR szComponent,
2155 LPCWSTR szQualifier, DWORD dwInstallMode, LPCWSTR szProduct,
2156 DWORD Unused1, DWORD Unused2, awstring *lpPathBuf,
2157 LPDWORD pcchPathBuf)
2158 {
2159 WCHAR product[MAX_FEATURE_CHARS+1], component[MAX_FEATURE_CHARS+1],
2160 feature[MAX_FEATURE_CHARS+1];
2161 LPWSTR info;
2162 HKEY hkey;
2163 DWORD sz;
2164 UINT rc;
2165
2166 TRACE("%s %s %i %s %i %i %p %p\n", debugstr_w(szComponent),
2167 debugstr_w(szQualifier), dwInstallMode, debugstr_w(szProduct),
2168 Unused1, Unused2, lpPathBuf, pcchPathBuf);
2169
2170 rc = MSIREG_OpenUserComponentsKey(szComponent, &hkey, FALSE);
2171 if (rc != ERROR_SUCCESS)
2172 return ERROR_INDEX_ABSENT;
2173
2174 info = msi_reg_get_val_str( hkey, szQualifier );
2175 RegCloseKey(hkey);
2176
2177 if (!info)
2178 return ERROR_INDEX_ABSENT;
2179
2180 MsiDecomposeDescriptorW(info, product, feature, component, &sz);
2181
2182 if (!szProduct)
2183 rc = MSI_GetComponentPath(product, component, lpPathBuf, pcchPathBuf);
2184 else
2185 rc = MSI_GetComponentPath(szProduct, component, lpPathBuf, pcchPathBuf);
2186
2187 msi_free( info );
2188
2189 if (rc != INSTALLSTATE_LOCAL)
2190 return ERROR_FILE_NOT_FOUND;
2191
2192 return ERROR_SUCCESS;
2193 }
2194
2195 /***********************************************************************
2196 * MsiProvideQualifiedComponentExW [MSI.@]
2197 */
2198 UINT WINAPI MsiProvideQualifiedComponentExW(LPCWSTR szComponent,
2199 LPCWSTR szQualifier, DWORD dwInstallMode, LPCWSTR szProduct,
2200 DWORD Unused1, DWORD Unused2, LPWSTR lpPathBuf,
2201 LPDWORD pcchPathBuf)
2202 {
2203 awstring path;
2204
2205 path.unicode = TRUE;
2206 path.str.w = lpPathBuf;
2207
2208 return MSI_ProvideQualifiedComponentEx(szComponent, szQualifier,
2209 dwInstallMode, szProduct, Unused1, Unused2, &path, pcchPathBuf);
2210 }
2211
2212 /***********************************************************************
2213 * MsiProvideQualifiedComponentExA [MSI.@]
2214 */
2215 UINT WINAPI MsiProvideQualifiedComponentExA(LPCSTR szComponent,
2216 LPCSTR szQualifier, DWORD dwInstallMode, LPCSTR szProduct,
2217 DWORD Unused1, DWORD Unused2, LPSTR lpPathBuf,
2218 LPDWORD pcchPathBuf)
2219 {
2220 LPWSTR szwComponent, szwQualifier = NULL, szwProduct = NULL;
2221 UINT r = ERROR_OUTOFMEMORY;
2222 awstring path;
2223
2224 TRACE("%s %s %u %s %u %u %p %p\n", debugstr_a(szComponent),
2225 debugstr_a(szQualifier), dwInstallMode, debugstr_a(szProduct),
2226 Unused1, Unused2, lpPathBuf, pcchPathBuf);
2227
2228 szwComponent = strdupAtoW( szComponent );
2229 if (szComponent && !szwComponent)
2230 goto end;
2231
2232 szwQualifier = strdupAtoW( szQualifier );
2233 if (szQualifier && !szwQualifier)
2234 goto end;
2235
2236 szwProduct = strdupAtoW( szProduct );
2237 if (szProduct && !szwProduct)
2238 goto end;
2239
2240 path.unicode = FALSE;
2241 path.str.a = lpPathBuf;
2242
2243 r = MSI_ProvideQualifiedComponentEx(szwComponent, szwQualifier,
2244 dwInstallMode, szwProduct, Unused1,
2245 Unused2, &path, pcchPathBuf);
2246 end:
2247 msi_free(szwProduct);
2248 msi_free(szwComponent);
2249 msi_free(szwQualifier);
2250
2251 return r;
2252 }
2253
2254 /***********************************************************************
2255 * MsiProvideQualifiedComponentW [MSI.@]
2256 */
2257 UINT WINAPI MsiProvideQualifiedComponentW( LPCWSTR szComponent,
2258 LPCWSTR szQualifier, DWORD dwInstallMode, LPWSTR lpPathBuf,
2259 LPDWORD pcchPathBuf)
2260 {
2261 return MsiProvideQualifiedComponentExW(szComponent, szQualifier,
2262 dwInstallMode, NULL, 0, 0, lpPathBuf, pcchPathBuf);
2263 }
2264
2265 /***********************************************************************
2266 * MsiProvideQualifiedComponentA [MSI.@]
2267 */
2268 UINT WINAPI MsiProvideQualifiedComponentA( LPCSTR szComponent,
2269 LPCSTR szQualifier, DWORD dwInstallMode, LPSTR lpPathBuf,
2270 LPDWORD pcchPathBuf)
2271 {
2272 return MsiProvideQualifiedComponentExA(szComponent, szQualifier,
2273 dwInstallMode, NULL, 0, 0, lpPathBuf, pcchPathBuf);
2274 }
2275
2276 /***********************************************************************
2277 * MSI_GetUserInfo [internal]
2278 */
2279 static USERINFOSTATE WINAPI MSI_GetUserInfo(LPCWSTR szProduct,
2280 awstring *lpUserNameBuf, LPDWORD pcchUserNameBuf,
2281 awstring *lpOrgNameBuf, LPDWORD pcchOrgNameBuf,
2282 awstring *lpSerialBuf, LPDWORD pcchSerialBuf)
2283 {
2284 HKEY hkey;
2285 LPWSTR user, org, serial;
2286 UINT r;
2287 USERINFOSTATE state;
2288
2289 TRACE("%s %p %p %p %p %p %p\n",debugstr_w(szProduct), lpUserNameBuf,
2290 pcchUserNameBuf, lpOrgNameBuf, pcchOrgNameBuf, lpSerialBuf,
2291 pcchSerialBuf);
2292
2293 if (!szProduct)
2294 return USERINFOSTATE_INVALIDARG;
2295
2296 r = MSIREG_OpenUninstallKey(szProduct, &hkey, FALSE);
2297 if (r != ERROR_SUCCESS)
2298 return USERINFOSTATE_UNKNOWN;
2299
2300 user = msi_reg_get_val_str( hkey, INSTALLPROPERTY_REGOWNERW );
2301 org = msi_reg_get_val_str( hkey, INSTALLPROPERTY_REGCOMPANYW );
2302 serial = msi_reg_get_val_str( hkey, INSTALLPROPERTY_PRODUCTIDW );
2303
2304 RegCloseKey(hkey);
2305
2306 state = USERINFOSTATE_PRESENT;
2307
2308 if (user)
2309 {
2310 r = msi_strcpy_to_awstring( user, lpUserNameBuf, pcchUserNameBuf );
2311 if (r == ERROR_MORE_DATA)
2312 state = USERINFOSTATE_MOREDATA;
2313 }
2314 else
2315 state = USERINFOSTATE_ABSENT;
2316 if (org)
2317 {
2318 r = msi_strcpy_to_awstring( org, lpOrgNameBuf, pcchOrgNameBuf );
2319 if (r == ERROR_MORE_DATA && state == USERINFOSTATE_PRESENT)
2320 state = USERINFOSTATE_MOREDATA;
2321 }
2322 /* msdn states: The user information is considered to be present even in the absence of a company name. */
2323 if (serial)
2324 {
2325 r = msi_strcpy_to_awstring( serial, lpSerialBuf, pcchSerialBuf );
2326 if (r == ERROR_MORE_DATA && state == USERINFOSTATE_PRESENT)
2327 state = USERINFOSTATE_MOREDATA;
2328 }
2329 else
2330 state = USERINFOSTATE_ABSENT;
2331
2332 msi_free( user );
2333 msi_free( org );
2334 msi_free( serial );
2335
2336 return state;
2337 }
2338
2339 /***********************************************************************
2340 * MsiGetUserInfoW [MSI.@]
2341 */
2342 USERINFOSTATE WINAPI MsiGetUserInfoW(LPCWSTR szProduct,
2343 LPWSTR lpUserNameBuf, LPDWORD pcchUserNameBuf,
2344 LPWSTR lpOrgNameBuf, LPDWORD pcchOrgNameBuf,
2345 LPWSTR lpSerialBuf, LPDWORD pcchSerialBuf)
2346 {
2347 awstring user, org, serial;
2348
2349 user.unicode = TRUE;
2350 user.str.w = lpUserNameBuf;
2351 org.unicode = TRUE;
2352 org.str.w = lpOrgNameBuf;
2353 serial.unicode = TRUE;
2354 serial.str.w = lpSerialBuf;
2355
2356 return MSI_GetUserInfo( szProduct, &user, pcchUserNameBuf,
2357 &org, pcchOrgNameBuf,
2358 &serial, pcchSerialBuf );
2359 }
2360
2361 USERINFOSTATE WINAPI MsiGetUserInfoA(LPCSTR szProduct,
2362 LPSTR lpUserNameBuf, LPDWORD pcchUserNameBuf,
2363 LPSTR lpOrgNameBuf, LPDWORD pcchOrgNameBuf,
2364 LPSTR lpSerialBuf, LPDWORD pcchSerialBuf)
2365 {
2366 awstring user, org, serial;
2367 LPWSTR prod;
2368 UINT r;
2369
2370 prod = strdupAtoW( szProduct );
2371 if (szProduct && !prod)
2372 return ERROR_OUTOFMEMORY;
2373
2374 user.unicode = FALSE;
2375 user.str.a = lpUserNameBuf;
2376 org.unicode = FALSE;
2377 org.str.a = lpOrgNameBuf;
2378 serial.unicode = FALSE;
2379 serial.str.a = lpSerialBuf;
2380
2381 r = MSI_GetUserInfo( prod, &user, pcchUserNameBuf,
2382 &org, pcchOrgNameBuf,
2383 &serial, pcchSerialBuf );
2384
2385 msi_free( prod );
2386
2387 return r;
2388 }
2389
2390 UINT WINAPI MsiCollectUserInfoW(LPCWSTR szProduct)
2391 {
2392 MSIHANDLE handle;
2393 UINT rc;
2394 MSIPACKAGE *package;
2395 static const WCHAR szFirstRun[] = {'F','i','r','s','t','R','u','n',0};
2396
2397 TRACE("(%s)\n",debugstr_w(szProduct));
2398
2399 rc = MsiOpenProductW(szProduct,&handle);
2400 if (rc != ERROR_SUCCESS)
2401 return ERROR_INVALID_PARAMETER;
2402
2403 package = msihandle2msiinfo(handle, MSIHANDLETYPE_PACKAGE);
2404 rc = ACTION_PerformUIAction(package, szFirstRun, -1);
2405 msiobj_release( &package->hdr );
2406
2407 MsiCloseHandle(handle);
2408
2409 return rc;
2410 }
2411
2412 UINT WINAPI MsiCollectUserInfoA(LPCSTR szProduct)
2413 {
2414 MSIHANDLE handle;
2415 UINT rc;
2416 MSIPACKAGE *package;
2417 static const WCHAR szFirstRun[] = {'F','i','r','s','t','R','u','n',0};
2418
2419 TRACE("(%s)\n",debugstr_a(szProduct));
2420
2421 rc = MsiOpenProductA(szProduct,&handle);
2422 if (rc != ERROR_SUCCESS)
2423 return ERROR_INVALID_PARAMETER;
2424
2425 package = msihandle2msiinfo(handle, MSIHANDLETYPE_PACKAGE);
2426 rc = ACTION_PerformUIAction(package, szFirstRun, -1);
2427 msiobj_release( &package->hdr );
2428
2429 MsiCloseHandle(handle);
2430
2431 return rc;
2432 }
2433
2434 /***********************************************************************
2435 * MsiConfigureFeatureA [MSI.@]
2436 */
2437 UINT WINAPI MsiConfigureFeatureA(LPCSTR szProduct, LPCSTR szFeature, INSTALLSTATE eInstallState)
2438 {
2439 LPWSTR prod, feat = NULL;
2440 UINT r = ERROR_OUTOFMEMORY;
2441
2442 TRACE("%s %s %i\n", debugstr_a(szProduct), debugstr_a(szFeature), eInstallState);
2443
2444 prod = strdupAtoW( szProduct );
2445 if (szProduct && !prod)
2446 goto end;
2447
2448 feat = strdupAtoW( szFeature );
2449 if (szFeature && !feat)
2450 goto end;
2451
2452 r = MsiConfigureFeatureW(prod, feat, eInstallState);
2453
2454 end:
2455 msi_free(feat);
2456 msi_free(prod);
2457
2458 return r;
2459 }
2460
2461 /***********************************************************************
2462 * MsiConfigureFeatureW [MSI.@]
2463 */
2464 UINT WINAPI MsiConfigureFeatureW(LPCWSTR szProduct, LPCWSTR szFeature, INSTALLSTATE eInstallState)
2465 {
2466 static const WCHAR szCostInit[] = { 'C','o','s','t','I','n','i','t','i','a','l','i','z','e',0 };
2467 MSIPACKAGE *package = NULL;
2468 UINT r;
2469 WCHAR sourcepath[MAX_PATH], filename[MAX_PATH];
2470 DWORD sz;
2471
2472 TRACE("%s %s %i\n", debugstr_w(szProduct), debugstr_w(szFeature), eInstallState);
2473
2474 if (!szProduct || !szFeature)
2475 return ERROR_INVALID_PARAMETER;
2476
2477 switch (eInstallState)
2478 {
2479 case INSTALLSTATE_DEFAULT:
2480 /* FIXME: how do we figure out the default location? */
2481 eInstallState = INSTALLSTATE_LOCAL;
2482 break;
2483 case INSTALLSTATE_LOCAL:
2484 case INSTALLSTATE_SOURCE:
2485 case INSTALLSTATE_ABSENT:
2486 case INSTALLSTATE_ADVERTISED:
2487 break;
2488 default:
2489 return ERROR_INVALID_PARAMETER;
2490 }
2491
2492 r = MSI_OpenProductW( szProduct, &package );
2493 if (r != ERROR_SUCCESS)
2494 return r;
2495
2496 sz = sizeof(sourcepath);
2497 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERUNMANAGED,
2498 MSICODE_PRODUCT, INSTALLPROPERTY_LASTUSEDSOURCEW, sourcepath, &sz);
2499
2500 sz = sizeof(filename);
2501 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERUNMANAGED,
2502 MSICODE_PRODUCT, INSTALLPROPERTY_PACKAGENAMEW, filename, &sz);
2503
2504 lstrcatW( sourcepath, filename );
2505
2506 MsiSetInternalUI( INSTALLUILEVEL_BASIC, NULL );
2507
2508 r = ACTION_PerformUIAction( package, szCostInit, -1 );
2509 if (r != ERROR_SUCCESS)
2510 goto end;
2511
2512 r = MSI_SetFeatureStateW( package, szFeature, eInstallState);
2513 if (r != ERROR_SUCCESS)
2514 goto end;
2515
2516 r = MSI_InstallPackage( package, sourcepath, NULL );
2517
2518 end:
2519 msiobj_release( &package->hdr );
2520
2521 return r;
2522 }
2523
2524 /***********************************************************************
2525 * MsiCreateAndVerifyInstallerDirectory [MSI.@]
2526 *
2527 * Notes: undocumented
2528 */
2529 UINT WINAPI MsiCreateAndVerifyInstallerDirectory(DWORD dwReserved)
2530 {
2531 WCHAR path[MAX_PATH];
2532
2533 TRACE("%d\n", dwReserved);
2534
2535 if (dwReserved)
2536 {
2537 FIXME("dwReserved=%d\n", dwReserved);
2538 return ERROR_INVALID_PARAMETER;
2539 }
2540
2541 if (!GetWindowsDirectoryW(path, MAX_PATH))
2542 return ERROR_FUNCTION_FAILED;
2543
2544 lstrcatW(path, installerW);
2545
2546 if (!CreateDirectoryW(path, NULL))
2547 return ERROR_FUNCTION_FAILED;
2548
2549 return ERROR_SUCCESS;
2550 }
2551
2552 /***********************************************************************
2553 * MsiGetShortcutTargetA [MSI.@]
2554 */
2555 UINT WINAPI MsiGetShortcutTargetA( LPCSTR szShortcutTarget,
2556 LPSTR szProductCode, LPSTR szFeatureId,
2557 LPSTR szComponentCode )
2558 {
2559 LPWSTR target;
2560 const int len = MAX_FEATURE_CHARS+1;
2561 WCHAR product[MAX_FEATURE_CHARS+1], feature[MAX_FEATURE_CHARS+1], component[MAX_FEATURE_CHARS+1];
2562 UINT r;
2563
2564 target = strdupAtoW( szShortcutTarget );
2565 if (szShortcutTarget && !target )
2566 return ERROR_OUTOFMEMORY;
2567 product[0] = 0;
2568 feature[0] = 0;
2569 component[0] = 0;
2570 r = MsiGetShortcutTargetW( target, product, feature, component );
2571 msi_free( target );
2572 if (r == ERROR_SUCCESS)
2573 {
2574 WideCharToMultiByte( CP_ACP, 0, product, -1, szProductCode, len, NULL, NULL );
2575 WideCharToMultiByte( CP_ACP, 0, feature, -1, szFeatureId, len, NULL, NULL );
2576 WideCharToMultiByte( CP_ACP, 0, component, -1, szComponentCode, len, NULL, NULL );
2577 }
2578 return r;
2579 }
2580
2581 /***********************************************************************
2582 * MsiGetShortcutTargetW [MSI.@]
2583 */
2584 UINT WINAPI MsiGetShortcutTargetW( LPCWSTR szShortcutTarget,
2585 LPWSTR szProductCode, LPWSTR szFeatureId,
2586 LPWSTR szComponentCode )
2587 {
2588 IShellLinkDataList *dl = NULL;
2589 IPersistFile *pf = NULL;
2590 LPEXP_DARWIN_LINK darwin = NULL;
2591 HRESULT r, init;
2592
2593 TRACE("%s %p %p %p\n", debugstr_w(szShortcutTarget),
2594 szProductCode, szFeatureId, szComponentCode );
2595
2596 init = CoInitialize(NULL);
2597
2598 r = CoCreateInstance( &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
2599 &IID_IPersistFile, (LPVOID*) &pf );
2600 if( SUCCEEDED( r ) )
2601 {
2602 r = IPersistFile_Load( pf, szShortcutTarget,
2603 STGM_READ | STGM_SHARE_DENY_WRITE );
2604 if( SUCCEEDED( r ) )
2605 {
2606 r = IPersistFile_QueryInterface( pf, &IID_IShellLinkDataList,
2607 (LPVOID*) &dl );
2608 if( SUCCEEDED( r ) )
2609 {
2610 IShellLinkDataList_CopyDataBlock( dl, EXP_DARWIN_ID_SIG,
2611 (LPVOID) &darwin );
2612 IShellLinkDataList_Release( dl );
2613 }
2614 }
2615 IPersistFile_Release( pf );
2616 }
2617
2618 if (SUCCEEDED(init))
2619 CoUninitialize();
2620
2621 TRACE("darwin = %p\n", darwin);
2622
2623 if (darwin)
2624 {
2625 DWORD sz;
2626 UINT ret;
2627
2628 ret = MsiDecomposeDescriptorW( darwin->szwDarwinID,
2629 szProductCode, szFeatureId, szComponentCode, &sz );
2630 LocalFree( darwin );
2631 return ret;
2632 }
2633
2634 return ERROR_FUNCTION_FAILED;
2635 }
2636
2637 UINT WINAPI MsiReinstallFeatureW( LPCWSTR szProduct, LPCWSTR szFeature,
2638 DWORD dwReinstallMode )
2639 {
2640 MSIPACKAGE* package = NULL;
2641 UINT r;
2642 WCHAR sourcepath[MAX_PATH];
2643 WCHAR filename[MAX_PATH];
2644 static const WCHAR szLogVerbose[] = {
2645 ' ','L','O','G','V','E','R','B','O','S','E',0 };
2646 static const WCHAR szInstalled[] = { 'I','n','s','t','a','l','l','e','d',0};
2647 static const WCHAR szReinstall[] = {'R','E','I','N','S','T','A','L','L',0};
2648 static const WCHAR szReinstallMode[] = {'R','E','I','N','S','T','A','L','L','M','O','D','E',0};
2649 static const WCHAR szOne[] = {'1',0};
2650 WCHAR reinstallmode[11];
2651 LPWSTR ptr;
2652 DWORD sz;
2653
2654 FIXME("%s %s %i\n", debugstr_w(szProduct), debugstr_w(szFeature),
2655 dwReinstallMode);
2656
2657 ptr = reinstallmode;
2658
2659 if (dwReinstallMode & REINSTALLMODE_FILEMISSING)
2660 *ptr++ = 'p';
2661 if (dwReinstallMode & REINSTALLMODE_FILEOLDERVERSION)
2662 *ptr++ = 'o';
2663 if (dwReinstallMode & REINSTALLMODE_FILEEQUALVERSION)
2664 *ptr++ = 'w';
2665 if (dwReinstallMode & REINSTALLMODE_FILEEXACT)
2666 *ptr++ = 'd';
2667 if (dwReinstallMode & REINSTALLMODE_FILEVERIFY)
2668 *ptr++ = 'c';
2669 if (dwReinstallMode & REINSTALLMODE_FILEREPLACE)
2670 *ptr++ = 'a';
2671 if (dwReinstallMode & REINSTALLMODE_USERDATA)
2672 *ptr++ = 'u';
2673 if (dwReinstallMode & REINSTALLMODE_MACHINEDATA)
2674 *ptr++ = 'm';
2675 if (dwReinstallMode & REINSTALLMODE_SHORTCUT)
2676 *ptr++ = 's';
2677 if (dwReinstallMode & REINSTALLMODE_PACKAGE)
2678 *ptr++ = 'v';
2679 *ptr = 0;
2680
2681 sz = sizeof(sourcepath);
2682 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERUNMANAGED,
2683 MSICODE_PRODUCT, INSTALLPROPERTY_LASTUSEDSOURCEW, sourcepath, &sz);
2684
2685 sz = sizeof(filename);
2686 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERUNMANAGED,
2687 MSICODE_PRODUCT, INSTALLPROPERTY_PACKAGENAMEW, filename, &sz);
2688
2689 lstrcatW( sourcepath, filename );
2690
2691 if (dwReinstallMode & REINSTALLMODE_PACKAGE)
2692 r = MSI_OpenPackageW( sourcepath, &package );
2693 else
2694 r = MSI_OpenProductW( szProduct, &package );
2695
2696 if (r != ERROR_SUCCESS)
2697 return r;
2698
2699 MSI_SetPropertyW( package, szReinstallMode, reinstallmode );
2700 MSI_SetPropertyW( package, szInstalled, szOne );
2701 MSI_SetPropertyW( package, szLogVerbose, szOne );
2702 MSI_SetPropertyW( package, szReinstall, szFeature );
2703
2704 r = MSI_InstallPackage( package, sourcepath, NULL );
2705
2706 msiobj_release( &package->hdr );
2707
2708 return r;
2709 }
2710
2711 UINT WINAPI MsiReinstallFeatureA( LPCSTR szProduct, LPCSTR szFeature,
2712 DWORD dwReinstallMode )
2713 {
2714 LPWSTR wszProduct;
2715 LPWSTR wszFeature;
2716 UINT rc;
2717
2718 TRACE("%s %s %i\n", debugstr_a(szProduct), debugstr_a(szFeature),
2719 dwReinstallMode);
2720
2721 wszProduct = strdupAtoW(szProduct);
2722 wszFeature = strdupAtoW(szFeature);
2723
2724 rc = MsiReinstallFeatureW(wszProduct, wszFeature, dwReinstallMode);
2725
2726 msi_free(wszProduct);
2727 msi_free(wszFeature);
2728 return rc;
2729 }
2730
2731 typedef struct
2732 {
2733 unsigned int i[2];
2734 unsigned int buf[4];
2735 unsigned char in[64];
2736 unsigned char digest[16];
2737 } MD5_CTX;
2738
2739 extern VOID WINAPI MD5Init( MD5_CTX *);
2740 extern VOID WINAPI MD5Update( MD5_CTX *, const unsigned char *, unsigned int );
2741 extern VOID WINAPI MD5Final( MD5_CTX *);
2742
2743 /***********************************************************************
2744 * MsiGetFileHashW [MSI.@]
2745 */
2746 UINT WINAPI MsiGetFileHashW( LPCWSTR szFilePath, DWORD dwOptions,
2747 PMSIFILEHASHINFO pHash )
2748 {
2749 HANDLE handle, mapping;
2750 void *p;
2751 DWORD length;
2752 UINT r = ERROR_FUNCTION_FAILED;
2753
2754 TRACE("%s %08x %p\n", debugstr_w(szFilePath), dwOptions, pHash );
2755
2756 if (!szFilePath)
2757 return ERROR_INVALID_PARAMETER;
2758
2759 if (!*szFilePath)
2760 return ERROR_PATH_NOT_FOUND;
2761
2762 if (dwOptions)
2763 return ERROR_INVALID_PARAMETER;
2764 if (!pHash)
2765 return ERROR_INVALID_PARAMETER;
2766 if (pHash->dwFileHashInfoSize < sizeof *pHash)
2767 return ERROR_INVALID_PARAMETER;
2768
2769 handle = CreateFileW( szFilePath, GENERIC_READ,
2770 FILE_SHARE_READ | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, 0, NULL );
2771 if (handle == INVALID_HANDLE_VALUE)
2772 return ERROR_FILE_NOT_FOUND;
2773
2774 length = GetFileSize( handle, NULL );
2775
2776 mapping = CreateFileMappingW( handle, NULL, PAGE_READONLY, 0, 0, NULL );
2777 if (mapping)
2778 {
2779 p = MapViewOfFile( mapping, FILE_MAP_READ, 0, 0, length );
2780 if (p)
2781 {
2782 MD5_CTX ctx;
2783
2784 MD5Init( &ctx );
2785 MD5Update( &ctx, p, length );
2786 MD5Final( &ctx );
2787 UnmapViewOfFile( p );
2788
2789 memcpy( pHash->dwData, &ctx.digest, sizeof pHash->dwData );
2790 r = ERROR_SUCCESS;
2791 }
2792 CloseHandle( mapping );
2793 }
2794 CloseHandle( handle );
2795
2796 return r;
2797 }
2798
2799 /***********************************************************************
2800 * MsiGetFileHashA [MSI.@]
2801 */
2802 UINT WINAPI MsiGetFileHashA( LPCSTR szFilePath, DWORD dwOptions,
2803 PMSIFILEHASHINFO pHash )
2804 {
2805 LPWSTR file;
2806 UINT r;
2807
2808 TRACE("%s %08x %p\n", debugstr_a(szFilePath), dwOptions, pHash );
2809
2810 file = strdupAtoW( szFilePath );
2811 if (szFilePath && !file)
2812 return ERROR_OUTOFMEMORY;
2813
2814 r = MsiGetFileHashW( file, dwOptions, pHash );
2815 msi_free( file );
2816 return r;
2817 }
2818
2819 /***********************************************************************
2820 * MsiAdvertiseScriptW [MSI.@]
2821 */
2822 UINT WINAPI MsiAdvertiseScriptW( LPCWSTR szScriptFile, DWORD dwFlags,
2823 PHKEY phRegData, BOOL fRemoveItems )
2824 {
2825 FIXME("%s %08x %p %d\n",
2826 debugstr_w( szScriptFile ), dwFlags, phRegData, fRemoveItems );
2827 return ERROR_CALL_NOT_IMPLEMENTED;
2828 }
2829
2830 /***********************************************************************
2831 * MsiAdvertiseScriptA [MSI.@]
2832 */
2833 UINT WINAPI MsiAdvertiseScriptA( LPCSTR szScriptFile, DWORD dwFlags,
2834 PHKEY phRegData, BOOL fRemoveItems )
2835 {
2836 FIXME("%s %08x %p %d\n",
2837 debugstr_a( szScriptFile ), dwFlags, phRegData, fRemoveItems );
2838 return ERROR_CALL_NOT_IMPLEMENTED;
2839 }
2840
2841 /***********************************************************************
2842 * MsiIsProductElevatedW [MSI.@]
2843 */
2844 UINT WINAPI MsiIsProductElevatedW( LPCWSTR szProduct, BOOL *pfElevated )
2845 {
2846 FIXME("%s %p - stub\n",
2847 debugstr_w( szProduct ), pfElevated );
2848 *pfElevated = TRUE;
2849 return ERROR_SUCCESS;
2850 }
2851
2852 /***********************************************************************
2853 * MsiIsProductElevatedA [MSI.@]
2854 */
2855 UINT WINAPI MsiIsProductElevatedA( LPCSTR szProduct, BOOL *pfElevated )
2856 {
2857 FIXME("%s %p - stub\n",
2858 debugstr_a( szProduct ), pfElevated );
2859 *pfElevated = TRUE;
2860 return ERROR_SUCCESS;
2861 }