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
31 #include "wine/debug.h"
42 #include "wine/unicode.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(msi);
46 static const WCHAR installerW[] = {'\\','I','n','s','t','a','l','l','e','r',0};
48 UINT WINAPI MsiOpenProductA(LPCSTR szProduct, MSIHANDLE *phProduct)
51 LPWSTR szwProd = NULL;
53 TRACE("%s %p\n",debugstr_a(szProduct), phProduct);
57 szwProd = strdupAtoW( szProduct );
59 return ERROR_OUTOFMEMORY;
62 r = MsiOpenProductW( szwProd, phProduct );
69 static UINT MSI_OpenProductW( LPCWSTR szProduct, MSIPACKAGE **ppackage )
73 HKEY hKeyProduct = NULL;
76 TRACE("%s %p\n", debugstr_w(szProduct), ppackage );
78 r = MSIREG_OpenUninstallKey(szProduct,&hKeyProduct,FALSE);
79 if( r != ERROR_SUCCESS )
81 r = ERROR_UNKNOWN_PRODUCT;
85 /* find the size of the path */
87 r = RegQueryValueExW( hKeyProduct, INSTALLPROPERTY_LOCALPACKAGEW,
88 NULL, &type, NULL, &count );
89 if( r != ERROR_SUCCESS )
91 r = ERROR_UNKNOWN_PRODUCT;
95 /* now alloc and fetch the path of the database to open */
96 path = msi_alloc( count );
100 r = RegQueryValueExW( hKeyProduct, INSTALLPROPERTY_LOCALPACKAGEW,
101 NULL, &type, (LPBYTE) path, &count );
102 if( r != ERROR_SUCCESS )
104 r = ERROR_UNKNOWN_PRODUCT;
108 r = MSI_OpenPackageW( path, ppackage );
113 RegCloseKey( hKeyProduct );
118 UINT WINAPI MsiOpenProductW( LPCWSTR szProduct, MSIHANDLE *phProduct )
120 MSIPACKAGE *package = NULL;
123 r = MSI_OpenProductW( szProduct, &package );
124 if( r == ERROR_SUCCESS )
126 *phProduct = alloc_msihandle( &package->hdr );
128 r = ERROR_NOT_ENOUGH_MEMORY;
129 msiobj_release( &package->hdr );
134 UINT WINAPI MsiAdvertiseProductA(LPCSTR szPackagePath, LPCSTR szScriptfilePath,
135 LPCSTR szTransforms, LANGID lgidLanguage)
137 FIXME("%s %s %s %08x\n",debugstr_a(szPackagePath),
138 debugstr_a(szScriptfilePath), debugstr_a(szTransforms), lgidLanguage);
139 return ERROR_CALL_NOT_IMPLEMENTED;
142 UINT WINAPI MsiAdvertiseProductW(LPCWSTR szPackagePath, LPCWSTR szScriptfilePath,
143 LPCWSTR szTransforms, LANGID lgidLanguage)
145 FIXME("%s %s %s %08x\n",debugstr_w(szPackagePath),
146 debugstr_w(szScriptfilePath), debugstr_w(szTransforms), lgidLanguage);
147 return ERROR_CALL_NOT_IMPLEMENTED;
150 UINT WINAPI MsiAdvertiseProductExA(LPCSTR szPackagePath, LPCSTR szScriptfilePath,
151 LPCSTR szTransforms, LANGID lgidLanguage, DWORD dwPlatform, DWORD dwOptions)
153 FIXME("%s %s %s %08x %08x %08x\n", debugstr_a(szPackagePath),
154 debugstr_a(szScriptfilePath), debugstr_a(szTransforms),
155 lgidLanguage, dwPlatform, dwOptions);
156 return ERROR_CALL_NOT_IMPLEMENTED;
159 UINT WINAPI MsiAdvertiseProductExW( LPCWSTR szPackagePath, LPCWSTR szScriptfilePath,
160 LPCWSTR szTransforms, LANGID lgidLanguage, DWORD dwPlatform, DWORD dwOptions)
162 FIXME("%s %s %s %08x %08x %08x\n", debugstr_w(szPackagePath),
163 debugstr_w(szScriptfilePath), debugstr_w(szTransforms),
164 lgidLanguage, dwPlatform, dwOptions);
165 return ERROR_CALL_NOT_IMPLEMENTED;
168 UINT WINAPI MsiInstallProductA(LPCSTR szPackagePath, LPCSTR szCommandLine)
170 LPWSTR szwPath = NULL, szwCommand = NULL;
171 UINT r = ERROR_OUTOFMEMORY;
173 TRACE("%s %s\n",debugstr_a(szPackagePath), debugstr_a(szCommandLine));
177 szwPath = strdupAtoW( szPackagePath );
184 szwCommand = strdupAtoW( szCommandLine );
189 r = MsiInstallProductW( szwPath, szwCommand );
193 msi_free( szwCommand );
198 UINT WINAPI MsiInstallProductW(LPCWSTR szPackagePath, LPCWSTR szCommandLine)
200 MSIPACKAGE *package = NULL;
203 TRACE("%s %s\n",debugstr_w(szPackagePath), debugstr_w(szCommandLine));
205 r = MSI_OpenPackageW( szPackagePath, &package );
206 if (r == ERROR_SUCCESS)
208 r = MSI_InstallPackage( package, szPackagePath, szCommandLine );
209 msiobj_release( &package->hdr );
215 UINT WINAPI MsiReinstallProductA(LPCSTR szProduct, DWORD dwReinstallMode)
217 FIXME("%s %08x\n", debugstr_a(szProduct), dwReinstallMode);
218 return ERROR_CALL_NOT_IMPLEMENTED;
221 UINT WINAPI MsiReinstallProductW(LPCWSTR szProduct, DWORD dwReinstallMode)
223 FIXME("%s %08x\n", debugstr_w(szProduct), dwReinstallMode);
224 return ERROR_CALL_NOT_IMPLEMENTED;
227 UINT WINAPI MsiApplyPatchA(LPCSTR szPatchPackage, LPCSTR szInstallPackage,
228 INSTALLTYPE eInstallType, LPCSTR szCommandLine)
230 LPWSTR patch_package = NULL;
231 LPWSTR install_package = NULL;
232 LPWSTR command_line = NULL;
233 UINT r = ERROR_OUTOFMEMORY;
235 TRACE("%s %s %d %s\n", debugstr_a(szPatchPackage), debugstr_a(szInstallPackage),
236 eInstallType, debugstr_a(szCommandLine));
238 if (szPatchPackage && !(patch_package = strdupAtoW(szPatchPackage)))
241 if (szInstallPackage && !(install_package = strdupAtoW(szInstallPackage)))
244 if (szCommandLine && !(command_line = strdupAtoW(szCommandLine)))
247 r = MsiApplyPatchW(patch_package, install_package, eInstallType, command_line);
250 msi_free(patch_package);
251 msi_free(install_package);
252 msi_free(command_line);
257 UINT WINAPI MsiApplyPatchW(LPCWSTR szPatchPackage, LPCWSTR szInstallPackage,
258 INSTALLTYPE eInstallType, LPCWSTR szCommandLine)
260 MSIHANDLE patch, info;
263 LPCWSTR cmd_ptr = szCommandLine;
265 LPWSTR cmd = NULL, codes = NULL;
267 static const WCHAR space[] = {' ',0};
268 static const WCHAR patcheq[] = {'P','A','T','C','H','=',0};
269 static WCHAR empty[] = {0};
271 TRACE("%s %s %d %s\n", debugstr_w(szPatchPackage), debugstr_w(szInstallPackage),
272 eInstallType, debugstr_w(szCommandLine));
274 if (szInstallPackage || eInstallType == INSTALLTYPE_NETWORK_IMAGE ||
275 eInstallType == INSTALLTYPE_SINGLE_INSTANCE)
277 FIXME("Only reading target products from patch\n");
278 return ERROR_CALL_NOT_IMPLEMENTED;
281 r = MsiOpenDatabaseW(szPatchPackage, MSIDBOPEN_READONLY, &patch);
282 if (r != ERROR_SUCCESS)
285 r = MsiGetSummaryInformationW(patch, NULL, 0, &info);
286 if (r != ERROR_SUCCESS)
289 r = MsiSummaryInfoGetPropertyW(info, PID_TEMPLATE, &type, NULL, NULL, empty, &size);
290 if (r != ERROR_MORE_DATA || !size || type != VT_LPSTR)
292 ERR("Failed to read product codes from patch\n");
296 codes = msi_alloc(++size * sizeof(WCHAR));
299 r = ERROR_OUTOFMEMORY;
303 r = MsiSummaryInfoGetPropertyW(info, PID_TEMPLATE, &type, NULL, NULL, codes, &size);
304 if (r != ERROR_SUCCESS)
310 size = lstrlenW(cmd_ptr) + lstrlenW(patcheq) + lstrlenW(szPatchPackage) + 1;
311 cmd = msi_alloc(size * sizeof(WCHAR));
314 r = ERROR_OUTOFMEMORY;
318 lstrcpyW(cmd, cmd_ptr);
319 if (szCommandLine) lstrcatW(cmd, space);
320 lstrcatW(cmd, patcheq);
321 lstrcatW(cmd, szPatchPackage);
324 while ((end = strchrW(beg, '}')))
328 r = MsiConfigureProductExW(beg, INSTALLLEVEL_DEFAULT, INSTALLSTATE_DEFAULT, cmd);
329 if (r != ERROR_SUCCESS)
339 MsiCloseHandle(info);
340 MsiCloseHandle(patch);
345 UINT WINAPI MsiConfigureProductExW(LPCWSTR szProduct, int iInstallLevel,
346 INSTALLSTATE eInstallState, LPCWSTR szCommandLine)
348 MSIPACKAGE* package = NULL;
351 WCHAR sourcepath[MAX_PATH];
352 WCHAR filename[MAX_PATH];
353 static const WCHAR szInstalled[] = {
354 ' ','I','n','s','t','a','l','l','e','d','=','1',0};
357 TRACE("%s %d %d %s\n",debugstr_w(szProduct), iInstallLevel, eInstallState,
358 debugstr_w(szCommandLine));
360 if (eInstallState != INSTALLSTATE_LOCAL &&
361 eInstallState != INSTALLSTATE_DEFAULT)
363 FIXME("Not implemented for anything other than local installs\n");
364 return ERROR_CALL_NOT_IMPLEMENTED;
367 sz = sizeof(sourcepath);
368 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERMANAGED,
369 MSICODE_PRODUCT, INSTALLPROPERTY_LASTUSEDSOURCEW, sourcepath,
372 sz = sizeof(filename);
373 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERMANAGED,
374 MSICODE_PRODUCT, INSTALLPROPERTY_PACKAGENAMEW, filename, &sz);
376 lstrcatW(sourcepath,filename);
379 * ok 1, we need to find the msi file for this product.
380 * 2, find the source dir for the files
381 * 3, do the configure/install.
382 * 4, cleanupany runonce entry.
385 r = MSI_OpenProductW( szProduct, &package );
386 if (r != ERROR_SUCCESS)
389 sz = lstrlenW(szInstalled) + 1;
392 sz += lstrlenW(szCommandLine);
394 commandline = msi_alloc(sz * sizeof(WCHAR));
397 r = ERROR_OUTOFMEMORY;
403 lstrcpyW(commandline,szCommandLine);
405 if (MsiQueryProductStateW(szProduct) != INSTALLSTATE_UNKNOWN)
406 lstrcatW(commandline,szInstalled);
408 r = MSI_InstallPackage( package, sourcepath, commandline );
410 msi_free(commandline);
413 msiobj_release( &package->hdr );
418 UINT WINAPI MsiConfigureProductExA(LPCSTR szProduct, int iInstallLevel,
419 INSTALLSTATE eInstallState, LPCSTR szCommandLine)
421 LPWSTR szwProduct = NULL;
422 LPWSTR szwCommandLine = NULL;
423 UINT r = ERROR_OUTOFMEMORY;
427 szwProduct = strdupAtoW( szProduct );
434 szwCommandLine = strdupAtoW( szCommandLine );
439 r = MsiConfigureProductExW( szwProduct, iInstallLevel, eInstallState,
442 msi_free( szwProduct );
443 msi_free( szwCommandLine);
448 UINT WINAPI MsiConfigureProductA(LPCSTR szProduct, int iInstallLevel,
449 INSTALLSTATE eInstallState)
451 LPWSTR szwProduct = NULL;
454 TRACE("%s %d %d\n",debugstr_a(szProduct), iInstallLevel, eInstallState);
458 szwProduct = strdupAtoW( szProduct );
460 return ERROR_OUTOFMEMORY;
463 r = MsiConfigureProductW( szwProduct, iInstallLevel, eInstallState );
464 msi_free( szwProduct );
469 UINT WINAPI MsiConfigureProductW(LPCWSTR szProduct, int iInstallLevel,
470 INSTALLSTATE eInstallState)
472 return MsiConfigureProductExW(szProduct, iInstallLevel, eInstallState, NULL);
475 UINT WINAPI MsiGetProductCodeA(LPCSTR szComponent, LPSTR szBuffer)
477 LPWSTR szwComponent = NULL;
479 WCHAR szwBuffer[GUID_SIZE];
481 TRACE("%s %s\n",debugstr_a(szComponent), debugstr_a(szBuffer));
485 szwComponent = strdupAtoW( szComponent );
487 return ERROR_OUTOFMEMORY;
491 r = MsiGetProductCodeW( szwComponent, szwBuffer );
494 WideCharToMultiByte(CP_ACP, 0, szwBuffer, -1, szBuffer, GUID_SIZE, NULL, NULL);
496 msi_free( szwComponent );
501 UINT WINAPI MsiGetProductCodeW(LPCWSTR szComponent, LPWSTR szBuffer)
504 HKEY compkey, prodkey;
505 WCHAR squished_comp[GUID_SIZE];
506 WCHAR squished_prod[GUID_SIZE];
507 DWORD sz = GUID_SIZE;
509 TRACE("%s %p\n", debugstr_w(szComponent), szBuffer);
511 if (!szComponent || !*szComponent)
512 return ERROR_INVALID_PARAMETER;
514 if (!squash_guid(szComponent, squished_comp))
515 return ERROR_INVALID_PARAMETER;
517 if (MSIREG_OpenUserDataComponentKey(szComponent, &compkey, FALSE) != ERROR_SUCCESS &&
518 MSIREG_OpenLocalSystemComponentKey(szComponent, &compkey, FALSE) != ERROR_SUCCESS)
520 return ERROR_UNKNOWN_COMPONENT;
523 rc = RegEnumValueW(compkey, 0, squished_prod, &sz, NULL, NULL, NULL, NULL);
524 if (rc != ERROR_SUCCESS)
526 RegCloseKey(compkey);
527 return ERROR_UNKNOWN_COMPONENT;
530 /* check simple case, only one product */
531 rc = RegEnumValueW(compkey, 1, squished_prod, &sz, NULL, NULL, NULL, NULL);
532 if (rc == ERROR_NO_MORE_ITEMS)
539 while ((rc = RegEnumValueW(compkey, index, squished_prod, &sz,
540 NULL, NULL, NULL, NULL)) != ERROR_NO_MORE_ITEMS)
544 unsquash_guid(squished_prod, szBuffer);
546 if (MSIREG_OpenLocalManagedProductKey(szBuffer, &prodkey, FALSE) == ERROR_SUCCESS ||
547 MSIREG_OpenUserProductsKey(szBuffer, &prodkey, FALSE) == ERROR_SUCCESS ||
548 MSIREG_OpenLocalClassesProductKey(szBuffer, &prodkey, FALSE) == ERROR_SUCCESS)
550 RegCloseKey(prodkey);
556 rc = ERROR_INSTALL_FAILURE;
559 RegCloseKey(compkey);
560 unsquash_guid(squished_prod, szBuffer);
564 static LPWSTR msi_reg_get_value(HKEY hkey, LPCWSTR name, DWORD *type)
570 static const WCHAR format[] = {'%','d',0};
572 res = RegQueryValueExW(hkey, name, NULL, type, NULL, NULL);
573 if (res != ERROR_SUCCESS)
577 return msi_reg_get_val_str(hkey, name);
579 if (!msi_reg_get_val_dword(hkey, name, &dval))
582 sprintfW(temp, format, dval);
583 return strdupW(temp);
586 static UINT WINAPI MSI_GetProductInfo(LPCWSTR szProduct, LPCWSTR szAttribute,
587 awstring *szValue, LPDWORD pcchValueBuf)
589 UINT r = ERROR_UNKNOWN_PROPERTY;
590 HKEY prodkey, userdata, source;
592 WCHAR squished_pc[GUID_SIZE];
593 WCHAR packagecode[GUID_SIZE];
594 BOOL classes = FALSE;
595 BOOL badconfig = FALSE;
599 static WCHAR empty[] = {0};
600 static const WCHAR sourcelist[] = {
601 'S','o','u','r','c','e','L','i','s','t',0};
602 static const WCHAR display_name[] = {
603 'D','i','s','p','l','a','y','N','a','m','e',0};
604 static const WCHAR display_version[] = {
605 'D','i','s','p','l','a','y','V','e','r','s','i','o','n',0};
606 static const WCHAR assignment[] = {
607 'A','s','s','i','g','n','m','e','n','t',0};
609 TRACE("%s %s %p %p\n", debugstr_w(szProduct),
610 debugstr_w(szAttribute), szValue, pcchValueBuf);
612 if ((szValue->str.w && !pcchValueBuf) || !szProduct || !szAttribute)
613 return ERROR_INVALID_PARAMETER;
615 if (!squash_guid(szProduct, squished_pc))
616 return ERROR_INVALID_PARAMETER;
618 r = MSIREG_OpenLocalManagedProductKey(szProduct, &prodkey, FALSE);
619 if (r != ERROR_SUCCESS)
621 r = MSIREG_OpenUserProductsKey(szProduct, &prodkey, FALSE);
622 if (r != ERROR_SUCCESS)
624 r = MSIREG_OpenLocalClassesProductKey(szProduct, &prodkey, FALSE);
625 if (r == ERROR_SUCCESS)
631 MSIREG_OpenLocalSystemProductKey(szProduct, &userdata, FALSE);
633 MSIREG_OpenInstallPropertiesKey(szProduct, &userdata, FALSE);
635 if (!lstrcmpW(szAttribute, INSTALLPROPERTY_HELPLINKW) ||
636 !lstrcmpW(szAttribute, INSTALLPROPERTY_HELPTELEPHONEW) ||
637 !lstrcmpW(szAttribute, INSTALLPROPERTY_INSTALLDATEW) ||
638 !lstrcmpW(szAttribute, INSTALLPROPERTY_INSTALLEDPRODUCTNAMEW) ||
639 !lstrcmpW(szAttribute, INSTALLPROPERTY_INSTALLLOCATIONW) ||
640 !lstrcmpW(szAttribute, INSTALLPROPERTY_INSTALLSOURCEW) ||
641 !lstrcmpW(szAttribute, INSTALLPROPERTY_LOCALPACKAGEW) ||
642 !lstrcmpW(szAttribute, INSTALLPROPERTY_PUBLISHERW) ||
643 !lstrcmpW(szAttribute, INSTALLPROPERTY_URLINFOABOUTW) ||
644 !lstrcmpW(szAttribute, INSTALLPROPERTY_URLUPDATEINFOW) ||
645 !lstrcmpW(szAttribute, INSTALLPROPERTY_VERSIONMINORW) ||
646 !lstrcmpW(szAttribute, INSTALLPROPERTY_VERSIONMAJORW) ||
647 !lstrcmpW(szAttribute, INSTALLPROPERTY_VERSIONSTRINGW) ||
648 !lstrcmpW(szAttribute, INSTALLPROPERTY_PRODUCTIDW) ||
649 !lstrcmpW(szAttribute, INSTALLPROPERTY_REGCOMPANYW) ||
650 !lstrcmpW(szAttribute, INSTALLPROPERTY_REGOWNERW))
654 r = ERROR_UNKNOWN_PRODUCT;
659 return ERROR_UNKNOWN_PROPERTY;
661 if (!lstrcmpW(szAttribute, INSTALLPROPERTY_INSTALLEDPRODUCTNAMEW))
662 szAttribute = display_name;
663 else if (!lstrcmpW(szAttribute, INSTALLPROPERTY_VERSIONSTRINGW))
664 szAttribute = display_version;
666 val = msi_reg_get_value(userdata, szAttribute, &type);
670 else if (!lstrcmpW(szAttribute, INSTALLPROPERTY_INSTANCETYPEW) ||
671 !lstrcmpW(szAttribute, INSTALLPROPERTY_TRANSFORMSW) ||
672 !lstrcmpW(szAttribute, INSTALLPROPERTY_LANGUAGEW) ||
673 !lstrcmpW(szAttribute, INSTALLPROPERTY_PRODUCTNAMEW) ||
674 !lstrcmpW(szAttribute, INSTALLPROPERTY_ASSIGNMENTTYPEW) ||
675 !lstrcmpW(szAttribute, INSTALLPROPERTY_PACKAGECODEW) ||
676 !lstrcmpW(szAttribute, INSTALLPROPERTY_VERSIONW) ||
677 !lstrcmpW(szAttribute, INSTALLPROPERTY_PRODUCTICONW) ||
678 !lstrcmpW(szAttribute, INSTALLPROPERTY_PACKAGENAMEW) ||
679 !lstrcmpW(szAttribute, INSTALLPROPERTY_AUTHORIZED_LUA_APPW))
683 r = ERROR_UNKNOWN_PRODUCT;
687 if (!lstrcmpW(szAttribute, INSTALLPROPERTY_ASSIGNMENTTYPEW))
688 szAttribute = assignment;
690 if (!lstrcmpW(szAttribute, INSTALLPROPERTY_PACKAGENAMEW))
692 res = RegOpenKeyW(prodkey, sourcelist, &source);
693 if (res == ERROR_SUCCESS)
694 val = msi_reg_get_value(source, szAttribute, &type);
700 val = msi_reg_get_value(prodkey, szAttribute, &type);
705 if (val != empty && type != REG_DWORD &&
706 !lstrcmpW(szAttribute, INSTALLPROPERTY_PACKAGECODEW))
708 if (lstrlenW(val) != SQUISH_GUID_SIZE - 1)
712 unsquash_guid(val, packagecode);
714 val = strdupW(packagecode);
721 r = ERROR_UNKNOWN_PROPERTY;
725 save = *pcchValueBuf;
727 if (lstrlenW(val) < *pcchValueBuf)
728 r = msi_strcpy_to_awstring(val, szValue, pcchValueBuf);
729 else if (szValue->str.a || szValue->str.w)
733 *pcchValueBuf = lstrlenW(val);
734 else if (r == ERROR_SUCCESS)
736 *pcchValueBuf = save;
737 r = ERROR_BAD_CONFIGURATION;
744 RegCloseKey(prodkey);
745 RegCloseKey(userdata);
749 UINT WINAPI MsiGetProductInfoA(LPCSTR szProduct, LPCSTR szAttribute,
750 LPSTR szBuffer, LPDWORD pcchValueBuf)
752 LPWSTR szwProduct, szwAttribute = NULL;
753 UINT r = ERROR_OUTOFMEMORY;
756 TRACE("%s %s %p %p\n", debugstr_a(szProduct), debugstr_a(szAttribute),
757 szBuffer, pcchValueBuf);
759 szwProduct = strdupAtoW( szProduct );
760 if( szProduct && !szwProduct )
763 szwAttribute = strdupAtoW( szAttribute );
764 if( szAttribute && !szwAttribute )
767 buffer.unicode = FALSE;
768 buffer.str.a = szBuffer;
770 r = MSI_GetProductInfo( szwProduct, szwAttribute,
771 &buffer, pcchValueBuf );
774 msi_free( szwProduct );
775 msi_free( szwAttribute );
780 UINT WINAPI MsiGetProductInfoW(LPCWSTR szProduct, LPCWSTR szAttribute,
781 LPWSTR szBuffer, LPDWORD pcchValueBuf)
785 TRACE("%s %s %p %p\n", debugstr_w(szProduct), debugstr_w(szAttribute),
786 szBuffer, pcchValueBuf);
788 buffer.unicode = TRUE;
789 buffer.str.w = szBuffer;
791 return MSI_GetProductInfo( szProduct, szAttribute,
792 &buffer, pcchValueBuf );
795 UINT WINAPI MsiEnableLogA(DWORD dwLogMode, LPCSTR szLogFile, DWORD attributes)
797 LPWSTR szwLogFile = NULL;
800 TRACE("%08x %s %08x\n", dwLogMode, debugstr_a(szLogFile), attributes);
804 szwLogFile = strdupAtoW( szLogFile );
806 return ERROR_OUTOFMEMORY;
808 r = MsiEnableLogW( dwLogMode, szwLogFile, attributes );
809 msi_free( szwLogFile );
813 UINT WINAPI MsiEnableLogW(DWORD dwLogMode, LPCWSTR szLogFile, DWORD attributes)
815 HANDLE file = INVALID_HANDLE_VALUE;
817 TRACE("%08x %s %08x\n", dwLogMode, debugstr_w(szLogFile), attributes);
821 lstrcpyW(gszLogFile,szLogFile);
822 if (!(attributes & INSTALLLOGATTRIBUTES_APPEND))
823 DeleteFileW(szLogFile);
824 file = CreateFileW(szLogFile, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
825 FILE_ATTRIBUTE_NORMAL, NULL);
826 if (file != INVALID_HANDLE_VALUE)
829 ERR("Unable to enable log %s\n",debugstr_w(szLogFile));
832 gszLogFile[0] = '\0';
834 return ERROR_SUCCESS;
837 UINT WINAPI MsiEnumComponentCostsW(MSIHANDLE hInstall, LPCWSTR szComponent,
838 DWORD dwIndex, INSTALLSTATE iState,
839 LPWSTR lpDriveBuf, DWORD *pcchDriveBuf,
840 int *piCost, int *pTempCost)
842 FIXME("(%ld, %s, %d, %d, %p, %p, %p %p): stub!\n", hInstall,
843 debugstr_w(szComponent), dwIndex, iState, lpDriveBuf,
844 pcchDriveBuf, piCost, pTempCost);
846 return ERROR_NO_MORE_ITEMS;
849 UINT WINAPI MsiQueryComponentStateA(LPCSTR szProductCode,
850 LPCSTR szUserSid, MSIINSTALLCONTEXT dwContext,
851 LPCSTR szComponent, INSTALLSTATE *pdwState)
853 LPWSTR prodcode = NULL, usersid = NULL, comp = NULL;
856 TRACE("(%s, %s, %d, %s, %p)\n", debugstr_a(szProductCode),
857 debugstr_a(szUserSid), dwContext, debugstr_a(szComponent), pdwState);
859 if (szProductCode && !(prodcode = strdupAtoW(szProductCode)))
860 return ERROR_OUTOFMEMORY;
862 if (szUserSid && !(usersid = strdupAtoW(szUserSid)))
863 return ERROR_OUTOFMEMORY;
865 if (szComponent && !(comp = strdupAtoW(szComponent)))
866 return ERROR_OUTOFMEMORY;
868 r = MsiQueryComponentStateW(prodcode, usersid, dwContext, comp, pdwState);
877 static BOOL msi_comp_find_prod_key(LPCWSTR prodcode, MSIINSTALLCONTEXT context)
882 if (context == MSIINSTALLCONTEXT_MACHINE)
883 r = MSIREG_OpenLocalClassesProductKey(prodcode, &hkey, FALSE);
884 else if (context == MSIINSTALLCONTEXT_USERUNMANAGED)
885 r = MSIREG_OpenUserProductsKey(prodcode, &hkey, FALSE);
887 r = MSIREG_OpenLocalManagedProductKey(prodcode, &hkey, FALSE);
890 return (r == ERROR_SUCCESS);
893 static BOOL msi_comp_find_package(LPCWSTR prodcode, MSIINSTALLCONTEXT context)
901 static const WCHAR local_package[] = {'L','o','c','a','l','P','a','c','k','a','g','e',0};
902 static const WCHAR managed_local_package[] = {
903 'M','a','n','a','g','e','d','L','o','c','a','l','P','a','c','k','a','g','e',0
906 if (context == MSIINSTALLCONTEXT_MACHINE)
907 r = MSIREG_OpenLocalSystemProductKey(prodcode, &hkey, FALSE);
909 r = MSIREG_OpenInstallPropertiesKey(prodcode, &hkey, FALSE);
911 if (r != ERROR_SUCCESS)
914 if (context == MSIINSTALLCONTEXT_USERMANAGED)
915 package = managed_local_package;
917 package = local_package;
920 res = RegQueryValueExW(hkey, package, NULL, NULL, NULL, &sz);
923 return (res == ERROR_SUCCESS);
926 static BOOL msi_comp_find_prodcode(LPWSTR squished_pc,
927 MSIINSTALLCONTEXT context,
928 LPCWSTR comp, DWORD *sz)
934 if (context == MSIINSTALLCONTEXT_MACHINE)
935 r = MSIREG_OpenLocalSystemComponentKey(comp, &hkey, FALSE);
937 r = MSIREG_OpenUserDataComponentKey(comp, &hkey, FALSE);
939 if (r != ERROR_SUCCESS)
943 res = RegQueryValueExW(hkey, squished_pc, NULL, NULL, NULL, sz);
944 if (res != ERROR_SUCCESS)
951 UINT WINAPI MsiQueryComponentStateW(LPCWSTR szProductCode,
952 LPCWSTR szUserSid, MSIINSTALLCONTEXT dwContext,
953 LPCWSTR szComponent, INSTALLSTATE *pdwState)
955 WCHAR squished_pc[GUID_SIZE];
959 TRACE("(%s, %s, %d, %s, %p)\n", debugstr_w(szProductCode),
960 debugstr_w(szUserSid), dwContext, debugstr_w(szComponent), pdwState);
963 return ERROR_INVALID_PARAMETER;
965 if (!szProductCode || !*szProductCode || lstrlenW(szProductCode) != GUID_SIZE - 1)
966 return ERROR_INVALID_PARAMETER;
968 if (!squash_guid(szProductCode, squished_pc))
969 return ERROR_INVALID_PARAMETER;
971 found = msi_comp_find_prod_key(szProductCode, dwContext);
973 if (!msi_comp_find_package(szProductCode, dwContext))
977 *pdwState = INSTALLSTATE_UNKNOWN;
978 return ERROR_UNKNOWN_COMPONENT;
981 return ERROR_UNKNOWN_PRODUCT;
984 *pdwState = INSTALLSTATE_UNKNOWN;
986 if (!msi_comp_find_prodcode(squished_pc, dwContext, szComponent, &sz))
987 return ERROR_UNKNOWN_COMPONENT;
990 *pdwState = INSTALLSTATE_NOTUSED;
992 *pdwState = INSTALLSTATE_LOCAL;
994 return ERROR_SUCCESS;
997 INSTALLSTATE WINAPI MsiQueryProductStateA(LPCSTR szProduct)
999 LPWSTR szwProduct = NULL;
1004 szwProduct = strdupAtoW( szProduct );
1006 return ERROR_OUTOFMEMORY;
1008 r = MsiQueryProductStateW( szwProduct );
1009 msi_free( szwProduct );
1013 INSTALLSTATE WINAPI MsiQueryProductStateW(LPCWSTR szProduct)
1016 INSTALLSTATE state = INSTALLSTATE_UNKNOWN;
1017 HKEY hkey = 0, props = 0;
1019 BOOL userkey_exists = FALSE;
1021 static const int GUID_LEN = 38;
1022 static const WCHAR szInstallProperties[] = {
1023 'I','n','s','t','a','l','l','P','r','o','p','e','r','t','i','e','s',0
1025 static const WCHAR szWindowsInstaller[] = {
1026 'W','i','n','d','o','w','s','I','n','s','t','a','l','l','e','r',0
1029 TRACE("%s\n", debugstr_w(szProduct));
1031 if (!szProduct || !*szProduct || lstrlenW(szProduct) != GUID_LEN)
1032 return INSTALLSTATE_INVALIDARG;
1034 rc = MSIREG_OpenUserProductsKey(szProduct,&hkey,FALSE);
1035 if (rc == ERROR_SUCCESS)
1037 userkey_exists = TRUE;
1038 state = INSTALLSTATE_ADVERTISED;
1042 rc = MSIREG_OpenUserDataProductKey(szProduct,&hkey,FALSE);
1043 if (rc != ERROR_SUCCESS)
1046 rc = RegOpenKeyW(hkey, szInstallProperties, &props);
1047 if (rc != ERROR_SUCCESS)
1051 rc = RegQueryValueExW(props,szWindowsInstaller,NULL,NULL,(LPVOID)&state, &sz);
1052 if (rc != ERROR_SUCCESS)
1056 state = INSTALLSTATE_DEFAULT;
1058 state = INSTALLSTATE_UNKNOWN;
1060 if (state == INSTALLSTATE_DEFAULT && !userkey_exists)
1061 state = INSTALLSTATE_ABSENT;
1069 INSTALLUILEVEL WINAPI MsiSetInternalUI(INSTALLUILEVEL dwUILevel, HWND *phWnd)
1071 INSTALLUILEVEL old = gUILevel;
1072 HWND oldwnd = gUIhwnd;
1074 TRACE("%08x %p\n", dwUILevel, phWnd);
1076 gUILevel = dwUILevel;
1085 INSTALLUI_HANDLERA WINAPI MsiSetExternalUIA(INSTALLUI_HANDLERA puiHandler,
1086 DWORD dwMessageFilter, LPVOID pvContext)
1088 INSTALLUI_HANDLERA prev = gUIHandlerA;
1090 TRACE("%p %x %p\n",puiHandler, dwMessageFilter,pvContext);
1091 gUIHandlerA = puiHandler;
1092 gUIFilter = dwMessageFilter;
1093 gUIContext = pvContext;
1098 INSTALLUI_HANDLERW WINAPI MsiSetExternalUIW(INSTALLUI_HANDLERW puiHandler,
1099 DWORD dwMessageFilter, LPVOID pvContext)
1101 INSTALLUI_HANDLERW prev = gUIHandlerW;
1103 TRACE("%p %x %p\n",puiHandler,dwMessageFilter,pvContext);
1104 gUIHandlerW = puiHandler;
1105 gUIFilter = dwMessageFilter;
1106 gUIContext = pvContext;
1111 /******************************************************************
1112 * MsiLoadStringW [MSI.@]
1114 * Loads a string from MSI's string resources.
1118 * handle [I] only -1 is handled currently
1119 * id [I] id of the string to be loaded
1120 * lpBuffer [O] buffer for the string to be written to
1121 * nBufferMax [I] maximum size of the buffer in characters
1122 * lang [I] the preferred language for the string
1126 * If successful, this function returns the language id of the string loaded
1127 * If the function fails, the function returns zero.
1131 * The type of the first parameter is unknown. LoadString's prototype
1132 * suggests that it might be a module handle. I have made it an MSI handle
1133 * for starters, as -1 is an invalid MSI handle, but not an invalid module
1134 * handle. Maybe strings can be stored in an MSI database somehow.
1136 LANGID WINAPI MsiLoadStringW( MSIHANDLE handle, UINT id, LPWSTR lpBuffer,
1137 int nBufferMax, LANGID lang )
1144 TRACE("%ld %u %p %d %d\n", handle, id, lpBuffer, nBufferMax, lang);
1147 FIXME("don't know how to deal with handle = %08lx\n", handle);
1150 lang = GetUserDefaultLangID();
1152 hres = FindResourceExW( msi_hInstance, (LPCWSTR) RT_STRING,
1156 hResData = LoadResource( msi_hInstance, hres );
1159 p = LockResource( hResData );
1163 for (i = 0; i < (id&0xf); i++)
1167 if( nBufferMax <= len )
1170 memcpy( lpBuffer, p+1, len * sizeof(WCHAR));
1171 lpBuffer[ len ] = 0;
1173 TRACE("found -> %s\n", debugstr_w(lpBuffer));
1178 LANGID WINAPI MsiLoadStringA( MSIHANDLE handle, UINT id, LPSTR lpBuffer,
1179 int nBufferMax, LANGID lang )
1185 bufW = msi_alloc(nBufferMax*sizeof(WCHAR));
1186 r = MsiLoadStringW(handle, id, bufW, nBufferMax, lang);
1189 len = WideCharToMultiByte(CP_ACP, 0, bufW, -1, NULL, 0, NULL, NULL );
1190 if( len <= nBufferMax )
1191 WideCharToMultiByte( CP_ACP, 0, bufW, -1,
1192 lpBuffer, nBufferMax, NULL, NULL );
1200 INSTALLSTATE WINAPI MsiLocateComponentA(LPCSTR szComponent, LPSTR lpPathBuf,
1203 char szProduct[GUID_SIZE];
1205 TRACE("%s %p %p\n", debugstr_a(szComponent), lpPathBuf, pcchBuf);
1207 if (MsiGetProductCodeA( szComponent, szProduct ) != ERROR_SUCCESS)
1208 return INSTALLSTATE_UNKNOWN;
1210 return MsiGetComponentPathA( szProduct, szComponent, lpPathBuf, pcchBuf );
1213 INSTALLSTATE WINAPI MsiLocateComponentW(LPCWSTR szComponent, LPWSTR lpPathBuf,
1216 WCHAR szProduct[GUID_SIZE];
1218 TRACE("%s %p %p\n", debugstr_w(szComponent), lpPathBuf, pcchBuf);
1220 if (MsiGetProductCodeW( szComponent, szProduct ) != ERROR_SUCCESS)
1221 return INSTALLSTATE_UNKNOWN;
1223 return MsiGetComponentPathW( szProduct, szComponent, lpPathBuf, pcchBuf );
1226 UINT WINAPI MsiMessageBoxA(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType,
1227 WORD wLanguageId, DWORD f)
1229 FIXME("%p %s %s %u %08x %08x\n", hWnd, debugstr_a(lpText), debugstr_a(lpCaption),
1230 uType, wLanguageId, f);
1231 return MessageBoxExA(hWnd,lpText,lpCaption,uType,wLanguageId);
1234 UINT WINAPI MsiMessageBoxW(HWND hWnd, LPCWSTR lpText, LPCWSTR lpCaption, UINT uType,
1235 WORD wLanguageId, DWORD f)
1237 FIXME("%p %s %s %u %08x %08x\n", hWnd, debugstr_w(lpText), debugstr_w(lpCaption),
1238 uType, wLanguageId, f);
1239 return MessageBoxExW(hWnd,lpText,lpCaption,uType,wLanguageId);
1242 UINT WINAPI MsiProvideAssemblyA( LPCSTR szAssemblyName, LPCSTR szAppContext,
1243 DWORD dwInstallMode, DWORD dwAssemblyInfo, LPSTR lpPathBuf,
1244 LPDWORD pcchPathBuf )
1246 FIXME("%s %s %08x %08x %p %p\n", debugstr_a(szAssemblyName),
1247 debugstr_a(szAppContext), dwInstallMode, dwAssemblyInfo, lpPathBuf,
1249 return ERROR_CALL_NOT_IMPLEMENTED;
1252 UINT WINAPI MsiProvideAssemblyW( LPCWSTR szAssemblyName, LPCWSTR szAppContext,
1253 DWORD dwInstallMode, DWORD dwAssemblyInfo, LPWSTR lpPathBuf,
1254 LPDWORD pcchPathBuf )
1256 FIXME("%s %s %08x %08x %p %p\n", debugstr_w(szAssemblyName),
1257 debugstr_w(szAppContext), dwInstallMode, dwAssemblyInfo, lpPathBuf,
1259 return ERROR_CALL_NOT_IMPLEMENTED;
1262 UINT WINAPI MsiProvideComponentFromDescriptorA( LPCSTR szDescriptor,
1263 LPSTR szPath, LPDWORD pcchPath, LPDWORD pcchArgs )
1265 FIXME("%s %p %p %p\n", debugstr_a(szDescriptor), szPath, pcchPath, pcchArgs );
1266 return ERROR_CALL_NOT_IMPLEMENTED;
1269 UINT WINAPI MsiProvideComponentFromDescriptorW( LPCWSTR szDescriptor,
1270 LPWSTR szPath, LPDWORD pcchPath, LPDWORD pcchArgs )
1272 FIXME("%s %p %p %p\n", debugstr_w(szDescriptor), szPath, pcchPath, pcchArgs );
1273 return ERROR_CALL_NOT_IMPLEMENTED;
1276 HRESULT WINAPI MsiGetFileSignatureInformationA( LPCSTR szSignedObjectPath,
1277 DWORD dwFlags, PCCERT_CONTEXT* ppcCertContext, LPBYTE pbHashData,
1278 LPDWORD pcbHashData)
1280 FIXME("%s %08x %p %p %p\n", debugstr_a(szSignedObjectPath), dwFlags,
1281 ppcCertContext, pbHashData, pcbHashData);
1282 return ERROR_CALL_NOT_IMPLEMENTED;
1285 HRESULT WINAPI MsiGetFileSignatureInformationW( LPCWSTR szSignedObjectPath,
1286 DWORD dwFlags, PCCERT_CONTEXT* ppcCertContext, LPBYTE pbHashData,
1287 LPDWORD pcbHashData)
1289 FIXME("%s %08x %p %p %p\n", debugstr_w(szSignedObjectPath), dwFlags,
1290 ppcCertContext, pbHashData, pcbHashData);
1291 return ERROR_CALL_NOT_IMPLEMENTED;
1294 UINT WINAPI MsiGetProductPropertyA( MSIHANDLE hProduct, LPCSTR szProperty,
1295 LPSTR szValue, LPDWORD pccbValue )
1297 FIXME("%ld %s %p %p\n", hProduct, debugstr_a(szProperty), szValue, pccbValue);
1298 return ERROR_CALL_NOT_IMPLEMENTED;
1301 UINT WINAPI MsiGetProductPropertyW( MSIHANDLE hProduct, LPCWSTR szProperty,
1302 LPWSTR szValue, LPDWORD pccbValue )
1304 FIXME("%ld %s %p %p\n", hProduct, debugstr_w(szProperty), szValue, pccbValue);
1305 return ERROR_CALL_NOT_IMPLEMENTED;
1308 UINT WINAPI MsiVerifyPackageA( LPCSTR szPackage )
1311 LPWSTR szPack = NULL;
1313 TRACE("%s\n", debugstr_a(szPackage) );
1317 szPack = strdupAtoW( szPackage );
1319 return ERROR_OUTOFMEMORY;
1322 r = MsiVerifyPackageW( szPack );
1329 UINT WINAPI MsiVerifyPackageW( LPCWSTR szPackage )
1334 TRACE("%s\n", debugstr_w(szPackage) );
1336 r = MsiOpenDatabaseW( szPackage, MSIDBOPEN_READONLY, &handle );
1337 MsiCloseHandle( handle );
1342 static INSTALLSTATE WINAPI MSI_GetComponentPath(LPCWSTR szProduct, LPCWSTR szComponent,
1343 awstring* lpPathBuf, LPDWORD pcchBuf)
1345 WCHAR squished_pc[GUID_SIZE];
1346 WCHAR squished_comp[GUID_SIZE];
1352 static const WCHAR wininstaller[] = {
1353 'W','i','n','d','o','w','s','I','n','s','t','a','l','l','e','r',0};
1355 TRACE("%s %s %p %p\n", debugstr_w(szProduct),
1356 debugstr_w(szComponent), lpPathBuf->str.w, pcchBuf);
1358 if (!szProduct || !szComponent)
1359 return INSTALLSTATE_INVALIDARG;
1361 if (lpPathBuf->str.w && !pcchBuf)
1362 return INSTALLSTATE_INVALIDARG;
1364 if (!squash_guid(szProduct, squished_pc) ||
1365 !squash_guid(szComponent, squished_comp))
1366 return INSTALLSTATE_INVALIDARG;
1368 state = INSTALLSTATE_UNKNOWN;
1370 if (MSIREG_OpenLocalSystemComponentKey(szComponent, &hkey, FALSE) == ERROR_SUCCESS ||
1371 MSIREG_OpenUserDataComponentKey(szComponent, &hkey, FALSE) == ERROR_SUCCESS)
1373 path = msi_reg_get_val_str(hkey, squished_pc);
1376 state = INSTALLSTATE_ABSENT;
1378 if ((MSIREG_OpenLocalSystemProductKey(szProduct, &hkey, FALSE) == ERROR_SUCCESS ||
1379 MSIREG_OpenUserDataProductKey(szProduct, &hkey, FALSE) == ERROR_SUCCESS) &&
1380 msi_reg_get_val_dword(hkey, wininstaller, &version) &&
1381 GetFileAttributesW(path) != INVALID_FILE_ATTRIBUTES)
1384 state = INSTALLSTATE_LOCAL;
1388 if (state != INSTALLSTATE_LOCAL &&
1389 (MSIREG_OpenUserProductsKey(szProduct, &hkey, FALSE) == ERROR_SUCCESS ||
1390 MSIREG_OpenLocalClassesProductKey(szProduct, &hkey, FALSE) == ERROR_SUCCESS))
1394 if (MSIREG_OpenLocalSystemComponentKey(szComponent, &hkey, FALSE) == ERROR_SUCCESS ||
1395 MSIREG_OpenUserDataComponentKey(szComponent, &hkey, FALSE) == ERROR_SUCCESS)
1398 path = msi_reg_get_val_str(hkey, squished_pc);
1401 state = INSTALLSTATE_ABSENT;
1403 if (GetFileAttributesW(path) != INVALID_FILE_ATTRIBUTES)
1404 state = INSTALLSTATE_LOCAL;
1409 return INSTALLSTATE_UNKNOWN;
1411 if (state == INSTALLSTATE_LOCAL && !*path)
1412 state = INSTALLSTATE_NOTUSED;
1414 msi_strcpy_to_awstring(path, lpPathBuf, pcchBuf);
1419 /******************************************************************
1420 * MsiGetComponentPathW [MSI.@]
1422 INSTALLSTATE WINAPI MsiGetComponentPathW(LPCWSTR szProduct, LPCWSTR szComponent,
1423 LPWSTR lpPathBuf, LPDWORD pcchBuf)
1427 path.unicode = TRUE;
1428 path.str.w = lpPathBuf;
1430 return MSI_GetComponentPath( szProduct, szComponent, &path, pcchBuf );
1433 /******************************************************************
1434 * MsiGetComponentPathA [MSI.@]
1436 INSTALLSTATE WINAPI MsiGetComponentPathA(LPCSTR szProduct, LPCSTR szComponent,
1437 LPSTR lpPathBuf, LPDWORD pcchBuf)
1439 LPWSTR szwProduct, szwComponent = NULL;
1440 INSTALLSTATE r = INSTALLSTATE_UNKNOWN;
1443 szwProduct = strdupAtoW( szProduct );
1444 if( szProduct && !szwProduct)
1447 szwComponent = strdupAtoW( szComponent );
1448 if( szComponent && !szwComponent )
1451 path.unicode = FALSE;
1452 path.str.a = lpPathBuf;
1454 r = MSI_GetComponentPath( szwProduct, szwComponent, &path, pcchBuf );
1457 msi_free( szwProduct );
1458 msi_free( szwComponent );
1463 /******************************************************************
1464 * MsiQueryFeatureStateA [MSI.@]
1466 INSTALLSTATE WINAPI MsiQueryFeatureStateA(LPCSTR szProduct, LPCSTR szFeature)
1468 LPWSTR szwProduct = NULL, szwFeature= NULL;
1469 INSTALLSTATE rc = INSTALLSTATE_UNKNOWN;
1471 szwProduct = strdupAtoW( szProduct );
1472 if ( szProduct && !szwProduct )
1475 szwFeature = strdupAtoW( szFeature );
1476 if ( szFeature && !szwFeature )
1479 rc = MsiQueryFeatureStateW(szwProduct, szwFeature);
1482 msi_free( szwProduct);
1483 msi_free( szwFeature);
1488 /******************************************************************
1489 * MsiQueryFeatureStateW [MSI.@]
1491 * Checks the state of a feature
1494 * szProduct [I] Product's GUID string
1495 * szFeature [I] Feature's GUID string
1498 * INSTALLSTATE_LOCAL Feature is installed and useable
1499 * INSTALLSTATE_ABSENT Feature is absent
1500 * INSTALLSTATE_ADVERTISED Feature should be installed on demand
1501 * INSTALLSTATE_UNKNOWN An error occurred
1502 * INSTALLSTATE_INVALIDARG One of the GUIDs was invalid
1505 INSTALLSTATE WINAPI MsiQueryFeatureStateW(LPCWSTR szProduct, LPCWSTR szFeature)
1507 WCHAR squishProduct[33], comp[GUID_SIZE];
1509 LPWSTR components, p, parent_feature, path;
1513 BOOL missing = FALSE;
1515 TRACE("%s %s\n", debugstr_w(szProduct), debugstr_w(szFeature));
1517 if (!szProduct || !szFeature)
1518 return INSTALLSTATE_INVALIDARG;
1520 if (!squash_guid( szProduct, squishProduct ))
1521 return INSTALLSTATE_INVALIDARG;
1523 /* check that it's installed at all */
1524 rc = MSIREG_OpenUserFeaturesKey(szProduct, &hkey, FALSE);
1525 if (rc != ERROR_SUCCESS)
1526 return INSTALLSTATE_UNKNOWN;
1528 parent_feature = msi_reg_get_val_str( hkey, szFeature );
1531 if (!parent_feature)
1532 return INSTALLSTATE_UNKNOWN;
1534 r = (parent_feature[0] == 6) ? INSTALLSTATE_ABSENT : INSTALLSTATE_LOCAL;
1535 msi_free(parent_feature);
1536 if (r == INSTALLSTATE_ABSENT)
1539 /* now check if it's complete or advertised */
1540 rc = MSIREG_OpenUserDataFeaturesKey(szProduct, &hkey, FALSE);
1541 if (rc != ERROR_SUCCESS)
1542 return INSTALLSTATE_ADVERTISED;
1544 components = msi_reg_get_val_str( hkey, szFeature );
1547 TRACE("rc = %d buffer = %s\n", rc, debugstr_w(components));
1550 return INSTALLSTATE_ADVERTISED;
1552 for( p = components; *p && *p != 2 ; p += 20)
1554 if (!decode_base85_guid( p, &guid ))
1556 if (p != components)
1559 msi_free(components);
1560 return INSTALLSTATE_BADCONFIG;
1563 StringFromGUID2(&guid, comp, GUID_SIZE);
1564 rc = MSIREG_OpenUserDataComponentKey(comp, &hkey, FALSE);
1565 if (rc != ERROR_SUCCESS)
1567 msi_free(components);
1568 return INSTALLSTATE_ADVERTISED;
1571 path = msi_reg_get_val_str(hkey, squishProduct);
1578 TRACE("%s %s -> %d\n", debugstr_w(szProduct), debugstr_w(szFeature), r);
1579 msi_free(components);
1582 return INSTALLSTATE_ADVERTISED;
1584 return INSTALLSTATE_LOCAL;
1587 /******************************************************************
1588 * MsiGetFileVersionA [MSI.@]
1590 UINT WINAPI MsiGetFileVersionA(LPCSTR szFilePath, LPSTR lpVersionBuf,
1591 LPDWORD pcchVersionBuf, LPSTR lpLangBuf, LPDWORD pcchLangBuf)
1593 LPWSTR szwFilePath = NULL, lpwVersionBuff = NULL, lpwLangBuff = NULL;
1594 UINT ret = ERROR_OUTOFMEMORY;
1596 if ((lpVersionBuf && !pcchVersionBuf) ||
1597 (lpLangBuf && !pcchLangBuf))
1598 return ERROR_INVALID_PARAMETER;
1602 szwFilePath = strdupAtoW( szFilePath );
1607 if( lpVersionBuf && pcchVersionBuf && *pcchVersionBuf )
1609 lpwVersionBuff = msi_alloc(*pcchVersionBuf*sizeof(WCHAR));
1610 if( !lpwVersionBuff )
1614 if( lpLangBuf && pcchLangBuf && *pcchLangBuf )
1616 lpwLangBuff = msi_alloc(*pcchLangBuf*sizeof(WCHAR));
1621 ret = MsiGetFileVersionW(szwFilePath, lpwVersionBuff, pcchVersionBuf,
1622 lpwLangBuff, pcchLangBuf);
1624 if( (ret == ERROR_SUCCESS || ret == ERROR_MORE_DATA) && lpwVersionBuff )
1625 WideCharToMultiByte(CP_ACP, 0, lpwVersionBuff, -1,
1626 lpVersionBuf, *pcchVersionBuf + 1, NULL, NULL);
1627 if( (ret == ERROR_SUCCESS || ret == ERROR_MORE_DATA) && lpwLangBuff )
1628 WideCharToMultiByte(CP_ACP, 0, lpwLangBuff, -1,
1629 lpLangBuf, *pcchLangBuf + 1, NULL, NULL);
1632 msi_free(szwFilePath);
1633 msi_free(lpwVersionBuff);
1634 msi_free(lpwLangBuff);
1639 /******************************************************************
1640 * MsiGetFileVersionW [MSI.@]
1642 UINT WINAPI MsiGetFileVersionW(LPCWSTR szFilePath, LPWSTR lpVersionBuf,
1643 LPDWORD pcchVersionBuf, LPWSTR lpLangBuf, LPDWORD pcchLangBuf)
1645 static const WCHAR szVersionResource[] = {'\\',0};
1646 static const WCHAR szVersionFormat[] = {
1647 '%','d','.','%','d','.','%','d','.','%','d',0};
1648 static const WCHAR szLangResource[] = {
1649 '\\','V','a','r','F','i','l','e','I','n','f','o','\\',
1650 'T','r','a','n','s','l','a','t','i','o','n',0};
1651 static const WCHAR szLangFormat[] = {'%','d',0};
1653 DWORD dwVerLen, gle;
1654 LPVOID lpVer = NULL;
1655 VS_FIXEDFILEINFO *ffi;
1660 TRACE("%s %p %d %p %d\n", debugstr_w(szFilePath),
1661 lpVersionBuf, pcchVersionBuf?*pcchVersionBuf:0,
1662 lpLangBuf, pcchLangBuf?*pcchLangBuf:0);
1664 if ((lpVersionBuf && !pcchVersionBuf) ||
1665 (lpLangBuf && !pcchLangBuf))
1666 return ERROR_INVALID_PARAMETER;
1668 dwVerLen = GetFileVersionInfoSizeW(szFilePath, NULL);
1671 gle = GetLastError();
1672 if (gle == ERROR_BAD_PATHNAME)
1673 return ERROR_FILE_NOT_FOUND;
1674 else if (gle == ERROR_RESOURCE_DATA_NOT_FOUND)
1675 return ERROR_FILE_INVALID;
1680 lpVer = msi_alloc(dwVerLen);
1683 ret = ERROR_OUTOFMEMORY;
1687 if( !GetFileVersionInfoW(szFilePath, 0, dwVerLen, lpVer) )
1689 ret = GetLastError();
1695 if( VerQueryValueW(lpVer, szVersionResource, (LPVOID*)&ffi, &puLen) &&
1698 wsprintfW(tmp, szVersionFormat,
1699 HIWORD(ffi->dwFileVersionMS), LOWORD(ffi->dwFileVersionMS),
1700 HIWORD(ffi->dwFileVersionLS), LOWORD(ffi->dwFileVersionLS));
1701 if (lpVersionBuf) lstrcpynW(lpVersionBuf, tmp, *pcchVersionBuf);
1703 if (lstrlenW(tmp) >= *pcchVersionBuf)
1704 ret = ERROR_MORE_DATA;
1706 *pcchVersionBuf = lstrlenW(tmp);
1710 if (lpVersionBuf) *lpVersionBuf = 0;
1711 *pcchVersionBuf = 0;
1717 if (VerQueryValueW(lpVer, szLangResource, (LPVOID*)&lang, &puLen) &&
1720 wsprintfW(tmp, szLangFormat, *lang);
1721 if (lpLangBuf) lstrcpynW(lpLangBuf, tmp, *pcchLangBuf);
1723 if (lstrlenW(tmp) >= *pcchLangBuf)
1724 ret = ERROR_MORE_DATA;
1726 *pcchLangBuf = lstrlenW(tmp);
1730 if (lpLangBuf) *lpLangBuf = 0;
1740 /***********************************************************************
1741 * MsiGetFeatureUsageW [MSI.@]
1743 UINT WINAPI MsiGetFeatureUsageW( LPCWSTR szProduct, LPCWSTR szFeature,
1744 LPDWORD pdwUseCount, LPWORD pwDateUsed )
1746 FIXME("%s %s %p %p\n",debugstr_w(szProduct), debugstr_w(szFeature),
1747 pdwUseCount, pwDateUsed);
1748 return ERROR_CALL_NOT_IMPLEMENTED;
1751 /***********************************************************************
1752 * MsiGetFeatureUsageA [MSI.@]
1754 UINT WINAPI MsiGetFeatureUsageA( LPCSTR szProduct, LPCSTR szFeature,
1755 LPDWORD pdwUseCount, LPWORD pwDateUsed )
1757 LPWSTR prod = NULL, feat = NULL;
1758 UINT ret = ERROR_OUTOFMEMORY;
1760 TRACE("%s %s %p %p\n", debugstr_a(szProduct), debugstr_a(szFeature),
1761 pdwUseCount, pwDateUsed);
1763 prod = strdupAtoW( szProduct );
1764 if (szProduct && !prod)
1767 feat = strdupAtoW( szFeature );
1768 if (szFeature && !feat)
1771 ret = MsiGetFeatureUsageW( prod, feat, pdwUseCount, pwDateUsed );
1780 /***********************************************************************
1781 * MsiUseFeatureExW [MSI.@]
1783 INSTALLSTATE WINAPI MsiUseFeatureExW( LPCWSTR szProduct, LPCWSTR szFeature,
1784 DWORD dwInstallMode, DWORD dwReserved )
1788 TRACE("%s %s %i %i\n", debugstr_w(szProduct), debugstr_w(szFeature),
1789 dwInstallMode, dwReserved);
1791 state = MsiQueryFeatureStateW( szProduct, szFeature );
1794 return INSTALLSTATE_INVALIDARG;
1796 if (state == INSTALLSTATE_LOCAL && dwInstallMode != INSTALLMODE_NODETECTION)
1798 FIXME("mark product %s feature %s as used\n",
1799 debugstr_w(szProduct), debugstr_w(szFeature) );
1805 /***********************************************************************
1806 * MsiUseFeatureExA [MSI.@]
1808 INSTALLSTATE WINAPI MsiUseFeatureExA( LPCSTR szProduct, LPCSTR szFeature,
1809 DWORD dwInstallMode, DWORD dwReserved )
1811 INSTALLSTATE ret = INSTALLSTATE_UNKNOWN;
1812 LPWSTR prod = NULL, feat = NULL;
1814 TRACE("%s %s %i %i\n", debugstr_a(szProduct), debugstr_a(szFeature),
1815 dwInstallMode, dwReserved);
1817 prod = strdupAtoW( szProduct );
1818 if (szProduct && !prod)
1821 feat = strdupAtoW( szFeature );
1822 if (szFeature && !feat)
1825 ret = MsiUseFeatureExW( prod, feat, dwInstallMode, dwReserved );
1834 /***********************************************************************
1835 * MsiUseFeatureW [MSI.@]
1837 INSTALLSTATE WINAPI MsiUseFeatureW( LPCWSTR szProduct, LPCWSTR szFeature )
1839 return MsiUseFeatureExW(szProduct, szFeature, 0, 0);
1842 /***********************************************************************
1843 * MsiUseFeatureA [MSI.@]
1845 INSTALLSTATE WINAPI MsiUseFeatureA( LPCSTR szProduct, LPCSTR szFeature )
1847 return MsiUseFeatureExA(szProduct, szFeature, 0, 0);
1850 /***********************************************************************
1851 * MSI_ProvideQualifiedComponentEx [internal]
1853 static UINT WINAPI MSI_ProvideQualifiedComponentEx(LPCWSTR szComponent,
1854 LPCWSTR szQualifier, DWORD dwInstallMode, LPCWSTR szProduct,
1855 DWORD Unused1, DWORD Unused2, awstring *lpPathBuf,
1856 LPDWORD pcchPathBuf)
1858 WCHAR product[MAX_FEATURE_CHARS+1], component[MAX_FEATURE_CHARS+1],
1859 feature[MAX_FEATURE_CHARS+1];
1865 TRACE("%s %s %i %s %i %i %p %p\n", debugstr_w(szComponent),
1866 debugstr_w(szQualifier), dwInstallMode, debugstr_w(szProduct),
1867 Unused1, Unused2, lpPathBuf, pcchPathBuf);
1869 rc = MSIREG_OpenUserComponentsKey(szComponent, &hkey, FALSE);
1870 if (rc != ERROR_SUCCESS)
1871 return ERROR_INDEX_ABSENT;
1873 info = msi_reg_get_val_str( hkey, szQualifier );
1877 return ERROR_INDEX_ABSENT;
1879 MsiDecomposeDescriptorW(info, product, feature, component, &sz);
1882 rc = MSI_GetComponentPath(product, component, lpPathBuf, pcchPathBuf);
1884 rc = MSI_GetComponentPath(szProduct, component, lpPathBuf, pcchPathBuf);
1888 if (rc != INSTALLSTATE_LOCAL)
1889 return ERROR_FILE_NOT_FOUND;
1891 return ERROR_SUCCESS;
1894 /***********************************************************************
1895 * MsiProvideQualifiedComponentExW [MSI.@]
1897 UINT WINAPI MsiProvideQualifiedComponentExW(LPCWSTR szComponent,
1898 LPCWSTR szQualifier, DWORD dwInstallMode, LPCWSTR szProduct,
1899 DWORD Unused1, DWORD Unused2, LPWSTR lpPathBuf,
1900 LPDWORD pcchPathBuf)
1904 path.unicode = TRUE;
1905 path.str.w = lpPathBuf;
1907 return MSI_ProvideQualifiedComponentEx(szComponent, szQualifier,
1908 dwInstallMode, szProduct, Unused1, Unused2, &path, pcchPathBuf);
1911 /***********************************************************************
1912 * MsiProvideQualifiedComponentExA [MSI.@]
1914 UINT WINAPI MsiProvideQualifiedComponentExA(LPCSTR szComponent,
1915 LPCSTR szQualifier, DWORD dwInstallMode, LPCSTR szProduct,
1916 DWORD Unused1, DWORD Unused2, LPSTR lpPathBuf,
1917 LPDWORD pcchPathBuf)
1919 LPWSTR szwComponent, szwQualifier = NULL, szwProduct = NULL;
1920 UINT r = ERROR_OUTOFMEMORY;
1923 TRACE("%s %s %u %s %u %u %p %p\n", debugstr_a(szComponent),
1924 debugstr_a(szQualifier), dwInstallMode, debugstr_a(szProduct),
1925 Unused1, Unused2, lpPathBuf, pcchPathBuf);
1927 szwComponent = strdupAtoW( szComponent );
1928 if (szComponent && !szwComponent)
1931 szwQualifier = strdupAtoW( szQualifier );
1932 if (szQualifier && !szwQualifier)
1935 szwProduct = strdupAtoW( szProduct );
1936 if (szProduct && !szwProduct)
1939 path.unicode = FALSE;
1940 path.str.a = lpPathBuf;
1942 r = MSI_ProvideQualifiedComponentEx(szwComponent, szwQualifier,
1943 dwInstallMode, szwProduct, Unused1,
1944 Unused2, &path, pcchPathBuf);
1946 msi_free(szwProduct);
1947 msi_free(szwComponent);
1948 msi_free(szwQualifier);
1953 /***********************************************************************
1954 * MsiProvideQualifiedComponentW [MSI.@]
1956 UINT WINAPI MsiProvideQualifiedComponentW( LPCWSTR szComponent,
1957 LPCWSTR szQualifier, DWORD dwInstallMode, LPWSTR lpPathBuf,
1958 LPDWORD pcchPathBuf)
1960 return MsiProvideQualifiedComponentExW(szComponent, szQualifier,
1961 dwInstallMode, NULL, 0, 0, lpPathBuf, pcchPathBuf);
1964 /***********************************************************************
1965 * MsiProvideQualifiedComponentA [MSI.@]
1967 UINT WINAPI MsiProvideQualifiedComponentA( LPCSTR szComponent,
1968 LPCSTR szQualifier, DWORD dwInstallMode, LPSTR lpPathBuf,
1969 LPDWORD pcchPathBuf)
1971 return MsiProvideQualifiedComponentExA(szComponent, szQualifier,
1972 dwInstallMode, NULL, 0, 0, lpPathBuf, pcchPathBuf);
1975 /***********************************************************************
1976 * MSI_GetUserInfo [internal]
1978 static USERINFOSTATE WINAPI MSI_GetUserInfo(LPCWSTR szProduct,
1979 awstring *lpUserNameBuf, LPDWORD pcchUserNameBuf,
1980 awstring *lpOrgNameBuf, LPDWORD pcchOrgNameBuf,
1981 awstring *lpSerialBuf, LPDWORD pcchSerialBuf)
1984 LPWSTR user, org, serial;
1986 USERINFOSTATE state;
1988 TRACE("%s %p %p %p %p %p %p\n",debugstr_w(szProduct), lpUserNameBuf,
1989 pcchUserNameBuf, lpOrgNameBuf, pcchOrgNameBuf, lpSerialBuf,
1993 return USERINFOSTATE_INVALIDARG;
1995 r = MSIREG_OpenUninstallKey(szProduct, &hkey, FALSE);
1996 if (r != ERROR_SUCCESS)
1997 return USERINFOSTATE_UNKNOWN;
1999 user = msi_reg_get_val_str( hkey, INSTALLPROPERTY_REGOWNERW );
2000 org = msi_reg_get_val_str( hkey, INSTALLPROPERTY_REGCOMPANYW );
2001 serial = msi_reg_get_val_str( hkey, INSTALLPROPERTY_PRODUCTIDW );
2005 state = USERINFOSTATE_PRESENT;
2009 r = msi_strcpy_to_awstring( user, lpUserNameBuf, pcchUserNameBuf );
2010 if (r == ERROR_MORE_DATA)
2011 state = USERINFOSTATE_MOREDATA;
2014 state = USERINFOSTATE_ABSENT;
2017 r = msi_strcpy_to_awstring( org, lpOrgNameBuf, pcchOrgNameBuf );
2018 if (r == ERROR_MORE_DATA && state == USERINFOSTATE_PRESENT)
2019 state = USERINFOSTATE_MOREDATA;
2021 /* msdn states: The user information is considered to be present even in the absence of a company name. */
2024 r = msi_strcpy_to_awstring( serial, lpSerialBuf, pcchSerialBuf );
2025 if (r == ERROR_MORE_DATA && state == USERINFOSTATE_PRESENT)
2026 state = USERINFOSTATE_MOREDATA;
2029 state = USERINFOSTATE_ABSENT;
2038 /***********************************************************************
2039 * MsiGetUserInfoW [MSI.@]
2041 USERINFOSTATE WINAPI MsiGetUserInfoW(LPCWSTR szProduct,
2042 LPWSTR lpUserNameBuf, LPDWORD pcchUserNameBuf,
2043 LPWSTR lpOrgNameBuf, LPDWORD pcchOrgNameBuf,
2044 LPWSTR lpSerialBuf, LPDWORD pcchSerialBuf)
2046 awstring user, org, serial;
2048 user.unicode = TRUE;
2049 user.str.w = lpUserNameBuf;
2051 org.str.w = lpOrgNameBuf;
2052 serial.unicode = TRUE;
2053 serial.str.w = lpSerialBuf;
2055 return MSI_GetUserInfo( szProduct, &user, pcchUserNameBuf,
2056 &org, pcchOrgNameBuf,
2057 &serial, pcchSerialBuf );
2060 USERINFOSTATE WINAPI MsiGetUserInfoA(LPCSTR szProduct,
2061 LPSTR lpUserNameBuf, LPDWORD pcchUserNameBuf,
2062 LPSTR lpOrgNameBuf, LPDWORD pcchOrgNameBuf,
2063 LPSTR lpSerialBuf, LPDWORD pcchSerialBuf)
2065 awstring user, org, serial;
2069 prod = strdupAtoW( szProduct );
2070 if (szProduct && !prod)
2071 return ERROR_OUTOFMEMORY;
2073 user.unicode = FALSE;
2074 user.str.a = lpUserNameBuf;
2075 org.unicode = FALSE;
2076 org.str.a = lpOrgNameBuf;
2077 serial.unicode = FALSE;
2078 serial.str.a = lpSerialBuf;
2080 r = MSI_GetUserInfo( prod, &user, pcchUserNameBuf,
2081 &org, pcchOrgNameBuf,
2082 &serial, pcchSerialBuf );
2089 UINT WINAPI MsiCollectUserInfoW(LPCWSTR szProduct)
2093 MSIPACKAGE *package;
2094 static const WCHAR szFirstRun[] = {'F','i','r','s','t','R','u','n',0};
2096 TRACE("(%s)\n",debugstr_w(szProduct));
2098 rc = MsiOpenProductW(szProduct,&handle);
2099 if (rc != ERROR_SUCCESS)
2100 return ERROR_INVALID_PARAMETER;
2102 package = msihandle2msiinfo(handle, MSIHANDLETYPE_PACKAGE);
2103 rc = ACTION_PerformUIAction(package, szFirstRun, -1);
2104 msiobj_release( &package->hdr );
2106 MsiCloseHandle(handle);
2111 UINT WINAPI MsiCollectUserInfoA(LPCSTR szProduct)
2115 MSIPACKAGE *package;
2116 static const WCHAR szFirstRun[] = {'F','i','r','s','t','R','u','n',0};
2118 TRACE("(%s)\n",debugstr_a(szProduct));
2120 rc = MsiOpenProductA(szProduct,&handle);
2121 if (rc != ERROR_SUCCESS)
2122 return ERROR_INVALID_PARAMETER;
2124 package = msihandle2msiinfo(handle, MSIHANDLETYPE_PACKAGE);
2125 rc = ACTION_PerformUIAction(package, szFirstRun, -1);
2126 msiobj_release( &package->hdr );
2128 MsiCloseHandle(handle);
2133 /***********************************************************************
2134 * MsiConfigureFeatureA [MSI.@]
2136 UINT WINAPI MsiConfigureFeatureA(LPCSTR szProduct, LPCSTR szFeature, INSTALLSTATE eInstallState)
2138 LPWSTR prod, feat = NULL;
2139 UINT r = ERROR_OUTOFMEMORY;
2141 TRACE("%s %s %i\n", debugstr_a(szProduct), debugstr_a(szFeature), eInstallState);
2143 prod = strdupAtoW( szProduct );
2144 if (szProduct && !prod)
2147 feat = strdupAtoW( szFeature );
2148 if (szFeature && !feat)
2151 r = MsiConfigureFeatureW(prod, feat, eInstallState);
2160 /***********************************************************************
2161 * MsiConfigureFeatureW [MSI.@]
2163 UINT WINAPI MsiConfigureFeatureW(LPCWSTR szProduct, LPCWSTR szFeature, INSTALLSTATE eInstallState)
2165 static const WCHAR szCostInit[] = { 'C','o','s','t','I','n','i','t','i','a','l','i','z','e',0 };
2166 MSIPACKAGE *package = NULL;
2168 WCHAR sourcepath[MAX_PATH], filename[MAX_PATH];
2171 TRACE("%s %s %i\n", debugstr_w(szProduct), debugstr_w(szFeature), eInstallState);
2173 if (!szProduct || !szFeature)
2174 return ERROR_INVALID_PARAMETER;
2176 switch (eInstallState)
2178 case INSTALLSTATE_DEFAULT:
2179 /* FIXME: how do we figure out the default location? */
2180 eInstallState = INSTALLSTATE_LOCAL;
2182 case INSTALLSTATE_LOCAL:
2183 case INSTALLSTATE_SOURCE:
2184 case INSTALLSTATE_ABSENT:
2185 case INSTALLSTATE_ADVERTISED:
2188 return ERROR_INVALID_PARAMETER;
2191 r = MSI_OpenProductW( szProduct, &package );
2192 if (r != ERROR_SUCCESS)
2195 sz = sizeof(sourcepath);
2196 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERMANAGED,
2197 MSICODE_PRODUCT, INSTALLPROPERTY_LASTUSEDSOURCEW, sourcepath, &sz);
2199 sz = sizeof(filename);
2200 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERMANAGED,
2201 MSICODE_PRODUCT, INSTALLPROPERTY_PACKAGENAMEW, filename, &sz);
2203 lstrcatW( sourcepath, filename );
2205 MsiSetInternalUI( INSTALLUILEVEL_BASIC, NULL );
2207 r = ACTION_PerformUIAction( package, szCostInit, -1 );
2208 if (r != ERROR_SUCCESS)
2211 r = MSI_SetFeatureStateW( package, szFeature, eInstallState);
2212 if (r != ERROR_SUCCESS)
2215 r = MSI_InstallPackage( package, sourcepath, NULL );
2218 msiobj_release( &package->hdr );
2223 /***********************************************************************
2224 * MsiCreateAndVerifyInstallerDirectory [MSI.@]
2226 * Notes: undocumented
2228 UINT WINAPI MsiCreateAndVerifyInstallerDirectory(DWORD dwReserved)
2230 WCHAR path[MAX_PATH];
2232 TRACE("%d\n", dwReserved);
2236 FIXME("dwReserved=%d\n", dwReserved);
2237 return ERROR_INVALID_PARAMETER;
2240 if (!GetWindowsDirectoryW(path, MAX_PATH))
2241 return ERROR_FUNCTION_FAILED;
2243 lstrcatW(path, installerW);
2245 if (!CreateDirectoryW(path, NULL))
2246 return ERROR_FUNCTION_FAILED;
2248 return ERROR_SUCCESS;
2251 /***********************************************************************
2252 * MsiGetShortcutTargetA [MSI.@]
2254 UINT WINAPI MsiGetShortcutTargetA( LPCSTR szShortcutTarget,
2255 LPSTR szProductCode, LPSTR szFeatureId,
2256 LPSTR szComponentCode )
2259 const int len = MAX_FEATURE_CHARS+1;
2260 WCHAR product[MAX_FEATURE_CHARS+1], feature[MAX_FEATURE_CHARS+1], component[MAX_FEATURE_CHARS+1];
2263 target = strdupAtoW( szShortcutTarget );
2264 if (szShortcutTarget && !target )
2265 return ERROR_OUTOFMEMORY;
2269 r = MsiGetShortcutTargetW( target, product, feature, component );
2271 if (r == ERROR_SUCCESS)
2273 WideCharToMultiByte( CP_ACP, 0, product, -1, szProductCode, len, NULL, NULL );
2274 WideCharToMultiByte( CP_ACP, 0, feature, -1, szFeatureId, len, NULL, NULL );
2275 WideCharToMultiByte( CP_ACP, 0, component, -1, szComponentCode, len, NULL, NULL );
2280 /***********************************************************************
2281 * MsiGetShortcutTargetW [MSI.@]
2283 UINT WINAPI MsiGetShortcutTargetW( LPCWSTR szShortcutTarget,
2284 LPWSTR szProductCode, LPWSTR szFeatureId,
2285 LPWSTR szComponentCode )
2287 IShellLinkDataList *dl = NULL;
2288 IPersistFile *pf = NULL;
2289 LPEXP_DARWIN_LINK darwin = NULL;
2292 TRACE("%s %p %p %p\n", debugstr_w(szShortcutTarget),
2293 szProductCode, szFeatureId, szComponentCode );
2295 init = CoInitialize(NULL);
2297 r = CoCreateInstance( &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
2298 &IID_IPersistFile, (LPVOID*) &pf );
2299 if( SUCCEEDED( r ) )
2301 r = IPersistFile_Load( pf, szShortcutTarget,
2302 STGM_READ | STGM_SHARE_DENY_WRITE );
2303 if( SUCCEEDED( r ) )
2305 r = IPersistFile_QueryInterface( pf, &IID_IShellLinkDataList,
2307 if( SUCCEEDED( r ) )
2309 IShellLinkDataList_CopyDataBlock( dl, EXP_DARWIN_ID_SIG,
2311 IShellLinkDataList_Release( dl );
2314 IPersistFile_Release( pf );
2317 if (SUCCEEDED(init))
2320 TRACE("darwin = %p\n", darwin);
2327 ret = MsiDecomposeDescriptorW( darwin->szwDarwinID,
2328 szProductCode, szFeatureId, szComponentCode, &sz );
2329 LocalFree( darwin );
2333 return ERROR_FUNCTION_FAILED;
2336 UINT WINAPI MsiReinstallFeatureW( LPCWSTR szProduct, LPCWSTR szFeature,
2337 DWORD dwReinstallMode )
2339 MSIPACKAGE* package = NULL;
2341 WCHAR sourcepath[MAX_PATH];
2342 WCHAR filename[MAX_PATH];
2343 static const WCHAR szLogVerbose[] = {
2344 ' ','L','O','G','V','E','R','B','O','S','E',0 };
2345 static const WCHAR szInstalled[] = { 'I','n','s','t','a','l','l','e','d',0};
2346 static const WCHAR szReinstall[] = {'R','E','I','N','S','T','A','L','L',0};
2347 static const WCHAR szReinstallMode[] = {'R','E','I','N','S','T','A','L','L','M','O','D','E',0};
2348 static const WCHAR szOne[] = {'1',0};
2349 WCHAR reinstallmode[11];
2353 FIXME("%s %s %i\n", debugstr_w(szProduct), debugstr_w(szFeature),
2356 ptr = reinstallmode;
2358 if (dwReinstallMode & REINSTALLMODE_FILEMISSING)
2360 if (dwReinstallMode & REINSTALLMODE_FILEOLDERVERSION)
2362 if (dwReinstallMode & REINSTALLMODE_FILEEQUALVERSION)
2364 if (dwReinstallMode & REINSTALLMODE_FILEEXACT)
2366 if (dwReinstallMode & REINSTALLMODE_FILEVERIFY)
2368 if (dwReinstallMode & REINSTALLMODE_FILEREPLACE)
2370 if (dwReinstallMode & REINSTALLMODE_USERDATA)
2372 if (dwReinstallMode & REINSTALLMODE_MACHINEDATA)
2374 if (dwReinstallMode & REINSTALLMODE_SHORTCUT)
2376 if (dwReinstallMode & REINSTALLMODE_PACKAGE)
2380 sz = sizeof(sourcepath);
2381 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERMANAGED,
2382 MSICODE_PRODUCT, INSTALLPROPERTY_LASTUSEDSOURCEW, sourcepath, &sz);
2384 sz = sizeof(filename);
2385 MsiSourceListGetInfoW(szProduct, NULL, MSIINSTALLCONTEXT_USERMANAGED,
2386 MSICODE_PRODUCT, INSTALLPROPERTY_PACKAGENAMEW, filename, &sz);
2388 lstrcatW( sourcepath, filename );
2390 if (dwReinstallMode & REINSTALLMODE_PACKAGE)
2391 r = MSI_OpenPackageW( sourcepath, &package );
2393 r = MSI_OpenProductW( szProduct, &package );
2395 if (r != ERROR_SUCCESS)
2398 MSI_SetPropertyW( package, szReinstallMode, reinstallmode );
2399 MSI_SetPropertyW( package, szInstalled, szOne );
2400 MSI_SetPropertyW( package, szLogVerbose, szOne );
2401 MSI_SetPropertyW( package, szReinstall, szFeature );
2403 r = MSI_InstallPackage( package, sourcepath, NULL );
2405 msiobj_release( &package->hdr );
2410 UINT WINAPI MsiReinstallFeatureA( LPCSTR szProduct, LPCSTR szFeature,
2411 DWORD dwReinstallMode )
2417 TRACE("%s %s %i\n", debugstr_a(szProduct), debugstr_a(szFeature),
2420 wszProduct = strdupAtoW(szProduct);
2421 wszFeature = strdupAtoW(szFeature);
2423 rc = MsiReinstallFeatureW(wszProduct, wszFeature, dwReinstallMode);
2425 msi_free(wszProduct);
2426 msi_free(wszFeature);
2433 unsigned int buf[4];
2434 unsigned char in[64];
2435 unsigned char digest[16];
2438 extern VOID WINAPI MD5Init( MD5_CTX *);
2439 extern VOID WINAPI MD5Update( MD5_CTX *, const unsigned char *, unsigned int );
2440 extern VOID WINAPI MD5Final( MD5_CTX *);
2442 /***********************************************************************
2443 * MsiGetFileHashW [MSI.@]
2445 UINT WINAPI MsiGetFileHashW( LPCWSTR szFilePath, DWORD dwOptions,
2446 PMSIFILEHASHINFO pHash )
2448 HANDLE handle, mapping;
2451 UINT r = ERROR_FUNCTION_FAILED;
2453 TRACE("%s %08x %p\n", debugstr_w(szFilePath), dwOptions, pHash );
2456 return ERROR_INVALID_PARAMETER;
2459 return ERROR_PATH_NOT_FOUND;
2462 return ERROR_INVALID_PARAMETER;
2464 return ERROR_INVALID_PARAMETER;
2465 if (pHash->dwFileHashInfoSize < sizeof *pHash)
2466 return ERROR_INVALID_PARAMETER;
2468 handle = CreateFileW( szFilePath, GENERIC_READ,
2469 FILE_SHARE_READ | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, 0, NULL );
2470 if (handle == INVALID_HANDLE_VALUE)
2471 return ERROR_FILE_NOT_FOUND;
2473 length = GetFileSize( handle, NULL );
2475 mapping = CreateFileMappingW( handle, NULL, PAGE_READONLY, 0, 0, NULL );
2478 p = MapViewOfFile( mapping, FILE_MAP_READ, 0, 0, length );
2484 MD5Update( &ctx, p, length );
2486 UnmapViewOfFile( p );
2488 memcpy( pHash->dwData, &ctx.digest, sizeof pHash->dwData );
2491 CloseHandle( mapping );
2493 CloseHandle( handle );
2498 /***********************************************************************
2499 * MsiGetFileHashA [MSI.@]
2501 UINT WINAPI MsiGetFileHashA( LPCSTR szFilePath, DWORD dwOptions,
2502 PMSIFILEHASHINFO pHash )
2507 TRACE("%s %08x %p\n", debugstr_a(szFilePath), dwOptions, pHash );
2509 file = strdupAtoW( szFilePath );
2510 if (szFilePath && !file)
2511 return ERROR_OUTOFMEMORY;
2513 r = MsiGetFileHashW( file, dwOptions, pHash );
2518 /***********************************************************************
2519 * MsiAdvertiseScriptW [MSI.@]
2521 UINT WINAPI MsiAdvertiseScriptW( LPCWSTR szScriptFile, DWORD dwFlags,
2522 PHKEY phRegData, BOOL fRemoveItems )
2524 FIXME("%s %08x %p %d\n",
2525 debugstr_w( szScriptFile ), dwFlags, phRegData, fRemoveItems );
2526 return ERROR_CALL_NOT_IMPLEMENTED;
2529 /***********************************************************************
2530 * MsiAdvertiseScriptA [MSI.@]
2532 UINT WINAPI MsiAdvertiseScriptA( LPCSTR szScriptFile, DWORD dwFlags,
2533 PHKEY phRegData, BOOL fRemoveItems )
2535 FIXME("%s %08x %p %d\n",
2536 debugstr_a( szScriptFile ), dwFlags, phRegData, fRemoveItems );
2537 return ERROR_CALL_NOT_IMPLEMENTED;
2540 /***********************************************************************
2541 * MsiIsProductElevatedW [MSI.@]
2543 UINT WINAPI MsiIsProductElevatedW( LPCWSTR szProduct, BOOL *pfElevated )
2545 FIXME("%s %p - stub\n",
2546 debugstr_w( szProduct ), pfElevated );
2548 return ERROR_SUCCESS;
2551 /***********************************************************************
2552 * MsiIsProductElevatedA [MSI.@]
2554 UINT WINAPI MsiIsProductElevatedA( LPCSTR szProduct, BOOL *pfElevated )
2556 FIXME("%s %p - stub\n",
2557 debugstr_a( szProduct ), pfElevated );
2559 return ERROR_SUCCESS;