2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2002,2003,2004,2005 Mike McCormack for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #define NONAMELESSUNION
35 #include "msiserver.h"
48 #include "wine/debug.h"
49 #include "wine/unicode.h"
51 WINE_DEFAULT_DEBUG_CHANNEL(msi
);
53 static const WCHAR installerW
[] = {'\\','I','n','s','t','a','l','l','e','r',0};
55 UINT
msi_locate_product(LPCWSTR szProduct
, MSIINSTALLCONTEXT
*context
)
59 *context
= MSIINSTALLCONTEXT_NONE
;
60 if (!szProduct
) return ERROR_UNKNOWN_PRODUCT
;
62 if (MSIREG_OpenProductKey(szProduct
, NULL
, MSIINSTALLCONTEXT_USERMANAGED
,
63 &hkey
, FALSE
) == ERROR_SUCCESS
)
64 *context
= MSIINSTALLCONTEXT_USERMANAGED
;
65 else if (MSIREG_OpenProductKey(szProduct
, NULL
, MSIINSTALLCONTEXT_MACHINE
,
66 &hkey
, FALSE
) == ERROR_SUCCESS
)
67 *context
= MSIINSTALLCONTEXT_MACHINE
;
68 else if (MSIREG_OpenProductKey(szProduct
, NULL
,
69 MSIINSTALLCONTEXT_USERUNMANAGED
,
70 &hkey
, FALSE
) == ERROR_SUCCESS
)
71 *context
= MSIINSTALLCONTEXT_USERUNMANAGED
;
75 if (*context
== MSIINSTALLCONTEXT_NONE
)
76 return ERROR_UNKNOWN_PRODUCT
;
81 UINT WINAPI
MsiOpenProductA(LPCSTR szProduct
, MSIHANDLE
*phProduct
)
84 LPWSTR szwProd
= NULL
;
86 TRACE("%s %p\n",debugstr_a(szProduct
), phProduct
);
90 szwProd
= strdupAtoW( szProduct
);
92 return ERROR_OUTOFMEMORY
;
95 r
= MsiOpenProductW( szwProd
, phProduct
);
102 static UINT
MSI_OpenProductW(LPCWSTR szProduct
, MSIPACKAGE
**package
)
107 MSIINSTALLCONTEXT context
;
109 static const WCHAR managed
[] = {
110 'M','a','n','a','g','e','d','L','o','c','a','l','P','a','c','k','a','g','e',0};
111 static const WCHAR local
[] = {'L','o','c','a','l','P','a','c','k','a','g','e',0};
113 TRACE("%s %p\n", debugstr_w(szProduct
), package
);
115 r
= msi_locate_product(szProduct
, &context
);
116 if (r
!= ERROR_SUCCESS
)
119 r
= MSIREG_OpenInstallProps(szProduct
, context
, NULL
, &props
, FALSE
);
120 if (r
!= ERROR_SUCCESS
)
121 return ERROR_UNKNOWN_PRODUCT
;
123 if (context
== MSIINSTALLCONTEXT_USERMANAGED
)
124 path
= msi_reg_get_val_str(props
, managed
);
126 path
= msi_reg_get_val_str(props
, local
);
128 r
= ERROR_UNKNOWN_PRODUCT
;
130 if (!path
|| GetFileAttributesW(path
) == INVALID_FILE_ATTRIBUTES
)
133 if (PathIsRelativeW(path
))
135 r
= ERROR_INSTALL_PACKAGE_OPEN_FAILED
;
139 r
= MSI_OpenPackageW(path
, package
);
147 UINT WINAPI
MsiOpenProductW(LPCWSTR szProduct
, MSIHANDLE
*phProduct
)
149 MSIPACKAGE
*package
= NULL
;
150 WCHAR squished_pc
[GUID_SIZE
];
153 if (!szProduct
|| !squash_guid(szProduct
, squished_pc
))
154 return ERROR_INVALID_PARAMETER
;
157 return ERROR_INVALID_PARAMETER
;
159 r
= MSI_OpenProductW(szProduct
, &package
);
160 if (r
!= ERROR_SUCCESS
)
163 *phProduct
= alloc_msihandle(&package
->hdr
);
165 r
= ERROR_NOT_ENOUGH_MEMORY
;
167 msiobj_release(&package
->hdr
);
171 UINT WINAPI
MsiAdvertiseProductA(LPCSTR szPackagePath
, LPCSTR szScriptfilePath
,
172 LPCSTR szTransforms
, LANGID lgidLanguage
)
174 FIXME("%s %s %s %08x\n",debugstr_a(szPackagePath
),
175 debugstr_a(szScriptfilePath
), debugstr_a(szTransforms
), lgidLanguage
);
176 return ERROR_CALL_NOT_IMPLEMENTED
;
179 UINT WINAPI
MsiAdvertiseProductW(LPCWSTR szPackagePath
, LPCWSTR szScriptfilePath
,
180 LPCWSTR szTransforms
, LANGID lgidLanguage
)
182 FIXME("%s %s %s %08x\n",debugstr_w(szPackagePath
),
183 debugstr_w(szScriptfilePath
), debugstr_w(szTransforms
), lgidLanguage
);
184 return ERROR_CALL_NOT_IMPLEMENTED
;
187 UINT WINAPI
MsiAdvertiseProductExA(LPCSTR szPackagePath
, LPCSTR szScriptfilePath
,
188 LPCSTR szTransforms
, LANGID lgidLanguage
, DWORD dwPlatform
, DWORD dwOptions
)
190 FIXME("%s %s %s %08x %08x %08x\n", debugstr_a(szPackagePath
),
191 debugstr_a(szScriptfilePath
), debugstr_a(szTransforms
),
192 lgidLanguage
, dwPlatform
, dwOptions
);
193 return ERROR_CALL_NOT_IMPLEMENTED
;
196 UINT WINAPI
MsiAdvertiseProductExW( LPCWSTR szPackagePath
, LPCWSTR szScriptfilePath
,
197 LPCWSTR szTransforms
, LANGID lgidLanguage
, DWORD dwPlatform
, DWORD dwOptions
)
199 FIXME("%s %s %s %08x %08x %08x\n", debugstr_w(szPackagePath
),
200 debugstr_w(szScriptfilePath
), debugstr_w(szTransforms
),
201 lgidLanguage
, dwPlatform
, dwOptions
);
202 return ERROR_CALL_NOT_IMPLEMENTED
;
205 UINT WINAPI
MsiInstallProductA(LPCSTR szPackagePath
, LPCSTR szCommandLine
)
207 LPWSTR szwPath
= NULL
, szwCommand
= NULL
;
208 UINT r
= ERROR_OUTOFMEMORY
;
210 TRACE("%s %s\n",debugstr_a(szPackagePath
), debugstr_a(szCommandLine
));
214 szwPath
= strdupAtoW( szPackagePath
);
221 szwCommand
= strdupAtoW( szCommandLine
);
226 r
= MsiInstallProductW( szwPath
, szwCommand
);
230 msi_free( szwCommand
);
235 UINT WINAPI
MsiInstallProductW(LPCWSTR szPackagePath
, LPCWSTR szCommandLine
)
237 MSIPACKAGE
*package
= NULL
;
240 TRACE("%s %s\n",debugstr_w(szPackagePath
), debugstr_w(szCommandLine
));
243 return ERROR_INVALID_PARAMETER
;
246 return ERROR_PATH_NOT_FOUND
;
248 r
= MSI_OpenPackageW( szPackagePath
, &package
);
249 if (r
== ERROR_SUCCESS
)
251 r
= MSI_InstallPackage( package
, szPackagePath
, szCommandLine
);
252 msiobj_release( &package
->hdr
);
258 UINT WINAPI
MsiReinstallProductA(LPCSTR szProduct
, DWORD dwReinstallMode
)
263 TRACE("%s %08x\n", debugstr_a(szProduct
), dwReinstallMode
);
265 wszProduct
= strdupAtoW(szProduct
);
267 rc
= MsiReinstallProductW(wszProduct
, dwReinstallMode
);
269 msi_free(wszProduct
);
273 UINT WINAPI
MsiReinstallProductW(LPCWSTR szProduct
, DWORD dwReinstallMode
)
275 TRACE("%s %08x\n", debugstr_w(szProduct
), dwReinstallMode
);
277 return MsiReinstallFeatureW(szProduct
, szAll
, dwReinstallMode
);
280 UINT WINAPI
MsiApplyPatchA(LPCSTR szPatchPackage
, LPCSTR szInstallPackage
,
281 INSTALLTYPE eInstallType
, LPCSTR szCommandLine
)
283 LPWSTR patch_package
= NULL
;
284 LPWSTR install_package
= NULL
;
285 LPWSTR command_line
= NULL
;
286 UINT r
= ERROR_OUTOFMEMORY
;
288 TRACE("%s %s %d %s\n", debugstr_a(szPatchPackage
), debugstr_a(szInstallPackage
),
289 eInstallType
, debugstr_a(szCommandLine
));
291 if (szPatchPackage
&& !(patch_package
= strdupAtoW(szPatchPackage
)))
294 if (szInstallPackage
&& !(install_package
= strdupAtoW(szInstallPackage
)))
297 if (szCommandLine
&& !(command_line
= strdupAtoW(szCommandLine
)))
300 r
= MsiApplyPatchW(patch_package
, install_package
, eInstallType
, command_line
);
303 msi_free(patch_package
);
304 msi_free(install_package
);
305 msi_free(command_line
);
310 static UINT
get_patch_product_codes( LPCWSTR szPatchPackage
, WCHAR
***product_codes
)
312 MSIHANDLE patch
, info
= 0;
315 static WCHAR empty
[] = {0};
318 r
= MsiOpenDatabaseW( szPatchPackage
, MSIDBOPEN_READONLY
, &patch
);
319 if (r
!= ERROR_SUCCESS
)
322 r
= MsiGetSummaryInformationW( patch
, NULL
, 0, &info
);
323 if (r
!= ERROR_SUCCESS
)
327 r
= MsiSummaryInfoGetPropertyW( info
, PID_TEMPLATE
, &type
, NULL
, NULL
, empty
, &size
);
328 if (r
!= ERROR_MORE_DATA
|| !size
|| type
!= VT_LPSTR
)
330 ERR("Failed to read product codes from patch\n");
331 r
= ERROR_FUNCTION_FAILED
;
335 codes
= msi_alloc( ++size
* sizeof(WCHAR
) );
338 r
= ERROR_OUTOFMEMORY
;
342 r
= MsiSummaryInfoGetPropertyW( info
, PID_TEMPLATE
, &type
, NULL
, NULL
, codes
, &size
);
343 if (r
== ERROR_SUCCESS
)
344 *product_codes
= msi_split_string( codes
, ';' );
347 MsiCloseHandle( info
);
348 MsiCloseHandle( patch
);
353 static UINT
MSI_ApplyPatchW(LPCWSTR szPatchPackage
, LPCWSTR szProductCode
, LPCWSTR szCommandLine
)
355 UINT i
, r
= ERROR_FUNCTION_FAILED
;
357 LPCWSTR cmd_ptr
= szCommandLine
;
358 LPWSTR cmd
, *codes
= NULL
;
359 BOOL succeeded
= FALSE
;
361 static const WCHAR fmt
[] = {'%','s',' ','P','A','T','C','H','=','"','%','s','"',0};
362 static WCHAR empty
[] = {0};
364 if (!szPatchPackage
|| !szPatchPackage
[0])
365 return ERROR_INVALID_PARAMETER
;
367 if (!szProductCode
&& (r
= get_patch_product_codes( szPatchPackage
, &codes
)))
373 size
= strlenW(cmd_ptr
) + strlenW(fmt
) + strlenW(szPatchPackage
) + 1;
374 cmd
= msi_alloc(size
* sizeof(WCHAR
));
378 return ERROR_OUTOFMEMORY
;
380 sprintfW(cmd
, fmt
, cmd_ptr
, szPatchPackage
);
383 r
= MsiConfigureProductExW(szProductCode
, INSTALLLEVEL_DEFAULT
, INSTALLSTATE_DEFAULT
, cmd
);
386 for (i
= 0; codes
[i
]; i
++)
388 r
= MsiConfigureProductExW(codes
[i
], INSTALLLEVEL_DEFAULT
, INSTALLSTATE_DEFAULT
, cmd
);
389 if (r
== ERROR_SUCCESS
)
391 TRACE("patch applied\n");
405 UINT WINAPI
MsiApplyPatchW(LPCWSTR szPatchPackage
, LPCWSTR szInstallPackage
,
406 INSTALLTYPE eInstallType
, LPCWSTR szCommandLine
)
408 TRACE("%s %s %d %s\n", debugstr_w(szPatchPackage
), debugstr_w(szInstallPackage
),
409 eInstallType
, debugstr_w(szCommandLine
));
411 if (szInstallPackage
|| eInstallType
== INSTALLTYPE_NETWORK_IMAGE
||
412 eInstallType
== INSTALLTYPE_SINGLE_INSTANCE
)
414 FIXME("Only reading target products from patch\n");
415 return ERROR_CALL_NOT_IMPLEMENTED
;
418 return MSI_ApplyPatchW(szPatchPackage
, NULL
, szCommandLine
);
421 UINT WINAPI
MsiApplyMultiplePatchesA(LPCSTR szPatchPackages
,
422 LPCSTR szProductCode
, LPCSTR szPropertiesList
)
424 LPWSTR patch_packages
= NULL
;
425 LPWSTR product_code
= NULL
;
426 LPWSTR properties_list
= NULL
;
427 UINT r
= ERROR_OUTOFMEMORY
;
429 TRACE("%s %s %s\n", debugstr_a(szPatchPackages
), debugstr_a(szProductCode
),
430 debugstr_a(szPropertiesList
));
432 if (!szPatchPackages
|| !szPatchPackages
[0])
433 return ERROR_INVALID_PARAMETER
;
435 if (!(patch_packages
= strdupAtoW(szPatchPackages
)))
436 return ERROR_OUTOFMEMORY
;
438 if (szProductCode
&& !(product_code
= strdupAtoW(szProductCode
)))
441 if (szPropertiesList
&& !(properties_list
= strdupAtoW(szPropertiesList
)))
444 r
= MsiApplyMultiplePatchesW(patch_packages
, product_code
, properties_list
);
447 msi_free(patch_packages
);
448 msi_free(product_code
);
449 msi_free(properties_list
);
454 UINT WINAPI
MsiApplyMultiplePatchesW(LPCWSTR szPatchPackages
,
455 LPCWSTR szProductCode
, LPCWSTR szPropertiesList
)
457 UINT r
= ERROR_SUCCESS
;
460 TRACE("%s %s %s\n", debugstr_w(szPatchPackages
), debugstr_w(szProductCode
),
461 debugstr_w(szPropertiesList
));
463 if (!szPatchPackages
|| !szPatchPackages
[0])
464 return ERROR_INVALID_PARAMETER
;
466 beg
= end
= szPatchPackages
;
472 while (*beg
== ' ') beg
++;
473 while (*end
&& *end
!= ';') end
++;
476 while (len
&& beg
[len
- 1] == ' ') len
--;
478 if (!len
) return ERROR_INVALID_NAME
;
480 patch
= msi_alloc((len
+ 1) * sizeof(WCHAR
));
482 return ERROR_OUTOFMEMORY
;
484 memcpy(patch
, beg
, len
* sizeof(WCHAR
));
487 r
= MSI_ApplyPatchW(patch
, szProductCode
, szPropertiesList
);
490 if (r
!= ERROR_SUCCESS
)
498 static void free_patchinfo( DWORD count
, MSIPATCHSEQUENCEINFOW
*info
)
501 for (i
= 0; i
< count
; i
++) msi_free( (WCHAR
*)info
[i
].szPatchData
);
505 static MSIPATCHSEQUENCEINFOW
*patchinfoAtoW( DWORD count
, const MSIPATCHSEQUENCEINFOA
*info
)
508 MSIPATCHSEQUENCEINFOW
*ret
;
510 if (!(ret
= msi_alloc( count
* sizeof(MSIPATCHSEQUENCEINFOW
) ))) return NULL
;
511 for (i
= 0; i
< count
; i
++)
513 if (info
[i
].szPatchData
&& !(ret
[i
].szPatchData
= strdupAtoW( info
[i
].szPatchData
)))
515 free_patchinfo( i
, ret
);
518 ret
[i
].ePatchDataType
= info
[i
].ePatchDataType
;
519 ret
[i
].dwOrder
= info
[i
].dwOrder
;
520 ret
[i
].uStatus
= info
[i
].uStatus
;
525 UINT WINAPI
MsiDetermineApplicablePatchesA(LPCSTR szProductPackagePath
,
526 DWORD cPatchInfo
, PMSIPATCHSEQUENCEINFOA pPatchInfo
)
529 WCHAR
*package_path
= NULL
;
530 MSIPATCHSEQUENCEINFOW
*psi
;
532 TRACE("%s, %u, %p\n", debugstr_a(szProductPackagePath
), cPatchInfo
, pPatchInfo
);
534 if (szProductPackagePath
&& !(package_path
= strdupAtoW( szProductPackagePath
)))
535 return ERROR_OUTOFMEMORY
;
537 if (!(psi
= patchinfoAtoW( cPatchInfo
, pPatchInfo
)))
539 msi_free( package_path
);
540 return ERROR_OUTOFMEMORY
;
542 r
= MsiDetermineApplicablePatchesW( package_path
, cPatchInfo
, psi
);
543 if (r
== ERROR_SUCCESS
)
545 for (i
= 0; i
< cPatchInfo
; i
++)
547 pPatchInfo
[i
].dwOrder
= psi
[i
].dwOrder
;
548 pPatchInfo
[i
].uStatus
= psi
[i
].uStatus
;
551 msi_free( package_path
);
552 free_patchinfo( cPatchInfo
, psi
);
556 static UINT
MSI_ApplicablePatchW( MSIPACKAGE
*package
, LPCWSTR patch
)
559 MSIDATABASE
*patch_db
;
560 UINT r
= ERROR_SUCCESS
;
562 r
= MSI_OpenDatabaseW( patch
, MSIDBOPEN_READONLY
, &patch_db
);
563 if (r
!= ERROR_SUCCESS
)
565 WARN("failed to open patch file %s\n", debugstr_w(patch
));
569 si
= MSI_GetSummaryInformationW( patch_db
->storage
, 0 );
572 msiobj_release( &patch_db
->hdr
);
573 return ERROR_FUNCTION_FAILED
;
576 r
= msi_check_patch_applicable( package
, si
);
577 if (r
!= ERROR_SUCCESS
)
578 TRACE("patch not applicable\n");
580 msiobj_release( &patch_db
->hdr
);
581 msiobj_release( &si
->hdr
);
585 /* IXMLDOMDocument should be set to XPath mode already */
586 static UINT
MSI_ApplicablePatchXML( MSIPACKAGE
*package
, IXMLDOMDocument
*desc
)
588 static const WCHAR queryW
[] = {'M','s','i','P','a','t','c','h','/',
589 'T','a','r','g','e','t','P','r','o','d','u','c','t','/',
590 'T','a','r','g','e','t','P','r','o','d','u','c','t','C','o','d','e',0};
591 UINT r
= ERROR_FUNCTION_FAILED
;
592 IXMLDOMNodeList
*list
;
598 product_code
= msi_dup_property( package
->db
, szProductCode
);
601 /* FIXME: the property ProductCode should be written into the DB somewhere */
602 ERR("no product code to check\n");
603 return ERROR_SUCCESS
;
606 s
= SysAllocString(queryW
);
607 hr
= IXMLDOMDocument_selectNodes( desc
, s
, &list
);
610 return ERROR_INVALID_PATCH_XML
;
612 while (IXMLDOMNodeList_nextNode( list
, &node
) == S_OK
&& r
!= ERROR_SUCCESS
)
614 hr
= IXMLDOMNode_get_text( node
, &s
);
615 IXMLDOMNode_Release( node
);
618 if (!strcmpW( s
, product_code
)) r
= ERROR_SUCCESS
;
622 IXMLDOMNodeList_Release( list
);
624 if (r
!= ERROR_SUCCESS
)
625 TRACE("patch not applicable\n");
627 msi_free( product_code
);
631 static UINT
determine_patch_sequence( MSIPACKAGE
*package
, DWORD count
, MSIPATCHSEQUENCEINFOW
*info
)
633 IXMLDOMDocument
*desc
= NULL
;
637 FIXME("patch ordering not supported\n");
639 for (i
= 0; i
< count
; i
++)
641 switch (info
[i
].ePatchDataType
)
643 case MSIPATCH_DATATYPE_PATCHFILE
:
645 if (MSI_ApplicablePatchW( package
, info
[i
].szPatchData
) != ERROR_SUCCESS
)
647 info
[i
].dwOrder
= ~0u;
648 info
[i
].uStatus
= ERROR_PATCH_TARGET_NOT_FOUND
;
653 info
[i
].uStatus
= ERROR_SUCCESS
;
657 case MSIPATCH_DATATYPE_XMLPATH
:
658 case MSIPATCH_DATATYPE_XMLBLOB
:
666 hr
= CoCreateInstance( &CLSID_DOMDocument30
, NULL
, CLSCTX_INPROC_SERVER
,
667 &IID_IXMLDOMDocument
, (void**)&desc
);
670 ERR("failed to create DOMDocument30 instance, 0x%08x\n", hr
);
671 return ERROR_FUNCTION_FAILED
;
675 s
= SysAllocString( info
[i
].szPatchData
);
676 if (info
[i
].ePatchDataType
== MSIPATCH_DATATYPE_XMLPATH
)
680 V_VT(&src
) = VT_BSTR
;
682 hr
= IXMLDOMDocument_load( desc
, src
, &b
);
685 hr
= IXMLDOMDocument_loadXML( desc
, s
, &b
);
689 ERR("failed to parse patch description\n");
690 IXMLDOMDocument_Release( desc
);
694 if (MSI_ApplicablePatchXML( package
, desc
) != ERROR_SUCCESS
)
696 info
[i
].dwOrder
= ~0u;
697 info
[i
].uStatus
= ERROR_PATCH_TARGET_NOT_FOUND
;
702 info
[i
].uStatus
= ERROR_SUCCESS
;
708 FIXME("unknown patch data type %u\n", info
[i
].ePatchDataType
);
710 info
[i
].uStatus
= ERROR_SUCCESS
;
715 TRACE("szPatchData: %s\n", debugstr_w(info
[i
].szPatchData
));
716 TRACE("ePatchDataType: %u\n", info
[i
].ePatchDataType
);
717 TRACE("dwOrder: %u\n", info
[i
].dwOrder
);
718 TRACE("uStatus: %u\n", info
[i
].uStatus
);
721 if (desc
) IXMLDOMDocument_Release( desc
);
723 return ERROR_SUCCESS
;
726 UINT WINAPI
MsiDetermineApplicablePatchesW(LPCWSTR szProductPackagePath
,
727 DWORD cPatchInfo
, PMSIPATCHSEQUENCEINFOW pPatchInfo
)
732 TRACE("%s, %u, %p\n", debugstr_w(szProductPackagePath
), cPatchInfo
, pPatchInfo
);
734 r
= MSI_OpenPackageW( szProductPackagePath
, &package
);
735 if (r
!= ERROR_SUCCESS
)
737 ERR("failed to open package %u\n", r
);
740 r
= determine_patch_sequence( package
, cPatchInfo
, pPatchInfo
);
741 msiobj_release( &package
->hdr
);
745 UINT WINAPI
MsiDeterminePatchSequenceA( LPCSTR product
, LPCSTR usersid
,
746 MSIINSTALLCONTEXT context
, DWORD count
, PMSIPATCHSEQUENCEINFOA patchinfo
)
749 WCHAR
*productW
, *usersidW
= NULL
;
750 MSIPATCHSEQUENCEINFOW
*patchinfoW
;
752 TRACE("%s, %s, %d, %d, %p\n", debugstr_a(product
), debugstr_a(usersid
),
753 context
, count
, patchinfo
);
755 if (!product
) return ERROR_INVALID_PARAMETER
;
756 if (!(productW
= strdupAtoW( product
))) return ERROR_OUTOFMEMORY
;
757 if (usersid
&& !(usersidW
= strdupAtoW( usersid
)))
759 msi_free( productW
);
760 return ERROR_OUTOFMEMORY
;
762 if (!(patchinfoW
= patchinfoAtoW( count
, patchinfo
)))
764 msi_free( productW
);
765 msi_free( usersidW
);
766 return ERROR_OUTOFMEMORY
;
768 r
= MsiDeterminePatchSequenceW( productW
, usersidW
, context
, count
, patchinfoW
);
769 if (r
== ERROR_SUCCESS
)
771 for (i
= 0; i
< count
; i
++)
773 patchinfo
[i
].dwOrder
= patchinfoW
[i
].dwOrder
;
774 patchinfo
[i
].uStatus
= patchinfoW
[i
].uStatus
;
777 msi_free( productW
);
778 msi_free( usersidW
);
779 free_patchinfo( count
, patchinfoW
);
783 static UINT
open_package( const WCHAR
*product
, const WCHAR
*usersid
,
784 MSIINSTALLCONTEXT context
, MSIPACKAGE
**package
)
788 WCHAR
*localpath
, sourcepath
[MAX_PATH
], filename
[MAX_PATH
];
790 r
= MSIREG_OpenInstallProps( product
, context
, usersid
, &props
, FALSE
);
791 if (r
!= ERROR_SUCCESS
) return ERROR_BAD_CONFIGURATION
;
793 if ((localpath
= msi_reg_get_val_str( props
, szLocalPackage
)))
795 strcpyW( sourcepath
, localpath
);
796 msi_free( localpath
);
798 RegCloseKey( props
);
799 if (!localpath
|| GetFileAttributesW( sourcepath
) == INVALID_FILE_ATTRIBUTES
)
801 DWORD sz
= sizeof(sourcepath
);
802 MsiSourceListGetInfoW( product
, usersid
, context
, MSICODE_PRODUCT
,
803 INSTALLPROPERTY_LASTUSEDSOURCEW
, sourcepath
, &sz
);
804 sz
= sizeof(filename
);
805 MsiSourceListGetInfoW( product
, usersid
, context
, MSICODE_PRODUCT
,
806 INSTALLPROPERTY_PACKAGENAMEW
, filename
, &sz
);
807 strcatW( sourcepath
, filename
);
809 if (GetFileAttributesW( sourcepath
) == INVALID_FILE_ATTRIBUTES
)
810 return ERROR_INSTALL_SOURCE_ABSENT
;
812 return MSI_OpenPackageW( sourcepath
, package
);
815 UINT WINAPI
MsiDeterminePatchSequenceW( LPCWSTR product
, LPCWSTR usersid
,
816 MSIINSTALLCONTEXT context
, DWORD count
, PMSIPATCHSEQUENCEINFOW patchinfo
)
821 TRACE("%s, %s, %d, %d, %p\n", debugstr_w(product
), debugstr_w(usersid
),
822 context
, count
, patchinfo
);
824 if (!product
) return ERROR_INVALID_PARAMETER
;
825 r
= open_package( product
, usersid
, context
, &package
);
826 if (r
!= ERROR_SUCCESS
) return r
;
828 r
= determine_patch_sequence( package
, count
, patchinfo
);
829 msiobj_release( &package
->hdr
);
833 UINT WINAPI
MsiConfigureProductExW(LPCWSTR szProduct
, int iInstallLevel
,
834 INSTALLSTATE eInstallState
, LPCWSTR szCommandLine
)
836 MSIPACKAGE
* package
= NULL
;
837 MSIINSTALLCONTEXT context
;
840 WCHAR sourcepath
[MAX_PATH
], filename
[MAX_PATH
];
843 static const WCHAR szInstalled
[] = {
844 ' ','I','n','s','t','a','l','l','e','d','=','1',0};
845 static const WCHAR szMaxInstallLevel
[] = {
846 ' ','I','N','S','T','A','L','L','L','E','V','E','L','=','3','2','7','6','7',0};
847 static const WCHAR szRemoveAll
[] = {
848 ' ','R','E','M','O','V','E','=','A','L','L',0};
849 static const WCHAR szMachine
[] = {
850 ' ','A','L','L','U','S','E','R','S','=','1',0};
852 TRACE("%s %d %d %s\n",debugstr_w(szProduct
), iInstallLevel
, eInstallState
,
853 debugstr_w(szCommandLine
));
855 if (!szProduct
|| lstrlenW(szProduct
) != GUID_SIZE
- 1)
856 return ERROR_INVALID_PARAMETER
;
858 if (eInstallState
== INSTALLSTATE_ADVERTISED
||
859 eInstallState
== INSTALLSTATE_SOURCE
)
861 FIXME("State %d not implemented\n", eInstallState
);
862 return ERROR_CALL_NOT_IMPLEMENTED
;
865 r
= msi_locate_product(szProduct
, &context
);
866 if (r
!= ERROR_SUCCESS
)
869 r
= open_package(szProduct
, NULL
, context
, &package
);
870 if (r
!= ERROR_SUCCESS
)
873 sz
= lstrlenW(szInstalled
) + 1;
876 sz
+= lstrlenW(szCommandLine
);
878 if (eInstallState
!= INSTALLSTATE_DEFAULT
)
879 sz
+= lstrlenW(szMaxInstallLevel
);
881 if (eInstallState
== INSTALLSTATE_ABSENT
)
882 sz
+= lstrlenW(szRemoveAll
);
884 if (context
== MSIINSTALLCONTEXT_MACHINE
)
885 sz
+= lstrlenW(szMachine
);
887 commandline
= msi_alloc(sz
* sizeof(WCHAR
));
890 r
= ERROR_OUTOFMEMORY
;
896 lstrcpyW(commandline
,szCommandLine
);
898 if (eInstallState
!= INSTALLSTATE_DEFAULT
)
899 lstrcatW(commandline
, szMaxInstallLevel
);
901 if (eInstallState
== INSTALLSTATE_ABSENT
)
902 lstrcatW(commandline
, szRemoveAll
);
904 if (context
== MSIINSTALLCONTEXT_MACHINE
)
905 lstrcatW(commandline
, szMachine
);
907 sz
= sizeof(sourcepath
);
908 MsiSourceListGetInfoW(szProduct
, NULL
, context
, MSICODE_PRODUCT
,
909 INSTALLPROPERTY_LASTUSEDSOURCEW
, sourcepath
, &sz
);
911 sz
= sizeof(filename
);
912 MsiSourceListGetInfoW(szProduct
, NULL
, context
, MSICODE_PRODUCT
,
913 INSTALLPROPERTY_PACKAGENAMEW
, filename
, &sz
);
915 strcatW(sourcepath
, filename
);
917 r
= MSI_InstallPackage( package
, sourcepath
, commandline
);
919 msi_free(commandline
);
922 msiobj_release( &package
->hdr
);
927 UINT WINAPI
MsiConfigureProductExA(LPCSTR szProduct
, int iInstallLevel
,
928 INSTALLSTATE eInstallState
, LPCSTR szCommandLine
)
930 LPWSTR szwProduct
= NULL
;
931 LPWSTR szwCommandLine
= NULL
;
932 UINT r
= ERROR_OUTOFMEMORY
;
936 szwProduct
= strdupAtoW( szProduct
);
943 szwCommandLine
= strdupAtoW( szCommandLine
);
948 r
= MsiConfigureProductExW( szwProduct
, iInstallLevel
, eInstallState
,
951 msi_free( szwProduct
);
952 msi_free( szwCommandLine
);
957 UINT WINAPI
MsiConfigureProductA(LPCSTR szProduct
, int iInstallLevel
,
958 INSTALLSTATE eInstallState
)
960 LPWSTR szwProduct
= NULL
;
963 TRACE("%s %d %d\n",debugstr_a(szProduct
), iInstallLevel
, eInstallState
);
967 szwProduct
= strdupAtoW( szProduct
);
969 return ERROR_OUTOFMEMORY
;
972 r
= MsiConfigureProductW( szwProduct
, iInstallLevel
, eInstallState
);
973 msi_free( szwProduct
);
978 UINT WINAPI
MsiConfigureProductW(LPCWSTR szProduct
, int iInstallLevel
,
979 INSTALLSTATE eInstallState
)
981 return MsiConfigureProductExW(szProduct
, iInstallLevel
, eInstallState
, NULL
);
984 UINT WINAPI
MsiGetProductCodeA(LPCSTR szComponent
, LPSTR szBuffer
)
986 LPWSTR szwComponent
= NULL
;
988 WCHAR szwBuffer
[GUID_SIZE
];
990 TRACE("%s %p\n", debugstr_a(szComponent
), szBuffer
);
994 szwComponent
= strdupAtoW( szComponent
);
996 return ERROR_OUTOFMEMORY
;
1000 r
= MsiGetProductCodeW( szwComponent
, szwBuffer
);
1003 WideCharToMultiByte(CP_ACP
, 0, szwBuffer
, -1, szBuffer
, GUID_SIZE
, NULL
, NULL
);
1005 msi_free( szwComponent
);
1010 UINT WINAPI
MsiGetProductCodeW(LPCWSTR szComponent
, LPWSTR szBuffer
)
1013 HKEY compkey
, prodkey
;
1014 WCHAR squished_comp
[GUID_SIZE
];
1015 WCHAR squished_prod
[GUID_SIZE
];
1016 DWORD sz
= GUID_SIZE
;
1018 TRACE("%s %p\n", debugstr_w(szComponent
), szBuffer
);
1020 if (!szComponent
|| !*szComponent
)
1021 return ERROR_INVALID_PARAMETER
;
1023 if (!squash_guid(szComponent
, squished_comp
))
1024 return ERROR_INVALID_PARAMETER
;
1026 if (MSIREG_OpenUserDataComponentKey(szComponent
, NULL
, &compkey
, FALSE
) != ERROR_SUCCESS
&&
1027 MSIREG_OpenUserDataComponentKey(szComponent
, szLocalSid
, &compkey
, FALSE
) != ERROR_SUCCESS
)
1029 return ERROR_UNKNOWN_COMPONENT
;
1032 rc
= RegEnumValueW(compkey
, 0, squished_prod
, &sz
, NULL
, NULL
, NULL
, NULL
);
1033 if (rc
!= ERROR_SUCCESS
)
1035 RegCloseKey(compkey
);
1036 return ERROR_UNKNOWN_COMPONENT
;
1039 /* check simple case, only one product */
1040 rc
= RegEnumValueW(compkey
, 1, squished_prod
, &sz
, NULL
, NULL
, NULL
, NULL
);
1041 if (rc
== ERROR_NO_MORE_ITEMS
)
1048 while ((rc
= RegEnumValueW(compkey
, index
, squished_prod
, &sz
,
1049 NULL
, NULL
, NULL
, NULL
)) != ERROR_NO_MORE_ITEMS
)
1053 unsquash_guid(squished_prod
, szBuffer
);
1055 if (MSIREG_OpenProductKey(szBuffer
, NULL
,
1056 MSIINSTALLCONTEXT_USERMANAGED
,
1057 &prodkey
, FALSE
) == ERROR_SUCCESS
||
1058 MSIREG_OpenProductKey(szBuffer
, NULL
,
1059 MSIINSTALLCONTEXT_USERUNMANAGED
,
1060 &prodkey
, FALSE
) == ERROR_SUCCESS
||
1061 MSIREG_OpenProductKey(szBuffer
, NULL
,
1062 MSIINSTALLCONTEXT_MACHINE
,
1063 &prodkey
, FALSE
) == ERROR_SUCCESS
)
1065 RegCloseKey(prodkey
);
1071 rc
= ERROR_INSTALL_FAILURE
;
1074 RegCloseKey(compkey
);
1075 unsquash_guid(squished_prod
, szBuffer
);
1079 static LPWSTR
msi_reg_get_value(HKEY hkey
, LPCWSTR name
, DWORD
*type
)
1085 static const WCHAR format
[] = {'%','d',0};
1087 res
= RegQueryValueExW(hkey
, name
, NULL
, type
, NULL
, NULL
);
1088 if (res
!= ERROR_SUCCESS
)
1091 if (*type
== REG_SZ
)
1092 return msi_reg_get_val_str(hkey
, name
);
1094 if (!msi_reg_get_val_dword(hkey
, name
, &dval
))
1097 sprintfW(temp
, format
, dval
);
1098 return strdupW(temp
);
1101 static UINT
MSI_GetProductInfo(LPCWSTR szProduct
, LPCWSTR szAttribute
,
1102 awstring
*szValue
, LPDWORD pcchValueBuf
)
1104 static WCHAR empty
[] = {0};
1105 static const WCHAR sourcelist
[] = {'S','o','u','r','c','e','L','i','s','t',0};
1106 static const WCHAR display_name
[] = {'D','i','s','p','l','a','y','N','a','m','e',0};
1107 static const WCHAR display_version
[] = {'D','i','s','p','l','a','y','V','e','r','s','i','o','n',0};
1108 static const WCHAR assignment
[] = {'A','s','s','i','g','n','m','e','n','t',0};
1109 MSIINSTALLCONTEXT context
= MSIINSTALLCONTEXT_USERUNMANAGED
;
1110 UINT r
= ERROR_UNKNOWN_PROPERTY
;
1111 HKEY prodkey
, userdata
, source
;
1113 WCHAR squished_pc
[GUID_SIZE
];
1114 WCHAR packagecode
[GUID_SIZE
];
1115 BOOL badconfig
= FALSE
;
1117 DWORD type
= REG_NONE
;
1119 TRACE("%s %s %p %p\n", debugstr_w(szProduct
),
1120 debugstr_w(szAttribute
), szValue
, pcchValueBuf
);
1122 if ((szValue
->str
.w
&& !pcchValueBuf
) || !szProduct
|| !szAttribute
)
1123 return ERROR_INVALID_PARAMETER
;
1125 if (!squash_guid(szProduct
, squished_pc
))
1126 return ERROR_INVALID_PARAMETER
;
1128 if ((r
= MSIREG_OpenProductKey(szProduct
, NULL
,
1129 MSIINSTALLCONTEXT_USERMANAGED
,
1130 &prodkey
, FALSE
)) != ERROR_SUCCESS
&&
1131 (r
= MSIREG_OpenProductKey(szProduct
, NULL
,
1132 MSIINSTALLCONTEXT_USERUNMANAGED
,
1133 &prodkey
, FALSE
)) != ERROR_SUCCESS
&&
1134 (r
= MSIREG_OpenProductKey(szProduct
, NULL
,
1135 MSIINSTALLCONTEXT_MACHINE
,
1136 &prodkey
, FALSE
)) == ERROR_SUCCESS
)
1138 context
= MSIINSTALLCONTEXT_MACHINE
;
1141 MSIREG_OpenInstallProps(szProduct
, context
, NULL
, &userdata
, FALSE
);
1143 if (!strcmpW( szAttribute
, INSTALLPROPERTY_HELPLINKW
) ||
1144 !strcmpW( szAttribute
, INSTALLPROPERTY_HELPTELEPHONEW
) ||
1145 !strcmpW( szAttribute
, INSTALLPROPERTY_INSTALLDATEW
) ||
1146 !strcmpW( szAttribute
, INSTALLPROPERTY_INSTALLEDPRODUCTNAMEW
) ||
1147 !strcmpW( szAttribute
, INSTALLPROPERTY_INSTALLLOCATIONW
) ||
1148 !strcmpW( szAttribute
, INSTALLPROPERTY_INSTALLSOURCEW
) ||
1149 !strcmpW( szAttribute
, INSTALLPROPERTY_LOCALPACKAGEW
) ||
1150 !strcmpW( szAttribute
, INSTALLPROPERTY_PUBLISHERW
) ||
1151 !strcmpW( szAttribute
, INSTALLPROPERTY_URLINFOABOUTW
) ||
1152 !strcmpW( szAttribute
, INSTALLPROPERTY_URLUPDATEINFOW
) ||
1153 !strcmpW( szAttribute
, INSTALLPROPERTY_VERSIONMINORW
) ||
1154 !strcmpW( szAttribute
, INSTALLPROPERTY_VERSIONMAJORW
) ||
1155 !strcmpW( szAttribute
, INSTALLPROPERTY_VERSIONSTRINGW
) ||
1156 !strcmpW( szAttribute
, INSTALLPROPERTY_PRODUCTIDW
) ||
1157 !strcmpW( szAttribute
, INSTALLPROPERTY_REGCOMPANYW
) ||
1158 !strcmpW( szAttribute
, INSTALLPROPERTY_REGOWNERW
))
1162 r
= ERROR_UNKNOWN_PRODUCT
;
1167 return ERROR_UNKNOWN_PROPERTY
;
1169 if (!strcmpW( szAttribute
, INSTALLPROPERTY_INSTALLEDPRODUCTNAMEW
))
1170 szAttribute
= display_name
;
1171 else if (!strcmpW( szAttribute
, INSTALLPROPERTY_VERSIONSTRINGW
))
1172 szAttribute
= display_version
;
1174 val
= msi_reg_get_value(userdata
, szAttribute
, &type
);
1178 else if (!strcmpW( szAttribute
, INSTALLPROPERTY_INSTANCETYPEW
) ||
1179 !strcmpW( szAttribute
, INSTALLPROPERTY_TRANSFORMSW
) ||
1180 !strcmpW( szAttribute
, INSTALLPROPERTY_LANGUAGEW
) ||
1181 !strcmpW( szAttribute
, INSTALLPROPERTY_PRODUCTNAMEW
) ||
1182 !strcmpW( szAttribute
, INSTALLPROPERTY_ASSIGNMENTTYPEW
) ||
1183 !strcmpW( szAttribute
, INSTALLPROPERTY_PACKAGECODEW
) ||
1184 !strcmpW( szAttribute
, INSTALLPROPERTY_VERSIONW
) ||
1185 !strcmpW( szAttribute
, INSTALLPROPERTY_PRODUCTICONW
) ||
1186 !strcmpW( szAttribute
, INSTALLPROPERTY_PACKAGENAMEW
) ||
1187 !strcmpW( szAttribute
, INSTALLPROPERTY_AUTHORIZED_LUA_APPW
))
1191 r
= ERROR_UNKNOWN_PRODUCT
;
1195 if (!strcmpW( szAttribute
, INSTALLPROPERTY_ASSIGNMENTTYPEW
))
1196 szAttribute
= assignment
;
1198 if (!strcmpW( szAttribute
, INSTALLPROPERTY_PACKAGENAMEW
))
1200 res
= RegOpenKeyW(prodkey
, sourcelist
, &source
);
1201 if (res
!= ERROR_SUCCESS
)
1203 r
= ERROR_UNKNOWN_PRODUCT
;
1207 val
= msi_reg_get_value(source
, szAttribute
, &type
);
1211 RegCloseKey(source
);
1215 val
= msi_reg_get_value(prodkey
, szAttribute
, &type
);
1220 if (val
!= empty
&& type
!= REG_DWORD
&&
1221 !strcmpW( szAttribute
, INSTALLPROPERTY_PACKAGECODEW
))
1223 if (lstrlenW(val
) != SQUISH_GUID_SIZE
- 1)
1227 unsquash_guid(val
, packagecode
);
1229 val
= strdupW(packagecode
);
1236 r
= ERROR_UNKNOWN_PROPERTY
;
1242 int len
= strlenW( val
);
1244 /* If szBuffer (szValue->str) is NULL, there's no need to copy the value
1245 * out. Also, *pcchValueBuf may be uninitialized in this case, so we
1246 * can't rely on its value.
1248 if (szValue
->str
.a
|| szValue
->str
.w
)
1250 DWORD size
= *pcchValueBuf
;
1252 r
= msi_strcpy_to_awstring( val
, len
, szValue
, &size
);
1254 r
= ERROR_MORE_DATA
;
1258 *pcchValueBuf
= len
;
1262 r
= ERROR_BAD_CONFIGURATION
;
1268 RegCloseKey(prodkey
);
1269 RegCloseKey(userdata
);
1273 UINT WINAPI
MsiGetProductInfoA(LPCSTR szProduct
, LPCSTR szAttribute
,
1274 LPSTR szBuffer
, LPDWORD pcchValueBuf
)
1276 LPWSTR szwProduct
, szwAttribute
= NULL
;
1277 UINT r
= ERROR_OUTOFMEMORY
;
1280 TRACE("%s %s %p %p\n", debugstr_a(szProduct
), debugstr_a(szAttribute
),
1281 szBuffer
, pcchValueBuf
);
1283 szwProduct
= strdupAtoW( szProduct
);
1284 if( szProduct
&& !szwProduct
)
1287 szwAttribute
= strdupAtoW( szAttribute
);
1288 if( szAttribute
&& !szwAttribute
)
1291 buffer
.unicode
= FALSE
;
1292 buffer
.str
.a
= szBuffer
;
1294 r
= MSI_GetProductInfo( szwProduct
, szwAttribute
,
1295 &buffer
, pcchValueBuf
);
1298 msi_free( szwProduct
);
1299 msi_free( szwAttribute
);
1304 UINT WINAPI
MsiGetProductInfoW(LPCWSTR szProduct
, LPCWSTR szAttribute
,
1305 LPWSTR szBuffer
, LPDWORD pcchValueBuf
)
1309 TRACE("%s %s %p %p\n", debugstr_w(szProduct
), debugstr_w(szAttribute
),
1310 szBuffer
, pcchValueBuf
);
1312 buffer
.unicode
= TRUE
;
1313 buffer
.str
.w
= szBuffer
;
1315 return MSI_GetProductInfo( szProduct
, szAttribute
,
1316 &buffer
, pcchValueBuf
);
1319 UINT WINAPI
MsiGetProductInfoExA(LPCSTR szProductCode
, LPCSTR szUserSid
,
1320 MSIINSTALLCONTEXT dwContext
, LPCSTR szProperty
,
1321 LPSTR szValue
, LPDWORD pcchValue
)
1323 LPWSTR product
= NULL
;
1324 LPWSTR usersid
= NULL
;
1325 LPWSTR property
= NULL
;
1326 LPWSTR value
= NULL
;
1330 TRACE("(%s, %s, %d, %s, %p, %p)\n", debugstr_a(szProductCode
),
1331 debugstr_a(szUserSid
), dwContext
, debugstr_a(szProperty
),
1332 szValue
, pcchValue
);
1334 if (szValue
&& !pcchValue
)
1335 return ERROR_INVALID_PARAMETER
;
1337 if (szProductCode
) product
= strdupAtoW(szProductCode
);
1338 if (szUserSid
) usersid
= strdupAtoW(szUserSid
);
1339 if (szProperty
) property
= strdupAtoW(szProperty
);
1341 r
= MsiGetProductInfoExW(product
, usersid
, dwContext
, property
,
1343 if (r
!= ERROR_SUCCESS
)
1346 value
= msi_alloc(++len
* sizeof(WCHAR
));
1349 r
= ERROR_OUTOFMEMORY
;
1353 r
= MsiGetProductInfoExW(product
, usersid
, dwContext
, property
,
1355 if (r
!= ERROR_SUCCESS
)
1361 len
= WideCharToMultiByte(CP_ACP
, 0, value
, -1, NULL
, 0, NULL
, NULL
);
1362 if (*pcchValue
>= len
)
1363 WideCharToMultiByte(CP_ACP
, 0, value
, -1, szValue
, len
, NULL
, NULL
);
1366 r
= ERROR_MORE_DATA
;
1371 if (*pcchValue
<= len
|| !szValue
)
1372 len
= len
* sizeof(WCHAR
) - 1;
1374 *pcchValue
= len
- 1;
1385 static UINT
msi_copy_outval(LPWSTR val
, LPWSTR out
, LPDWORD size
)
1387 UINT r
= ERROR_SUCCESS
;
1390 return ERROR_UNKNOWN_PROPERTY
;
1394 if (strlenW(val
) >= *size
)
1396 r
= ERROR_MORE_DATA
;
1405 *size
= lstrlenW(val
);
1410 UINT WINAPI
MsiGetProductInfoExW(LPCWSTR szProductCode
, LPCWSTR szUserSid
,
1411 MSIINSTALLCONTEXT dwContext
, LPCWSTR szProperty
,
1412 LPWSTR szValue
, LPDWORD pcchValue
)
1414 WCHAR squished_pc
[GUID_SIZE
];
1416 LPCWSTR package
= NULL
;
1417 HKEY props
= NULL
, prod
;
1418 HKEY classes
= NULL
, managed
;
1421 UINT r
= ERROR_UNKNOWN_PRODUCT
;
1423 static const WCHAR five
[] = {'5',0};
1424 static const WCHAR displayname
[] = {
1425 'D','i','s','p','l','a','y','N','a','m','e',0};
1426 static const WCHAR displayversion
[] = {
1427 'D','i','s','p','l','a','y','V','e','r','s','i','o','n',0};
1428 static const WCHAR managed_local_package
[] = {
1429 'M','a','n','a','g','e','d','L','o','c','a','l',
1430 'P','a','c','k','a','g','e',0};
1432 TRACE("(%s, %s, %d, %s, %p, %p)\n", debugstr_w(szProductCode
),
1433 debugstr_w(szUserSid
), dwContext
, debugstr_w(szProperty
),
1434 szValue
, pcchValue
);
1436 if (!szProductCode
|| !squash_guid(szProductCode
, squished_pc
))
1437 return ERROR_INVALID_PARAMETER
;
1439 if (szValue
&& !pcchValue
)
1440 return ERROR_INVALID_PARAMETER
;
1442 if (dwContext
!= MSIINSTALLCONTEXT_USERUNMANAGED
&&
1443 dwContext
!= MSIINSTALLCONTEXT_USERMANAGED
&&
1444 dwContext
!= MSIINSTALLCONTEXT_MACHINE
)
1445 return ERROR_INVALID_PARAMETER
;
1447 if (!szProperty
|| !*szProperty
)
1448 return ERROR_INVALID_PARAMETER
;
1450 if (dwContext
== MSIINSTALLCONTEXT_MACHINE
&& szUserSid
)
1451 return ERROR_INVALID_PARAMETER
;
1453 /* FIXME: dwContext is provided, no need to search for it */
1454 MSIREG_OpenProductKey(szProductCode
, NULL
,MSIINSTALLCONTEXT_USERMANAGED
,
1456 MSIREG_OpenProductKey(szProductCode
, NULL
, MSIINSTALLCONTEXT_USERUNMANAGED
,
1459 MSIREG_OpenInstallProps(szProductCode
, dwContext
, NULL
, &props
, FALSE
);
1461 if (dwContext
== MSIINSTALLCONTEXT_USERUNMANAGED
)
1463 package
= INSTALLPROPERTY_LOCALPACKAGEW
;
1465 if (!props
&& !prod
)
1468 else if (dwContext
== MSIINSTALLCONTEXT_USERMANAGED
)
1470 package
= managed_local_package
;
1472 if (!props
&& !managed
)
1475 else if (dwContext
== MSIINSTALLCONTEXT_MACHINE
)
1477 package
= INSTALLPROPERTY_LOCALPACKAGEW
;
1478 MSIREG_OpenProductKey(szProductCode
, NULL
, dwContext
, &classes
, FALSE
);
1480 if (!props
&& !classes
)
1484 if (!strcmpW( szProperty
, INSTALLPROPERTY_HELPLINKW
) ||
1485 !strcmpW( szProperty
, INSTALLPROPERTY_HELPTELEPHONEW
) ||
1486 !strcmpW( szProperty
, INSTALLPROPERTY_INSTALLDATEW
) ||
1487 !strcmpW( szProperty
, INSTALLPROPERTY_INSTALLEDPRODUCTNAMEW
) ||
1488 !strcmpW( szProperty
, INSTALLPROPERTY_INSTALLLOCATIONW
) ||
1489 !strcmpW( szProperty
, INSTALLPROPERTY_INSTALLSOURCEW
) ||
1490 !strcmpW( szProperty
, INSTALLPROPERTY_LOCALPACKAGEW
) ||
1491 !strcmpW( szProperty
, INSTALLPROPERTY_PUBLISHERW
) ||
1492 !strcmpW( szProperty
, INSTALLPROPERTY_URLINFOABOUTW
) ||
1493 !strcmpW( szProperty
, INSTALLPROPERTY_URLUPDATEINFOW
) ||
1494 !strcmpW( szProperty
, INSTALLPROPERTY_VERSIONMINORW
) ||
1495 !strcmpW( szProperty
, INSTALLPROPERTY_VERSIONMAJORW
) ||
1496 !strcmpW( szProperty
, INSTALLPROPERTY_VERSIONSTRINGW
) ||
1497 !strcmpW( szProperty
, INSTALLPROPERTY_PRODUCTIDW
) ||
1498 !strcmpW( szProperty
, INSTALLPROPERTY_REGCOMPANYW
) ||
1499 !strcmpW( szProperty
, INSTALLPROPERTY_REGOWNERW
) ||
1500 !strcmpW( szProperty
, INSTALLPROPERTY_INSTANCETYPEW
))
1502 val
= msi_reg_get_value(props
, package
, &type
);
1505 if (prod
|| classes
)
1506 r
= ERROR_UNKNOWN_PROPERTY
;
1513 if (!strcmpW( szProperty
, INSTALLPROPERTY_INSTALLEDPRODUCTNAMEW
))
1514 szProperty
= displayname
;
1515 else if (!strcmpW( szProperty
, INSTALLPROPERTY_VERSIONSTRINGW
))
1516 szProperty
= displayversion
;
1518 val
= msi_reg_get_value(props
, szProperty
, &type
);
1520 val
= strdupW(szEmpty
);
1522 r
= msi_copy_outval(val
, szValue
, pcchValue
);
1524 else if (!strcmpW( szProperty
, INSTALLPROPERTY_TRANSFORMSW
) ||
1525 !strcmpW( szProperty
, INSTALLPROPERTY_LANGUAGEW
) ||
1526 !strcmpW( szProperty
, INSTALLPROPERTY_PRODUCTNAMEW
) ||
1527 !strcmpW( szProperty
, INSTALLPROPERTY_PACKAGECODEW
) ||
1528 !strcmpW( szProperty
, INSTALLPROPERTY_VERSIONW
) ||
1529 !strcmpW( szProperty
, INSTALLPROPERTY_PRODUCTICONW
) ||
1530 !strcmpW( szProperty
, INSTALLPROPERTY_PACKAGENAMEW
) ||
1531 !strcmpW( szProperty
, INSTALLPROPERTY_AUTHORIZED_LUA_APPW
))
1533 if (!prod
&& !classes
)
1536 if (dwContext
== MSIINSTALLCONTEXT_USERUNMANAGED
)
1538 else if (dwContext
== MSIINSTALLCONTEXT_USERMANAGED
)
1540 else if (dwContext
== MSIINSTALLCONTEXT_MACHINE
)
1543 val
= msi_reg_get_value(hkey
, szProperty
, &type
);
1545 val
= strdupW(szEmpty
);
1547 r
= msi_copy_outval(val
, szValue
, pcchValue
);
1549 else if (!strcmpW( szProperty
, INSTALLPROPERTY_PRODUCTSTATEW
))
1551 if (dwContext
== MSIINSTALLCONTEXT_MACHINE
)
1555 val
= msi_reg_get_value(props
, package
, &type
);
1560 val
= strdupW(five
);
1563 val
= strdupW(szOne
);
1565 r
= msi_copy_outval(val
, szValue
, pcchValue
);
1568 else if (props
&& (val
= msi_reg_get_value(props
, package
, &type
)))
1571 val
= strdupW(five
);
1572 r
= msi_copy_outval(val
, szValue
, pcchValue
);
1576 if (prod
|| managed
)
1577 val
= strdupW(szOne
);
1581 r
= msi_copy_outval(val
, szValue
, pcchValue
);
1583 else if (!strcmpW( szProperty
, INSTALLPROPERTY_ASSIGNMENTTYPEW
))
1585 if (!prod
&& !classes
)
1589 val
= strdupW(szEmpty
);
1590 r
= msi_copy_outval(val
, szValue
, pcchValue
);
1593 r
= ERROR_UNKNOWN_PROPERTY
;
1598 RegCloseKey(managed
);
1599 RegCloseKey(classes
);
1605 UINT WINAPI
MsiGetPatchInfoExA(LPCSTR szPatchCode
, LPCSTR szProductCode
,
1606 LPCSTR szUserSid
, MSIINSTALLCONTEXT dwContext
,
1607 LPCSTR szProperty
, LPSTR lpValue
, DWORD
*pcchValue
)
1609 LPWSTR patch
= NULL
, product
= NULL
, usersid
= NULL
;
1610 LPWSTR property
= NULL
, val
= NULL
;
1614 TRACE("(%s, %s, %s, %d, %s, %p, %p)\n", debugstr_a(szPatchCode
),
1615 debugstr_a(szProductCode
), debugstr_a(szUserSid
), dwContext
,
1616 debugstr_a(szProperty
), lpValue
, pcchValue
);
1618 if (lpValue
&& !pcchValue
)
1619 return ERROR_INVALID_PARAMETER
;
1621 if (szPatchCode
) patch
= strdupAtoW(szPatchCode
);
1622 if (szProductCode
) product
= strdupAtoW(szProductCode
);
1623 if (szUserSid
) usersid
= strdupAtoW(szUserSid
);
1624 if (szProperty
) property
= strdupAtoW(szProperty
);
1627 r
= MsiGetPatchInfoExW(patch
, product
, usersid
, dwContext
, property
,
1629 if (r
!= ERROR_SUCCESS
)
1632 val
= msi_alloc(++len
* sizeof(WCHAR
));
1635 r
= ERROR_OUTOFMEMORY
;
1639 r
= MsiGetPatchInfoExW(patch
, product
, usersid
, dwContext
, property
,
1641 if (r
!= ERROR_SUCCESS
|| !pcchValue
)
1645 WideCharToMultiByte(CP_ACP
, 0, val
, -1, lpValue
,
1646 *pcchValue
- 1, NULL
, NULL
);
1648 len
= lstrlenW(val
);
1649 if ((*val
&& *pcchValue
< len
+ 1) || !lpValue
)
1653 r
= ERROR_MORE_DATA
;
1654 lpValue
[*pcchValue
- 1] = '\0';
1657 *pcchValue
= len
* sizeof(WCHAR
);
1672 UINT WINAPI
MsiGetPatchInfoExW(LPCWSTR szPatchCode
, LPCWSTR szProductCode
,
1673 LPCWSTR szUserSid
, MSIINSTALLCONTEXT dwContext
,
1674 LPCWSTR szProperty
, LPWSTR lpValue
, DWORD
*pcchValue
)
1676 WCHAR squished_pc
[GUID_SIZE
];
1677 WCHAR squished_patch
[GUID_SIZE
];
1678 HKEY udprod
= 0, prod
= 0, props
= 0;
1679 HKEY patch
= 0, patches
= 0;
1680 HKEY udpatch
= 0, datakey
= 0;
1681 HKEY prodpatches
= 0;
1683 UINT r
= ERROR_UNKNOWN_PRODUCT
;
1687 static const WCHAR szManagedPackage
[] = {'M','a','n','a','g','e','d',
1688 'L','o','c','a','l','P','a','c','k','a','g','e',0};
1690 TRACE("(%s, %s, %s, %d, %s, %p, %p)\n", debugstr_w(szPatchCode
),
1691 debugstr_w(szProductCode
), debugstr_w(szUserSid
), dwContext
,
1692 debugstr_w(szProperty
), lpValue
, pcchValue
);
1694 if (!szProductCode
|| !squash_guid(szProductCode
, squished_pc
))
1695 return ERROR_INVALID_PARAMETER
;
1697 if (!szPatchCode
|| !squash_guid(szPatchCode
, squished_patch
))
1698 return ERROR_INVALID_PARAMETER
;
1701 return ERROR_INVALID_PARAMETER
;
1703 if (lpValue
&& !pcchValue
)
1704 return ERROR_INVALID_PARAMETER
;
1706 if (dwContext
!= MSIINSTALLCONTEXT_USERMANAGED
&&
1707 dwContext
!= MSIINSTALLCONTEXT_USERUNMANAGED
&&
1708 dwContext
!= MSIINSTALLCONTEXT_MACHINE
)
1709 return ERROR_INVALID_PARAMETER
;
1711 if (dwContext
== MSIINSTALLCONTEXT_MACHINE
&& szUserSid
)
1712 return ERROR_INVALID_PARAMETER
;
1714 if (szUserSid
&& !strcmpW( szUserSid
, szLocalSid
))
1715 return ERROR_INVALID_PARAMETER
;
1717 if (MSIREG_OpenUserDataProductKey(szProductCode
, dwContext
, NULL
,
1718 &udprod
, FALSE
) != ERROR_SUCCESS
)
1721 if (MSIREG_OpenInstallProps(szProductCode
, dwContext
, NULL
,
1722 &props
, FALSE
) != ERROR_SUCCESS
)
1725 r
= ERROR_UNKNOWN_PATCH
;
1727 res
= RegOpenKeyExW(udprod
, szPatches
, 0, KEY_WOW64_64KEY
|KEY_READ
, &patches
);
1728 if (res
!= ERROR_SUCCESS
)
1731 res
= RegOpenKeyExW(patches
, squished_patch
, 0, KEY_WOW64_64KEY
|KEY_READ
, &patch
);
1732 if (res
!= ERROR_SUCCESS
)
1735 if (!strcmpW( szProperty
, INSTALLPROPERTY_TRANSFORMSW
))
1737 if (MSIREG_OpenProductKey(szProductCode
, NULL
, dwContext
,
1738 &prod
, FALSE
) != ERROR_SUCCESS
)
1741 res
= RegOpenKeyExW(prod
, szPatches
, 0, KEY_WOW64_64KEY
|KEY_ALL_ACCESS
, &prodpatches
);
1742 if (res
!= ERROR_SUCCESS
)
1745 datakey
= prodpatches
;
1746 szProperty
= squished_patch
;
1750 if (MSIREG_OpenUserDataPatchKey(szPatchCode
, dwContext
,
1751 &udpatch
, FALSE
) != ERROR_SUCCESS
)
1754 if (!strcmpW( szProperty
, INSTALLPROPERTY_LOCALPACKAGEW
))
1756 if (dwContext
== MSIINSTALLCONTEXT_USERMANAGED
)
1757 szProperty
= szManagedPackage
;
1760 else if (!strcmpW( szProperty
, INSTALLPROPERTY_INSTALLDATEW
))
1763 szProperty
= szInstalled
;
1765 else if (!strcmpW( szProperty
, INSTALLPROPERTY_LOCALPACKAGEW
))
1769 else if (!strcmpW( szProperty
, INSTALLPROPERTY_UNINSTALLABLEW
) ||
1770 !strcmpW( szProperty
, INSTALLPROPERTY_PATCHSTATEW
) ||
1771 !strcmpW( szProperty
, INSTALLPROPERTY_DISPLAYNAMEW
) ||
1772 !strcmpW( szProperty
, INSTALLPROPERTY_MOREINFOURLW
))
1778 r
= ERROR_UNKNOWN_PROPERTY
;
1783 val
= msi_reg_get_val_str(datakey
, szProperty
);
1785 val
= strdupW(szEmpty
);
1793 lstrcpynW(lpValue
, val
, *pcchValue
);
1795 len
= lstrlenW(val
);
1796 if ((*val
&& *pcchValue
< len
+ 1) || !lpValue
)
1799 r
= ERROR_MORE_DATA
;
1801 *pcchValue
= len
* sizeof(WCHAR
);
1808 RegCloseKey(prodpatches
);
1811 RegCloseKey(patches
);
1812 RegCloseKey(udpatch
);
1814 RegCloseKey(udprod
);
1819 UINT WINAPI
MsiGetPatchInfoA( LPCSTR patch
, LPCSTR attr
, LPSTR buffer
, LPDWORD buflen
)
1821 UINT r
= ERROR_OUTOFMEMORY
;
1823 LPWSTR patchW
= NULL
, attrW
= NULL
, bufferW
= NULL
;
1825 TRACE("%s %s %p %p\n", debugstr_a(patch
), debugstr_a(attr
), buffer
, buflen
);
1827 if (!patch
|| !attr
)
1828 return ERROR_INVALID_PARAMETER
;
1830 if (!(patchW
= strdupAtoW( patch
)))
1833 if (!(attrW
= strdupAtoW( attr
)))
1837 r
= MsiGetPatchInfoW( patchW
, attrW
, NULL
, &size
);
1838 if (r
!= ERROR_SUCCESS
)
1842 if (!(bufferW
= msi_alloc( size
* sizeof(WCHAR
) )))
1844 r
= ERROR_OUTOFMEMORY
;
1848 r
= MsiGetPatchInfoW( patchW
, attrW
, bufferW
, &size
);
1849 if (r
== ERROR_SUCCESS
)
1851 int len
= WideCharToMultiByte( CP_ACP
, 0, bufferW
, -1, NULL
, 0, NULL
, NULL
);
1853 r
= ERROR_MORE_DATA
;
1855 WideCharToMultiByte( CP_ACP
, 0, bufferW
, -1, buffer
, *buflen
, NULL
, NULL
);
1863 msi_free( bufferW
);
1867 UINT WINAPI
MsiGetPatchInfoW( LPCWSTR patch
, LPCWSTR attr
, LPWSTR buffer
, LPDWORD buflen
)
1870 WCHAR product
[GUID_SIZE
];
1873 TRACE("%s %s %p %p\n", debugstr_w(patch
), debugstr_w(attr
), buffer
, buflen
);
1875 if (!patch
|| !attr
)
1876 return ERROR_INVALID_PARAMETER
;
1878 if (strcmpW( INSTALLPROPERTY_LOCALPACKAGEW
, attr
))
1879 return ERROR_UNKNOWN_PROPERTY
;
1884 r
= MsiEnumProductsW( index
, product
);
1885 if (r
!= ERROR_SUCCESS
)
1888 r
= MsiGetPatchInfoExW( patch
, product
, NULL
, MSIINSTALLCONTEXT_USERMANAGED
, attr
, buffer
, buflen
);
1889 if (r
== ERROR_SUCCESS
|| r
== ERROR_MORE_DATA
)
1892 r
= MsiGetPatchInfoExW( patch
, product
, NULL
, MSIINSTALLCONTEXT_USERUNMANAGED
, attr
, buffer
, buflen
);
1893 if (r
== ERROR_SUCCESS
|| r
== ERROR_MORE_DATA
)
1896 r
= MsiGetPatchInfoExW( patch
, product
, NULL
, MSIINSTALLCONTEXT_MACHINE
, attr
, buffer
, buflen
);
1897 if (r
== ERROR_SUCCESS
|| r
== ERROR_MORE_DATA
)
1903 return ERROR_UNKNOWN_PRODUCT
;
1906 UINT WINAPI
MsiEnableLogA(DWORD dwLogMode
, LPCSTR szLogFile
, DWORD attributes
)
1908 LPWSTR szwLogFile
= NULL
;
1911 TRACE("%08x %s %08x\n", dwLogMode
, debugstr_a(szLogFile
), attributes
);
1915 szwLogFile
= strdupAtoW( szLogFile
);
1917 return ERROR_OUTOFMEMORY
;
1919 r
= MsiEnableLogW( dwLogMode
, szwLogFile
, attributes
);
1920 msi_free( szwLogFile
);
1924 UINT WINAPI
MsiEnableLogW(DWORD dwLogMode
, LPCWSTR szLogFile
, DWORD attributes
)
1926 TRACE("%08x %s %08x\n", dwLogMode
, debugstr_w(szLogFile
), attributes
);
1928 msi_free(gszLogFile
);
1934 if (!(attributes
& INSTALLLOGATTRIBUTES_APPEND
))
1935 DeleteFileW(szLogFile
);
1936 file
= CreateFileW(szLogFile
, GENERIC_WRITE
, FILE_SHARE_WRITE
, NULL
, OPEN_ALWAYS
,
1937 FILE_ATTRIBUTE_NORMAL
, NULL
);
1938 if (file
!= INVALID_HANDLE_VALUE
)
1940 gszLogFile
= strdupW(szLogFile
);
1944 ERR("Unable to enable log %s (%u)\n", debugstr_w(szLogFile
), GetLastError());
1947 return ERROR_SUCCESS
;
1950 UINT WINAPI
MsiEnumComponentCostsA( MSIHANDLE handle
, LPCSTR component
, DWORD index
,
1951 INSTALLSTATE state
, LPSTR drive
, DWORD
*buflen
,
1952 int *cost
, int *temp
)
1956 WCHAR
*driveW
, *componentW
= NULL
;
1958 TRACE("%d, %s, %u, %d, %p, %p, %p %p\n", handle
, debugstr_a(component
), index
,
1959 state
, drive
, buflen
, cost
, temp
);
1961 if (!drive
|| !buflen
) return ERROR_INVALID_PARAMETER
;
1962 if (component
&& !(componentW
= strdupAtoW( component
))) return ERROR_OUTOFMEMORY
;
1965 if (!(driveW
= msi_alloc( len
* sizeof(WCHAR
) )))
1967 msi_free( componentW
);
1968 return ERROR_OUTOFMEMORY
;
1970 r
= MsiEnumComponentCostsW( handle
, componentW
, index
, state
, driveW
, buflen
, cost
, temp
);
1973 WideCharToMultiByte( CP_ACP
, 0, driveW
, -1, drive
, len
, NULL
, NULL
);
1975 msi_free( componentW
);
1980 static UINT
set_drive( WCHAR
*buffer
, WCHAR letter
)
1988 UINT WINAPI
MsiEnumComponentCostsW( MSIHANDLE handle
, LPCWSTR component
, DWORD index
,
1989 INSTALLSTATE state
, LPWSTR drive
, DWORD
*buflen
,
1990 int *cost
, int *temp
)
1992 UINT r
= ERROR_NO_MORE_ITEMS
;
1993 MSICOMPONENT
*comp
= NULL
;
1994 MSIPACKAGE
*package
;
1997 WCHAR path
[MAX_PATH
];
1999 TRACE("%d, %s, %u, %d, %p, %p, %p %p\n", handle
, debugstr_w(component
), index
,
2000 state
, drive
, buflen
, cost
, temp
);
2002 if (!drive
|| !buflen
|| !cost
|| !temp
) return ERROR_INVALID_PARAMETER
;
2003 if (!(package
= msihandle2msiinfo( handle
, MSIHANDLETYPE_PACKAGE
)))
2006 IWineMsiRemotePackage
*remote_package
;
2009 if (!(remote_package
= (IWineMsiRemotePackage
*)msi_get_remote( handle
)))
2010 return ERROR_INVALID_HANDLE
;
2012 if (component
&& !(bname
= SysAllocString( component
)))
2014 IWineMsiRemotePackage_Release( remote_package
);
2015 return ERROR_OUTOFMEMORY
;
2017 hr
= IWineMsiRemotePackage_EnumComponentCosts( remote_package
, bname
, index
, state
, drive
, buflen
, cost
, temp
);
2018 IWineMsiRemotePackage_Release( remote_package
);
2019 SysFreeString( bname
);
2022 if (HRESULT_FACILITY(hr
) == FACILITY_WIN32
) return HRESULT_CODE(hr
);
2023 return ERROR_FUNCTION_FAILED
;
2025 return ERROR_SUCCESS
;
2028 if (!msi_get_property_int( package
->db
, szCostingComplete
, 0 ))
2030 msiobj_release( &package
->hdr
);
2031 return ERROR_FUNCTION_NOT_CALLED
;
2033 if (component
&& component
[0] && !(comp
= msi_get_loaded_component( package
, component
)))
2035 msiobj_release( &package
->hdr
);
2036 return ERROR_UNKNOWN_COMPONENT
;
2041 msiobj_release( &package
->hdr
);
2042 return ERROR_MORE_DATA
;
2046 msiobj_release( &package
->hdr
);
2047 return ERROR_NO_MORE_ITEMS
;
2052 GetWindowsDirectoryW( path
, MAX_PATH
);
2053 if (component
&& component
[0])
2055 if (comp
->assembly
&& !comp
->assembly
->application
) *temp
= comp
->Cost
;
2056 if (!comp
->Enabled
|| !comp
->KeyPath
)
2059 *buflen
= set_drive( drive
, path
[0] );
2062 else if ((file
= msi_get_loaded_file( package
, comp
->KeyPath
)))
2064 *cost
= max( 8, comp
->Cost
/ 512 );
2065 *buflen
= set_drive( drive
, file
->TargetPath
[0] );
2069 else if (IStorage_Stat( package
->db
->storage
, &stat
, STATFLAG_NONAME
) == S_OK
)
2071 *temp
= max( 8, stat
.cbSize
.QuadPart
/ 512 );
2072 *buflen
= set_drive( drive
, path
[0] );
2075 msiobj_release( &package
->hdr
);
2079 UINT WINAPI
MsiQueryComponentStateA(LPCSTR szProductCode
,
2080 LPCSTR szUserSid
, MSIINSTALLCONTEXT dwContext
,
2081 LPCSTR szComponent
, INSTALLSTATE
*pdwState
)
2083 LPWSTR prodcode
= NULL
, usersid
= NULL
, comp
= NULL
;
2086 TRACE("(%s, %s, %d, %s, %p)\n", debugstr_a(szProductCode
),
2087 debugstr_a(szUserSid
), dwContext
, debugstr_a(szComponent
), pdwState
);
2089 if (szProductCode
&& !(prodcode
= strdupAtoW(szProductCode
)))
2090 return ERROR_OUTOFMEMORY
;
2092 if (szUserSid
&& !(usersid
= strdupAtoW(szUserSid
)))
2093 return ERROR_OUTOFMEMORY
;
2095 if (szComponent
&& !(comp
= strdupAtoW(szComponent
)))
2096 return ERROR_OUTOFMEMORY
;
2098 r
= MsiQueryComponentStateW(prodcode
, usersid
, dwContext
, comp
, pdwState
);
2107 static BOOL
msi_comp_find_prod_key(LPCWSTR prodcode
, MSIINSTALLCONTEXT context
)
2112 r
= MSIREG_OpenProductKey(prodcode
, NULL
, context
, &hkey
, FALSE
);
2114 return (r
== ERROR_SUCCESS
);
2117 static BOOL
msi_comp_find_package(LPCWSTR prodcode
, MSIINSTALLCONTEXT context
)
2125 static const WCHAR local_package
[] = {'L','o','c','a','l','P','a','c','k','a','g','e',0};
2126 static const WCHAR managed_local_package
[] = {
2127 'M','a','n','a','g','e','d','L','o','c','a','l','P','a','c','k','a','g','e',0
2130 r
= MSIREG_OpenInstallProps(prodcode
, context
, NULL
, &hkey
, FALSE
);
2131 if (r
!= ERROR_SUCCESS
)
2134 if (context
== MSIINSTALLCONTEXT_USERMANAGED
)
2135 package
= managed_local_package
;
2137 package
= local_package
;
2140 res
= RegQueryValueExW(hkey
, package
, NULL
, NULL
, NULL
, &sz
);
2143 return (res
== ERROR_SUCCESS
);
2146 static UINT
msi_comp_find_prodcode(LPWSTR squished_pc
,
2147 MSIINSTALLCONTEXT context
,
2148 LPCWSTR comp
, LPWSTR val
, DWORD
*sz
)
2154 if (context
== MSIINSTALLCONTEXT_MACHINE
)
2155 r
= MSIREG_OpenUserDataComponentKey(comp
, szLocalSid
, &hkey
, FALSE
);
2157 r
= MSIREG_OpenUserDataComponentKey(comp
, NULL
, &hkey
, FALSE
);
2159 if (r
!= ERROR_SUCCESS
)
2162 res
= RegQueryValueExW(hkey
, squished_pc
, NULL
, NULL
, (BYTE
*)val
, sz
);
2163 if (res
!= ERROR_SUCCESS
)
2170 UINT WINAPI
MsiQueryComponentStateW(LPCWSTR szProductCode
,
2171 LPCWSTR szUserSid
, MSIINSTALLCONTEXT dwContext
,
2172 LPCWSTR szComponent
, INSTALLSTATE
*pdwState
)
2174 WCHAR squished_pc
[GUID_SIZE
];
2178 TRACE("(%s, %s, %d, %s, %p)\n", debugstr_w(szProductCode
),
2179 debugstr_w(szUserSid
), dwContext
, debugstr_w(szComponent
), pdwState
);
2181 if (!pdwState
|| !szComponent
)
2182 return ERROR_INVALID_PARAMETER
;
2184 if (!szProductCode
|| !*szProductCode
|| lstrlenW(szProductCode
) != GUID_SIZE
- 1)
2185 return ERROR_INVALID_PARAMETER
;
2187 if (!squash_guid(szProductCode
, squished_pc
))
2188 return ERROR_INVALID_PARAMETER
;
2190 found
= msi_comp_find_prod_key(szProductCode
, dwContext
);
2192 if (!msi_comp_find_package(szProductCode
, dwContext
))
2196 *pdwState
= INSTALLSTATE_UNKNOWN
;
2197 return ERROR_UNKNOWN_COMPONENT
;
2200 return ERROR_UNKNOWN_PRODUCT
;
2203 *pdwState
= INSTALLSTATE_UNKNOWN
;
2206 if (msi_comp_find_prodcode(squished_pc
, dwContext
, szComponent
, NULL
, &sz
))
2207 return ERROR_UNKNOWN_COMPONENT
;
2210 *pdwState
= INSTALLSTATE_NOTUSED
;
2216 if (!(val
= msi_alloc( sz
))) return ERROR_OUTOFMEMORY
;
2217 if ((r
= msi_comp_find_prodcode(squished_pc
, dwContext
, szComponent
, val
, &sz
)))
2223 if (lstrlenW(val
) > 2 &&
2224 val
[0] >= '0' && val
[0] <= '9' && val
[1] >= '0' && val
[1] <= '9' && val
[2] != ':')
2226 *pdwState
= INSTALLSTATE_SOURCE
;
2229 *pdwState
= INSTALLSTATE_LOCAL
;
2233 TRACE("-> %d\n", *pdwState
);
2234 return ERROR_SUCCESS
;
2237 INSTALLSTATE WINAPI
MsiQueryProductStateA(LPCSTR szProduct
)
2239 LPWSTR szwProduct
= NULL
;
2244 szwProduct
= strdupAtoW( szProduct
);
2246 return ERROR_OUTOFMEMORY
;
2248 r
= MsiQueryProductStateW( szwProduct
);
2249 msi_free( szwProduct
);
2253 INSTALLSTATE WINAPI
MsiQueryProductStateW(LPCWSTR szProduct
)
2255 MSIINSTALLCONTEXT context
= MSIINSTALLCONTEXT_USERUNMANAGED
;
2256 INSTALLSTATE state
= INSTALLSTATE_ADVERTISED
;
2257 HKEY prodkey
= 0, userdata
= 0;
2261 TRACE("%s\n", debugstr_w(szProduct
));
2263 if (!szProduct
|| !*szProduct
)
2264 return INSTALLSTATE_INVALIDARG
;
2266 if (lstrlenW(szProduct
) != GUID_SIZE
- 1)
2267 return INSTALLSTATE_INVALIDARG
;
2269 if (szProduct
[0] != '{' || szProduct
[37] != '}')
2270 return INSTALLSTATE_UNKNOWN
;
2272 SetLastError( ERROR_SUCCESS
);
2274 if (MSIREG_OpenProductKey(szProduct
, NULL
, MSIINSTALLCONTEXT_USERMANAGED
,
2275 &prodkey
, FALSE
) != ERROR_SUCCESS
&&
2276 MSIREG_OpenProductKey(szProduct
, NULL
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2277 &prodkey
, FALSE
) != ERROR_SUCCESS
&&
2278 MSIREG_OpenProductKey(szProduct
, NULL
, MSIINSTALLCONTEXT_MACHINE
,
2279 &prodkey
, FALSE
) == ERROR_SUCCESS
)
2281 context
= MSIINSTALLCONTEXT_MACHINE
;
2284 r
= MSIREG_OpenInstallProps(szProduct
, context
, NULL
, &userdata
, FALSE
);
2285 if (r
!= ERROR_SUCCESS
)
2288 if (!msi_reg_get_val_dword(userdata
, szWindowsInstaller
, &val
))
2292 state
= INSTALLSTATE_DEFAULT
;
2294 state
= INSTALLSTATE_UNKNOWN
;
2299 state
= INSTALLSTATE_UNKNOWN
;
2302 state
= INSTALLSTATE_ABSENT
;
2305 RegCloseKey(prodkey
);
2306 RegCloseKey(userdata
);
2307 TRACE("-> %d\n", state
);
2311 INSTALLUILEVEL WINAPI
MsiSetInternalUI(INSTALLUILEVEL dwUILevel
, HWND
*phWnd
)
2313 INSTALLUILEVEL old
= gUILevel
;
2314 HWND oldwnd
= gUIhwnd
;
2316 TRACE("%08x %p\n", dwUILevel
, phWnd
);
2318 gUILevel
= dwUILevel
;
2327 INSTALLUI_HANDLERA WINAPI
MsiSetExternalUIA(INSTALLUI_HANDLERA puiHandler
,
2328 DWORD dwMessageFilter
, LPVOID pvContext
)
2330 INSTALLUI_HANDLERA prev
= gUIHandlerA
;
2332 TRACE("%p %08x %p\n", puiHandler
, dwMessageFilter
, pvContext
);
2334 gUIHandlerA
= puiHandler
;
2336 gUIFilter
= dwMessageFilter
;
2337 gUIContext
= pvContext
;
2342 INSTALLUI_HANDLERW WINAPI
MsiSetExternalUIW(INSTALLUI_HANDLERW puiHandler
,
2343 DWORD dwMessageFilter
, LPVOID pvContext
)
2345 INSTALLUI_HANDLERW prev
= gUIHandlerW
;
2347 TRACE("%p %08x %p\n", puiHandler
, dwMessageFilter
, pvContext
);
2350 gUIHandlerW
= puiHandler
;
2351 gUIFilter
= dwMessageFilter
;
2352 gUIContext
= pvContext
;
2357 /******************************************************************
2358 * MsiLoadStringW [MSI.@]
2360 * Loads a string from MSI's string resources.
2364 * handle [I] only -1 is handled currently
2365 * id [I] id of the string to be loaded
2366 * lpBuffer [O] buffer for the string to be written to
2367 * nBufferMax [I] maximum size of the buffer in characters
2368 * lang [I] the preferred language for the string
2372 * If successful, this function returns the language id of the string loaded
2373 * If the function fails, the function returns zero.
2377 * The type of the first parameter is unknown. LoadString's prototype
2378 * suggests that it might be a module handle. I have made it an MSI handle
2379 * for starters, as -1 is an invalid MSI handle, but not an invalid module
2380 * handle. Maybe strings can be stored in an MSI database somehow.
2382 LANGID WINAPI
MsiLoadStringW( MSIHANDLE handle
, UINT id
, LPWSTR lpBuffer
,
2383 int nBufferMax
, LANGID lang
)
2390 TRACE("%d %u %p %d %d\n", handle
, id
, lpBuffer
, nBufferMax
, lang
);
2393 FIXME("don't know how to deal with handle = %08x\n", handle
);
2396 lang
= GetUserDefaultLangID();
2398 hres
= FindResourceExW( msi_hInstance
, (LPCWSTR
) RT_STRING
,
2402 hResData
= LoadResource( msi_hInstance
, hres
);
2405 p
= LockResource( hResData
);
2409 for (i
= 0; i
< (id
& 0xf); i
++) p
+= *p
+ 1;
2412 if( nBufferMax
<= len
)
2415 memcpy( lpBuffer
, p
+1, len
* sizeof(WCHAR
));
2416 lpBuffer
[ len
] = 0;
2418 TRACE("found -> %s\n", debugstr_w(lpBuffer
));
2422 LANGID WINAPI
MsiLoadStringA( MSIHANDLE handle
, UINT id
, LPSTR lpBuffer
,
2423 int nBufferMax
, LANGID lang
)
2429 bufW
= msi_alloc(nBufferMax
*sizeof(WCHAR
));
2430 r
= MsiLoadStringW(handle
, id
, bufW
, nBufferMax
, lang
);
2433 len
= WideCharToMultiByte(CP_ACP
, 0, bufW
, -1, NULL
, 0, NULL
, NULL
);
2434 if( len
<= nBufferMax
)
2435 WideCharToMultiByte( CP_ACP
, 0, bufW
, -1,
2436 lpBuffer
, nBufferMax
, NULL
, NULL
);
2444 INSTALLSTATE WINAPI
MsiLocateComponentA(LPCSTR szComponent
, LPSTR lpPathBuf
,
2447 char szProduct
[GUID_SIZE
];
2449 TRACE("%s %p %p\n", debugstr_a(szComponent
), lpPathBuf
, pcchBuf
);
2451 if (!szComponent
|| !pcchBuf
)
2452 return INSTALLSTATE_INVALIDARG
;
2454 if (MsiGetProductCodeA( szComponent
, szProduct
) != ERROR_SUCCESS
)
2455 return INSTALLSTATE_UNKNOWN
;
2457 return MsiGetComponentPathA( szProduct
, szComponent
, lpPathBuf
, pcchBuf
);
2460 INSTALLSTATE WINAPI
MsiLocateComponentW(LPCWSTR szComponent
, LPWSTR lpPathBuf
,
2463 WCHAR szProduct
[GUID_SIZE
];
2465 TRACE("%s %p %p\n", debugstr_w(szComponent
), lpPathBuf
, pcchBuf
);
2467 if (!szComponent
|| !pcchBuf
)
2468 return INSTALLSTATE_INVALIDARG
;
2470 if (MsiGetProductCodeW( szComponent
, szProduct
) != ERROR_SUCCESS
)
2471 return INSTALLSTATE_UNKNOWN
;
2473 return MsiGetComponentPathW( szProduct
, szComponent
, lpPathBuf
, pcchBuf
);
2476 UINT WINAPI
MsiMessageBoxA(HWND hWnd
, LPCSTR lpText
, LPCSTR lpCaption
, UINT uType
,
2477 WORD wLanguageId
, DWORD f
)
2479 FIXME("%p %s %s %u %08x %08x\n", hWnd
, debugstr_a(lpText
), debugstr_a(lpCaption
),
2480 uType
, wLanguageId
, f
);
2481 return MessageBoxExA(hWnd
,lpText
,lpCaption
,uType
,wLanguageId
);
2484 UINT WINAPI
MsiMessageBoxW(HWND hWnd
, LPCWSTR lpText
, LPCWSTR lpCaption
, UINT uType
,
2485 WORD wLanguageId
, DWORD f
)
2487 FIXME("%p %s %s %u %08x %08x\n", hWnd
, debugstr_w(lpText
), debugstr_w(lpCaption
),
2488 uType
, wLanguageId
, f
);
2489 return MessageBoxExW(hWnd
,lpText
,lpCaption
,uType
,wLanguageId
);
2492 UINT WINAPI
MsiMessageBoxExA(HWND hWnd
, LPCSTR lpText
, LPCSTR lpCaption
, UINT uType
,
2493 DWORD unknown
, WORD wLanguageId
, DWORD f
)
2495 FIXME("(%p, %s, %s, %u, 0x%08x, 0x%08x, 0x%08x): semi-stub\n", hWnd
, debugstr_a(lpText
),
2496 debugstr_a(lpCaption
), uType
, unknown
, wLanguageId
, f
);
2497 return MessageBoxExA(hWnd
, lpText
, lpCaption
, uType
, wLanguageId
);
2500 UINT WINAPI
MsiMessageBoxExW(HWND hWnd
, LPCWSTR lpText
, LPCWSTR lpCaption
, UINT uType
,
2501 DWORD unknown
, WORD wLanguageId
, DWORD f
)
2503 FIXME("(%p, %s, %s, %u, 0x%08x, 0x%08x, 0x%08x): semi-stub\n", hWnd
, debugstr_w(lpText
),
2504 debugstr_w(lpCaption
), uType
, unknown
, wLanguageId
, f
);
2505 return MessageBoxExW(hWnd
, lpText
, lpCaption
, uType
, wLanguageId
);
2508 UINT WINAPI
MsiProvideAssemblyA( LPCSTR szAssemblyName
, LPCSTR szAppContext
,
2509 DWORD dwInstallMode
, DWORD dwAssemblyInfo
, LPSTR lpPathBuf
,
2510 LPDWORD pcchPathBuf
)
2512 FIXME("%s %s %08x %08x %p %p\n", debugstr_a(szAssemblyName
),
2513 debugstr_a(szAppContext
), dwInstallMode
, dwAssemblyInfo
, lpPathBuf
,
2515 return ERROR_CALL_NOT_IMPLEMENTED
;
2518 UINT WINAPI
MsiProvideAssemblyW( LPCWSTR szAssemblyName
, LPCWSTR szAppContext
,
2519 DWORD dwInstallMode
, DWORD dwAssemblyInfo
, LPWSTR lpPathBuf
,
2520 LPDWORD pcchPathBuf
)
2522 FIXME("%s %s %08x %08x %p %p\n", debugstr_w(szAssemblyName
),
2523 debugstr_w(szAppContext
), dwInstallMode
, dwAssemblyInfo
, lpPathBuf
,
2525 return ERROR_CALL_NOT_IMPLEMENTED
;
2528 UINT WINAPI
MsiProvideComponentFromDescriptorA( LPCSTR szDescriptor
,
2529 LPSTR szPath
, LPDWORD pcchPath
, LPDWORD pcchArgs
)
2531 FIXME("%s %p %p %p\n", debugstr_a(szDescriptor
), szPath
, pcchPath
, pcchArgs
);
2532 return ERROR_CALL_NOT_IMPLEMENTED
;
2535 UINT WINAPI
MsiProvideComponentFromDescriptorW( LPCWSTR szDescriptor
,
2536 LPWSTR szPath
, LPDWORD pcchPath
, LPDWORD pcchArgs
)
2538 FIXME("%s %p %p %p\n", debugstr_w(szDescriptor
), szPath
, pcchPath
, pcchArgs
);
2539 return ERROR_CALL_NOT_IMPLEMENTED
;
2542 HRESULT WINAPI
MsiGetFileSignatureInformationA( LPCSTR path
, DWORD flags
, PCCERT_CONTEXT
*cert
,
2543 LPBYTE hash
, LPDWORD hashlen
)
2546 WCHAR
*pathW
= NULL
;
2548 TRACE("%s %08x %p %p %p\n", debugstr_a(path
), flags
, cert
, hash
, hashlen
);
2550 if (path
&& !(pathW
= strdupAtoW( path
))) return ERROR_OUTOFMEMORY
;
2551 r
= MsiGetFileSignatureInformationW( pathW
, flags
, cert
, hash
, hashlen
);
2556 HRESULT WINAPI
MsiGetFileSignatureInformationW( LPCWSTR path
, DWORD flags
, PCCERT_CONTEXT
*cert
,
2557 LPBYTE hash
, LPDWORD hashlen
)
2559 static GUID generic_verify_v2
= WINTRUST_ACTION_GENERIC_VERIFY_V2
;
2562 WINTRUST_FILE_INFO info
;
2563 CRYPT_PROVIDER_SGNR
*signer
;
2564 CRYPT_PROVIDER_CERT
*provider
;
2566 TRACE("%s %08x %p %p %p\n", debugstr_w(path
), flags
, cert
, hash
, hashlen
);
2568 if (!path
|| !cert
) return E_INVALIDARG
;
2570 info
.cbStruct
= sizeof(info
);
2571 info
.pcwszFilePath
= path
;
2573 info
.pgKnownSubject
= NULL
;
2575 data
.cbStruct
= sizeof(data
);
2576 data
.pPolicyCallbackData
= NULL
;
2577 data
.pSIPClientData
= NULL
;
2578 data
.dwUIChoice
= WTD_UI_NONE
;
2579 data
.fdwRevocationChecks
= WTD_REVOKE_WHOLECHAIN
;
2580 data
.dwUnionChoice
= WTD_CHOICE_FILE
;
2581 data
.u
.pFile
= &info
;
2582 data
.dwStateAction
= WTD_STATEACTION_VERIFY
;
2583 data
.hWVTStateData
= NULL
;
2584 data
.pwszURLReference
= NULL
;
2585 data
.dwProvFlags
= 0;
2586 data
.dwUIContext
= WTD_UICONTEXT_INSTALL
;
2587 hr
= WinVerifyTrustEx( INVALID_HANDLE_VALUE
, &generic_verify_v2
, &data
);
2589 if (FAILED(hr
)) goto done
;
2591 if (!(signer
= WTHelperGetProvSignerFromChain( data
.hWVTStateData
, 0, FALSE
, 0 )))
2593 hr
= TRUST_E_NOSIGNATURE
;
2598 DWORD len
= signer
->psSigner
->EncryptedHash
.cbData
;
2602 hr
= HRESULT_FROM_WIN32(ERROR_MORE_DATA
);
2605 memcpy( hash
, signer
->psSigner
->EncryptedHash
.pbData
, len
);
2608 if (!(provider
= WTHelperGetProvCertFromChain( signer
, 0 )))
2610 hr
= TRUST_E_PROVIDER_UNKNOWN
;
2613 *cert
= CertDuplicateCertificateContext( provider
->pCert
);
2616 data
.dwStateAction
= WTD_STATEACTION_CLOSE
;
2617 WinVerifyTrustEx( INVALID_HANDLE_VALUE
, &generic_verify_v2
, &data
);
2621 /******************************************************************
2622 * MsiGetProductPropertyA [MSI.@]
2624 UINT WINAPI
MsiGetProductPropertyA(MSIHANDLE hProduct
, LPCSTR szProperty
,
2625 LPSTR szValue
, LPDWORD pccbValue
)
2627 LPWSTR prop
= NULL
, val
= NULL
;
2631 TRACE("(%d, %s, %p, %p)\n", hProduct
, debugstr_a(szProperty
),
2632 szValue
, pccbValue
);
2634 if (szValue
&& !pccbValue
)
2635 return ERROR_INVALID_PARAMETER
;
2637 if (szProperty
) prop
= strdupAtoW(szProperty
);
2640 r
= MsiGetProductPropertyW(hProduct
, prop
, NULL
, &len
);
2641 if (r
!= ERROR_SUCCESS
&& r
!= ERROR_MORE_DATA
)
2644 if (r
== ERROR_SUCCESS
)
2646 if (szValue
) *szValue
= '\0';
2647 if (pccbValue
) *pccbValue
= 0;
2651 val
= msi_alloc(++len
* sizeof(WCHAR
));
2654 r
= ERROR_OUTOFMEMORY
;
2658 r
= MsiGetProductPropertyW(hProduct
, prop
, val
, &len
);
2659 if (r
!= ERROR_SUCCESS
)
2662 len
= WideCharToMultiByte(CP_ACP
, 0, val
, -1, NULL
, 0, NULL
, NULL
);
2665 WideCharToMultiByte(CP_ACP
, 0, val
, -1, szValue
,
2666 *pccbValue
, NULL
, NULL
);
2670 if (len
> *pccbValue
)
2671 r
= ERROR_MORE_DATA
;
2673 *pccbValue
= len
- 1;
2683 /******************************************************************
2684 * MsiGetProductPropertyW [MSI.@]
2686 UINT WINAPI
MsiGetProductPropertyW(MSIHANDLE hProduct
, LPCWSTR szProperty
,
2687 LPWSTR szValue
, LPDWORD pccbValue
)
2689 MSIPACKAGE
*package
;
2690 MSIQUERY
*view
= NULL
;
2691 MSIRECORD
*rec
= NULL
;
2695 static const WCHAR query
[] = {
2696 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
2697 '`','P','r','o','p','e','r','t','y','`',' ','W','H','E','R','E',' ',
2698 '`','P','r','o','p','e','r','t','y','`','=','\'','%','s','\'',0};
2700 TRACE("(%d, %s, %p, %p)\n", hProduct
, debugstr_w(szProperty
),
2701 szValue
, pccbValue
);
2704 return ERROR_INVALID_PARAMETER
;
2706 if (szValue
&& !pccbValue
)
2707 return ERROR_INVALID_PARAMETER
;
2709 package
= msihandle2msiinfo(hProduct
, MSIHANDLETYPE_PACKAGE
);
2711 return ERROR_INVALID_HANDLE
;
2713 r
= MSI_OpenQuery(package
->db
, &view
, query
, szProperty
);
2714 if (r
!= ERROR_SUCCESS
)
2717 r
= MSI_ViewExecute(view
, 0);
2718 if (r
!= ERROR_SUCCESS
)
2721 r
= MSI_ViewFetch(view
, &rec
);
2722 if (r
!= ERROR_SUCCESS
)
2725 val
= MSI_RecordGetString(rec
, 2);
2729 if (lstrlenW(val
) >= *pccbValue
)
2731 lstrcpynW(szValue
, val
, *pccbValue
);
2732 *pccbValue
= lstrlenW(val
);
2733 r
= ERROR_MORE_DATA
;
2737 lstrcpyW(szValue
, val
);
2738 *pccbValue
= lstrlenW(val
);
2745 MSI_ViewClose(view
);
2746 msiobj_release(&view
->hdr
);
2747 if (rec
) msiobj_release(&rec
->hdr
);
2752 if (szValue
) *szValue
= '\0';
2753 if (pccbValue
) *pccbValue
= 0;
2757 msiobj_release(&package
->hdr
);
2761 UINT WINAPI
MsiVerifyPackageA( LPCSTR szPackage
)
2764 LPWSTR szPack
= NULL
;
2766 TRACE("%s\n", debugstr_a(szPackage
) );
2770 szPack
= strdupAtoW( szPackage
);
2772 return ERROR_OUTOFMEMORY
;
2775 r
= MsiVerifyPackageW( szPack
);
2782 UINT WINAPI
MsiVerifyPackageW( LPCWSTR szPackage
)
2787 TRACE("%s\n", debugstr_w(szPackage
) );
2789 r
= MsiOpenDatabaseW( szPackage
, MSIDBOPEN_READONLY
, &handle
);
2790 MsiCloseHandle( handle
);
2795 static INSTALLSTATE
MSI_GetComponentPath(LPCWSTR szProduct
, LPCWSTR szComponent
,
2796 awstring
* lpPathBuf
, LPDWORD pcchBuf
)
2798 static const WCHAR wininstaller
[] =
2799 {'W','i','n','d','o','w','s','I','n','s','t','a','l','l','e','r',0};
2800 WCHAR squished_pc
[GUID_SIZE
];
2801 WCHAR squished_comp
[GUID_SIZE
];
2807 if (!szProduct
|| !szComponent
)
2808 return INSTALLSTATE_INVALIDARG
;
2810 if (lpPathBuf
->str
.w
&& !pcchBuf
)
2811 return INSTALLSTATE_INVALIDARG
;
2813 if (!squash_guid(szProduct
, squished_pc
) ||
2814 !squash_guid(szComponent
, squished_comp
))
2815 return INSTALLSTATE_INVALIDARG
;
2817 state
= INSTALLSTATE_UNKNOWN
;
2819 if (MSIREG_OpenUserDataComponentKey(szComponent
, szLocalSid
, &hkey
, FALSE
) == ERROR_SUCCESS
||
2820 MSIREG_OpenUserDataComponentKey(szComponent
, NULL
, &hkey
, FALSE
) == ERROR_SUCCESS
)
2822 path
= msi_reg_get_val_str(hkey
, squished_pc
);
2825 state
= INSTALLSTATE_ABSENT
;
2827 if ((MSIREG_OpenInstallProps(szProduct
, MSIINSTALLCONTEXT_MACHINE
, NULL
,
2828 &hkey
, FALSE
) == ERROR_SUCCESS
||
2829 MSIREG_OpenUserDataProductKey(szProduct
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2830 NULL
, &hkey
, FALSE
) == ERROR_SUCCESS
) &&
2831 msi_reg_get_val_dword(hkey
, wininstaller
, &version
) &&
2832 GetFileAttributesW(path
) != INVALID_FILE_ATTRIBUTES
)
2835 state
= INSTALLSTATE_LOCAL
;
2839 if (state
!= INSTALLSTATE_LOCAL
&&
2840 (MSIREG_OpenProductKey(szProduct
, NULL
,
2841 MSIINSTALLCONTEXT_USERUNMANAGED
,
2842 &hkey
, FALSE
) == ERROR_SUCCESS
||
2843 MSIREG_OpenProductKey(szProduct
, NULL
, MSIINSTALLCONTEXT_MACHINE
,
2844 &hkey
, FALSE
) == ERROR_SUCCESS
))
2848 if (MSIREG_OpenUserDataComponentKey(szComponent
, szLocalSid
, &hkey
, FALSE
) == ERROR_SUCCESS
||
2849 MSIREG_OpenUserDataComponentKey(szComponent
, NULL
, &hkey
, FALSE
) == ERROR_SUCCESS
)
2852 path
= msi_reg_get_val_str(hkey
, squished_pc
);
2855 state
= INSTALLSTATE_ABSENT
;
2857 if (GetFileAttributesW(path
) != INVALID_FILE_ATTRIBUTES
)
2858 state
= INSTALLSTATE_LOCAL
;
2863 return INSTALLSTATE_UNKNOWN
;
2865 if (state
== INSTALLSTATE_LOCAL
&& !*path
)
2866 state
= INSTALLSTATE_NOTUSED
;
2868 msi_strcpy_to_awstring(path
, -1, lpPathBuf
, pcchBuf
);
2873 /******************************************************************
2874 * MsiGetComponentPathW [MSI.@]
2876 INSTALLSTATE WINAPI
MsiGetComponentPathW(LPCWSTR szProduct
, LPCWSTR szComponent
,
2877 LPWSTR lpPathBuf
, LPDWORD pcchBuf
)
2881 TRACE("%s %s %p %p\n", debugstr_w(szProduct
), debugstr_w(szComponent
), lpPathBuf
, pcchBuf
);
2883 path
.unicode
= TRUE
;
2884 path
.str
.w
= lpPathBuf
;
2886 return MSI_GetComponentPath( szProduct
, szComponent
, &path
, pcchBuf
);
2889 /******************************************************************
2890 * MsiGetComponentPathA [MSI.@]
2892 INSTALLSTATE WINAPI
MsiGetComponentPathA(LPCSTR szProduct
, LPCSTR szComponent
,
2893 LPSTR lpPathBuf
, LPDWORD pcchBuf
)
2895 LPWSTR szwProduct
, szwComponent
= NULL
;
2896 INSTALLSTATE r
= INSTALLSTATE_UNKNOWN
;
2899 TRACE("%s %s %p %p\n", debugstr_a(szProduct
), debugstr_a(szComponent
), lpPathBuf
, pcchBuf
);
2901 szwProduct
= strdupAtoW( szProduct
);
2902 if( szProduct
&& !szwProduct
)
2905 szwComponent
= strdupAtoW( szComponent
);
2906 if( szComponent
&& !szwComponent
)
2909 path
.unicode
= FALSE
;
2910 path
.str
.a
= lpPathBuf
;
2912 r
= MSI_GetComponentPath( szwProduct
, szwComponent
, &path
, pcchBuf
);
2915 msi_free( szwProduct
);
2916 msi_free( szwComponent
);
2921 static UINT
query_feature_state( const WCHAR
*product
, const WCHAR
*squashed
, const WCHAR
*usersid
,
2922 MSIINSTALLCONTEXT ctx
, const WCHAR
*feature
, INSTALLSTATE
*state
)
2926 WCHAR
*parent
, *components
, *path
;
2928 BOOL missing
= FALSE
, source
= FALSE
;
2929 WCHAR comp
[GUID_SIZE
];
2932 if (ctx
!= MSIINSTALLCONTEXT_MACHINE
) SetLastError( ERROR_SUCCESS
);
2934 if (MSIREG_OpenFeaturesKey( product
, usersid
, ctx
, &hkey
, FALSE
)) return ERROR_UNKNOWN_PRODUCT
;
2936 parent
= msi_reg_get_val_str( hkey
, feature
);
2937 RegCloseKey( hkey
);
2938 if (!parent
) return ERROR_UNKNOWN_FEATURE
;
2940 *state
= (parent
[0] == 6) ? INSTALLSTATE_ABSENT
: INSTALLSTATE_LOCAL
;
2942 if (*state
== INSTALLSTATE_ABSENT
)
2943 return ERROR_SUCCESS
;
2945 r
= MSIREG_OpenUserDataFeaturesKey( product
, usersid
, ctx
, &hkey
, FALSE
);
2946 if (r
!= ERROR_SUCCESS
)
2948 *state
= INSTALLSTATE_ADVERTISED
;
2949 return ERROR_SUCCESS
;
2951 components
= msi_reg_get_val_str( hkey
, feature
);
2952 RegCloseKey( hkey
);
2954 TRACE("buffer = %s\n", debugstr_w(components
));
2958 *state
= INSTALLSTATE_ADVERTISED
;
2959 return ERROR_SUCCESS
;
2961 for (p
= components
; *p
&& *p
!= 2 ; p
+= 20)
2963 if (!decode_base85_guid( p
, &guid
))
2965 if (p
!= components
) break;
2966 msi_free( components
);
2967 *state
= INSTALLSTATE_BADCONFIG
;
2968 return ERROR_BAD_CONFIGURATION
;
2970 StringFromGUID2( &guid
, comp
, GUID_SIZE
);
2971 if (ctx
== MSIINSTALLCONTEXT_MACHINE
)
2972 r
= MSIREG_OpenUserDataComponentKey( comp
, szLocalSid
, &hkey
, FALSE
);
2974 r
= MSIREG_OpenUserDataComponentKey( comp
, usersid
, &hkey
, FALSE
);
2976 if (r
!= ERROR_SUCCESS
)
2978 msi_free( components
);
2979 *state
= INSTALLSTATE_ADVERTISED
;
2980 return ERROR_SUCCESS
;
2982 path
= msi_reg_get_val_str( hkey
, squashed
);
2983 if (!path
) missing
= TRUE
;
2984 else if (strlenW( path
) > 2 &&
2985 path
[0] >= '0' && path
[0] <= '9' &&
2986 path
[1] >= '0' && path
[1] <= '9')
2992 msi_free( components
);
2995 *state
= INSTALLSTATE_ADVERTISED
;
2997 *state
= INSTALLSTATE_SOURCE
;
2999 *state
= INSTALLSTATE_LOCAL
;
3001 TRACE("returning state %d\n", *state
);
3002 return ERROR_SUCCESS
;
3005 UINT WINAPI
MsiQueryFeatureStateExA( LPCSTR product
, LPCSTR usersid
, MSIINSTALLCONTEXT ctx
,
3006 LPCSTR feature
, INSTALLSTATE
*state
)
3009 WCHAR
*productW
= NULL
, *usersidW
= NULL
, *featureW
= NULL
;
3011 if (product
&& !(productW
= strdupAtoW( product
))) return ERROR_OUTOFMEMORY
;
3012 if (usersid
&& !(usersidW
= strdupAtoW( usersid
)))
3014 msi_free( productW
);
3015 return ERROR_OUTOFMEMORY
;
3017 if (feature
&& !(featureW
= strdupAtoW( feature
)))
3019 msi_free( productW
);
3020 msi_free( usersidW
);
3021 return ERROR_OUTOFMEMORY
;
3023 r
= MsiQueryFeatureStateExW( productW
, usersidW
, ctx
, featureW
, state
);
3024 msi_free( productW
);
3025 msi_free( usersidW
);
3026 msi_free( featureW
);
3030 UINT WINAPI
MsiQueryFeatureStateExW( LPCWSTR product
, LPCWSTR usersid
, MSIINSTALLCONTEXT ctx
,
3031 LPCWSTR feature
, INSTALLSTATE
*state
)
3034 if (!squash_guid( product
, squashed
)) return ERROR_INVALID_PARAMETER
;
3035 return query_feature_state( product
, squashed
, usersid
, ctx
, feature
, state
);
3038 /******************************************************************
3039 * MsiQueryFeatureStateA [MSI.@]
3041 INSTALLSTATE WINAPI
MsiQueryFeatureStateA(LPCSTR szProduct
, LPCSTR szFeature
)
3043 LPWSTR szwProduct
= NULL
, szwFeature
= NULL
;
3044 INSTALLSTATE rc
= INSTALLSTATE_UNKNOWN
;
3046 szwProduct
= strdupAtoW( szProduct
);
3047 if ( szProduct
&& !szwProduct
)
3050 szwFeature
= strdupAtoW( szFeature
);
3051 if ( szFeature
&& !szwFeature
)
3054 rc
= MsiQueryFeatureStateW(szwProduct
, szwFeature
);
3057 msi_free( szwProduct
);
3058 msi_free( szwFeature
);
3063 /******************************************************************
3064 * MsiQueryFeatureStateW [MSI.@]
3066 * Checks the state of a feature
3069 * szProduct [I] Product's GUID string
3070 * szFeature [I] Feature's GUID string
3073 * INSTALLSTATE_LOCAL Feature is installed and usable
3074 * INSTALLSTATE_ABSENT Feature is absent
3075 * INSTALLSTATE_ADVERTISED Feature should be installed on demand
3076 * INSTALLSTATE_UNKNOWN An error occurred
3077 * INSTALLSTATE_INVALIDARG One of the GUIDs was invalid
3080 INSTALLSTATE WINAPI
MsiQueryFeatureStateW(LPCWSTR szProduct
, LPCWSTR szFeature
)
3086 TRACE("%s %s\n", debugstr_w(szProduct
), debugstr_w(szFeature
));
3088 if (!szProduct
|| !szFeature
|| !squash_guid( szProduct
, squashed
))
3089 return INSTALLSTATE_INVALIDARG
;
3091 r
= query_feature_state( szProduct
, squashed
, NULL
, MSIINSTALLCONTEXT_USERMANAGED
, szFeature
, &state
);
3092 if (r
== ERROR_SUCCESS
|| r
== ERROR_BAD_CONFIGURATION
) return state
;
3094 r
= query_feature_state( szProduct
, squashed
, NULL
, MSIINSTALLCONTEXT_USERUNMANAGED
, szFeature
, &state
);
3095 if (r
== ERROR_SUCCESS
|| r
== ERROR_BAD_CONFIGURATION
) return state
;
3097 r
= query_feature_state( szProduct
, squashed
, NULL
, MSIINSTALLCONTEXT_MACHINE
, szFeature
, &state
);
3098 if (r
== ERROR_SUCCESS
|| r
== ERROR_BAD_CONFIGURATION
) return state
;
3100 return INSTALLSTATE_UNKNOWN
;
3103 /******************************************************************
3104 * MsiGetFileVersionA [MSI.@]
3106 UINT WINAPI
MsiGetFileVersionA(LPCSTR szFilePath
, LPSTR lpVersionBuf
,
3107 LPDWORD pcchVersionBuf
, LPSTR lpLangBuf
, LPDWORD pcchLangBuf
)
3109 LPWSTR szwFilePath
= NULL
, lpwVersionBuff
= NULL
, lpwLangBuff
= NULL
;
3110 UINT ret
= ERROR_OUTOFMEMORY
;
3112 if ((lpVersionBuf
&& !pcchVersionBuf
) ||
3113 (lpLangBuf
&& !pcchLangBuf
))
3114 return ERROR_INVALID_PARAMETER
;
3118 szwFilePath
= strdupAtoW( szFilePath
);
3123 if( lpVersionBuf
&& pcchVersionBuf
&& *pcchVersionBuf
)
3125 lpwVersionBuff
= msi_alloc(*pcchVersionBuf
*sizeof(WCHAR
));
3126 if( !lpwVersionBuff
)
3130 if( lpLangBuf
&& pcchLangBuf
&& *pcchLangBuf
)
3132 lpwLangBuff
= msi_alloc(*pcchLangBuf
*sizeof(WCHAR
));
3137 ret
= MsiGetFileVersionW(szwFilePath
, lpwVersionBuff
, pcchVersionBuf
,
3138 lpwLangBuff
, pcchLangBuf
);
3140 if( (ret
== ERROR_SUCCESS
|| ret
== ERROR_MORE_DATA
) && lpwVersionBuff
)
3141 WideCharToMultiByte(CP_ACP
, 0, lpwVersionBuff
, -1,
3142 lpVersionBuf
, *pcchVersionBuf
+ 1, NULL
, NULL
);
3143 if( (ret
== ERROR_SUCCESS
|| ret
== ERROR_MORE_DATA
) && lpwLangBuff
)
3144 WideCharToMultiByte(CP_ACP
, 0, lpwLangBuff
, -1,
3145 lpLangBuf
, *pcchLangBuf
+ 1, NULL
, NULL
);
3148 msi_free(szwFilePath
);
3149 msi_free(lpwVersionBuff
);
3150 msi_free(lpwLangBuff
);
3155 static UINT
get_file_version( const WCHAR
*path
, WCHAR
*verbuf
, DWORD
*verlen
,
3156 WCHAR
*langbuf
, DWORD
*langlen
)
3158 static const WCHAR szVersionResource
[] = {'\\',0};
3159 static const WCHAR szVersionFormat
[] = {'%','d','.','%','d','.','%','d','.','%','d',0};
3160 static const WCHAR szLangFormat
[] = {'%','d',0};
3161 UINT ret
= ERROR_MORE_DATA
;
3164 VS_FIXEDFILEINFO
*ffi
;
3168 if (!(len
= GetFileVersionInfoSizeW( path
, NULL
)))
3170 error
= GetLastError();
3171 if (error
== ERROR_BAD_PATHNAME
) return ERROR_FILE_NOT_FOUND
;
3172 if (error
== ERROR_RESOURCE_DATA_NOT_FOUND
) return ERROR_FILE_INVALID
;
3175 if (!(version
= msi_alloc( len
))) return ERROR_OUTOFMEMORY
;
3176 if (!GetFileVersionInfoW( path
, 0, len
, version
))
3178 msi_free( version
);
3179 return GetLastError();
3181 if (!verbuf
&& !verlen
&& !langbuf
&& !langlen
)
3183 msi_free( version
);
3184 return ERROR_SUCCESS
;
3188 if (VerQueryValueW( version
, szVersionResource
, (LPVOID
*)&ffi
, &len
) && len
> 0)
3190 sprintfW( tmp
, szVersionFormat
,
3191 HIWORD(ffi
->dwFileVersionMS
), LOWORD(ffi
->dwFileVersionMS
),
3192 HIWORD(ffi
->dwFileVersionLS
), LOWORD(ffi
->dwFileVersionLS
) );
3193 if (verbuf
) lstrcpynW( verbuf
, tmp
, *verlen
);
3194 len
= strlenW( tmp
);
3195 if (*verlen
> len
) ret
= ERROR_SUCCESS
;
3200 if (verbuf
) *verbuf
= 0;
3206 if (VerQueryValueW( version
, szLangResource
, (LPVOID
*)&lang
, &len
) && len
> 0)
3208 sprintfW( tmp
, szLangFormat
, *lang
);
3209 if (langbuf
) lstrcpynW( langbuf
, tmp
, *langlen
);
3210 len
= strlenW( tmp
);
3211 if (*langlen
> len
) ret
= ERROR_SUCCESS
;
3216 if (langbuf
) *langbuf
= 0;
3220 msi_free( version
);
3225 /******************************************************************
3226 * MsiGetFileVersionW [MSI.@]
3228 UINT WINAPI
MsiGetFileVersionW( LPCWSTR path
, LPWSTR verbuf
, LPDWORD verlen
,
3229 LPWSTR langbuf
, LPDWORD langlen
)
3233 TRACE("%s %p %u %p %u\n", debugstr_w(path
), verbuf
, verlen
? *verlen
: 0,
3234 langbuf
, langlen
? *langlen
: 0);
3236 if ((verbuf
&& !verlen
) || (langbuf
&& !langlen
))
3237 return ERROR_INVALID_PARAMETER
;
3239 ret
= get_file_version( path
, verbuf
, verlen
, langbuf
, langlen
);
3240 if (ret
== ERROR_RESOURCE_DATA_NOT_FOUND
&& verlen
)
3243 WCHAR
*version
= msi_font_version_from_file( path
);
3244 if (!version
) return ERROR_FILE_INVALID
;
3245 len
= strlenW( version
);
3246 if (len
>= *verlen
) ret
= ERROR_MORE_DATA
;
3249 strcpyW( verbuf
, version
);
3250 ret
= ERROR_SUCCESS
;
3253 msi_free( version
);
3258 /***********************************************************************
3259 * MsiGetFeatureUsageW [MSI.@]
3261 UINT WINAPI
MsiGetFeatureUsageW( LPCWSTR szProduct
, LPCWSTR szFeature
,
3262 LPDWORD pdwUseCount
, LPWORD pwDateUsed
)
3264 FIXME("%s %s %p %p\n",debugstr_w(szProduct
), debugstr_w(szFeature
),
3265 pdwUseCount
, pwDateUsed
);
3266 return ERROR_CALL_NOT_IMPLEMENTED
;
3269 /***********************************************************************
3270 * MsiGetFeatureUsageA [MSI.@]
3272 UINT WINAPI
MsiGetFeatureUsageA( LPCSTR szProduct
, LPCSTR szFeature
,
3273 LPDWORD pdwUseCount
, LPWORD pwDateUsed
)
3275 LPWSTR prod
= NULL
, feat
= NULL
;
3276 UINT ret
= ERROR_OUTOFMEMORY
;
3278 TRACE("%s %s %p %p\n", debugstr_a(szProduct
), debugstr_a(szFeature
),
3279 pdwUseCount
, pwDateUsed
);
3281 prod
= strdupAtoW( szProduct
);
3282 if (szProduct
&& !prod
)
3285 feat
= strdupAtoW( szFeature
);
3286 if (szFeature
&& !feat
)
3289 ret
= MsiGetFeatureUsageW( prod
, feat
, pdwUseCount
, pwDateUsed
);
3298 /***********************************************************************
3299 * MsiUseFeatureExW [MSI.@]
3301 INSTALLSTATE WINAPI
MsiUseFeatureExW( LPCWSTR szProduct
, LPCWSTR szFeature
,
3302 DWORD dwInstallMode
, DWORD dwReserved
)
3306 TRACE("%s %s %i %i\n", debugstr_w(szProduct
), debugstr_w(szFeature
),
3307 dwInstallMode
, dwReserved
);
3309 state
= MsiQueryFeatureStateW( szProduct
, szFeature
);
3312 return INSTALLSTATE_INVALIDARG
;
3314 if (state
== INSTALLSTATE_LOCAL
&& dwInstallMode
!= INSTALLMODE_NODETECTION
)
3316 FIXME("mark product %s feature %s as used\n",
3317 debugstr_w(szProduct
), debugstr_w(szFeature
) );
3323 /***********************************************************************
3324 * MsiUseFeatureExA [MSI.@]
3326 INSTALLSTATE WINAPI
MsiUseFeatureExA( LPCSTR szProduct
, LPCSTR szFeature
,
3327 DWORD dwInstallMode
, DWORD dwReserved
)
3329 INSTALLSTATE ret
= INSTALLSTATE_UNKNOWN
;
3330 LPWSTR prod
= NULL
, feat
= NULL
;
3332 TRACE("%s %s %i %i\n", debugstr_a(szProduct
), debugstr_a(szFeature
),
3333 dwInstallMode
, dwReserved
);
3335 prod
= strdupAtoW( szProduct
);
3336 if (szProduct
&& !prod
)
3339 feat
= strdupAtoW( szFeature
);
3340 if (szFeature
&& !feat
)
3343 ret
= MsiUseFeatureExW( prod
, feat
, dwInstallMode
, dwReserved
);
3352 /***********************************************************************
3353 * MsiUseFeatureW [MSI.@]
3355 INSTALLSTATE WINAPI
MsiUseFeatureW( LPCWSTR szProduct
, LPCWSTR szFeature
)
3357 return MsiUseFeatureExW(szProduct
, szFeature
, 0, 0);
3360 /***********************************************************************
3361 * MsiUseFeatureA [MSI.@]
3363 INSTALLSTATE WINAPI
MsiUseFeatureA( LPCSTR szProduct
, LPCSTR szFeature
)
3365 return MsiUseFeatureExA(szProduct
, szFeature
, 0, 0);
3368 /***********************************************************************
3369 * MSI_ProvideQualifiedComponentEx [internal]
3371 static UINT
MSI_ProvideQualifiedComponentEx(LPCWSTR szComponent
,
3372 LPCWSTR szQualifier
, DWORD dwInstallMode
, LPCWSTR szProduct
,
3373 DWORD Unused1
, DWORD Unused2
, awstring
*lpPathBuf
,
3374 LPDWORD pcchPathBuf
)
3376 WCHAR product
[MAX_FEATURE_CHARS
+1], component
[MAX_FEATURE_CHARS
+1],
3377 feature
[MAX_FEATURE_CHARS
+1];
3383 rc
= MSIREG_OpenUserComponentsKey(szComponent
, &hkey
, FALSE
);
3384 if (rc
!= ERROR_SUCCESS
)
3385 return ERROR_INDEX_ABSENT
;
3387 info
= msi_reg_get_val_str( hkey
, szQualifier
);
3391 return ERROR_INDEX_ABSENT
;
3393 MsiDecomposeDescriptorW(info
, product
, feature
, component
, &sz
);
3396 rc
= MSI_GetComponentPath(product
, component
, lpPathBuf
, pcchPathBuf
);
3398 rc
= MSI_GetComponentPath(szProduct
, component
, lpPathBuf
, pcchPathBuf
);
3402 if (rc
!= INSTALLSTATE_LOCAL
)
3403 return ERROR_FILE_NOT_FOUND
;
3405 return ERROR_SUCCESS
;
3408 /***********************************************************************
3409 * MsiProvideQualifiedComponentExW [MSI.@]
3411 UINT WINAPI
MsiProvideQualifiedComponentExW(LPCWSTR szComponent
,
3412 LPCWSTR szQualifier
, DWORD dwInstallMode
, LPCWSTR szProduct
,
3413 DWORD Unused1
, DWORD Unused2
, LPWSTR lpPathBuf
,
3414 LPDWORD pcchPathBuf
)
3418 TRACE("%s %s %u %s %u %u %p %p\n", debugstr_w(szComponent
),
3419 debugstr_w(szQualifier
), dwInstallMode
, debugstr_w(szProduct
),
3420 Unused1
, Unused2
, lpPathBuf
, pcchPathBuf
);
3422 path
.unicode
= TRUE
;
3423 path
.str
.w
= lpPathBuf
;
3425 return MSI_ProvideQualifiedComponentEx(szComponent
, szQualifier
,
3426 dwInstallMode
, szProduct
, Unused1
, Unused2
, &path
, pcchPathBuf
);
3429 /***********************************************************************
3430 * MsiProvideQualifiedComponentExA [MSI.@]
3432 UINT WINAPI
MsiProvideQualifiedComponentExA(LPCSTR szComponent
,
3433 LPCSTR szQualifier
, DWORD dwInstallMode
, LPCSTR szProduct
,
3434 DWORD Unused1
, DWORD Unused2
, LPSTR lpPathBuf
,
3435 LPDWORD pcchPathBuf
)
3437 LPWSTR szwComponent
, szwQualifier
= NULL
, szwProduct
= NULL
;
3438 UINT r
= ERROR_OUTOFMEMORY
;
3441 TRACE("%s %s %u %s %u %u %p %p\n", debugstr_a(szComponent
),
3442 debugstr_a(szQualifier
), dwInstallMode
, debugstr_a(szProduct
),
3443 Unused1
, Unused2
, lpPathBuf
, pcchPathBuf
);
3445 szwComponent
= strdupAtoW( szComponent
);
3446 if (szComponent
&& !szwComponent
)
3449 szwQualifier
= strdupAtoW( szQualifier
);
3450 if (szQualifier
&& !szwQualifier
)
3453 szwProduct
= strdupAtoW( szProduct
);
3454 if (szProduct
&& !szwProduct
)
3457 path
.unicode
= FALSE
;
3458 path
.str
.a
= lpPathBuf
;
3460 r
= MSI_ProvideQualifiedComponentEx(szwComponent
, szwQualifier
,
3461 dwInstallMode
, szwProduct
, Unused1
,
3462 Unused2
, &path
, pcchPathBuf
);
3464 msi_free(szwProduct
);
3465 msi_free(szwComponent
);
3466 msi_free(szwQualifier
);
3471 /***********************************************************************
3472 * MsiProvideQualifiedComponentW [MSI.@]
3474 UINT WINAPI
MsiProvideQualifiedComponentW( LPCWSTR szComponent
,
3475 LPCWSTR szQualifier
, DWORD dwInstallMode
, LPWSTR lpPathBuf
,
3476 LPDWORD pcchPathBuf
)
3478 return MsiProvideQualifiedComponentExW(szComponent
, szQualifier
,
3479 dwInstallMode
, NULL
, 0, 0, lpPathBuf
, pcchPathBuf
);
3482 /***********************************************************************
3483 * MsiProvideQualifiedComponentA [MSI.@]
3485 UINT WINAPI
MsiProvideQualifiedComponentA( LPCSTR szComponent
,
3486 LPCSTR szQualifier
, DWORD dwInstallMode
, LPSTR lpPathBuf
,
3487 LPDWORD pcchPathBuf
)
3489 return MsiProvideQualifiedComponentExA(szComponent
, szQualifier
,
3490 dwInstallMode
, NULL
, 0, 0, lpPathBuf
, pcchPathBuf
);
3493 /***********************************************************************
3494 * MSI_GetUserInfo [internal]
3496 static USERINFOSTATE
MSI_GetUserInfo(LPCWSTR szProduct
,
3497 awstring
*lpUserNameBuf
, LPDWORD pcchUserNameBuf
,
3498 awstring
*lpOrgNameBuf
, LPDWORD pcchOrgNameBuf
,
3499 awstring
*lpSerialBuf
, LPDWORD pcchSerialBuf
)
3501 WCHAR squished_pc
[SQUISH_GUID_SIZE
];
3502 LPWSTR user
, org
, serial
;
3503 USERINFOSTATE state
;
3508 TRACE("%s %p %p %p %p %p %p\n", debugstr_w(szProduct
), lpUserNameBuf
,
3509 pcchUserNameBuf
, lpOrgNameBuf
, pcchOrgNameBuf
, lpSerialBuf
,
3512 if (!szProduct
|| !squash_guid(szProduct
, squished_pc
))
3513 return USERINFOSTATE_INVALIDARG
;
3515 if (MSIREG_OpenProductKey(szProduct
, NULL
, MSIINSTALLCONTEXT_USERMANAGED
,
3516 &hkey
, FALSE
) != ERROR_SUCCESS
&&
3517 MSIREG_OpenProductKey(szProduct
, NULL
, MSIINSTALLCONTEXT_USERUNMANAGED
,
3518 &hkey
, FALSE
) != ERROR_SUCCESS
&&
3519 MSIREG_OpenProductKey(szProduct
, NULL
, MSIINSTALLCONTEXT_MACHINE
,
3520 &hkey
, FALSE
) != ERROR_SUCCESS
)
3522 return USERINFOSTATE_UNKNOWN
;
3525 if (MSIREG_OpenInstallProps(szProduct
, MSIINSTALLCONTEXT_USERUNMANAGED
,
3526 NULL
, &props
, FALSE
) != ERROR_SUCCESS
&&
3527 MSIREG_OpenInstallProps(szProduct
, MSIINSTALLCONTEXT_MACHINE
,
3528 NULL
, &props
, FALSE
) != ERROR_SUCCESS
)
3531 return USERINFOSTATE_ABSENT
;
3534 user
= msi_reg_get_val_str(props
, INSTALLPROPERTY_REGOWNERW
);
3535 org
= msi_reg_get_val_str(props
, INSTALLPROPERTY_REGCOMPANYW
);
3536 serial
= msi_reg_get_val_str(props
, INSTALLPROPERTY_PRODUCTIDW
);
3537 state
= USERINFOSTATE_ABSENT
;
3543 state
= USERINFOSTATE_PRESENT
;
3545 if (pcchUserNameBuf
)
3547 if (lpUserNameBuf
&& !user
)
3549 (*pcchUserNameBuf
)--;
3553 r
= msi_strcpy_to_awstring(user
, -1, lpUserNameBuf
, pcchUserNameBuf
);
3554 if (r
== ERROR_MORE_DATA
)
3556 state
= USERINFOSTATE_MOREDATA
;
3564 if (!orgptr
) orgptr
= szEmpty
;
3566 r
= msi_strcpy_to_awstring(orgptr
, -1, lpOrgNameBuf
, pcchOrgNameBuf
);
3567 if (r
== ERROR_MORE_DATA
)
3569 state
= USERINFOSTATE_MOREDATA
;
3582 r
= msi_strcpy_to_awstring(serial
, -1, lpSerialBuf
, pcchSerialBuf
);
3583 if (r
== ERROR_MORE_DATA
)
3584 state
= USERINFOSTATE_MOREDATA
;
3595 /***********************************************************************
3596 * MsiGetUserInfoW [MSI.@]
3598 USERINFOSTATE WINAPI
MsiGetUserInfoW(LPCWSTR szProduct
,
3599 LPWSTR lpUserNameBuf
, LPDWORD pcchUserNameBuf
,
3600 LPWSTR lpOrgNameBuf
, LPDWORD pcchOrgNameBuf
,
3601 LPWSTR lpSerialBuf
, LPDWORD pcchSerialBuf
)
3603 awstring user
, org
, serial
;
3605 if ((lpUserNameBuf
&& !pcchUserNameBuf
) ||
3606 (lpOrgNameBuf
&& !pcchOrgNameBuf
) ||
3607 (lpSerialBuf
&& !pcchSerialBuf
))
3608 return USERINFOSTATE_INVALIDARG
;
3610 user
.unicode
= TRUE
;
3611 user
.str
.w
= lpUserNameBuf
;
3613 org
.str
.w
= lpOrgNameBuf
;
3614 serial
.unicode
= TRUE
;
3615 serial
.str
.w
= lpSerialBuf
;
3617 return MSI_GetUserInfo( szProduct
, &user
, pcchUserNameBuf
,
3618 &org
, pcchOrgNameBuf
,
3619 &serial
, pcchSerialBuf
);
3622 USERINFOSTATE WINAPI
MsiGetUserInfoA(LPCSTR szProduct
,
3623 LPSTR lpUserNameBuf
, LPDWORD pcchUserNameBuf
,
3624 LPSTR lpOrgNameBuf
, LPDWORD pcchOrgNameBuf
,
3625 LPSTR lpSerialBuf
, LPDWORD pcchSerialBuf
)
3627 awstring user
, org
, serial
;
3631 if ((lpUserNameBuf
&& !pcchUserNameBuf
) ||
3632 (lpOrgNameBuf
&& !pcchOrgNameBuf
) ||
3633 (lpSerialBuf
&& !pcchSerialBuf
))
3634 return USERINFOSTATE_INVALIDARG
;
3636 prod
= strdupAtoW( szProduct
);
3637 if (szProduct
&& !prod
)
3638 return ERROR_OUTOFMEMORY
;
3640 user
.unicode
= FALSE
;
3641 user
.str
.a
= lpUserNameBuf
;
3642 org
.unicode
= FALSE
;
3643 org
.str
.a
= lpOrgNameBuf
;
3644 serial
.unicode
= FALSE
;
3645 serial
.str
.a
= lpSerialBuf
;
3647 r
= MSI_GetUserInfo( prod
, &user
, pcchUserNameBuf
,
3648 &org
, pcchOrgNameBuf
,
3649 &serial
, pcchSerialBuf
);
3656 UINT WINAPI
MsiCollectUserInfoW(LPCWSTR szProduct
)
3660 MSIPACKAGE
*package
;
3661 static const WCHAR szFirstRun
[] = {'F','i','r','s','t','R','u','n',0};
3663 TRACE("(%s)\n",debugstr_w(szProduct
));
3665 rc
= MsiOpenProductW(szProduct
,&handle
);
3666 if (rc
!= ERROR_SUCCESS
)
3667 return ERROR_INVALID_PARAMETER
;
3669 /* MsiCollectUserInfo cannot be called from a custom action. */
3670 package
= msihandle2msiinfo(handle
, MSIHANDLETYPE_PACKAGE
);
3672 return ERROR_CALL_NOT_IMPLEMENTED
;
3674 rc
= ACTION_PerformUIAction(package
, szFirstRun
, SCRIPT_NONE
);
3675 msiobj_release( &package
->hdr
);
3677 MsiCloseHandle(handle
);
3682 UINT WINAPI
MsiCollectUserInfoA(LPCSTR szProduct
)
3686 MSIPACKAGE
*package
;
3687 static const WCHAR szFirstRun
[] = {'F','i','r','s','t','R','u','n',0};
3689 TRACE("(%s)\n",debugstr_a(szProduct
));
3691 rc
= MsiOpenProductA(szProduct
,&handle
);
3692 if (rc
!= ERROR_SUCCESS
)
3693 return ERROR_INVALID_PARAMETER
;
3695 /* MsiCollectUserInfo cannot be called from a custom action. */
3696 package
= msihandle2msiinfo(handle
, MSIHANDLETYPE_PACKAGE
);
3698 return ERROR_CALL_NOT_IMPLEMENTED
;
3700 rc
= ACTION_PerformUIAction(package
, szFirstRun
, SCRIPT_NONE
);
3701 msiobj_release( &package
->hdr
);
3703 MsiCloseHandle(handle
);
3708 /***********************************************************************
3709 * MsiConfigureFeatureA [MSI.@]
3711 UINT WINAPI
MsiConfigureFeatureA(LPCSTR szProduct
, LPCSTR szFeature
, INSTALLSTATE eInstallState
)
3713 LPWSTR prod
, feat
= NULL
;
3714 UINT r
= ERROR_OUTOFMEMORY
;
3716 TRACE("%s %s %i\n", debugstr_a(szProduct
), debugstr_a(szFeature
), eInstallState
);
3718 prod
= strdupAtoW( szProduct
);
3719 if (szProduct
&& !prod
)
3722 feat
= strdupAtoW( szFeature
);
3723 if (szFeature
&& !feat
)
3726 r
= MsiConfigureFeatureW(prod
, feat
, eInstallState
);
3735 /***********************************************************************
3736 * MsiConfigureFeatureW [MSI.@]
3738 UINT WINAPI
MsiConfigureFeatureW(LPCWSTR szProduct
, LPCWSTR szFeature
, INSTALLSTATE eInstallState
)
3740 MSIPACKAGE
*package
= NULL
;
3742 WCHAR sourcepath
[MAX_PATH
], filename
[MAX_PATH
];
3745 TRACE("%s %s %i\n", debugstr_w(szProduct
), debugstr_w(szFeature
), eInstallState
);
3747 if (!szProduct
|| !szFeature
)
3748 return ERROR_INVALID_PARAMETER
;
3750 switch (eInstallState
)
3752 case INSTALLSTATE_DEFAULT
:
3753 /* FIXME: how do we figure out the default location? */
3754 eInstallState
= INSTALLSTATE_LOCAL
;
3756 case INSTALLSTATE_LOCAL
:
3757 case INSTALLSTATE_SOURCE
:
3758 case INSTALLSTATE_ABSENT
:
3759 case INSTALLSTATE_ADVERTISED
:
3762 return ERROR_INVALID_PARAMETER
;
3765 r
= MSI_OpenProductW( szProduct
, &package
);
3766 if (r
!= ERROR_SUCCESS
)
3769 sz
= sizeof(sourcepath
);
3770 MsiSourceListGetInfoW(szProduct
, NULL
, MSIINSTALLCONTEXT_USERUNMANAGED
,
3771 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDSOURCEW
, sourcepath
, &sz
);
3773 sz
= sizeof(filename
);
3774 MsiSourceListGetInfoW(szProduct
, NULL
, MSIINSTALLCONTEXT_USERUNMANAGED
,
3775 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAMEW
, filename
, &sz
);
3777 lstrcatW( sourcepath
, filename
);
3779 MsiSetInternalUI( INSTALLUILEVEL_BASIC
, NULL
);
3781 r
= ACTION_PerformUIAction( package
, szCostInitialize
, SCRIPT_NONE
);
3782 if (r
!= ERROR_SUCCESS
)
3785 r
= MSI_SetFeatureStateW( package
, szFeature
, eInstallState
);
3786 if (r
!= ERROR_SUCCESS
)
3789 r
= MSI_InstallPackage( package
, sourcepath
, NULL
);
3792 msiobj_release( &package
->hdr
);
3797 /***********************************************************************
3798 * MsiCreateAndVerifyInstallerDirectory [MSI.@]
3800 * Notes: undocumented
3802 UINT WINAPI
MsiCreateAndVerifyInstallerDirectory(DWORD dwReserved
)
3804 WCHAR path
[MAX_PATH
];
3806 TRACE("%d\n", dwReserved
);
3810 FIXME("dwReserved=%d\n", dwReserved
);
3811 return ERROR_INVALID_PARAMETER
;
3814 if (!GetWindowsDirectoryW(path
, MAX_PATH
))
3815 return ERROR_FUNCTION_FAILED
;
3817 lstrcatW(path
, installerW
);
3819 if (!CreateDirectoryW(path
, NULL
) && GetLastError() != ERROR_ALREADY_EXISTS
)
3820 return ERROR_FUNCTION_FAILED
;
3822 return ERROR_SUCCESS
;
3825 /***********************************************************************
3826 * MsiGetShortcutTargetA [MSI.@]
3828 UINT WINAPI
MsiGetShortcutTargetA( LPCSTR szShortcutTarget
,
3829 LPSTR szProductCode
, LPSTR szFeatureId
,
3830 LPSTR szComponentCode
)
3833 const int len
= MAX_FEATURE_CHARS
+1;
3834 WCHAR product
[MAX_FEATURE_CHARS
+1], feature
[MAX_FEATURE_CHARS
+1], component
[MAX_FEATURE_CHARS
+1];
3837 target
= strdupAtoW( szShortcutTarget
);
3838 if (szShortcutTarget
&& !target
)
3839 return ERROR_OUTOFMEMORY
;
3843 r
= MsiGetShortcutTargetW( target
, product
, feature
, component
);
3845 if (r
== ERROR_SUCCESS
)
3847 WideCharToMultiByte( CP_ACP
, 0, product
, -1, szProductCode
, len
, NULL
, NULL
);
3848 WideCharToMultiByte( CP_ACP
, 0, feature
, -1, szFeatureId
, len
, NULL
, NULL
);
3849 WideCharToMultiByte( CP_ACP
, 0, component
, -1, szComponentCode
, len
, NULL
, NULL
);
3854 /***********************************************************************
3855 * MsiGetShortcutTargetW [MSI.@]
3857 UINT WINAPI
MsiGetShortcutTargetW( LPCWSTR szShortcutTarget
,
3858 LPWSTR szProductCode
, LPWSTR szFeatureId
,
3859 LPWSTR szComponentCode
)
3861 IShellLinkDataList
*dl
= NULL
;
3862 IPersistFile
*pf
= NULL
;
3863 LPEXP_DARWIN_LINK darwin
= NULL
;
3866 TRACE("%s %p %p %p\n", debugstr_w(szShortcutTarget
),
3867 szProductCode
, szFeatureId
, szComponentCode
);
3869 init
= CoInitialize(NULL
);
3871 r
= CoCreateInstance( &CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
3872 &IID_IPersistFile
, (LPVOID
*) &pf
);
3873 if( SUCCEEDED( r
) )
3875 r
= IPersistFile_Load( pf
, szShortcutTarget
,
3876 STGM_READ
| STGM_SHARE_DENY_WRITE
);
3877 if( SUCCEEDED( r
) )
3879 r
= IPersistFile_QueryInterface( pf
, &IID_IShellLinkDataList
,
3881 if( SUCCEEDED( r
) )
3883 IShellLinkDataList_CopyDataBlock( dl
, EXP_DARWIN_ID_SIG
,
3885 IShellLinkDataList_Release( dl
);
3888 IPersistFile_Release( pf
);
3891 if (SUCCEEDED(init
))
3894 TRACE("darwin = %p\n", darwin
);
3901 ret
= MsiDecomposeDescriptorW( darwin
->szwDarwinID
,
3902 szProductCode
, szFeatureId
, szComponentCode
, &sz
);
3903 LocalFree( darwin
);
3907 return ERROR_FUNCTION_FAILED
;
3910 UINT WINAPI
MsiReinstallFeatureW( LPCWSTR szProduct
, LPCWSTR szFeature
, DWORD dwReinstallMode
)
3912 static const WCHAR fmtW
[] = {'%','s','=','%','s',' ','%','s','=','%','s',0};
3913 MSIPACKAGE
*package
;
3914 MSIINSTALLCONTEXT context
;
3916 WCHAR sourcepath
[MAX_PATH
], filename
[MAX_PATH
], reinstallmode
[11];
3917 WCHAR
*ptr
, *cmdline
;
3920 TRACE("%s, %s, 0x%08x\n", debugstr_w(szProduct
), debugstr_w(szFeature
), dwReinstallMode
);
3922 r
= msi_locate_product( szProduct
, &context
);
3923 if (r
!= ERROR_SUCCESS
)
3926 ptr
= reinstallmode
;
3928 if (dwReinstallMode
& REINSTALLMODE_FILEMISSING
)
3930 if (dwReinstallMode
& REINSTALLMODE_FILEOLDERVERSION
)
3932 if (dwReinstallMode
& REINSTALLMODE_FILEEQUALVERSION
)
3934 if (dwReinstallMode
& REINSTALLMODE_FILEEXACT
)
3936 if (dwReinstallMode
& REINSTALLMODE_FILEVERIFY
)
3938 if (dwReinstallMode
& REINSTALLMODE_FILEREPLACE
)
3940 if (dwReinstallMode
& REINSTALLMODE_USERDATA
)
3942 if (dwReinstallMode
& REINSTALLMODE_MACHINEDATA
)
3944 if (dwReinstallMode
& REINSTALLMODE_SHORTCUT
)
3946 if (dwReinstallMode
& REINSTALLMODE_PACKAGE
)
3950 sz
= sizeof(sourcepath
);
3951 MsiSourceListGetInfoW( szProduct
, NULL
, context
, MSICODE_PRODUCT
,
3952 INSTALLPROPERTY_LASTUSEDSOURCEW
, sourcepath
, &sz
);
3953 sz
= sizeof(filename
);
3954 MsiSourceListGetInfoW( szProduct
, NULL
, context
, MSICODE_PRODUCT
,
3955 INSTALLPROPERTY_PACKAGENAMEW
, filename
, &sz
);
3956 strcatW( sourcepath
, filename
);
3958 if (dwReinstallMode
& REINSTALLMODE_PACKAGE
)
3959 r
= MSI_OpenPackageW( sourcepath
, &package
);
3961 r
= MSI_OpenProductW( szProduct
, &package
);
3963 if (r
!= ERROR_SUCCESS
)
3966 sz
= (strlenW( fmtW
) + strlenW( szReinstallMode
) + strlenW( reinstallmode
)) * sizeof(WCHAR
);
3967 sz
+= (strlenW( szReinstall
) + strlenW( szFeature
)) * sizeof(WCHAR
);
3968 if (!(cmdline
= msi_alloc( sz
)))
3970 msiobj_release( &package
->hdr
);
3971 return ERROR_OUTOFMEMORY
;
3973 sprintfW( cmdline
, fmtW
, szReinstallMode
, reinstallmode
, szReinstall
, szFeature
);
3975 r
= MSI_InstallPackage( package
, sourcepath
, cmdline
);
3976 msiobj_release( &package
->hdr
);
3977 msi_free( cmdline
);
3982 UINT WINAPI
MsiReinstallFeatureA( LPCSTR szProduct
, LPCSTR szFeature
,
3983 DWORD dwReinstallMode
)
3989 TRACE("%s %s %i\n", debugstr_a(szProduct
), debugstr_a(szFeature
),
3992 wszProduct
= strdupAtoW(szProduct
);
3993 wszFeature
= strdupAtoW(szFeature
);
3995 rc
= MsiReinstallFeatureW(wszProduct
, wszFeature
, dwReinstallMode
);
3997 msi_free(wszProduct
);
3998 msi_free(wszFeature
);
4005 unsigned int buf
[4];
4006 unsigned char in
[64];
4007 unsigned char digest
[16];
4010 extern VOID WINAPI
MD5Init( MD5_CTX
*);
4011 extern VOID WINAPI
MD5Update( MD5_CTX
*, const unsigned char *, unsigned int );
4012 extern VOID WINAPI
MD5Final( MD5_CTX
*);
4014 /***********************************************************************
4015 * MsiGetFileHashW [MSI.@]
4017 UINT WINAPI
MsiGetFileHashW( LPCWSTR szFilePath
, DWORD dwOptions
,
4018 PMSIFILEHASHINFO pHash
)
4020 HANDLE handle
, mapping
;
4023 UINT r
= ERROR_FUNCTION_FAILED
;
4025 TRACE("%s %08x %p\n", debugstr_w(szFilePath
), dwOptions
, pHash
);
4028 return ERROR_INVALID_PARAMETER
;
4031 return ERROR_PATH_NOT_FOUND
;
4034 return ERROR_INVALID_PARAMETER
;
4036 return ERROR_INVALID_PARAMETER
;
4037 if (pHash
->dwFileHashInfoSize
< sizeof *pHash
)
4038 return ERROR_INVALID_PARAMETER
;
4040 handle
= CreateFileW( szFilePath
, GENERIC_READ
,
4041 FILE_SHARE_READ
| FILE_SHARE_DELETE
, NULL
, OPEN_EXISTING
, 0, NULL
);
4042 if (handle
== INVALID_HANDLE_VALUE
)
4044 WARN("can't open file %u\n", GetLastError());
4045 return ERROR_FILE_NOT_FOUND
;
4047 length
= GetFileSize( handle
, NULL
);
4051 mapping
= CreateFileMappingW( handle
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
4054 p
= MapViewOfFile( mapping
, FILE_MAP_READ
, 0, 0, length
);
4060 MD5Update( &ctx
, p
, length
);
4062 UnmapViewOfFile( p
);
4064 memcpy( pHash
->dwData
, ctx
.digest
, sizeof pHash
->dwData
);
4067 CloseHandle( mapping
);
4072 /* Empty file -> set hash to 0 */
4073 memset( pHash
->dwData
, 0, sizeof pHash
->dwData
);
4077 CloseHandle( handle
);
4082 /***********************************************************************
4083 * MsiGetFileHashA [MSI.@]
4085 UINT WINAPI
MsiGetFileHashA( LPCSTR szFilePath
, DWORD dwOptions
,
4086 PMSIFILEHASHINFO pHash
)
4091 TRACE("%s %08x %p\n", debugstr_a(szFilePath
), dwOptions
, pHash
);
4093 file
= strdupAtoW( szFilePath
);
4094 if (szFilePath
&& !file
)
4095 return ERROR_OUTOFMEMORY
;
4097 r
= MsiGetFileHashW( file
, dwOptions
, pHash
);
4102 /***********************************************************************
4103 * MsiAdvertiseScriptW [MSI.@]
4105 UINT WINAPI
MsiAdvertiseScriptW( LPCWSTR szScriptFile
, DWORD dwFlags
,
4106 PHKEY phRegData
, BOOL fRemoveItems
)
4108 FIXME("%s %08x %p %d\n",
4109 debugstr_w( szScriptFile
), dwFlags
, phRegData
, fRemoveItems
);
4110 return ERROR_CALL_NOT_IMPLEMENTED
;
4113 /***********************************************************************
4114 * MsiAdvertiseScriptA [MSI.@]
4116 UINT WINAPI
MsiAdvertiseScriptA( LPCSTR szScriptFile
, DWORD dwFlags
,
4117 PHKEY phRegData
, BOOL fRemoveItems
)
4119 FIXME("%s %08x %p %d\n",
4120 debugstr_a( szScriptFile
), dwFlags
, phRegData
, fRemoveItems
);
4121 return ERROR_CALL_NOT_IMPLEMENTED
;
4124 /***********************************************************************
4125 * MsiIsProductElevatedW [MSI.@]
4127 UINT WINAPI
MsiIsProductElevatedW( LPCWSTR szProduct
, BOOL
*pfElevated
)
4129 FIXME("%s %p - stub\n",
4130 debugstr_w( szProduct
), pfElevated
);
4132 return ERROR_SUCCESS
;
4135 /***********************************************************************
4136 * MsiIsProductElevatedA [MSI.@]
4138 UINT WINAPI
MsiIsProductElevatedA( LPCSTR szProduct
, BOOL
*pfElevated
)
4140 FIXME("%s %p - stub\n",
4141 debugstr_a( szProduct
), pfElevated
);
4143 return ERROR_SUCCESS
;
4146 /***********************************************************************
4147 * MsiSetExternalUIRecord [MSI.@]
4149 UINT WINAPI
MsiSetExternalUIRecord( INSTALLUI_HANDLER_RECORD handler
,
4150 DWORD filter
, LPVOID context
,
4151 PINSTALLUI_HANDLER_RECORD prev
)
4153 TRACE("%p %08x %p %p\n", handler
, filter
, context
, prev
);
4156 *prev
= gUIHandlerRecord
;
4158 gUIHandlerRecord
= handler
;
4160 gUIContext
= context
;
4162 return ERROR_SUCCESS
;
4165 /***********************************************************************
4166 * MsiInstallMissingComponentA [MSI.@]
4168 UINT WINAPI
MsiInstallMissingComponentA( LPCSTR product
, LPCSTR component
, INSTALLSTATE state
)
4171 WCHAR
*productW
= NULL
, *componentW
= NULL
;
4173 TRACE("%s, %s, %d\n", debugstr_a(product
), debugstr_a(component
), state
);
4175 if (product
&& !(productW
= strdupAtoW( product
)))
4176 return ERROR_OUTOFMEMORY
;
4178 if (component
&& !(componentW
= strdupAtoW( component
)))
4180 msi_free( productW
);
4181 return ERROR_OUTOFMEMORY
;
4184 r
= MsiInstallMissingComponentW( productW
, componentW
, state
);
4185 msi_free( productW
);
4186 msi_free( componentW
);
4190 /***********************************************************************
4191 * MsiInstallMissingComponentW [MSI.@]
4193 UINT WINAPI
MsiInstallMissingComponentW(LPCWSTR szProduct
, LPCWSTR szComponent
, INSTALLSTATE eInstallState
)
4195 FIXME("(%s %s %d\n", debugstr_w(szProduct
), debugstr_w(szComponent
), eInstallState
);
4196 return ERROR_SUCCESS
;
4199 /***********************************************************************
4200 * MsiBeginTransactionA [MSI.@]
4202 UINT WINAPI
MsiBeginTransactionA( LPCSTR name
, DWORD attrs
, MSIHANDLE
*id
, HANDLE
*event
)
4207 FIXME("%s %u %p %p\n", debugstr_a(name
), attrs
, id
, event
);
4209 nameW
= strdupAtoW( name
);
4211 return ERROR_OUTOFMEMORY
;
4213 r
= MsiBeginTransactionW( nameW
, attrs
, id
, event
);
4218 /***********************************************************************
4219 * MsiBeginTransactionW [MSI.@]
4221 UINT WINAPI
MsiBeginTransactionW( LPCWSTR name
, DWORD attrs
, MSIHANDLE
*id
, HANDLE
*event
)
4223 FIXME("%s %u %p %p\n", debugstr_w(name
), attrs
, id
, event
);
4225 *id
= (MSIHANDLE
)0xdeadbeef;
4226 *event
= (HANDLE
)0xdeadbeef;
4228 return ERROR_SUCCESS
;
4231 /***********************************************************************
4232 * MsiEndTransaction [MSI.@]
4234 UINT WINAPI
MsiEndTransaction( DWORD state
)
4236 FIXME("%u\n", state
);
4237 return ERROR_SUCCESS
;
4240 UINT WINAPI
Migrate10CachedPackagesW(void* a
, void* b
, void* c
, DWORD d
)
4242 FIXME("%p,%p,%p,%08x\n", a
, b
, c
, d
);
4243 return ERROR_SUCCESS
;