2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2005 Aric Stewart 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"
38 #include "wine/unicode.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(msi);
44 * These apis are defined in MSI 3.0
47 typedef struct tagMediaInfo
55 static UINT OpenSourceKey(LPCWSTR szProduct, HKEY* key, DWORD dwOptions,
56 MSIINSTALLCONTEXT context, BOOL create)
59 UINT rc = ERROR_FUNCTION_FAILED;
61 if (context == MSIINSTALLCONTEXT_USERUNMANAGED)
63 if (dwOptions & MSICODE_PATCH)
64 rc = MSIREG_OpenUserPatchesKey(szProduct, &rootkey, create);
66 rc = MSIREG_OpenProductKey(szProduct, NULL, context,
69 else if (context == MSIINSTALLCONTEXT_USERMANAGED)
71 if (dwOptions & MSICODE_PATCH)
72 rc = MSIREG_OpenUserPatchesKey(szProduct, &rootkey, create);
74 rc = MSIREG_OpenProductKey(szProduct, NULL, context,
77 else if (context == MSIINSTALLCONTEXT_MACHINE)
79 if (dwOptions & MSICODE_PATCH)
80 rc = MSIREG_OpenPatchesKey(szProduct, &rootkey, create);
82 rc = MSIREG_OpenProductKey(szProduct, NULL, context,
86 if (rc != ERROR_SUCCESS)
88 if (dwOptions & MSICODE_PATCH)
89 return ERROR_UNKNOWN_PATCH;
91 return ERROR_UNKNOWN_PRODUCT;
95 rc = RegCreateKeyW(rootkey, szSourceList, key);
98 rc = RegOpenKeyW(rootkey,szSourceList, key);
99 if (rc != ERROR_SUCCESS)
100 rc = ERROR_BAD_CONFIGURATION;
106 static UINT OpenMediaSubkey(HKEY rootkey, HKEY *key, BOOL create)
109 static const WCHAR media[] = {'M','e','d','i','a',0};
112 rc = RegCreateKeyW(rootkey, media, key);
114 rc = RegOpenKeyW(rootkey,media, key);
119 static UINT OpenNetworkSubkey(HKEY rootkey, HKEY *key, BOOL create)
122 static const WCHAR net[] = {'N','e','t',0};
125 rc = RegCreateKeyW(rootkey, net, key);
127 rc = RegOpenKeyW(rootkey, net, key);
132 static UINT OpenURLSubkey(HKEY rootkey, HKEY *key, BOOL create)
135 static const WCHAR URL[] = {'U','R','L',0};
138 rc = RegCreateKeyW(rootkey, URL, key);
140 rc = RegOpenKeyW(rootkey, URL, key);
145 /******************************************************************
146 * MsiSourceListEnumMediaDisksA (MSI.@)
148 UINT WINAPI MsiSourceListEnumMediaDisksA(LPCSTR szProductCodeOrPatchCode,
149 LPCSTR szUserSid, MSIINSTALLCONTEXT dwContext,
150 DWORD dwOptions, DWORD dwIndex, LPDWORD pdwDiskId,
151 LPSTR szVolumeLabel, LPDWORD pcchVolumeLabel,
152 LPSTR szDiskPrompt, LPDWORD pcchDiskPrompt)
154 LPWSTR product = NULL;
155 LPWSTR usersid = NULL;
156 LPWSTR volume = NULL;
157 LPWSTR prompt = NULL;
158 UINT r = ERROR_INVALID_PARAMETER;
160 TRACE("(%s, %s, %d, %d, %d, %p, %p, %p, %p, %p)\n", debugstr_a(szProductCodeOrPatchCode),
161 debugstr_a(szUserSid), dwContext, dwOptions, dwIndex, pdwDiskId,
162 szVolumeLabel, pcchVolumeLabel, szDiskPrompt, pcchDiskPrompt);
164 if (szDiskPrompt && !pcchDiskPrompt)
165 return ERROR_INVALID_PARAMETER;
167 if (szProductCodeOrPatchCode) product = strdupAtoW(szProductCodeOrPatchCode);
168 if (szUserSid) usersid = strdupAtoW(szUserSid);
170 /* FIXME: add tests for an invalid format */
173 volume = msi_alloc(*pcchVolumeLabel * sizeof(WCHAR));
176 prompt = msi_alloc(*pcchDiskPrompt * sizeof(WCHAR));
178 if (volume) *volume = '\0';
179 if (prompt) *prompt = '\0';
180 r = MsiSourceListEnumMediaDisksW(product, usersid, dwContext, dwOptions,
181 dwIndex, pdwDiskId, volume, pcchVolumeLabel,
182 prompt, pcchDiskPrompt);
183 if (r != ERROR_SUCCESS)
186 if (szVolumeLabel && pcchVolumeLabel)
187 WideCharToMultiByte(CP_ACP, 0, volume, -1, szVolumeLabel,
188 *pcchVolumeLabel + 1, NULL, NULL);
191 WideCharToMultiByte(CP_ACP, 0, prompt, -1, szDiskPrompt,
192 *pcchDiskPrompt + 1, NULL, NULL);
203 /******************************************************************
204 * MsiSourceListEnumMediaDisksW (MSI.@)
206 UINT WINAPI MsiSourceListEnumMediaDisksW(LPCWSTR szProductCodeOrPatchCode,
207 LPCWSTR szUserSid, MSIINSTALLCONTEXT dwContext,
208 DWORD dwOptions, DWORD dwIndex, LPDWORD pdwDiskId,
209 LPWSTR szVolumeLabel, LPDWORD pcchVolumeLabel,
210 LPWSTR szDiskPrompt, LPDWORD pcchDiskPrompt)
212 WCHAR squished_pc[GUID_SIZE];
218 DWORD valuesz, datasz = 0;
223 static DWORD index = 0;
225 static const WCHAR fmt[] = {'#','%','d',0};
227 TRACE("(%s, %s, %d, %d, %d, %p, %p, %p, %p)\n", debugstr_w(szProductCodeOrPatchCode),
228 debugstr_w(szUserSid), dwContext, dwOptions, dwIndex, szVolumeLabel,
229 pcchVolumeLabel, szDiskPrompt, pcchDiskPrompt);
231 if (!szProductCodeOrPatchCode ||
232 !squash_guid(szProductCodeOrPatchCode, squished_pc))
233 return ERROR_INVALID_PARAMETER;
235 if (dwContext == MSIINSTALLCONTEXT_MACHINE && szUserSid)
236 return ERROR_INVALID_PARAMETER;
238 if (dwOptions != MSICODE_PRODUCT && dwOptions != MSICODE_PATCH)
239 return ERROR_INVALID_PARAMETER;
241 if (szDiskPrompt && !pcchDiskPrompt)
242 return ERROR_INVALID_PARAMETER;
247 if (dwIndex != index)
248 return ERROR_INVALID_PARAMETER;
250 r = OpenSourceKey(szProductCodeOrPatchCode, &source,
251 dwOptions, dwContext, FALSE);
252 if (r != ERROR_SUCCESS)
255 r = OpenMediaSubkey(source, &media, FALSE);
256 if (r != ERROR_SUCCESS)
259 return ERROR_NO_MORE_ITEMS;
262 if (!pcchVolumeLabel && !pcchDiskPrompt)
264 r = RegEnumValueW(media, dwIndex, NULL, NULL, NULL,
269 res = RegQueryInfoKeyW(media, NULL, NULL, NULL, NULL, NULL,
270 NULL, &numvals, &valuesz, &datasz, NULL, NULL);
271 if (res != ERROR_SUCCESS)
273 r = ERROR_BAD_CONFIGURATION;
277 value = msi_alloc(++valuesz * sizeof(WCHAR));
278 data = msi_alloc(++datasz * sizeof(WCHAR));
281 r = ERROR_OUTOFMEMORY;
285 r = RegEnumValueW(media, dwIndex, value, &valuesz,
286 NULL, &type, (LPBYTE)data, &datasz);
287 if (r != ERROR_SUCCESS)
291 *pdwDiskId = atolW(value);
294 ptr = strchrW(data, ';');
302 if (type == REG_DWORD)
304 sprintfW(convert, fmt, *data);
305 size = lstrlenW(convert);
309 size = lstrlenW(data);
311 if (size >= *pcchVolumeLabel)
313 else if (szVolumeLabel)
314 lstrcpyW(szVolumeLabel, ptr2);
316 *pcchVolumeLabel = size;
324 if (type == REG_DWORD)
326 sprintfW(convert, fmt, *ptr);
327 size = lstrlenW(convert);
331 size = lstrlenW(ptr);
333 if (size >= *pcchDiskPrompt)
335 else if (szDiskPrompt)
336 lstrcpyW(szDiskPrompt, ptr);
338 *pcchDiskPrompt = size;
351 /******************************************************************
352 * MsiSourceListEnumSourcesA (MSI.@)
354 UINT WINAPI MsiSourceListEnumSourcesA(LPCSTR szProductCodeOrPatch, LPCSTR szUserSid,
355 MSIINSTALLCONTEXT dwContext,
356 DWORD dwOptions, DWORD dwIndex,
357 LPSTR szSource, LPDWORD pcchSource)
359 LPWSTR product = NULL;
360 LPWSTR usersid = NULL;
361 LPWSTR source = NULL;
363 UINT r = ERROR_INVALID_PARAMETER;
364 static DWORD index = 0;
366 TRACE("(%s, %s, %d, %d, %d, %p, %p)\n", debugstr_a(szProductCodeOrPatch),
367 debugstr_a(szUserSid), dwContext, dwOptions, dwIndex, szSource, pcchSource);
372 if (szSource && !pcchSource)
375 if (dwIndex != index)
378 if (szProductCodeOrPatch) product = strdupAtoW(szProductCodeOrPatch);
379 if (szUserSid) usersid = strdupAtoW(szUserSid);
381 r = MsiSourceListEnumSourcesW(product, usersid, dwContext, dwOptions,
382 dwIndex, NULL, &len);
383 if (r != ERROR_SUCCESS)
386 source = msi_alloc(++len * sizeof(WCHAR));
389 r = ERROR_OUTOFMEMORY;
394 r = MsiSourceListEnumSourcesW(product, usersid, dwContext, dwOptions,
395 dwIndex, source, &len);
396 if (r != ERROR_SUCCESS)
399 len = WideCharToMultiByte(CP_ACP, 0, source, -1, NULL, 0, NULL, NULL);
400 if (pcchSource && *pcchSource >= len)
401 WideCharToMultiByte(CP_ACP, 0, source, -1, szSource, len, NULL, NULL);
406 *pcchSource = len - 1;
413 if (r == ERROR_SUCCESS)
415 if (szSource || !pcchSource) index++;
417 else if (dwIndex > index)
423 /******************************************************************
424 * MsiSourceListEnumSourcesW (MSI.@)
426 UINT WINAPI MsiSourceListEnumSourcesW(LPCWSTR szProductCodeOrPatch, LPCWSTR szUserSid,
427 MSIINSTALLCONTEXT dwContext,
428 DWORD dwOptions, DWORD dwIndex,
429 LPWSTR szSource, LPDWORD pcchSource)
431 WCHAR squished_pc[GUID_SIZE];
436 UINT r = ERROR_INVALID_PARAMETER;
437 static DWORD index = 0;
439 static const WCHAR format[] = {'%','d',0};
441 TRACE("(%s, %s, %d, %d, %d, %p, %p)\n", debugstr_w(szProductCodeOrPatch),
442 debugstr_w(szUserSid), dwContext, dwOptions, dwIndex, szSource, pcchSource);
447 if (!szProductCodeOrPatch || !squash_guid(szProductCodeOrPatch, squished_pc))
450 if (szSource && !pcchSource)
453 if (!(dwOptions & (MSISOURCETYPE_NETWORK | MSISOURCETYPE_URL)))
456 if ((dwOptions & MSISOURCETYPE_NETWORK) && (dwOptions & MSISOURCETYPE_URL))
459 if (dwContext == MSIINSTALLCONTEXT_MACHINE && szUserSid)
462 if (dwIndex != index)
465 r = OpenSourceKey(szProductCodeOrPatch, &source,
466 dwOptions, dwContext, FALSE);
467 if (r != ERROR_SUCCESS)
470 if (dwOptions & MSISOURCETYPE_NETWORK)
471 r = OpenNetworkSubkey(source, &subkey, FALSE);
472 else if (dwOptions & MSISOURCETYPE_URL)
473 r = OpenURLSubkey(source, &subkey, FALSE);
475 if (r != ERROR_SUCCESS)
477 r = ERROR_NO_MORE_ITEMS;
481 sprintfW(name, format, dwIndex + 1);
483 res = RegQueryValueExW(subkey, name, 0, 0, (LPBYTE)szSource, pcchSource);
484 if (res != ERROR_SUCCESS && res != ERROR_MORE_DATA)
485 r = ERROR_NO_MORE_ITEMS;
491 if (r == ERROR_SUCCESS)
493 if (szSource || !pcchSource) index++;
495 else if (dwIndex > index)
501 /******************************************************************
502 * MsiSourceListGetInfoA (MSI.@)
504 UINT WINAPI MsiSourceListGetInfoA( LPCSTR szProduct, LPCSTR szUserSid,
505 MSIINSTALLCONTEXT dwContext, DWORD dwOptions,
506 LPCSTR szProperty, LPSTR szValue,
510 LPWSTR product = NULL;
511 LPWSTR usersid = NULL;
512 LPWSTR property = NULL;
516 if (szValue && !pcchValue)
517 return ERROR_INVALID_PARAMETER;
519 if (szProduct) product = strdupAtoW(szProduct);
520 if (szUserSid) usersid = strdupAtoW(szUserSid);
521 if (szProperty) property = strdupAtoW(szProperty);
523 ret = MsiSourceListGetInfoW(product, usersid, dwContext, dwOptions,
524 property, NULL, &len);
525 if (ret != ERROR_SUCCESS)
528 value = msi_alloc(++len * sizeof(WCHAR));
530 return ERROR_OUTOFMEMORY;
533 ret = MsiSourceListGetInfoW(product, usersid, dwContext, dwOptions,
534 property, value, &len);
535 if (ret != ERROR_SUCCESS)
538 len = WideCharToMultiByte(CP_ACP, 0, value, -1, NULL, 0, NULL, NULL);
539 if (*pcchValue >= len)
540 WideCharToMultiByte(CP_ACP, 0, value, -1, szValue, len, NULL, NULL);
542 ret = ERROR_MORE_DATA;
544 *pcchValue = len - 1;
554 /******************************************************************
555 * MsiSourceListGetInfoW (MSI.@)
557 UINT WINAPI MsiSourceListGetInfoW( LPCWSTR szProduct, LPCWSTR szUserSid,
558 MSIINSTALLCONTEXT dwContext, DWORD dwOptions,
559 LPCWSTR szProperty, LPWSTR szValue,
562 WCHAR squished_pc[GUID_SIZE];
563 HKEY sourcekey, media;
568 static const WCHAR mediapack[] = {
569 'M','e','d','i','a','P','a','c','k','a','g','e',0};
571 TRACE("%s %s\n", debugstr_w(szProduct), debugstr_w(szProperty));
573 if (!szProduct || !squash_guid(szProduct, squished_pc))
574 return ERROR_INVALID_PARAMETER;
576 if (szValue && !pcchValue)
577 return ERROR_INVALID_PARAMETER;
579 if (dwContext != MSIINSTALLCONTEXT_USERMANAGED &&
580 dwContext != MSIINSTALLCONTEXT_USERUNMANAGED &&
581 dwContext != MSIINSTALLCONTEXT_MACHINE)
582 return ERROR_INVALID_PARAMETER;
585 return ERROR_INVALID_PARAMETER;
588 FIXME("Unhandled UserSid %s\n",debugstr_w(szUserSid));
590 rc = OpenSourceKey(szProduct, &sourcekey, dwOptions, dwContext, FALSE);
591 if (rc != ERROR_SUCCESS)
594 if (!strcmpW( szProperty, INSTALLPROPERTY_MEDIAPACKAGEPATHW ) ||
595 !strcmpW( szProperty, INSTALLPROPERTY_DISKPROMPTW ))
597 rc = OpenMediaSubkey(sourcekey, &media, FALSE);
598 if (rc != ERROR_SUCCESS)
600 RegCloseKey(sourcekey);
601 return ERROR_SUCCESS;
604 if (!strcmpW( szProperty, INSTALLPROPERTY_MEDIAPACKAGEPATHW ))
605 szProperty = mediapack;
607 RegQueryValueExW(media, szProperty, 0, 0, (LPBYTE)szValue, pcchValue);
610 else if (!strcmpW( szProperty, INSTALLPROPERTY_LASTUSEDSOURCEW ) ||
611 !strcmpW( szProperty, INSTALLPROPERTY_LASTUSEDTYPEW ))
613 rc = RegQueryValueExW(sourcekey, INSTALLPROPERTY_LASTUSEDSOURCEW,
615 if (rc != ERROR_SUCCESS)
617 RegCloseKey(sourcekey);
618 return ERROR_SUCCESS;
621 source = msi_alloc(size);
622 RegQueryValueExW(sourcekey, INSTALLPROPERTY_LASTUSEDSOURCEW,
623 0, 0, (LPBYTE)source, &size);
628 RegCloseKey(sourcekey);
629 return ERROR_SUCCESS;
632 if (!strcmpW( szProperty, INSTALLPROPERTY_LASTUSEDTYPEW ))
634 if (*source != 'n' && *source != 'u' && *source != 'm')
637 RegCloseKey(sourcekey);
638 return ERROR_SUCCESS;
646 ptr = strrchrW(source, ';');
655 if (strlenW(ptr) < *pcchValue)
656 lstrcpyW(szValue, ptr);
658 rc = ERROR_MORE_DATA;
661 *pcchValue = lstrlenW(ptr);
664 else if (!strcmpW( szProperty, INSTALLPROPERTY_PACKAGENAMEW ))
666 *pcchValue = *pcchValue * sizeof(WCHAR);
667 rc = RegQueryValueExW(sourcekey, INSTALLPROPERTY_PACKAGENAMEW, 0, 0,
668 (LPBYTE)szValue, pcchValue);
669 if (rc != ERROR_SUCCESS && rc != ERROR_MORE_DATA)
677 *pcchValue = (*pcchValue - 1) / sizeof(WCHAR);
679 szValue[*pcchValue] = '\0';
684 FIXME("Unknown property %s\n",debugstr_w(szProperty));
685 rc = ERROR_UNKNOWN_PROPERTY;
688 RegCloseKey(sourcekey);
692 /******************************************************************
693 * MsiSourceListSetInfoA (MSI.@)
695 UINT WINAPI MsiSourceListSetInfoA(LPCSTR szProduct, LPCSTR szUserSid,
696 MSIINSTALLCONTEXT dwContext, DWORD dwOptions,
697 LPCSTR szProperty, LPCSTR szValue)
700 LPWSTR product = NULL;
701 LPWSTR usersid = NULL;
702 LPWSTR property = NULL;
705 if (szProduct) product = strdupAtoW(szProduct);
706 if (szUserSid) usersid = strdupAtoW(szUserSid);
707 if (szProperty) property = strdupAtoW(szProperty);
708 if (szValue) value = strdupAtoW(szValue);
710 ret = MsiSourceListSetInfoW(product, usersid, dwContext, dwOptions,
721 UINT msi_set_last_used_source(LPCWSTR product, LPCWSTR usersid,
722 MSIINSTALLCONTEXT context, DWORD options,
732 static const WCHAR format[] = {'%','c',';','%','i',';','%','s',0};
734 if (options & MSISOURCETYPE_NETWORK)
736 else if (options & MSISOURCETYPE_URL)
738 else if (options & MSISOURCETYPE_MEDIA)
741 return ERROR_INVALID_PARAMETER;
743 if (!(options & MSISOURCETYPE_MEDIA))
745 r = MsiSourceListAddSourceExW(product, usersid, context,
747 if (r != ERROR_SUCCESS)
751 while ((r = MsiSourceListEnumSourcesW(product, usersid, context, options,
752 index, NULL, NULL)) == ERROR_SUCCESS)
755 if (r != ERROR_NO_MORE_ITEMS)
759 size = (lstrlenW(format) + lstrlenW(value) + 7) * sizeof(WCHAR);
760 buffer = msi_alloc(size);
762 return ERROR_OUTOFMEMORY;
764 r = OpenSourceKey(product, &source, MSICODE_PRODUCT, context, FALSE);
765 if (r != ERROR_SUCCESS)
768 sprintfW(buffer, format, typechar, index, value);
770 size = (lstrlenW(buffer) + 1) * sizeof(WCHAR);
771 r = RegSetValueExW(source, INSTALLPROPERTY_LASTUSEDSOURCEW, 0,
772 REG_SZ, (LPBYTE)buffer, size);
779 /******************************************************************
780 * MsiSourceListSetInfoW (MSI.@)
782 UINT WINAPI MsiSourceListSetInfoW( LPCWSTR szProduct, LPCWSTR szUserSid,
783 MSIINSTALLCONTEXT dwContext, DWORD dwOptions,
784 LPCWSTR szProperty, LPCWSTR szValue)
786 WCHAR squished_pc[GUID_SIZE];
787 HKEY sourcekey, media;
791 static const WCHAR media_package[] = {
792 'M','e','d','i','a','P','a','c','k','a','g','e',0
795 TRACE("%s %s %x %x %s %s\n", debugstr_w(szProduct), debugstr_w(szUserSid),
796 dwContext, dwOptions, debugstr_w(szProperty), debugstr_w(szValue));
798 if (!szProduct || !squash_guid(szProduct, squished_pc))
799 return ERROR_INVALID_PARAMETER;
802 return ERROR_INVALID_PARAMETER;
805 return ERROR_UNKNOWN_PROPERTY;
807 if (dwContext == MSIINSTALLCONTEXT_MACHINE && szUserSid)
808 return ERROR_INVALID_PARAMETER;
810 if (dwOptions & MSICODE_PATCH)
812 FIXME("Unhandled options MSICODE_PATCH\n");
813 return ERROR_UNKNOWN_PATCH;
816 property = szProperty;
817 if (!strcmpW( szProperty, INSTALLPROPERTY_MEDIAPACKAGEPATHW ))
818 property = media_package;
820 rc = OpenSourceKey(szProduct, &sourcekey, MSICODE_PRODUCT, dwContext, FALSE);
821 if (rc != ERROR_SUCCESS)
824 if (strcmpW( szProperty, INSTALLPROPERTY_LASTUSEDSOURCEW ) &&
825 dwOptions & (MSISOURCETYPE_NETWORK | MSISOURCETYPE_URL))
827 RegCloseKey(sourcekey);
828 return ERROR_INVALID_PARAMETER;
831 if (!strcmpW( szProperty, INSTALLPROPERTY_MEDIAPACKAGEPATHW ) ||
832 !strcmpW( szProperty, INSTALLPROPERTY_DISKPROMPTW ))
834 rc = OpenMediaSubkey(sourcekey, &media, TRUE);
835 if (rc == ERROR_SUCCESS)
837 rc = msi_reg_set_val_str(media, property, szValue);
841 else if (!strcmpW( szProperty, INSTALLPROPERTY_PACKAGENAMEW ))
843 DWORD size = (lstrlenW(szValue) + 1) * sizeof(WCHAR);
844 rc = RegSetValueExW(sourcekey, INSTALLPROPERTY_PACKAGENAMEW, 0,
845 REG_SZ, (const BYTE *)szValue, size);
846 if (rc != ERROR_SUCCESS)
847 rc = ERROR_UNKNOWN_PROPERTY;
849 else if (!strcmpW( szProperty, INSTALLPROPERTY_LASTUSEDSOURCEW ))
851 if (!(dwOptions & (MSISOURCETYPE_NETWORK | MSISOURCETYPE_URL)))
852 rc = ERROR_INVALID_PARAMETER;
854 rc = msi_set_last_used_source(szProduct, szUserSid, dwContext,
858 rc = ERROR_UNKNOWN_PROPERTY;
860 RegCloseKey(sourcekey);
864 /******************************************************************
865 * MsiSourceListAddSourceW (MSI.@)
867 UINT WINAPI MsiSourceListAddSourceW( LPCWSTR szProduct, LPCWSTR szUserName,
868 DWORD dwReserved, LPCWSTR szSource)
870 WCHAR squished_pc[GUID_SIZE];
872 LPWSTR sidstr = NULL;
879 TRACE("%s %s %s\n", debugstr_w(szProduct), debugstr_w(szUserName), debugstr_w(szSource));
881 if (!szSource || !*szSource)
882 return ERROR_INVALID_PARAMETER;
885 return ERROR_INVALID_PARAMETER;
887 if (!szProduct || !squash_guid(szProduct, squished_pc))
888 return ERROR_INVALID_PARAMETER;
890 if (!szUserName || !*szUserName)
891 context = MSIINSTALLCONTEXT_MACHINE;
894 if (LookupAccountNameW(NULL, szUserName, NULL, &sidsize, NULL, &domsize, NULL))
896 PSID psid = msi_alloc(sidsize);
898 if (LookupAccountNameW(NULL, szUserName, psid, &sidsize, NULL, &domsize, NULL))
899 ConvertSidToStringSidW(psid, &sidstr);
904 r = MSIREG_OpenProductKey(szProduct, NULL,
905 MSIINSTALLCONTEXT_USERMANAGED, &hkey, FALSE);
906 if (r == ERROR_SUCCESS)
907 context = MSIINSTALLCONTEXT_USERMANAGED;
910 r = MSIREG_OpenProductKey(szProduct, NULL,
911 MSIINSTALLCONTEXT_USERUNMANAGED,
913 if (r != ERROR_SUCCESS)
914 return ERROR_UNKNOWN_PRODUCT;
916 context = MSIINSTALLCONTEXT_USERUNMANAGED;
922 ret = MsiSourceListAddSourceExW(szProduct, sidstr,
923 context, MSISOURCETYPE_NETWORK, szSource, 0);
931 /******************************************************************
932 * MsiSourceListAddSourceA (MSI.@)
934 UINT WINAPI MsiSourceListAddSourceA( LPCSTR szProduct, LPCSTR szUserName,
935 DWORD dwReserved, LPCSTR szSource)
942 szwproduct = strdupAtoW( szProduct );
943 szwusername = strdupAtoW( szUserName );
944 szwsource = strdupAtoW( szSource );
946 ret = MsiSourceListAddSourceW(szwproduct, szwusername, dwReserved, szwsource);
948 msi_free(szwproduct);
949 msi_free(szwusername);
955 /******************************************************************
956 * MsiSourceListAddSourceExA (MSI.@)
958 UINT WINAPI MsiSourceListAddSourceExA(LPCSTR szProduct, LPCSTR szUserSid,
959 MSIINSTALLCONTEXT dwContext, DWORD dwOptions, LPCSTR szSource, DWORD dwIndex)
962 LPWSTR product, usersid, source;
964 product = strdupAtoW(szProduct);
965 usersid = strdupAtoW(szUserSid);
966 source = strdupAtoW(szSource);
968 ret = MsiSourceListAddSourceExW(product, usersid, dwContext,
969 dwOptions, source, dwIndex);
978 static void free_source_list(struct list *sourcelist)
980 while (!list_empty(sourcelist))
982 media_info *info = LIST_ENTRY(list_head(sourcelist), media_info, entry);
983 list_remove(&info->entry);
984 msi_free(info->path);
989 static void add_source_to_list(struct list *sourcelist, media_info *info,
994 static const WCHAR fmt[] = {'%','i',0};
996 if (index) *index = 0;
998 if (list_empty(sourcelist))
1000 list_add_head(sourcelist, &info->entry);
1004 LIST_FOR_EACH_ENTRY(iter, sourcelist, media_info, entry)
1006 if (!found && info->index < iter->index)
1009 list_add_before(&iter->entry, &info->entry);
1012 /* update the rest of the list */
1014 sprintfW(iter->szIndex, fmt, ++iter->index);
1020 list_add_after(&iter->entry, &info->entry);
1023 static UINT fill_source_list(struct list *sourcelist, HKEY sourcekey, DWORD *count)
1025 UINT r = ERROR_SUCCESS;
1028 DWORD size, val_size;
1033 while (r == ERROR_SUCCESS)
1035 size = sizeof(name) / sizeof(name[0]);
1036 r = RegEnumValueW(sourcekey, index, name, &size, NULL, NULL, NULL, &val_size);
1037 if (r != ERROR_SUCCESS)
1040 entry = msi_alloc(sizeof(media_info));
1044 entry->path = msi_alloc(val_size);
1051 lstrcpyW(entry->szIndex, name);
1052 entry->index = atoiW(name);
1055 r = RegEnumValueW(sourcekey, index, name, &size, NULL,
1056 NULL, (LPBYTE)entry->path, &val_size);
1057 if (r != ERROR_SUCCESS)
1059 msi_free(entry->path);
1065 add_source_to_list(sourcelist, entry, NULL);
1070 free_source_list(sourcelist);
1071 return ERROR_OUTOFMEMORY;
1074 /******************************************************************
1075 * MsiSourceListAddSourceExW (MSI.@)
1077 UINT WINAPI MsiSourceListAddSourceExW( LPCWSTR szProduct, LPCWSTR szUserSid,
1078 MSIINSTALLCONTEXT dwContext, DWORD dwOptions, LPCWSTR szSource,
1084 struct list sourcelist;
1086 WCHAR squished_pc[GUID_SIZE];
1093 static const WCHAR fmt[] = {'%','i',0};
1095 TRACE("%s %s %x %x %s %i\n", debugstr_w(szProduct), debugstr_w(szUserSid),
1096 dwContext, dwOptions, debugstr_w(szSource), dwIndex);
1098 if (!szProduct || !squash_guid(szProduct, squished_pc))
1099 return ERROR_INVALID_PARAMETER;
1101 if (!szSource || !*szSource)
1102 return ERROR_INVALID_PARAMETER;
1104 if (!(dwOptions & (MSISOURCETYPE_NETWORK | MSISOURCETYPE_URL)))
1105 return ERROR_INVALID_PARAMETER;
1107 if (dwOptions & MSICODE_PATCH)
1109 FIXME("Unhandled options MSICODE_PATCH\n");
1110 return ERROR_FUNCTION_FAILED;
1113 if (szUserSid && (dwContext & MSIINSTALLCONTEXT_MACHINE))
1114 return ERROR_INVALID_PARAMETER;
1116 rc = OpenSourceKey(szProduct, &sourcekey, MSICODE_PRODUCT, dwContext, FALSE);
1117 if (rc != ERROR_SUCCESS)
1120 if (dwOptions & MSISOURCETYPE_NETWORK)
1121 rc = OpenNetworkSubkey(sourcekey, &typekey, TRUE);
1122 else if (dwOptions & MSISOURCETYPE_URL)
1123 rc = OpenURLSubkey(sourcekey, &typekey, TRUE);
1124 else if (dwOptions & MSISOURCETYPE_MEDIA)
1125 rc = OpenMediaSubkey(sourcekey, &typekey, TRUE);
1128 ERR("unknown media type: %08x\n", dwOptions);
1129 RegCloseKey(sourcekey);
1130 return ERROR_FUNCTION_FAILED;
1132 if (rc != ERROR_SUCCESS)
1134 ERR("can't open subkey %u\n", rc);
1135 RegCloseKey(sourcekey);
1139 postfix = (dwOptions & MSISOURCETYPE_NETWORK) ? szBackSlash : szForwardSlash;
1140 if (szSource[lstrlenW(szSource) - 1] == *postfix)
1141 source = strdupW(szSource);
1144 size = lstrlenW(szSource) + 2;
1145 source = msi_alloc(size * sizeof(WCHAR));
1146 lstrcpyW(source, szSource);
1147 lstrcatW(source, postfix);
1150 list_init(&sourcelist);
1151 rc = fill_source_list(&sourcelist, typekey, &count);
1152 if (rc != ERROR_NO_MORE_ITEMS)
1155 size = (lstrlenW(source) + 1) * sizeof(WCHAR);
1159 rc = RegSetValueExW(typekey, szOne, 0, REG_EXPAND_SZ, (LPBYTE)source, size);
1162 else if (dwIndex > count || dwIndex == 0)
1164 sprintfW(name, fmt, count + 1);
1165 rc = RegSetValueExW(typekey, name, 0, REG_EXPAND_SZ, (LPBYTE)source, size);
1170 sprintfW(name, fmt, dwIndex);
1171 info = msi_alloc(sizeof(media_info));
1174 rc = ERROR_OUTOFMEMORY;
1178 info->path = strdupW(source);
1179 lstrcpyW(info->szIndex, name);
1180 info->index = dwIndex;
1181 add_source_to_list(&sourcelist, info, &index);
1183 LIST_FOR_EACH_ENTRY(info, &sourcelist, media_info, entry)
1185 if (info->index < index)
1188 size = (lstrlenW(info->path) + 1) * sizeof(WCHAR);
1189 rc = RegSetValueExW(typekey, info->szIndex, 0,
1190 REG_EXPAND_SZ, (LPBYTE)info->path, size);
1191 if (rc != ERROR_SUCCESS)
1197 free_source_list(&sourcelist);
1199 RegCloseKey(typekey);
1200 RegCloseKey(sourcekey);
1204 /******************************************************************
1205 * MsiSourceListAddMediaDiskA (MSI.@)
1207 UINT WINAPI MsiSourceListAddMediaDiskA(LPCSTR szProduct, LPCSTR szUserSid,
1208 MSIINSTALLCONTEXT dwContext, DWORD dwOptions, DWORD dwDiskId,
1209 LPCSTR szVolumeLabel, LPCSTR szDiskPrompt)
1212 LPWSTR product = NULL;
1213 LPWSTR usersid = NULL;
1214 LPWSTR volume = NULL;
1215 LPWSTR prompt = NULL;
1217 if (szProduct) product = strdupAtoW(szProduct);
1218 if (szUserSid) usersid = strdupAtoW(szUserSid);
1219 if (szVolumeLabel) volume = strdupAtoW(szVolumeLabel);
1220 if (szDiskPrompt) prompt = strdupAtoW(szDiskPrompt);
1222 r = MsiSourceListAddMediaDiskW(product, usersid, dwContext, dwOptions,
1223 dwDiskId, volume, prompt);
1233 /******************************************************************
1234 * MsiSourceListAddMediaDiskW (MSI.@)
1236 UINT WINAPI MsiSourceListAddMediaDiskW(LPCWSTR szProduct, LPCWSTR szUserSid,
1237 MSIINSTALLCONTEXT dwContext, DWORD dwOptions, DWORD dwDiskId,
1238 LPCWSTR szVolumeLabel, LPCWSTR szDiskPrompt)
1244 WCHAR squished_pc[GUID_SIZE];
1248 static const WCHAR fmt[] = {'%','i',0};
1250 TRACE("%s %s %x %x %i %s %s\n", debugstr_w(szProduct),
1251 debugstr_w(szUserSid), dwContext, dwOptions, dwDiskId,
1252 debugstr_w(szVolumeLabel), debugstr_w(szDiskPrompt));
1254 if (!szProduct || !squash_guid(szProduct, squished_pc))
1255 return ERROR_INVALID_PARAMETER;
1257 if (dwOptions != MSICODE_PRODUCT && dwOptions != MSICODE_PATCH)
1258 return ERROR_INVALID_PARAMETER;
1260 if ((szVolumeLabel && !*szVolumeLabel) || (szDiskPrompt && !*szDiskPrompt))
1261 return ERROR_INVALID_PARAMETER;
1263 if ((dwContext & MSIINSTALLCONTEXT_MACHINE) && szUserSid)
1264 return ERROR_INVALID_PARAMETER;
1266 if (dwOptions & MSICODE_PATCH)
1268 FIXME("Unhandled options MSICODE_PATCH\n");
1269 return ERROR_FUNCTION_FAILED;
1272 rc = OpenSourceKey(szProduct, &sourcekey, MSICODE_PRODUCT, dwContext, FALSE);
1273 if (rc != ERROR_SUCCESS)
1276 OpenMediaSubkey(sourcekey, &mediakey, TRUE);
1278 sprintfW(szIndex, fmt, dwDiskId);
1281 if (szVolumeLabel) size += lstrlenW(szVolumeLabel);
1282 if (szDiskPrompt) size += lstrlenW(szDiskPrompt);
1284 size *= sizeof(WCHAR);
1285 buffer = msi_alloc(size);
1288 if (szVolumeLabel) lstrcpyW(buffer, szVolumeLabel);
1289 lstrcatW(buffer, szSemiColon);
1290 if (szDiskPrompt) lstrcatW(buffer, szDiskPrompt);
1292 RegSetValueExW(mediakey, szIndex, 0, REG_SZ, (LPBYTE)buffer, size);
1295 RegCloseKey(sourcekey);
1296 RegCloseKey(mediakey);
1298 return ERROR_SUCCESS;
1301 /******************************************************************
1302 * MsiSourceListClearAllA (MSI.@)
1304 UINT WINAPI MsiSourceListClearAllA( LPCSTR szProduct, LPCSTR szUserName, DWORD dwReserved )
1306 FIXME("(%s %s %d)\n", debugstr_a(szProduct), debugstr_a(szUserName), dwReserved);
1307 return ERROR_SUCCESS;
1310 /******************************************************************
1311 * MsiSourceListClearAllW (MSI.@)
1313 UINT WINAPI MsiSourceListClearAllW( LPCWSTR szProduct, LPCWSTR szUserName, DWORD dwReserved )
1315 FIXME("(%s %s %d)\n", debugstr_w(szProduct), debugstr_w(szUserName), dwReserved);
1316 return ERROR_SUCCESS;
1319 /******************************************************************
1320 * MsiSourceListClearAllExA (MSI.@)
1322 UINT WINAPI MsiSourceListClearAllExA( LPCSTR szProduct, LPCSTR szUserSid,
1323 MSIINSTALLCONTEXT dwContext, DWORD dwOptions )
1325 FIXME("(%s %s %d %08x)\n", debugstr_a(szProduct), debugstr_a(szUserSid),
1326 dwContext, dwOptions);
1327 return ERROR_SUCCESS;
1330 /******************************************************************
1331 * MsiSourceListClearAllExW (MSI.@)
1333 UINT WINAPI MsiSourceListClearAllExW( LPCWSTR szProduct, LPCWSTR szUserSid,
1334 MSIINSTALLCONTEXT dwContext, DWORD dwOptions )
1336 FIXME("(%s %s %d %08x)\n", debugstr_w(szProduct), debugstr_w(szUserSid),
1337 dwContext, dwOptions);
1338 return ERROR_SUCCESS;
1341 /******************************************************************
1342 * MsiSourceListClearSourceA (MSI.@)
1344 UINT WINAPI MsiSourceListClearSourceA(LPCSTR szProductCodeOrPatchCode, LPCSTR szUserSid,
1345 MSIINSTALLCONTEXT dwContext, DWORD dwOptions,
1348 FIXME("(%s %s %x %x %s)\n", debugstr_a(szProductCodeOrPatchCode), debugstr_a(szUserSid),
1349 dwContext, dwOptions, debugstr_a(szSource));
1350 return ERROR_SUCCESS;
1353 /******************************************************************
1354 * MsiSourceListClearSourceW (MSI.@)
1356 UINT WINAPI MsiSourceListClearSourceW(LPCWSTR szProductCodeOrPatchCode, LPCWSTR szUserSid,
1357 MSIINSTALLCONTEXT dwContext, DWORD dwOptions,
1360 FIXME("(%s %s %x %x %s)\n", debugstr_w(szProductCodeOrPatchCode), debugstr_w(szUserSid),
1361 dwContext, dwOptions, debugstr_w(szSource));
1362 return ERROR_SUCCESS;