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