msi: Fix download of installer packages. Return errors from msi_download_file and...
[wine] / dlls / msi / package.c
1 /*
2  * Implementation of the Microsoft Installer (msi.dll)
3  *
4  * Copyright 2004 Aric Stewart for CodeWeavers
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #define NONAMELESSUNION
22 #define NONAMELESSSTRUCT
23 #define COBJMACROS
24
25 #include <stdarg.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winreg.h"
29 #include "winnls.h"
30 #include "shlwapi.h"
31 #include "wingdi.h"
32 #include "wine/debug.h"
33 #include "msi.h"
34 #include "msiquery.h"
35 #include "objidl.h"
36 #include "wincrypt.h"
37 #include "winuser.h"
38 #include "wininet.h"
39 #include "winver.h"
40 #include "urlmon.h"
41 #include "shlobj.h"
42 #include "wine/unicode.h"
43 #include "objbase.h"
44 #include "msidefs.h"
45 #include "sddl.h"
46
47 #include "msipriv.h"
48 #include "msiserver.h"
49
50 WINE_DEFAULT_DEBUG_CHANNEL(msi);
51
52 static void MSI_FreePackage( MSIOBJECTHDR *arg)
53 {
54     MSIPACKAGE *package= (MSIPACKAGE*) arg;
55
56     if( package->dialog )
57         msi_dialog_destroy( package->dialog );
58
59     msiobj_release( &package->db->hdr );
60     ACTION_free_package_structures(package);
61 }
62
63 static UINT create_temp_property_table(MSIPACKAGE *package)
64 {
65     MSIQUERY *view = NULL;
66     UINT rc;
67
68     static const WCHAR CreateSql[] = {
69        'C','R','E','A','T','E',' ','T','A','B','L','E',' ',
70        '`','_','P','r','o','p','e','r','t','y','`',' ','(',' ',
71        '`','_','P','r','o','p','e','r','t','y','`',' ',
72        'C','H','A','R','(','5','6',')',' ','N','O','T',' ','N','U','L','L',' ',
73        'T','E','M','P','O','R','A','R','Y',',',' ',
74        '`','V','a','l','u','e','`',' ','C','H','A','R','(','9','8',')',' ',
75        'N','O','T',' ','N','U','L','L',' ','T','E','M','P','O','R','A','R','Y',
76        ' ','P','R','I','M','A','R','Y',' ','K','E','Y',' ',
77        '`','_','P','r','o','p','e','r','t','y','`',')',' ','H','O','L','D',0};
78
79     rc = MSI_DatabaseOpenViewW(package->db, CreateSql, &view);
80     if (rc != ERROR_SUCCESS)
81         return rc;
82
83     rc = MSI_ViewExecute(view, 0);
84     MSI_ViewClose(view);
85     msiobj_release(&view->hdr);
86     return rc;
87 }
88
89 UINT msi_clone_properties(MSIPACKAGE *package)
90 {
91     MSIQUERY *view = NULL;
92     UINT rc;
93
94     static const WCHAR Query[] = {
95        'S','E','L','E','C','T',' ','*',' ',
96        'F','R','O','M',' ','`','P','r','o','p','e','r','t','y','`',0};
97     static const WCHAR Insert[] = {
98        'I','N','S','E','R','T',' ','i','n','t','o',' ',
99        '`','_','P','r','o','p','e','r','t','y','`',' ',
100        '(','`','_','P','r','o','p','e','r','t','y','`',',',
101        '`','V','a','l','u','e','`',')',' ',
102        'V','A','L','U','E','S',' ','(','?',',','?',')',0};
103
104     /* clone the existing properties */
105     rc = MSI_DatabaseOpenViewW(package->db, Query, &view);
106     if (rc != ERROR_SUCCESS)
107         return rc;
108
109     rc = MSI_ViewExecute(view, 0);
110     if (rc != ERROR_SUCCESS)
111     {
112         MSI_ViewClose(view);
113         msiobj_release(&view->hdr);
114         return rc;
115     }
116
117     while (1)
118     {
119         MSIRECORD *row;
120         MSIQUERY *view2;
121
122         rc = MSI_ViewFetch(view, &row);
123         if (rc != ERROR_SUCCESS)
124             break;
125
126         rc = MSI_DatabaseOpenViewW(package->db, Insert, &view2);
127         if (rc != ERROR_SUCCESS)
128         {
129             msiobj_release(&row->hdr);
130             continue;
131         }
132
133         MSI_ViewExecute(view2, row);
134         MSI_ViewClose(view2);
135         msiobj_release(&view2->hdr);
136         msiobj_release(&row->hdr);
137     }
138
139     MSI_ViewClose(view);
140     msiobj_release(&view->hdr);
141
142     return rc;
143 }
144
145 /*
146  * set_installed_prop
147  *
148  * Sets the "Installed" property to indicate that
149  *  the product is installed for the current user.
150  */
151 static UINT set_installed_prop( MSIPACKAGE *package )
152 {
153     HKEY hkey = 0;
154     UINT r;
155
156     r = MSIREG_OpenUninstallKey( package->ProductCode, &hkey, FALSE );
157     if (r == ERROR_SUCCESS)
158     {
159         RegCloseKey( hkey );
160         MSI_SetPropertyW( package, szInstalled, szOne );
161     }
162
163     return r;
164 }
165
166 static UINT set_user_sid_prop( MSIPACKAGE *package )
167 {
168     SID_NAME_USE use;
169     LPWSTR user_name;
170     LPWSTR sid_str = NULL, dom = NULL;
171     DWORD size, dom_size;
172     PSID psid = NULL;
173     UINT r = ERROR_FUNCTION_FAILED;
174
175     size = 0;
176     GetUserNameW( NULL, &size );
177
178     user_name = msi_alloc( (size + 1) * sizeof(WCHAR) );
179     if (!user_name)
180         return ERROR_OUTOFMEMORY;
181
182     if (!GetUserNameW( user_name, &size ))
183         goto done;
184
185     size = 0;
186     dom_size = 0;
187     LookupAccountNameW( NULL, user_name, NULL, &size, NULL, &dom_size, &use );
188
189     psid = msi_alloc( size );
190     dom = msi_alloc( dom_size*sizeof (WCHAR) );
191     if (!psid || !dom)
192     {
193         r = ERROR_OUTOFMEMORY;
194         goto done;
195     }
196
197     if (!LookupAccountNameW( NULL, user_name, psid, &size, dom, &dom_size, &use ))
198         goto done;
199
200     if (!ConvertSidToStringSidW( psid, &sid_str ))
201         goto done;
202
203     r = MSI_SetPropertyW( package, szUserSID, sid_str );
204
205 done:
206     LocalFree( sid_str );
207     msi_free( dom );
208     msi_free( psid );
209     msi_free( user_name );
210
211     return r;
212 }
213
214 static LPWSTR get_fusion_filename(MSIPACKAGE *package)
215 {
216     HKEY netsetup;
217     LONG res;
218     LPWSTR file = NULL;
219     DWORD index = 0, size;
220     WCHAR ver[MAX_PATH];
221     WCHAR name[MAX_PATH];
222     WCHAR windir[MAX_PATH];
223
224     static const WCHAR fusion[] = {'f','u','s','i','o','n','.','d','l','l',0};
225     static const WCHAR sub[] = {
226         'S','o','f','t','w','a','r','e','\\',
227         'M','i','c','r','o','s','o','f','t','\\',
228         'N','E','T',' ','F','r','a','m','e','w','o','r','k',' ','S','e','t','u','p','\\',
229         'N','D','P',0
230     };
231     static const WCHAR subdir[] = {
232         'M','i','c','r','o','s','o','f','t','.','N','E','T','\\',
233         'F','r','a','m','e','w','o','r','k','\\',0
234     };
235
236     res = RegOpenKeyExW(HKEY_LOCAL_MACHINE, sub, 0, KEY_ENUMERATE_SUB_KEYS, &netsetup);
237     if (res != ERROR_SUCCESS)
238         return NULL;
239
240     GetWindowsDirectoryW(windir, MAX_PATH);
241
242     ver[0] = '\0';
243     size = MAX_PATH;
244     while (RegEnumKeyExW(netsetup, index, name, &size, NULL, NULL, NULL, NULL) == ERROR_SUCCESS)
245     {
246         index++;
247
248         /* verify existence of fusion.dll .Net 3.0 does not install a new one */
249         if (lstrcmpW(ver, name) < 0)
250         {
251             LPWSTR check;
252             size = lstrlenW(windir) + lstrlenW(subdir) + lstrlenW(name) +lstrlenW(fusion) + 3;
253             check = msi_alloc(size * sizeof(WCHAR));
254
255             if (!check)
256             {
257                 msi_free(file);
258                 return NULL;
259             }
260
261             lstrcpyW(check, windir);
262             lstrcatW(check, szBackSlash);
263             lstrcatW(check, subdir);
264             lstrcatW(check, name);
265             lstrcatW(check, szBackSlash);
266             lstrcatW(check, fusion);
267
268             if(GetFileAttributesW(check) != INVALID_FILE_ATTRIBUTES)
269             {
270                 msi_free(file);
271                 file = check;
272                 lstrcpyW(ver, name);
273             }
274             else
275                 msi_free(check);
276         }
277     }
278
279     RegCloseKey(netsetup);
280     return file;
281 }
282
283 typedef struct tagLANGANDCODEPAGE
284 {
285   WORD wLanguage;
286   WORD wCodePage;
287 } LANGANDCODEPAGE;
288
289 static void set_msi_assembly_prop(MSIPACKAGE *package)
290 {
291     UINT val_len;
292     DWORD size, handle;
293     LPVOID version = NULL;
294     WCHAR buf[MAX_PATH];
295     LPWSTR fusion, verstr;
296     LANGANDCODEPAGE *translate;
297
298     static const WCHAR netasm[] = {
299         'M','s','i','N','e','t','A','s','s','e','m','b','l','y','S','u','p','p','o','r','t',0
300     };
301     static const WCHAR translation[] = {
302         '\\','V','a','r','F','i','l','e','I','n','f','o',
303         '\\','T','r','a','n','s','l','a','t','i','o','n',0
304     };
305     static const WCHAR verfmt[] = {
306         '\\','S','t','r','i','n','g','F','i','l','e','I','n','f','o',
307         '\\','%','0','4','x','%','0','4','x',
308         '\\','P','r','o','d','u','c','t','V','e','r','s','i','o','n',0
309     };
310
311     fusion = get_fusion_filename(package);
312     if (!fusion)
313         return;
314
315     size = GetFileVersionInfoSizeW(fusion, &handle);
316     if (!size) return;
317
318     version = msi_alloc(size);
319     if (!version) return;
320
321     if (!GetFileVersionInfoW(fusion, handle, size, version))
322         goto done;
323
324     if (!VerQueryValueW(version, translation, (LPVOID *)&translate, &val_len))
325         goto done;
326
327     sprintfW(buf, verfmt, translate[0].wLanguage, translate[0].wCodePage);
328
329     if (!VerQueryValueW(version, buf, (LPVOID *)&verstr, &val_len))
330         goto done;
331
332     if (!val_len || !verstr)
333         goto done;
334
335     MSI_SetPropertyW(package, netasm, verstr);
336
337 done:
338     msi_free(fusion);
339     msi_free(version);
340 }
341
342 static VOID set_installer_properties(MSIPACKAGE *package)
343 {
344     WCHAR pth[MAX_PATH];
345     WCHAR *ptr;
346     OSVERSIONINFOEXW OSVersion;
347     MEMORYSTATUSEX msex;
348     DWORD verval, len;
349     WCHAR verstr[10], bufstr[20];
350     HDC dc;
351     HKEY hkey;
352     LPWSTR username, companyname;
353     SYSTEM_INFO sys_info;
354     SYSTEMTIME systemtime;
355     LANGID langid;
356
357     static const WCHAR CFF[] = 
358 {'C','o','m','m','o','n','F','i','l','e','s','F','o','l','d','e','r',0};
359     static const WCHAR PFF[] = 
360 {'P','r','o','g','r','a','m','F','i','l','e','s','F','o','l','d','e','r',0};
361     static const WCHAR CADF[] = 
362 {'C','o','m','m','o','n','A','p','p','D','a','t','a','F','o','l','d','e','r',0};
363     static const WCHAR FaF[] = 
364 {'F','a','v','o','r','i','t','e','s','F','o','l','d','e','r',0};
365     static const WCHAR FoF[] = 
366 {'F','o','n','t','s','F','o','l','d','e','r',0};
367     static const WCHAR SendTF[] = 
368 {'S','e','n','d','T','o','F','o','l','d','e','r',0};
369     static const WCHAR SMF[] = 
370 {'S','t','a','r','t','M','e','n','u','F','o','l','d','e','r',0};
371     static const WCHAR StF[] = 
372 {'S','t','a','r','t','u','p','F','o','l','d','e','r',0};
373     static const WCHAR TemplF[] = 
374 {'T','e','m','p','l','a','t','e','F','o','l','d','e','r',0};
375     static const WCHAR DF[] = 
376 {'D','e','s','k','t','o','p','F','o','l','d','e','r',0};
377     static const WCHAR PMF[] = 
378 {'P','r','o','g','r','a','m','M','e','n','u','F','o','l','d','e','r',0};
379     static const WCHAR ATF[] = 
380 {'A','d','m','i','n','T','o','o','l','s','F','o','l','d','e','r',0};
381     static const WCHAR ADF[] = 
382 {'A','p','p','D','a','t','a','F','o','l','d','e','r',0};
383     static const WCHAR SF[] = 
384 {'S','y','s','t','e','m','F','o','l','d','e','r',0};
385     static const WCHAR SF16[] = 
386 {'S','y','s','t','e','m','1','6','F','o','l','d','e','r',0};
387     static const WCHAR LADF[] = 
388 {'L','o','c','a','l','A','p','p','D','a','t','a','F','o','l','d','e','r',0};
389     static const WCHAR MPF[] = 
390 {'M','y','P','i','c','t','u','r','e','s','F','o','l','d','e','r',0};
391     static const WCHAR PF[] = 
392 {'P','e','r','s','o','n','a','l','F','o','l','d','e','r',0};
393     static const WCHAR WF[] = 
394 {'W','i','n','d','o','w','s','F','o','l','d','e','r',0};
395     static const WCHAR WV[] = 
396 {'W','i','n','d','o','w','s','V','o','l','u','m','e',0};
397     static const WCHAR TF[]=
398 {'T','e','m','p','F','o','l','d','e','r',0};
399     static const WCHAR szAdminUser[] =
400 {'A','d','m','i','n','U','s','e','r',0};
401     static const WCHAR szPriv[] =
402 {'P','r','i','v','i','l','e','g','e','d',0};
403     static const WCHAR v9x[] = { 'V','e','r','s','i','o','n','9','X',0 };
404     static const WCHAR vNT[] = { 'V','e','r','s','i','o','n','N','T',0 };
405     static const WCHAR szMsiNTProductType[] = { 'M','s','i','N','T','P','r','o','d','u','c','t','T','y','p','e',0 };
406     static const WCHAR szFormat[] = {'%','l','i',0};
407     static const WCHAR szWinBuild[] =
408 {'W','i','n','d','o','w','s','B','u','i','l','d', 0 };
409     static const WCHAR szSPL[] = 
410 {'S','e','r','v','i','c','e','P','a','c','k','L','e','v','e','l',0 };
411     static const WCHAR szSix[] = {'6',0 };
412
413     static const WCHAR szVersionMsi[] = { 'V','e','r','s','i','o','n','M','s','i',0 };
414     static const WCHAR szVersionDatabase[] = { 'V','e','r','s','i','o','n','D','a','t','a','b','a','s','e',0 };
415     static const WCHAR szPhysicalMemory[] = { 'P','h','y','s','i','c','a','l','M','e','m','o','r','y',0 };
416     static const WCHAR szFormat2[] = {'%','l','i','.','%','l','i',0};
417 /* Screen properties */
418     static const WCHAR szScreenX[] = {'S','c','r','e','e','n','X',0};
419     static const WCHAR szScreenY[] = {'S','c','r','e','e','n','Y',0};
420     static const WCHAR szColorBits[] = {'C','o','l','o','r','B','i','t','s',0};
421     static const WCHAR szIntFormat[] = {'%','d',0};
422     static const WCHAR szIntel[] = { 'I','n','t','e','l',0 };
423     static const WCHAR szUserInfo[] = {
424         'S','O','F','T','W','A','R','E','\\',
425         'M','i','c','r','o','s','o','f','t','\\',
426         'M','S',' ','S','e','t','u','p',' ','(','A','C','M','E',')','\\',
427         'U','s','e','r',' ','I','n','f','o',0
428     };
429     static const WCHAR szDefName[] = { 'D','e','f','N','a','m','e',0 };
430     static const WCHAR szDefCompany[] = { 'D','e','f','C','o','m','p','a','n','y',0 };
431     static const WCHAR szCurrentVersion[] = {
432         'S','O','F','T','W','A','R','E','\\',
433         'M','i','c','r','o','s','o','f','t','\\',
434         'W','i','n','d','o','w','s',' ','N','T','\\',
435         'C','u','r','r','e','n','t','V','e','r','s','i','o','n',0
436     };
437     static const WCHAR szRegisteredUser[] = {'R','e','g','i','s','t','e','r','e','d','O','w','n','e','r',0};
438     static const WCHAR szRegisteredOrg[] = {
439         'R','e','g','i','s','t','e','r','e','d','O','r','g','a','n','i','z','a','t','i','o','n',0
440     };
441     static const WCHAR szUSERNAME[] = {'U','S','E','R','N','A','M','E',0};
442     static const WCHAR szCOMPANYNAME[] = {'C','O','M','P','A','N','Y','N','A','M','E',0};
443     static const WCHAR szDate[] = {'D','a','t','e',0};
444     static const WCHAR szTime[] = {'T','i','m','e',0};
445     static const WCHAR szUserLangID[] = {'U','s','e','r','L','a','n','g','u','a','g','e','I','D',0};
446     static const WCHAR szSystemLangID[] = {'S','y','s','t','e','m','L','a','n','g','u','a','g','e','I','D',0};
447     static const WCHAR szProductState[] = {'P','r','o','d','u','c','t','S','t','a','t','e',0};
448     static const WCHAR szLogonUser[] = {'L','o','g','o','n','U','s','e','r',0};
449
450     /*
451      * Other things that probably should be set:
452      *
453      * ComputerName VirtualMemory
454      * ShellAdvSupport DefaultUIFont PackagecodeChanging
455      * CaptionHeight BorderTop BorderSide TextHeight
456      * RedirectedDllSupport
457      */
458
459     SHGetFolderPathW(NULL,CSIDL_PROGRAM_FILES_COMMON,NULL,0,pth);
460     strcatW(pth, szBackSlash);
461     MSI_SetPropertyW(package, CFF, pth);
462
463     SHGetFolderPathW(NULL,CSIDL_PROGRAM_FILES,NULL,0,pth);
464     strcatW(pth, szBackSlash);
465     MSI_SetPropertyW(package, PFF, pth);
466
467     SHGetFolderPathW(NULL,CSIDL_COMMON_APPDATA,NULL,0,pth);
468     strcatW(pth, szBackSlash);
469     MSI_SetPropertyW(package, CADF, pth);
470
471     SHGetFolderPathW(NULL,CSIDL_FAVORITES,NULL,0,pth);
472     strcatW(pth, szBackSlash);
473     MSI_SetPropertyW(package, FaF, pth);
474
475     SHGetFolderPathW(NULL,CSIDL_FONTS,NULL,0,pth);
476     strcatW(pth, szBackSlash);
477     MSI_SetPropertyW(package, FoF, pth);
478
479     SHGetFolderPathW(NULL,CSIDL_SENDTO,NULL,0,pth);
480     strcatW(pth, szBackSlash);
481     MSI_SetPropertyW(package, SendTF, pth);
482
483     SHGetFolderPathW(NULL,CSIDL_STARTMENU,NULL,0,pth);
484     strcatW(pth, szBackSlash);
485     MSI_SetPropertyW(package, SMF, pth);
486
487     SHGetFolderPathW(NULL,CSIDL_STARTUP,NULL,0,pth);
488     strcatW(pth, szBackSlash);
489     MSI_SetPropertyW(package, StF, pth);
490
491     SHGetFolderPathW(NULL,CSIDL_TEMPLATES,NULL,0,pth);
492     strcatW(pth, szBackSlash);
493     MSI_SetPropertyW(package, TemplF, pth);
494
495     SHGetFolderPathW(NULL,CSIDL_DESKTOP,NULL,0,pth);
496     strcatW(pth, szBackSlash);
497     MSI_SetPropertyW(package, DF, pth);
498
499     SHGetFolderPathW(NULL,CSIDL_PROGRAMS,NULL,0,pth);
500     strcatW(pth, szBackSlash);
501     MSI_SetPropertyW(package, PMF, pth);
502
503     SHGetFolderPathW(NULL,CSIDL_ADMINTOOLS,NULL,0,pth);
504     strcatW(pth, szBackSlash);
505     MSI_SetPropertyW(package, ATF, pth);
506
507     SHGetFolderPathW(NULL,CSIDL_APPDATA,NULL,0,pth);
508     strcatW(pth, szBackSlash);
509     MSI_SetPropertyW(package, ADF, pth);
510
511     SHGetFolderPathW(NULL,CSIDL_SYSTEM,NULL,0,pth);
512     strcatW(pth, szBackSlash);
513     MSI_SetPropertyW(package, SF, pth);
514     MSI_SetPropertyW(package, SF16, pth);
515
516     SHGetFolderPathW(NULL,CSIDL_LOCAL_APPDATA,NULL,0,pth);
517     strcatW(pth, szBackSlash);
518     MSI_SetPropertyW(package, LADF, pth);
519
520     SHGetFolderPathW(NULL,CSIDL_MYPICTURES,NULL,0,pth);
521     strcatW(pth, szBackSlash);
522     MSI_SetPropertyW(package, MPF, pth);
523
524     SHGetFolderPathW(NULL,CSIDL_PERSONAL,NULL,0,pth);
525     strcatW(pth, szBackSlash);
526     MSI_SetPropertyW(package, PF, pth);
527
528     SHGetFolderPathW(NULL,CSIDL_WINDOWS,NULL,0,pth);
529     strcatW(pth, szBackSlash);
530     MSI_SetPropertyW(package, WF, pth);
531     
532     /* Physical Memory is specified in MB. Using total amount. */
533     msex.dwLength = sizeof(msex);
534     GlobalMemoryStatusEx( &msex );
535     sprintfW( bufstr, szIntFormat, (int)(msex.ullTotalPhys/1024/1024));
536     MSI_SetPropertyW(package, szPhysicalMemory, bufstr);
537
538     SHGetFolderPathW(NULL,CSIDL_WINDOWS,NULL,0,pth);
539     ptr = strchrW(pth,'\\');
540     if (ptr)
541         *(ptr+1) = 0;
542     MSI_SetPropertyW(package, WV, pth);
543     
544     GetTempPathW(MAX_PATH,pth);
545     MSI_SetPropertyW(package, TF, pth);
546
547
548     /* in a wine environment the user is always admin and privileged */
549     MSI_SetPropertyW(package,szAdminUser,szOne);
550     MSI_SetPropertyW(package,szPriv,szOne);
551
552     /* set the os things */
553     OSVersion.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEXW);
554     GetVersionExW((OSVERSIONINFOW *)&OSVersion);
555     verval = OSVersion.dwMinorVersion+OSVersion.dwMajorVersion*100;
556     sprintfW(verstr,szFormat,verval);
557     switch (OSVersion.dwPlatformId)
558     {
559         case VER_PLATFORM_WIN32_WINDOWS:    
560             MSI_SetPropertyW(package,v9x,verstr);
561             break;
562         case VER_PLATFORM_WIN32_NT:
563             MSI_SetPropertyW(package,vNT,verstr);
564             sprintfW(verstr,szFormat,OSVersion.wProductType);
565             MSI_SetPropertyW(package,szMsiNTProductType,verstr);
566             break;
567     }
568     sprintfW(verstr,szFormat,OSVersion.dwBuildNumber);
569     MSI_SetPropertyW(package,szWinBuild,verstr);
570     /* just fudge this */
571     MSI_SetPropertyW(package,szSPL,szSix);
572
573     sprintfW( bufstr, szFormat2, MSI_MAJORVERSION, MSI_MINORVERSION);
574     MSI_SetPropertyW( package, szVersionMsi, bufstr );
575     sprintfW( bufstr, szFormat, MSI_MAJORVERSION * 100);
576     MSI_SetPropertyW( package, szVersionDatabase, bufstr );
577
578     GetSystemInfo( &sys_info );
579     if (sys_info.u.s.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_INTEL)
580     {
581         sprintfW( bufstr, szIntFormat, sys_info.wProcessorLevel );
582         MSI_SetPropertyW( package, szIntel, bufstr );
583     }
584
585     /* Screen properties. */
586     dc = GetDC(0);
587     sprintfW( bufstr, szIntFormat, GetDeviceCaps( dc, HORZRES ) );
588     MSI_SetPropertyW( package, szScreenX, bufstr );
589     sprintfW( bufstr, szIntFormat, GetDeviceCaps( dc, VERTRES ));
590     MSI_SetPropertyW( package, szScreenY, bufstr );
591     sprintfW( bufstr, szIntFormat, GetDeviceCaps( dc, BITSPIXEL ));
592     MSI_SetPropertyW( package, szColorBits, bufstr );
593     ReleaseDC(0, dc);
594
595     /* USERNAME and COMPANYNAME */
596     username = msi_dup_property( package, szUSERNAME );
597     companyname = msi_dup_property( package, szCOMPANYNAME );
598
599     if ((!username || !companyname) &&
600         RegOpenKeyW( HKEY_CURRENT_USER, szUserInfo, &hkey ) == ERROR_SUCCESS)
601     {
602         if (!username &&
603             (username = msi_reg_get_val_str( hkey, szDefName )))
604             MSI_SetPropertyW( package, szUSERNAME, username );
605         if (!companyname &&
606             (companyname = msi_reg_get_val_str( hkey, szDefCompany )))
607             MSI_SetPropertyW( package, szCOMPANYNAME, companyname );
608         CloseHandle( hkey );
609     }
610     if ((!username || !companyname) &&
611         RegOpenKeyW( HKEY_LOCAL_MACHINE, szCurrentVersion, &hkey ) == ERROR_SUCCESS)
612     {
613         if (!username &&
614             (username = msi_reg_get_val_str( hkey, szRegisteredUser )))
615             MSI_SetPropertyW( package, szUSERNAME, username );
616         if (!companyname &&
617             (companyname = msi_reg_get_val_str( hkey, szRegisteredOrg )))
618             MSI_SetPropertyW( package, szCOMPANYNAME, companyname );
619         CloseHandle( hkey );
620     }
621     msi_free( username );
622     msi_free( companyname );
623
624     if ( set_user_sid_prop( package ) != ERROR_SUCCESS)
625         ERR("Failed to set the UserSID property\n");
626
627     /* Date and time properties */
628     GetSystemTime( &systemtime );
629     if (GetDateFormatW( LOCALE_USER_DEFAULT, DATE_SHORTDATE, &systemtime,
630                         NULL, bufstr, sizeof(bufstr)/sizeof(bufstr[0]) ))
631         MSI_SetPropertyW( package, szDate, bufstr );
632     else
633         ERR("Couldn't set Date property: GetDateFormat failed with error %d\n", GetLastError());
634
635     if (GetTimeFormatW( LOCALE_USER_DEFAULT,
636                         TIME_FORCE24HOURFORMAT | TIME_NOTIMEMARKER,
637                         &systemtime, NULL, bufstr,
638                         sizeof(bufstr)/sizeof(bufstr[0]) ))
639         MSI_SetPropertyW( package, szTime, bufstr );
640     else
641         ERR("Couldn't set Time property: GetTimeFormat failed with error %d\n", GetLastError());
642
643     set_msi_assembly_prop( package );
644
645     langid = GetUserDefaultLangID();
646     sprintfW(bufstr, szIntFormat, langid);
647
648     MSI_SetPropertyW( package, szUserLangID, bufstr );
649
650     langid = GetSystemDefaultLangID();
651     sprintfW(bufstr, szIntFormat, langid);
652
653     MSI_SetPropertyW( package, szSystemLangID, bufstr );
654
655     sprintfW(bufstr, szIntFormat, MsiQueryProductStateW(package->ProductCode));
656     MSI_SetPropertyW( package, szProductState, bufstr );
657
658     len = 0;
659     if (!GetUserNameW( NULL, &len ) && GetLastError() == ERROR_MORE_DATA)
660     {
661         WCHAR *username;
662         if ((username = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) )))
663         {
664             if (GetUserNameW( username, &len ))
665                 MSI_SetPropertyW( package, szLogonUser, username );
666             HeapFree( GetProcessHeap(), 0, username );
667         }
668     }
669 }
670
671 static UINT msi_load_summary_properties( MSIPACKAGE *package )
672 {
673     UINT rc;
674     MSIHANDLE suminfo;
675     MSIHANDLE hdb = alloc_msihandle( &package->db->hdr );
676     INT count;
677     DWORD len;
678     LPWSTR package_code;
679     static const WCHAR szPackageCode[] = {
680         'P','a','c','k','a','g','e','C','o','d','e',0};
681
682     if (!hdb) {
683         ERR("Unable to allocate handle\n");
684         return ERROR_OUTOFMEMORY;
685     }
686
687     rc = MsiGetSummaryInformationW( hdb, NULL, 0, &suminfo );
688     MsiCloseHandle(hdb);
689     if (rc != ERROR_SUCCESS)
690     {
691         ERR("Unable to open Summary Information\n");
692         return rc;
693     }
694
695     rc = MsiSummaryInfoGetPropertyW( suminfo, PID_PAGECOUNT, NULL,
696                                      &count, NULL, NULL, NULL );
697     if (rc != ERROR_SUCCESS)
698     {
699         WARN("Unable to query page count: %d\n", rc);
700         goto done;
701     }
702
703     /* load package code property */
704     len = 0;
705     rc = MsiSummaryInfoGetPropertyW( suminfo, PID_REVNUMBER, NULL,
706                                      NULL, NULL, NULL, &len );
707     if (rc != ERROR_MORE_DATA)
708     {
709         WARN("Unable to query revision number: %d\n", rc);
710         rc = ERROR_FUNCTION_FAILED;
711         goto done;
712     }
713
714     len++;
715     package_code = msi_alloc( len * sizeof(WCHAR) );
716     rc = MsiSummaryInfoGetPropertyW( suminfo, PID_REVNUMBER, NULL,
717                                      NULL, NULL, package_code, &len );
718     if (rc != ERROR_SUCCESS)
719     {
720         WARN("Unable to query rev number: %d\n", rc);
721         goto done;
722     }
723
724     MSI_SetPropertyW( package, szPackageCode, package_code );
725     msi_free( package_code );
726
727     /* load package attributes */
728     count = 0;
729     MsiSummaryInfoGetPropertyW( suminfo, PID_WORDCOUNT, NULL,
730                                 &count, NULL, NULL, NULL );
731     package->WordCount = count;
732
733 done:
734     MsiCloseHandle(suminfo);
735     return rc;
736 }
737
738 static MSIPACKAGE *msi_alloc_package( void )
739 {
740     MSIPACKAGE *package;
741
742     package = alloc_msiobject( MSIHANDLETYPE_PACKAGE, sizeof (MSIPACKAGE),
743                                MSI_FreePackage );
744     if( package )
745     {
746         list_init( &package->components );
747         list_init( &package->features );
748         list_init( &package->files );
749         list_init( &package->tempfiles );
750         list_init( &package->folders );
751         list_init( &package->subscriptions );
752         list_init( &package->appids );
753         list_init( &package->classes );
754         list_init( &package->mimes );
755         list_init( &package->extensions );
756         list_init( &package->progids );
757         list_init( &package->RunningActions );
758         list_init( &package->sourcelist_info );
759         list_init( &package->sourcelist_media );
760     }
761
762     return package;
763 }
764
765 static UINT msi_load_admin_properties(MSIPACKAGE *package)
766 {
767     BYTE *data;
768     UINT r, sz;
769
770     static const WCHAR stmname[] = {'A','d','m','i','n','P','r','o','p','e','r','t','i','e','s',0};
771
772     r = read_stream_data(package->db->storage, stmname, FALSE, &data, &sz);
773     if (r != ERROR_SUCCESS)
774         return r;
775
776     r = msi_parse_command_line(package, (WCHAR *)data, TRUE);
777
778     msi_free(data);
779     return r;
780 }
781
782 MSIPACKAGE *MSI_CreatePackage( MSIDATABASE *db, LPCWSTR base_url )
783 {
784     static const WCHAR szLevel[] = { 'U','I','L','e','v','e','l',0 };
785     static const WCHAR szpi[] = {'%','i',0};
786     MSIPACKAGE *package;
787     WCHAR uilevel[10];
788     UINT r;
789
790     TRACE("%p\n", db);
791
792     package = msi_alloc_package();
793     if (package)
794     {
795         msiobj_addref( &db->hdr );
796         package->db = db;
797
798         package->WordCount = 0;
799         package->PackagePath = strdupW( db->path );
800         package->BaseURL = strdupW( base_url );
801
802         create_temp_property_table( package );
803         msi_clone_properties( package );
804
805         package->ProductCode = msi_dup_property( package, szProductCode );
806         set_installed_prop( package );
807         set_installer_properties( package );
808
809         sprintfW(uilevel,szpi,gUILevel);
810         MSI_SetPropertyW(package, szLevel, uilevel);
811
812         r = msi_load_summary_properties( package );
813         if (r != ERROR_SUCCESS)
814         {
815             msiobj_release( &package->hdr );
816             return NULL;
817         }
818
819         if (package->WordCount & msidbSumInfoSourceTypeAdminImage)
820             msi_load_admin_properties( package );
821     }
822
823     return package;
824 }
825
826 /*
827  * copy_package_to_temp   [internal]
828  *
829  * copy the msi file to a temp file to prevent locking a CD
830  * with a multi disc install 
831  *
832  * FIXME: I think this is wrong, and instead of copying the package,
833  *        we should read all the tables to memory, then open the
834  *        database to read binary streams on demand.
835  */ 
836 static UINT copy_package_to_temp( LPCWSTR szPackage, LPWSTR filename )
837 {
838     WCHAR path[MAX_PATH];
839
840     GetTempPathW( MAX_PATH, path );
841     GetTempFileNameW( path, szMsi, 0, filename );
842
843     if( !CopyFileW( szPackage, filename, FALSE ) )
844     {
845         UINT error = GetLastError();
846         ERR("failed to copy package %s to %s (%u)\n", debugstr_w(szPackage), debugstr_w(filename), error);
847         DeleteFileW( filename );
848         return error;
849     }
850
851     return ERROR_SUCCESS;
852 }
853
854 UINT msi_download_file( LPCWSTR szUrl, LPWSTR filename )
855 {
856     LPINTERNET_CACHE_ENTRY_INFOW cache_entry;
857     DWORD size = 0;
858     HRESULT hr;
859
860     /* call will always fail, becase size is 0,
861      * but will return ERROR_FILE_NOT_FOUND first
862      * if the file doesn't exist
863      */
864     GetUrlCacheEntryInfoW( szUrl, NULL, &size );
865     if ( GetLastError() != ERROR_FILE_NOT_FOUND )
866     {
867         cache_entry = HeapAlloc( GetProcessHeap(), 0, size );
868         if ( !GetUrlCacheEntryInfoW( szUrl, cache_entry, &size ) )
869         {
870             UINT error = GetLastError();
871             HeapFree( GetProcessHeap(), 0, cache_entry );
872             return error;
873         }
874
875         lstrcpyW( filename, cache_entry->lpszLocalFileName );
876         HeapFree( GetProcessHeap(), 0, cache_entry );
877         return ERROR_SUCCESS;
878     }
879
880     hr = URLDownloadToCacheFileW( NULL, szUrl, filename, MAX_PATH, 0, NULL );
881     if ( FAILED(hr) )
882     {
883         WARN("failed to download %s to cache file\n", debugstr_w(szUrl));
884         return ERROR_FUNCTION_FAILED;
885     }
886
887     return ERROR_SUCCESS;
888 }
889
890 static UINT msi_get_local_package_name( LPWSTR path )
891 {
892     static const WCHAR szInstaller[] = {
893         '\\','I','n','s','t','a','l','l','e','r','\\',0};
894     static const WCHAR fmt[] = { '%','x','.','m','s','i',0};
895     DWORD time, len, i;
896     HANDLE handle;
897
898     time = GetTickCount();
899     GetWindowsDirectoryW( path, MAX_PATH );
900     strcatW( path, szInstaller );
901     CreateDirectoryW( path, NULL );
902
903     len = strlenW(path);
904     for (i = 0; i < 0x10000; i++)
905     {
906         snprintfW( &path[len], MAX_PATH - len, fmt, (time + i)&0xffff );
907         handle = CreateFileW( path, GENERIC_WRITE, 0, NULL,
908                               CREATE_NEW, FILE_ATTRIBUTE_NORMAL, 0 );
909         if (handle != INVALID_HANDLE_VALUE)
910         {
911             CloseHandle(handle);
912             break;
913         }
914         if (GetLastError() != ERROR_FILE_EXISTS &&
915             GetLastError() != ERROR_SHARING_VIOLATION)
916             return ERROR_FUNCTION_FAILED;
917     }
918
919     return ERROR_SUCCESS;
920 }
921
922 UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
923 {
924     static const WCHAR OriginalDatabase[] =
925         {'O','r','i','g','i','n','a','l','D','a','t','a','b','a','s','e',0};
926     static const WCHAR Database[] = {'D','A','T','A','B','A','S','E',0};
927     MSIDATABASE *db = NULL;
928     MSIPACKAGE *package;
929     MSIHANDLE handle;
930     LPWSTR ptr, base_url = NULL;
931     UINT r;
932     WCHAR temppath[MAX_PATH], localfile[MAX_PATH], cachefile[MAX_PATH];
933     LPCWSTR file = szPackage;
934
935     TRACE("%s %p\n", debugstr_w(szPackage), pPackage);
936
937     if( szPackage[0] == '#' )
938     {
939         handle = atoiW(&szPackage[1]);
940         db = msihandle2msiinfo( handle, MSIHANDLETYPE_DATABASE );
941         if( !db )
942         {
943             IWineMsiRemoteDatabase *remote_database;
944
945             remote_database = (IWineMsiRemoteDatabase *)msi_get_remote( handle );
946             if ( !remote_database )
947                 return ERROR_INVALID_HANDLE;
948
949             IWineMsiRemoteDatabase_Release( remote_database );
950             WARN("MsiOpenPackage not allowed during a custom action!\n");
951
952             return ERROR_FUNCTION_FAILED;
953         }
954     }
955     else
956     {
957         if ( UrlIsW( szPackage, URLIS_URL ) )
958         {
959             r = msi_download_file( szPackage, cachefile );
960             if ( r != ERROR_SUCCESS )
961                 return r;
962
963             r = copy_package_to_temp( cachefile, temppath );
964             if ( r != ERROR_SUCCESS )
965                 return r;
966
967             file = temppath;
968
969             base_url = strdupW( szPackage );
970             if ( !base_url )
971                 return ERROR_OUTOFMEMORY;
972
973             ptr = strrchrW( base_url, '/' );
974             if (ptr) *(ptr + 1) = '\0';
975         }
976         else
977         {
978             r = copy_package_to_temp( szPackage, temppath );
979             if ( r != ERROR_SUCCESS )
980                 return r;
981
982             file = temppath;
983         }
984
985         r = msi_get_local_package_name( localfile );
986         if (r != ERROR_SUCCESS)
987             return r;
988
989         TRACE("Copying to local package %s\n", debugstr_w(localfile));
990
991         if (!CopyFileW( file, localfile, FALSE ))
992         {
993             ERR("Unable to copy package (%s -> %s) (error %u)\n",
994                 debugstr_w(file), debugstr_w(localfile), GetLastError());
995             return GetLastError();
996         }
997
998         TRACE("Opening relocated package %s\n", debugstr_w( file ));
999
1000         /* transforms that add binary streams require that we open the database
1001          * read/write, which is safe because we always create a copy that is thrown
1002          * away when we're done.
1003          */
1004         r = MSI_OpenDatabaseW( file, MSIDBOPEN_DIRECT, &db );
1005         if( r != ERROR_SUCCESS )
1006         {
1007             if (file != szPackage)
1008                 DeleteFileW( file );
1009
1010             if (GetFileAttributesW(szPackage) == INVALID_FILE_ATTRIBUTES)
1011                 return ERROR_FILE_NOT_FOUND;
1012
1013             return r;
1014         }
1015
1016         db->localfile = strdupW( localfile );
1017     }
1018
1019     package = MSI_CreatePackage( db, base_url );
1020     msi_free( base_url );
1021     msiobj_release( &db->hdr );
1022     if( !package )
1023     {
1024         if (file != szPackage)
1025             DeleteFileW( file );
1026
1027         return ERROR_INSTALL_PACKAGE_INVALID;
1028     }
1029
1030     if( file != szPackage )
1031         track_tempfile( package, file );
1032
1033     MSI_SetPropertyW( package, Database, db->path );
1034
1035     if( UrlIsW( szPackage, URLIS_URL ) )
1036         MSI_SetPropertyW( package, OriginalDatabase, szPackage );
1037     else if( szPackage[0] == '#' )
1038         MSI_SetPropertyW( package, OriginalDatabase, db->path );
1039     else
1040     {
1041         WCHAR fullpath[MAX_PATH];
1042
1043         GetFullPathNameW( szPackage, MAX_PATH, fullpath, NULL );
1044         MSI_SetPropertyW( package, OriginalDatabase, fullpath );
1045     }
1046
1047     package->script = msi_alloc_zero( sizeof(MSISCRIPT) );
1048     *pPackage = package;
1049
1050     return ERROR_SUCCESS;
1051 }
1052
1053 UINT WINAPI MsiOpenPackageExW(LPCWSTR szPackage, DWORD dwOptions, MSIHANDLE *phPackage)
1054 {
1055     MSIPACKAGE *package = NULL;
1056     UINT ret;
1057
1058     TRACE("%s %08x %p\n", debugstr_w(szPackage), dwOptions, phPackage );
1059
1060     if( !szPackage || !phPackage )
1061         return ERROR_INVALID_PARAMETER;
1062
1063     if ( !*szPackage )
1064     {
1065         FIXME("Should create an empty database and package\n");
1066         return ERROR_FUNCTION_FAILED;
1067     }
1068
1069     if( dwOptions )
1070         FIXME("dwOptions %08x not supported\n", dwOptions);
1071
1072     ret = MSI_OpenPackageW( szPackage, &package );
1073     if( ret == ERROR_SUCCESS )
1074     {
1075         *phPackage = alloc_msihandle( &package->hdr );
1076         if (! *phPackage)
1077             ret = ERROR_NOT_ENOUGH_MEMORY;
1078         msiobj_release( &package->hdr );
1079     }
1080
1081     return ret;
1082 }
1083
1084 UINT WINAPI MsiOpenPackageW(LPCWSTR szPackage, MSIHANDLE *phPackage)
1085 {
1086     return MsiOpenPackageExW( szPackage, 0, phPackage );
1087 }
1088
1089 UINT WINAPI MsiOpenPackageExA(LPCSTR szPackage, DWORD dwOptions, MSIHANDLE *phPackage)
1090 {
1091     LPWSTR szwPack = NULL;
1092     UINT ret;
1093
1094     if( szPackage )
1095     {
1096         szwPack = strdupAtoW( szPackage );
1097         if( !szwPack )
1098             return ERROR_OUTOFMEMORY;
1099     }
1100
1101     ret = MsiOpenPackageExW( szwPack, dwOptions, phPackage );
1102
1103     msi_free( szwPack );
1104
1105     return ret;
1106 }
1107
1108 UINT WINAPI MsiOpenPackageA(LPCSTR szPackage, MSIHANDLE *phPackage)
1109 {
1110     return MsiOpenPackageExA( szPackage, 0, phPackage );
1111 }
1112
1113 MSIHANDLE WINAPI MsiGetActiveDatabase(MSIHANDLE hInstall)
1114 {
1115     MSIPACKAGE *package;
1116     MSIHANDLE handle = 0;
1117     IWineMsiRemotePackage *remote_package;
1118
1119     TRACE("(%d)\n",hInstall);
1120
1121     package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
1122     if( package)
1123     {
1124         handle = alloc_msihandle( &package->db->hdr );
1125         msiobj_release( &package->hdr );
1126     }
1127     else if ((remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall )))
1128     {
1129         IWineMsiRemotePackage_GetActiveDatabase(remote_package, &handle);
1130         IWineMsiRemotePackage_Release(remote_package);
1131     }
1132
1133     return handle;
1134 }
1135
1136 INT MSI_ProcessMessage( MSIPACKAGE *package, INSTALLMESSAGE eMessageType,
1137                                MSIRECORD *record)
1138 {
1139     static const WCHAR szActionData[] =
1140         {'A','c','t','i','o','n','D','a','t','a',0};
1141     static const WCHAR szSetProgress[] =
1142         {'S','e','t','P','r','o','g','r','e','s','s',0};
1143     static const WCHAR szActionText[] =
1144         {'A','c','t','i','o','n','T','e','x','t',0};
1145     DWORD log_type = 0;
1146     LPWSTR message;
1147     DWORD sz;
1148     DWORD total_size = 0;
1149     INT i;
1150     INT rc;
1151     char *msg;
1152     int len;
1153
1154     TRACE("%x\n", eMessageType);
1155     rc = 0;
1156
1157     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ERROR)
1158         log_type |= INSTALLLOGMODE_ERROR;
1159     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_WARNING)
1160         log_type |= INSTALLLOGMODE_WARNING;
1161     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_USER)
1162         log_type |= INSTALLLOGMODE_USER;
1163     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_INFO)
1164         log_type |= INSTALLLOGMODE_INFO;
1165     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_COMMONDATA)
1166         log_type |= INSTALLLOGMODE_COMMONDATA;
1167     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONSTART)
1168         log_type |= INSTALLLOGMODE_ACTIONSTART;
1169     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONDATA)
1170         log_type |= INSTALLLOGMODE_ACTIONDATA;
1171     /* just a guess */
1172     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_PROGRESS)
1173         log_type |= 0x800;
1174
1175     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONSTART)
1176     {
1177         static const WCHAR template_s[]=
1178             {'A','c','t','i','o','n',' ','%','s',':',' ','%','s','.',' ',0};
1179         static const WCHAR format[] = 
1180             {'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0};
1181         WCHAR timet[0x100];
1182         LPCWSTR action_text, action;
1183         LPWSTR deformatted = NULL;
1184
1185         GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, format, timet, 0x100);
1186
1187         action = MSI_RecordGetString(record, 1);
1188         action_text = MSI_RecordGetString(record, 2);
1189
1190         if (!action || !action_text)
1191             return IDOK;
1192
1193         deformat_string(package, action_text, &deformatted);
1194
1195         len = strlenW(timet) + strlenW(action) + strlenW(template_s);
1196         if (deformatted)
1197             len += strlenW(deformatted);
1198         message = msi_alloc(len*sizeof(WCHAR));
1199         sprintfW(message, template_s, timet, action);
1200         if (deformatted)
1201             strcatW(message, deformatted);
1202         msi_free(deformatted);
1203     }
1204     else
1205     {
1206         INT msg_field=1;
1207         message = msi_alloc(1*sizeof (WCHAR));
1208         message[0]=0;
1209         msg_field = MSI_RecordGetFieldCount(record);
1210         for (i = 1; i <= msg_field; i++)
1211         {
1212             LPWSTR tmp;
1213             WCHAR number[3];
1214             static const WCHAR format[] = { '%','i',':',' ',0};
1215             sz = 0;
1216             MSI_RecordGetStringW(record,i,NULL,&sz);
1217             sz+=4;
1218             total_size+=sz*sizeof(WCHAR);
1219             tmp = msi_alloc(sz*sizeof(WCHAR));
1220             message = msi_realloc(message,total_size*sizeof (WCHAR));
1221
1222             MSI_RecordGetStringW(record,i,tmp,&sz);
1223
1224             if (msg_field > 1)
1225             {
1226                 sprintfW(number,format,i);
1227                 strcatW(message,number);
1228             }
1229             strcatW(message,tmp);
1230             if (msg_field > 1)
1231                 strcatW(message, szSpace);
1232
1233             msi_free(tmp);
1234         }
1235     }
1236
1237     TRACE("%p %p %p %x %x %s\n", gUIHandlerA, gUIHandlerW, gUIHandlerRecord,
1238           gUIFilter, log_type, debugstr_w(message));
1239
1240     /* convert it to ASCII */
1241     len = WideCharToMultiByte( CP_ACP, 0, message, -1, NULL, 0, NULL, NULL );
1242     msg = msi_alloc( len );
1243     WideCharToMultiByte( CP_ACP, 0, message, -1, msg, len, NULL, NULL );
1244
1245     if (gUIHandlerW && (gUIFilter & log_type))
1246     {
1247         rc = gUIHandlerW( gUIContext, eMessageType, message );
1248     }
1249     else if (gUIHandlerA && (gUIFilter & log_type))
1250     {
1251         rc = gUIHandlerA( gUIContext, eMessageType, msg );
1252     }
1253     else if (gUIHandlerRecord && (gUIFilter & log_type))
1254     {
1255         MSIHANDLE rec = MsiCreateRecord( 1 );
1256         MsiRecordSetStringW( rec, 0, message );
1257         rc = gUIHandlerRecord( gUIContext, eMessageType, rec );
1258         MsiCloseHandle( rec );
1259     }
1260
1261     if ((!rc) && (gszLogFile[0]) && !((eMessageType & 0xff000000) ==
1262                                       INSTALLMESSAGE_PROGRESS))
1263     {
1264         DWORD write;
1265         HANDLE log_file = CreateFileW(gszLogFile,GENERIC_WRITE, 0, NULL,
1266                                   OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
1267
1268         if (log_file != INVALID_HANDLE_VALUE)
1269         {
1270             SetFilePointer(log_file,0, NULL, FILE_END);
1271             WriteFile(log_file,msg,strlen(msg),&write,NULL);
1272             WriteFile(log_file,"\n",1,&write,NULL);
1273             CloseHandle(log_file);
1274         }
1275     }
1276     msi_free( msg );
1277     msi_free( message );
1278
1279     switch (eMessageType & 0xff000000)
1280     {
1281     case INSTALLMESSAGE_ACTIONDATA:
1282         /* FIXME: format record here instead of in ui_actiondata to get the
1283          * correct action data for external scripts */
1284         ControlEvent_FireSubscribedEvent(package, szActionData, record);
1285         break;
1286     case INSTALLMESSAGE_ACTIONSTART:
1287     {
1288         MSIRECORD *uirow;
1289         LPWSTR deformated;
1290         LPCWSTR action_text = MSI_RecordGetString(record, 2);
1291
1292         deformat_string(package, action_text, &deformated);
1293         uirow = MSI_CreateRecord(1);
1294         MSI_RecordSetStringW(uirow, 1, deformated);
1295         TRACE("INSTALLMESSAGE_ACTIONSTART: %s\n", debugstr_w(deformated));
1296         msi_free(deformated);
1297
1298         ControlEvent_FireSubscribedEvent(package, szActionText, uirow);
1299
1300         msiobj_release(&uirow->hdr);
1301         break;
1302     }
1303     case INSTALLMESSAGE_PROGRESS:
1304         ControlEvent_FireSubscribedEvent(package, szSetProgress, record);
1305         break;
1306     }
1307
1308     return ERROR_SUCCESS;
1309 }
1310
1311 INT WINAPI MsiProcessMessage( MSIHANDLE hInstall, INSTALLMESSAGE eMessageType,
1312                               MSIHANDLE hRecord)
1313 {
1314     UINT ret = ERROR_INVALID_HANDLE;
1315     MSIPACKAGE *package = NULL;
1316     MSIRECORD *record = NULL;
1317
1318     package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE );
1319     if( !package )
1320     {
1321         HRESULT hr;
1322         IWineMsiRemotePackage *remote_package;
1323
1324         remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
1325         if (!remote_package)
1326             return ERROR_INVALID_HANDLE;
1327
1328         hr = IWineMsiRemotePackage_ProcessMessage( remote_package, eMessageType, hRecord );
1329
1330         IWineMsiRemotePackage_Release( remote_package );
1331
1332         if (FAILED(hr))
1333         {
1334             if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1335                 return HRESULT_CODE(hr);
1336
1337             return ERROR_FUNCTION_FAILED;
1338         }
1339
1340         return ERROR_SUCCESS;
1341     }
1342
1343     record = msihandle2msiinfo( hRecord, MSIHANDLETYPE_RECORD );
1344     if( !record )
1345         goto out;
1346
1347     ret = MSI_ProcessMessage( package, eMessageType, record );
1348
1349 out:
1350     msiobj_release( &package->hdr );
1351     if( record )
1352         msiobj_release( &record->hdr );
1353
1354     return ret;
1355 }
1356
1357 /* property code */
1358
1359 UINT WINAPI MsiSetPropertyA( MSIHANDLE hInstall, LPCSTR szName, LPCSTR szValue )
1360 {
1361     LPWSTR szwName = NULL, szwValue = NULL;
1362     UINT r = ERROR_OUTOFMEMORY;
1363
1364     szwName = strdupAtoW( szName );
1365     if( szName && !szwName )
1366         goto end;
1367
1368     szwValue = strdupAtoW( szValue );
1369     if( szValue && !szwValue )
1370         goto end;
1371
1372     r = MsiSetPropertyW( hInstall, szwName, szwValue);
1373
1374 end:
1375     msi_free( szwName );
1376     msi_free( szwValue );
1377
1378     return r;
1379 }
1380
1381 UINT MSI_SetPropertyW( MSIPACKAGE *package, LPCWSTR szName, LPCWSTR szValue)
1382 {
1383     MSIQUERY *view;
1384     MSIRECORD *row = NULL;
1385     UINT rc;
1386     DWORD sz = 0;
1387     WCHAR Query[1024];
1388
1389     static const WCHAR Insert[] = {
1390         'I','N','S','E','R','T',' ','i','n','t','o',' ',
1391         '`','_','P','r','o','p','e','r','t','y','`',' ','(',
1392         '`','_','P','r','o','p','e','r','t','y','`',',',
1393         '`','V','a','l','u','e','`',')',' ','V','A','L','U','E','S'
1394         ,' ','(','?',',','?',')',0};
1395     static const WCHAR Update[] = {
1396         'U','P','D','A','T','E',' ','`','_','P','r','o','p','e','r','t','y','`',
1397         ' ','s','e','t',' ','`','V','a','l','u','e','`',' ','=',' ','?',' ',
1398         'w','h','e','r','e',' ','`','_','P','r','o','p','e','r','t','y','`',
1399         ' ','=',' ','\'','%','s','\'',0};
1400     static const WCHAR Delete[] = {
1401         'D','E','L','E','T','E',' ','F','R','O','M',' ',
1402         '`','_','P','r','o','p','e','r','t','y','`',' ','W','H','E','R','E',' ',
1403         '`','_','P','r','o','p','e','r','t','y','`',' ','=',' ','\'','%','s','\'',0};
1404
1405     TRACE("%p %s %s\n", package, debugstr_w(szName), debugstr_w(szValue));
1406
1407     if (!szName)
1408         return ERROR_INVALID_PARAMETER;
1409
1410     /* this one is weird... */
1411     if (!szName[0])
1412         return szValue ? ERROR_FUNCTION_FAILED : ERROR_SUCCESS;
1413
1414     rc = MSI_GetPropertyW(package, szName, 0, &sz);
1415     if (!szValue || !*szValue)
1416     {
1417         sprintfW(Query, Delete, szName);
1418     }
1419     else if (rc == ERROR_MORE_DATA || rc == ERROR_SUCCESS)
1420     {
1421         sprintfW(Query, Update, szName);
1422
1423         row = MSI_CreateRecord(1);
1424         MSI_RecordSetStringW(row, 1, szValue);
1425     }
1426     else
1427     {
1428         strcpyW(Query, Insert);
1429
1430         row = MSI_CreateRecord(2);
1431         MSI_RecordSetStringW(row, 1, szName);
1432         MSI_RecordSetStringW(row, 2, szValue);
1433     }
1434
1435     rc = MSI_DatabaseOpenViewW(package->db, Query, &view);
1436     if (rc == ERROR_SUCCESS)
1437     {
1438         rc = MSI_ViewExecute(view, row);
1439         MSI_ViewClose(view);
1440         msiobj_release(&view->hdr);
1441     }
1442
1443     if (row)
1444       msiobj_release(&row->hdr);
1445
1446     if (rc == ERROR_SUCCESS && (!lstrcmpW(szName, cszSourceDir)))
1447         msi_reset_folders(package, TRUE);
1448
1449     return rc;
1450 }
1451
1452 UINT WINAPI MsiSetPropertyW( MSIHANDLE hInstall, LPCWSTR szName, LPCWSTR szValue)
1453 {
1454     MSIPACKAGE *package;
1455     UINT ret;
1456
1457     package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
1458     if( !package )
1459     {
1460         HRESULT hr;
1461         BSTR name = NULL, value = NULL;
1462         IWineMsiRemotePackage *remote_package;
1463
1464         remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
1465         if (!remote_package)
1466             return ERROR_INVALID_HANDLE;
1467
1468         name = SysAllocString( szName );
1469         value = SysAllocString( szValue );
1470         if ((!name && szName) || (!value && szValue))
1471         {
1472             SysFreeString( name );
1473             SysFreeString( value );
1474             IWineMsiRemotePackage_Release( remote_package );
1475             return ERROR_OUTOFMEMORY;
1476         }
1477
1478         hr = IWineMsiRemotePackage_SetProperty( remote_package, name, value );
1479
1480         SysFreeString( name );
1481         SysFreeString( value );
1482         IWineMsiRemotePackage_Release( remote_package );
1483
1484         if (FAILED(hr))
1485         {
1486             if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1487                 return HRESULT_CODE(hr);
1488
1489             return ERROR_FUNCTION_FAILED;
1490         }
1491
1492         return ERROR_SUCCESS;
1493     }
1494
1495     ret = MSI_SetPropertyW( package, szName, szValue);
1496     msiobj_release( &package->hdr );
1497     return ret;
1498 }
1499
1500 static MSIRECORD *MSI_GetPropertyRow( MSIPACKAGE *package, LPCWSTR name )
1501 {
1502     MSIQUERY *view;
1503     MSIRECORD *rec, *row = NULL;
1504     UINT r;
1505
1506     static const WCHAR query[]= {
1507         'S','E','L','E','C','T',' ','`','V','a','l','u','e','`',' ',
1508         'F','R','O','M',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
1509         ' ','W','H','E','R','E',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
1510         '=','?',0};
1511
1512     if (!name || !*name)
1513         return NULL;
1514
1515     rec = MSI_CreateRecord(1);
1516     if (!rec)
1517         return NULL;
1518
1519     MSI_RecordSetStringW(rec, 1, name);
1520
1521     r = MSI_DatabaseOpenViewW(package->db, query, &view);
1522     if (r == ERROR_SUCCESS)
1523     {
1524         MSI_ViewExecute(view, rec);
1525         MSI_ViewFetch(view, &row);
1526         MSI_ViewClose(view);
1527         msiobj_release(&view->hdr);
1528     }
1529
1530     msiobj_release(&rec->hdr);
1531     return row;
1532 }
1533
1534 /* internal function, not compatible with MsiGetPropertyW */
1535 UINT MSI_GetPropertyW( MSIPACKAGE *package, LPCWSTR szName, 
1536                        LPWSTR szValueBuf, LPDWORD pchValueBuf )
1537 {
1538     MSIRECORD *row;
1539     UINT rc = ERROR_FUNCTION_FAILED;
1540
1541     row = MSI_GetPropertyRow( package, szName );
1542
1543     if (*pchValueBuf > 0)
1544         szValueBuf[0] = 0;
1545
1546     if (row)
1547     {
1548         rc = MSI_RecordGetStringW(row, 1, szValueBuf, pchValueBuf);
1549         msiobj_release(&row->hdr);
1550     }
1551
1552     if (rc == ERROR_SUCCESS)
1553         TRACE("returning %s for property %s\n", debugstr_w(szValueBuf),
1554             debugstr_w(szName));
1555     else if (rc == ERROR_MORE_DATA)
1556         TRACE("need %d sized buffer for %s\n", *pchValueBuf,
1557             debugstr_w(szName));
1558     else
1559     {
1560         *pchValueBuf = 0;
1561         TRACE("property %s not found\n", debugstr_w(szName));
1562     }
1563
1564     return rc;
1565 }
1566
1567 LPWSTR msi_dup_property(MSIPACKAGE *package, LPCWSTR prop)
1568 {
1569     DWORD sz = 0;
1570     LPWSTR str;
1571     UINT r;
1572
1573     r = MSI_GetPropertyW(package, prop, NULL, &sz);
1574     if (r != ERROR_SUCCESS && r != ERROR_MORE_DATA)
1575         return NULL;
1576
1577     sz++;
1578     str = msi_alloc(sz * sizeof(WCHAR));
1579     r = MSI_GetPropertyW(package, prop, str, &sz);
1580     if (r != ERROR_SUCCESS)
1581     {
1582         msi_free(str);
1583         str = NULL;
1584     }
1585
1586     return str;
1587 }
1588
1589 int msi_get_property_int(MSIPACKAGE *package, LPCWSTR prop, int def)
1590 {
1591     LPWSTR str = msi_dup_property(package, prop);
1592     int val = str ? atoiW(str) : def;
1593     msi_free(str);
1594     return val;
1595 }
1596
1597 static UINT MSI_GetProperty( MSIHANDLE handle, LPCWSTR name,
1598                              awstring *szValueBuf, LPDWORD pchValueBuf )
1599 {
1600     MSIPACKAGE *package;
1601     MSIRECORD *row = NULL;
1602     UINT r = ERROR_FUNCTION_FAILED;
1603     LPCWSTR val = NULL;
1604
1605     TRACE("%u %s %p %p\n", handle, debugstr_w(name),
1606           szValueBuf->str.w, pchValueBuf );
1607
1608     if (!name)
1609         return ERROR_INVALID_PARAMETER;
1610
1611     package = msihandle2msiinfo( handle, MSIHANDLETYPE_PACKAGE );
1612     if (!package)
1613     {
1614         HRESULT hr;
1615         IWineMsiRemotePackage *remote_package;
1616         LPWSTR value = NULL;
1617         BSTR bname;
1618         DWORD len;
1619
1620         remote_package = (IWineMsiRemotePackage *)msi_get_remote( handle );
1621         if (!remote_package)
1622             return ERROR_INVALID_HANDLE;
1623
1624         bname = SysAllocString( name );
1625         if (!bname)
1626         {
1627             IWineMsiRemotePackage_Release( remote_package );
1628             return ERROR_OUTOFMEMORY;
1629         }
1630
1631         len = 0;
1632         hr = IWineMsiRemotePackage_GetProperty( remote_package, bname, NULL, &len );
1633         if (FAILED(hr))
1634             goto done;
1635
1636         len++;
1637         value = msi_alloc(len * sizeof(WCHAR));
1638         if (!value)
1639         {
1640             r = ERROR_OUTOFMEMORY;
1641             goto done;
1642         }
1643
1644         hr = IWineMsiRemotePackage_GetProperty( remote_package, bname, (BSTR *)value, &len );
1645         if (FAILED(hr))
1646             goto done;
1647
1648         r = msi_strcpy_to_awstring( value, szValueBuf, pchValueBuf );
1649
1650         /* Bug required by Adobe installers */
1651         if (!szValueBuf->unicode && !szValueBuf->str.a)
1652             *pchValueBuf *= sizeof(WCHAR);
1653
1654 done:
1655         IWineMsiRemotePackage_Release(remote_package);
1656         SysFreeString(bname);
1657         msi_free(value);
1658
1659         if (FAILED(hr))
1660         {
1661             if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1662                 return HRESULT_CODE(hr);
1663
1664             return ERROR_FUNCTION_FAILED;
1665         }
1666
1667         return r;
1668     }
1669
1670     row = MSI_GetPropertyRow( package, name );
1671     if (row)
1672         val = MSI_RecordGetString( row, 1 );
1673
1674     if (!val)
1675         val = szEmpty;
1676
1677     r = msi_strcpy_to_awstring( val, szValueBuf, pchValueBuf );
1678
1679     if (row)
1680         msiobj_release( &row->hdr );
1681     msiobj_release( &package->hdr );
1682
1683     return r;
1684 }
1685
1686 UINT WINAPI MsiGetPropertyA( MSIHANDLE hInstall, LPCSTR szName,
1687                              LPSTR szValueBuf, LPDWORD pchValueBuf )
1688 {
1689     awstring val;
1690     LPWSTR name;
1691     UINT r;
1692
1693     val.unicode = FALSE;
1694     val.str.a = szValueBuf;
1695
1696     name = strdupAtoW( szName );
1697     if (szName && !name)
1698         return ERROR_OUTOFMEMORY;
1699
1700     r = MSI_GetProperty( hInstall, name, &val, pchValueBuf );
1701     msi_free( name );
1702     return r;
1703 }
1704
1705 UINT WINAPI MsiGetPropertyW( MSIHANDLE hInstall, LPCWSTR szName,
1706                              LPWSTR szValueBuf, LPDWORD pchValueBuf )
1707 {
1708     awstring val;
1709
1710     val.unicode = TRUE;
1711     val.str.w = szValueBuf;
1712
1713     return MSI_GetProperty( hInstall, szName, &val, pchValueBuf );
1714 }
1715
1716 typedef struct _msi_remote_package_impl {
1717     const IWineMsiRemotePackageVtbl *lpVtbl;
1718     MSIHANDLE package;
1719     LONG refs;
1720 } msi_remote_package_impl;
1721
1722 static inline msi_remote_package_impl* mrp_from_IWineMsiRemotePackage( IWineMsiRemotePackage* iface )
1723 {
1724     return (msi_remote_package_impl*) iface;
1725 }
1726
1727 static HRESULT WINAPI mrp_QueryInterface( IWineMsiRemotePackage *iface,
1728                 REFIID riid,LPVOID *ppobj)
1729 {
1730     if( IsEqualCLSID( riid, &IID_IUnknown ) ||
1731         IsEqualCLSID( riid, &IID_IWineMsiRemotePackage ) )
1732     {
1733         IUnknown_AddRef( iface );
1734         *ppobj = iface;
1735         return S_OK;
1736     }
1737
1738     return E_NOINTERFACE;
1739 }
1740
1741 static ULONG WINAPI mrp_AddRef( IWineMsiRemotePackage *iface )
1742 {
1743     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1744
1745     return InterlockedIncrement( &This->refs );
1746 }
1747
1748 static ULONG WINAPI mrp_Release( IWineMsiRemotePackage *iface )
1749 {
1750     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1751     ULONG r;
1752
1753     r = InterlockedDecrement( &This->refs );
1754     if (r == 0)
1755     {
1756         MsiCloseHandle( This->package );
1757         msi_free( This );
1758     }
1759     return r;
1760 }
1761
1762 static HRESULT WINAPI mrp_SetMsiHandle( IWineMsiRemotePackage *iface, MSIHANDLE handle )
1763 {
1764     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1765     This->package = handle;
1766     return S_OK;
1767 }
1768
1769 static HRESULT WINAPI mrp_GetActiveDatabase( IWineMsiRemotePackage *iface, MSIHANDLE *handle )
1770 {
1771     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1772     IWineMsiRemoteDatabase *rdb = NULL;
1773     HRESULT hr;
1774     MSIHANDLE hdb;
1775
1776     hr = create_msi_remote_database( NULL, (LPVOID *)&rdb );
1777     if (FAILED(hr) || !rdb)
1778     {
1779         ERR("Failed to create remote database\n");
1780         return hr;
1781     }
1782
1783     hdb = MsiGetActiveDatabase(This->package);
1784
1785     hr = IWineMsiRemoteDatabase_SetMsiHandle( rdb, hdb );
1786     if (FAILED(hr))
1787     {
1788         ERR("Failed to set the database handle\n");
1789         return hr;
1790     }
1791
1792     *handle = alloc_msi_remote_handle( (IUnknown *)rdb );
1793     return S_OK;
1794 }
1795
1796 static HRESULT WINAPI mrp_GetProperty( IWineMsiRemotePackage *iface, BSTR property, BSTR *value, DWORD *size )
1797 {
1798     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1799     UINT r;
1800
1801     r = MsiGetPropertyW(This->package, (LPWSTR)property, (LPWSTR)value, size);
1802     if (r != ERROR_SUCCESS)
1803         return HRESULT_FROM_WIN32(r);
1804
1805     return S_OK;
1806 }
1807
1808 static HRESULT WINAPI mrp_SetProperty( IWineMsiRemotePackage *iface, BSTR property, BSTR value )
1809 {
1810     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1811     UINT r = MsiSetPropertyW(This->package, property, value);
1812     return HRESULT_FROM_WIN32(r);
1813 }
1814
1815 static HRESULT WINAPI mrp_ProcessMessage( IWineMsiRemotePackage *iface, INSTALLMESSAGE message, MSIHANDLE record )
1816 {
1817     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1818     UINT r = MsiProcessMessage(This->package, message, record);
1819     return HRESULT_FROM_WIN32(r);
1820 }
1821
1822 static HRESULT WINAPI mrp_DoAction( IWineMsiRemotePackage *iface, BSTR action )
1823 {
1824     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1825     UINT r = MsiDoActionW(This->package, action);
1826     return HRESULT_FROM_WIN32(r);
1827 }
1828
1829 static HRESULT WINAPI mrp_Sequence( IWineMsiRemotePackage *iface, BSTR table, int sequence )
1830 {
1831     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1832     UINT r = MsiSequenceW(This->package, table, sequence);
1833     return HRESULT_FROM_WIN32(r);
1834 }
1835
1836 static HRESULT WINAPI mrp_GetTargetPath( IWineMsiRemotePackage *iface, BSTR folder, BSTR *value, DWORD *size )
1837 {
1838     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1839     UINT r = MsiGetTargetPathW(This->package, (LPWSTR)folder, (LPWSTR)value, size);
1840     return HRESULT_FROM_WIN32(r);
1841 }
1842
1843 static HRESULT WINAPI mrp_SetTargetPath( IWineMsiRemotePackage *iface, BSTR folder, BSTR value)
1844 {
1845     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1846     UINT r = MsiSetTargetPathW(This->package, folder, value);
1847     return HRESULT_FROM_WIN32(r);
1848 }
1849
1850 static HRESULT WINAPI mrp_GetSourcePath( IWineMsiRemotePackage *iface, BSTR folder, BSTR *value, DWORD *size )
1851 {
1852     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1853     UINT r = MsiGetSourcePathW(This->package, (LPWSTR)folder, (LPWSTR)value, size);
1854     return HRESULT_FROM_WIN32(r);
1855 }
1856
1857 static HRESULT WINAPI mrp_GetMode( IWineMsiRemotePackage *iface, MSIRUNMODE mode, BOOL *ret )
1858 {
1859     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1860     *ret = MsiGetMode(This->package, mode);
1861     return S_OK;
1862 }
1863
1864 static HRESULT WINAPI mrp_GetFeatureState( IWineMsiRemotePackage *iface, BSTR feature,
1865                                     INSTALLSTATE *installed, INSTALLSTATE *action )
1866 {
1867     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1868     UINT r = MsiGetFeatureStateW(This->package, feature, installed, action);
1869     return HRESULT_FROM_WIN32(r);
1870 }
1871
1872 static HRESULT WINAPI mrp_SetFeatureState( IWineMsiRemotePackage *iface, BSTR feature, INSTALLSTATE state )
1873 {
1874     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1875     UINT r = MsiSetFeatureStateW(This->package, feature, state);
1876     return HRESULT_FROM_WIN32(r);
1877 }
1878
1879 static HRESULT WINAPI mrp_GetComponentState( IWineMsiRemotePackage *iface, BSTR component,
1880                                       INSTALLSTATE *installed, INSTALLSTATE *action )
1881 {
1882     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1883     UINT r = MsiGetComponentStateW(This->package, component, installed, action);
1884     return HRESULT_FROM_WIN32(r);
1885 }
1886
1887 static HRESULT WINAPI mrp_SetComponentState( IWineMsiRemotePackage *iface, BSTR component, INSTALLSTATE state )
1888 {
1889     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1890     UINT r = MsiSetComponentStateW(This->package, component, state);
1891     return HRESULT_FROM_WIN32(r);
1892 }
1893
1894 static HRESULT WINAPI mrp_GetLanguage( IWineMsiRemotePackage *iface, LANGID *language )
1895 {
1896     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1897     *language = MsiGetLanguage(This->package);
1898     return S_OK;
1899 }
1900
1901 static HRESULT WINAPI mrp_SetInstallLevel( IWineMsiRemotePackage *iface, int level )
1902 {
1903     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1904     UINT r = MsiSetInstallLevel(This->package, level);
1905     return HRESULT_FROM_WIN32(r);
1906 }
1907
1908 static HRESULT WINAPI mrp_FormatRecord( IWineMsiRemotePackage *iface, MSIHANDLE record,
1909                                         BSTR *value)
1910 {
1911     DWORD size = 0;
1912     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1913     UINT r = MsiFormatRecordW(This->package, record, NULL, &size);
1914     if (r == ERROR_SUCCESS)
1915     {
1916         *value = SysAllocStringLen(NULL, size);
1917         if (!*value)
1918             return E_OUTOFMEMORY;
1919         size++;
1920         r = MsiFormatRecordW(This->package, record, *value, &size);
1921     }
1922     return HRESULT_FROM_WIN32(r);
1923 }
1924
1925 static HRESULT WINAPI mrp_EvaluateCondition( IWineMsiRemotePackage *iface, BSTR condition )
1926 {
1927     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1928     UINT r = MsiEvaluateConditionW(This->package, condition);
1929     return HRESULT_FROM_WIN32(r);
1930 }
1931
1932 static HRESULT WINAPI mrp_GetFeatureCost( IWineMsiRemotePackage *iface, BSTR feature,
1933                                           INT cost_tree, INSTALLSTATE state, INT *cost )
1934 {
1935     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1936     UINT r = MsiGetFeatureCostW(This->package, feature, cost_tree, state, cost);
1937     return HRESULT_FROM_WIN32(r);
1938 }
1939
1940 static const IWineMsiRemotePackageVtbl msi_remote_package_vtbl =
1941 {
1942     mrp_QueryInterface,
1943     mrp_AddRef,
1944     mrp_Release,
1945     mrp_SetMsiHandle,
1946     mrp_GetActiveDatabase,
1947     mrp_GetProperty,
1948     mrp_SetProperty,
1949     mrp_ProcessMessage,
1950     mrp_DoAction,
1951     mrp_Sequence,
1952     mrp_GetTargetPath,
1953     mrp_SetTargetPath,
1954     mrp_GetSourcePath,
1955     mrp_GetMode,
1956     mrp_GetFeatureState,
1957     mrp_SetFeatureState,
1958     mrp_GetComponentState,
1959     mrp_SetComponentState,
1960     mrp_GetLanguage,
1961     mrp_SetInstallLevel,
1962     mrp_FormatRecord,
1963     mrp_EvaluateCondition,
1964     mrp_GetFeatureCost,
1965 };
1966
1967 HRESULT create_msi_remote_package( IUnknown *pOuter, LPVOID *ppObj )
1968 {
1969     msi_remote_package_impl* This;
1970
1971     This = msi_alloc( sizeof *This );
1972     if (!This)
1973         return E_OUTOFMEMORY;
1974
1975     This->lpVtbl = &msi_remote_package_vtbl;
1976     This->package = 0;
1977     This->refs = 1;
1978
1979     *ppObj = This;
1980
1981     return S_OK;
1982 }
1983
1984 UINT msi_package_add_info(MSIPACKAGE *package, DWORD context, DWORD options,
1985                           LPCWSTR property, LPWSTR value)
1986 {
1987     MSISOURCELISTINFO *info;
1988
1989     info = msi_alloc(sizeof(MSISOURCELISTINFO));
1990     if (!info)
1991         return ERROR_OUTOFMEMORY;
1992
1993     info->context = context;
1994     info->options = options;
1995     info->property = property;
1996     info->value = strdupW(value);
1997     list_add_head(&package->sourcelist_info, &info->entry);
1998
1999     return ERROR_SUCCESS;
2000 }
2001
2002 UINT msi_package_add_media_disk(MSIPACKAGE *package, DWORD context, DWORD options,
2003                                 DWORD disk_id, LPWSTR volume_label, LPWSTR disk_prompt)
2004 {
2005     MSIMEDIADISK *disk;
2006
2007     disk = msi_alloc(sizeof(MSIMEDIADISK));
2008     if (!disk)
2009         return ERROR_OUTOFMEMORY;
2010
2011     disk->context = context;
2012     disk->options = options;
2013     disk->disk_id = disk_id;
2014     disk->volume_label = strdupW(volume_label);
2015     disk->disk_prompt = strdupW(disk_prompt);
2016     list_add_head(&package->sourcelist_media, &disk->entry);
2017
2018     return ERROR_SUCCESS;
2019 }