msi: Fix a copy and paste error.
[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 MSIPACKAGE *MSI_CreatePackage( MSIDATABASE *db, LPCWSTR base_url )
764 {
765     static const WCHAR szLevel[] = { 'U','I','L','e','v','e','l',0 };
766     static const WCHAR szpi[] = {'%','i',0};
767     static const WCHAR szProductCode[] = {
768         'P','r','o','d','u','c','t','C','o','d','e',0};
769     MSIPACKAGE *package;
770     WCHAR uilevel[10];
771     UINT r;
772
773     TRACE("%p\n", db);
774
775     package = msi_alloc_package();
776     if (package)
777     {
778         msiobj_addref( &db->hdr );
779         package->db = db;
780
781         package->WordCount = 0;
782         package->PackagePath = strdupW( db->path );
783         package->BaseURL = strdupW( base_url );
784
785         create_temp_property_table( package );
786         msi_clone_properties( package );
787         set_installer_properties(package);
788         sprintfW(uilevel,szpi,gUILevel);
789         MSI_SetPropertyW(package, szLevel, uilevel);
790
791         package->ProductCode = msi_dup_property( package, szProductCode );
792         set_installed_prop( package );
793         r = msi_load_summary_properties( package );
794         if (r != ERROR_SUCCESS)
795         {
796             msiobj_release( &package->hdr );
797             return NULL;
798         }
799
800         if (package->WordCount & msidbSumInfoSourceTypeAdminImage)
801             msi_load_admin_properties( package );
802     }
803
804     return package;
805 }
806
807 /*
808  * copy_package_to_temp   [internal]
809  *
810  * copy the msi file to a temp file to prevent locking a CD
811  * with a multi disc install 
812  *
813  * FIXME: I think this is wrong, and instead of copying the package,
814  *        we should read all the tables to memory, then open the
815  *        database to read binary streams on demand.
816  */ 
817 static LPCWSTR copy_package_to_temp( LPCWSTR szPackage, LPWSTR filename )
818 {
819     WCHAR path[MAX_PATH];
820     static const WCHAR szMSI[] = {'m','s','i',0};
821
822     GetTempPathW( MAX_PATH, path );
823     GetTempFileNameW( path, szMSI, 0, filename );
824
825     if( !CopyFileW( szPackage, filename, FALSE ) )
826     {
827         DeleteFileW( filename );
828         ERR("failed to copy package %s\n", debugstr_w(szPackage) );
829         return szPackage;
830     }
831
832     TRACE("Opening relocated package %s\n", debugstr_w( filename ));
833     return filename;
834 }
835
836 LPCWSTR msi_download_file( LPCWSTR szUrl, LPWSTR filename )
837 {
838     LPINTERNET_CACHE_ENTRY_INFOW cache_entry;
839     DWORD size = 0;
840     HRESULT hr;
841
842     /* call will always fail, becase size is 0,
843      * but will return ERROR_FILE_NOT_FOUND first
844      * if the file doesn't exist
845      */
846     GetUrlCacheEntryInfoW( szUrl, NULL, &size );
847     if ( GetLastError() != ERROR_FILE_NOT_FOUND )
848     {
849         cache_entry = HeapAlloc( GetProcessHeap(), 0, size );
850         if ( !GetUrlCacheEntryInfoW( szUrl, cache_entry, &size ) )
851         {
852             HeapFree( GetProcessHeap(), 0, cache_entry );
853             return szUrl;
854         }
855
856         lstrcpyW( filename, cache_entry->lpszLocalFileName );
857         HeapFree( GetProcessHeap(), 0, cache_entry );
858         return filename;
859     }
860
861     hr = URLDownloadToCacheFileW( NULL, szUrl, filename, MAX_PATH, 0, NULL );
862     if ( FAILED(hr) )
863         return szUrl;
864
865     return filename;
866 }
867
868 UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
869 {
870     static const WCHAR OriginalDatabase[] =
871         {'O','r','i','g','i','n','a','l','D','a','t','a','b','a','s','e',0};
872     static const WCHAR Database[] = {'D','A','T','A','B','A','S','E',0};
873     MSIDATABASE *db = NULL;
874     MSIPACKAGE *package;
875     MSIHANDLE handle;
876     LPWSTR ptr, base_url = NULL;
877     UINT r;
878     WCHAR temppath[MAX_PATH];
879     LPCWSTR file = szPackage;
880
881     TRACE("%s %p\n", debugstr_w(szPackage), pPackage);
882
883     if( szPackage[0] == '#' )
884     {
885         handle = atoiW(&szPackage[1]);
886         db = msihandle2msiinfo( handle, MSIHANDLETYPE_DATABASE );
887         if( !db )
888         {
889             IWineMsiRemoteDatabase *remote_database;
890
891             remote_database = (IWineMsiRemoteDatabase *)msi_get_remote( handle );
892             if ( !remote_database )
893                 return ERROR_INVALID_HANDLE;
894
895             IWineMsiRemoteDatabase_Release( remote_database );
896             WARN("MsiOpenPackage not allowed during a custom action!\n");
897
898             return ERROR_FUNCTION_FAILED;
899         }
900     }
901     else
902     {
903         if ( UrlIsW( szPackage, URLIS_URL ) )
904         {
905             file = msi_download_file( szPackage, temppath );
906
907             base_url = strdupW( szPackage );
908             if ( !base_url )
909                 return ERROR_OUTOFMEMORY;
910
911             ptr = strrchrW( base_url, '/' );
912             if (ptr) *(ptr + 1) = '\0';
913         }
914         else
915             file = copy_package_to_temp( szPackage, temppath );
916
917         r = MSI_OpenDatabaseW( file, MSIDBOPEN_READONLY, &db );
918         if( r != ERROR_SUCCESS )
919         {
920             if (file != szPackage)
921                 DeleteFileW( file );
922
923             if (GetFileAttributesW(szPackage) == INVALID_FILE_ATTRIBUTES)
924                 return ERROR_FILE_NOT_FOUND;
925
926             return r;
927         }
928     }
929
930     package = MSI_CreatePackage( db, base_url );
931     msi_free( base_url );
932     msiobj_release( &db->hdr );
933     if( !package )
934     {
935         if (file != szPackage)
936             DeleteFileW( file );
937
938         return ERROR_INSTALL_PACKAGE_INVALID;
939     }
940
941     if( file != szPackage )
942         track_tempfile( package, file );
943
944     MSI_SetPropertyW( package, Database, db->path );
945
946     if( UrlIsW( szPackage, URLIS_URL ) )
947         MSI_SetPropertyW( package, OriginalDatabase, szPackage );
948     else if( szPackage[0] == '#' )
949         MSI_SetPropertyW( package, OriginalDatabase, db->path );
950     else
951     {
952         WCHAR fullpath[MAX_PATH];
953
954         GetFullPathNameW( szPackage, MAX_PATH, fullpath, NULL );
955         MSI_SetPropertyW( package, OriginalDatabase, fullpath );
956     }
957
958     *pPackage = package;
959
960     return ERROR_SUCCESS;
961 }
962
963 UINT WINAPI MsiOpenPackageExW(LPCWSTR szPackage, DWORD dwOptions, MSIHANDLE *phPackage)
964 {
965     MSIPACKAGE *package = NULL;
966     UINT ret;
967
968     TRACE("%s %08x %p\n", debugstr_w(szPackage), dwOptions, phPackage );
969
970     if( !szPackage || !phPackage )
971         return ERROR_INVALID_PARAMETER;
972
973     if ( !*szPackage )
974     {
975         FIXME("Should create an empty database and package\n");
976         return ERROR_FUNCTION_FAILED;
977     }
978
979     if( dwOptions )
980         FIXME("dwOptions %08x not supported\n", dwOptions);
981
982     ret = MSI_OpenPackageW( szPackage, &package );
983     if( ret == ERROR_SUCCESS )
984     {
985         *phPackage = alloc_msihandle( &package->hdr );
986         if (! *phPackage)
987             ret = ERROR_NOT_ENOUGH_MEMORY;
988         msiobj_release( &package->hdr );
989     }
990
991     return ret;
992 }
993
994 UINT WINAPI MsiOpenPackageW(LPCWSTR szPackage, MSIHANDLE *phPackage)
995 {
996     return MsiOpenPackageExW( szPackage, 0, phPackage );
997 }
998
999 UINT WINAPI MsiOpenPackageExA(LPCSTR szPackage, DWORD dwOptions, MSIHANDLE *phPackage)
1000 {
1001     LPWSTR szwPack = NULL;
1002     UINT ret;
1003
1004     if( szPackage )
1005     {
1006         szwPack = strdupAtoW( szPackage );
1007         if( !szwPack )
1008             return ERROR_OUTOFMEMORY;
1009     }
1010
1011     ret = MsiOpenPackageExW( szwPack, dwOptions, phPackage );
1012
1013     msi_free( szwPack );
1014
1015     return ret;
1016 }
1017
1018 UINT WINAPI MsiOpenPackageA(LPCSTR szPackage, MSIHANDLE *phPackage)
1019 {
1020     return MsiOpenPackageExA( szPackage, 0, phPackage );
1021 }
1022
1023 MSIHANDLE WINAPI MsiGetActiveDatabase(MSIHANDLE hInstall)
1024 {
1025     MSIPACKAGE *package;
1026     MSIHANDLE handle = 0;
1027     IWineMsiRemotePackage *remote_package;
1028
1029     TRACE("(%ld)\n",hInstall);
1030
1031     package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
1032     if( package)
1033     {
1034         handle = alloc_msihandle( &package->db->hdr );
1035         msiobj_release( &package->hdr );
1036     }
1037     else if ((remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall )))
1038     {
1039         IWineMsiRemotePackage_GetActiveDatabase(remote_package, &handle);
1040         IWineMsiRemotePackage_Release(remote_package);
1041     }
1042
1043     return handle;
1044 }
1045
1046 INT MSI_ProcessMessage( MSIPACKAGE *package, INSTALLMESSAGE eMessageType,
1047                                MSIRECORD *record)
1048 {
1049     static const WCHAR szActionData[] =
1050         {'A','c','t','i','o','n','D','a','t','a',0};
1051     static const WCHAR szSetProgress[] =
1052         {'S','e','t','P','r','o','g','r','e','s','s',0};
1053     static const WCHAR szActionText[] =
1054         {'A','c','t','i','o','n','T','e','x','t',0};
1055     DWORD log_type = 0;
1056     LPWSTR message;
1057     DWORD sz;
1058     DWORD total_size = 0;
1059     INT i;
1060     INT rc;
1061     char *msg;
1062     int len;
1063
1064     TRACE("%x\n", eMessageType);
1065     rc = 0;
1066
1067     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ERROR)
1068         log_type |= INSTALLLOGMODE_ERROR;
1069     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_WARNING)
1070         log_type |= INSTALLLOGMODE_WARNING;
1071     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_USER)
1072         log_type |= INSTALLLOGMODE_USER;
1073     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_INFO)
1074         log_type |= INSTALLLOGMODE_INFO;
1075     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_COMMONDATA)
1076         log_type |= INSTALLLOGMODE_COMMONDATA;
1077     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONSTART)
1078         log_type |= INSTALLLOGMODE_ACTIONSTART;
1079     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONDATA)
1080         log_type |= INSTALLLOGMODE_ACTIONDATA;
1081     /* just a guess */
1082     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_PROGRESS)
1083         log_type |= 0x800;
1084
1085     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONSTART)
1086     {
1087         static const WCHAR template_s[]=
1088             {'A','c','t','i','o','n',' ','%','s',':',' ','%','s','.',' ',0};
1089         static const WCHAR format[] = 
1090             {'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0};
1091         WCHAR timet[0x100];
1092         LPCWSTR action_text, action;
1093         LPWSTR deformatted = NULL;
1094
1095         GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, format, timet, 0x100);
1096
1097         action = MSI_RecordGetString(record, 1);
1098         action_text = MSI_RecordGetString(record, 2);
1099
1100         if (!action || !action_text)
1101             return IDOK;
1102
1103         deformat_string(package, action_text, &deformatted);
1104
1105         len = strlenW(timet) + strlenW(action) + strlenW(template_s);
1106         if (deformatted)
1107             len += strlenW(deformatted);
1108         message = msi_alloc(len*sizeof(WCHAR));
1109         sprintfW(message, template_s, timet, action);
1110         if (deformatted)
1111             strcatW(message, deformatted);
1112         msi_free(deformatted);
1113     }
1114     else
1115     {
1116         INT msg_field=1;
1117         message = msi_alloc(1*sizeof (WCHAR));
1118         message[0]=0;
1119         msg_field = MSI_RecordGetFieldCount(record);
1120         for (i = 1; i <= msg_field; i++)
1121         {
1122             LPWSTR tmp;
1123             WCHAR number[3];
1124             static const WCHAR format[] = { '%','i',':',' ',0};
1125             static const WCHAR space[] = { ' ',0};
1126             sz = 0;
1127             MSI_RecordGetStringW(record,i,NULL,&sz);
1128             sz+=4;
1129             total_size+=sz*sizeof(WCHAR);
1130             tmp = msi_alloc(sz*sizeof(WCHAR));
1131             message = msi_realloc(message,total_size*sizeof (WCHAR));
1132
1133             MSI_RecordGetStringW(record,i,tmp,&sz);
1134
1135             if (msg_field > 1)
1136             {
1137                 sprintfW(number,format,i);
1138                 strcatW(message,number);
1139             }
1140             strcatW(message,tmp);
1141             if (msg_field > 1)
1142                 strcatW(message,space);
1143
1144             msi_free(tmp);
1145         }
1146     }
1147
1148     TRACE("(%p %x %x %s)\n", gUIHandlerA, gUIFilter, log_type,
1149                              debugstr_w(message));
1150
1151     /* convert it to ASCII */
1152     len = WideCharToMultiByte( CP_ACP, 0, message, -1,
1153                                NULL, 0, NULL, NULL );
1154     msg = msi_alloc( len );
1155     WideCharToMultiByte( CP_ACP, 0, message, -1,
1156                          msg, len, NULL, NULL );
1157
1158     if (gUIHandlerA && (gUIFilter & log_type))
1159     {
1160         rc = gUIHandlerA(gUIContext,eMessageType,msg);
1161     }
1162
1163     if ((!rc) && (gszLogFile[0]) && !((eMessageType & 0xff000000) ==
1164                                       INSTALLMESSAGE_PROGRESS))
1165     {
1166         DWORD write;
1167         HANDLE log_file = CreateFileW(gszLogFile,GENERIC_WRITE, 0, NULL,
1168                                   OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
1169
1170         if (log_file != INVALID_HANDLE_VALUE)
1171         {
1172             SetFilePointer(log_file,0, NULL, FILE_END);
1173             WriteFile(log_file,msg,strlen(msg),&write,NULL);
1174             WriteFile(log_file,"\n",1,&write,NULL);
1175             CloseHandle(log_file);
1176         }
1177     }
1178     msi_free( msg );
1179
1180     msi_free( message);
1181
1182     switch (eMessageType & 0xff000000)
1183     {
1184     case INSTALLMESSAGE_ACTIONDATA:
1185         /* FIXME: format record here instead of in ui_actiondata to get the
1186          * correct action data for external scripts */
1187         ControlEvent_FireSubscribedEvent(package, szActionData, record);
1188         break;
1189     case INSTALLMESSAGE_ACTIONSTART:
1190     {
1191         MSIRECORD *uirow;
1192         LPWSTR deformated;
1193         LPCWSTR action_text = MSI_RecordGetString(record, 2);
1194
1195         deformat_string(package, action_text, &deformated);
1196         uirow = MSI_CreateRecord(1);
1197         MSI_RecordSetStringW(uirow, 1, deformated);
1198         TRACE("INSTALLMESSAGE_ACTIONSTART: %s\n", debugstr_w(deformated));
1199         msi_free(deformated);
1200
1201         ControlEvent_FireSubscribedEvent(package, szActionText, uirow);
1202
1203         msiobj_release(&uirow->hdr);
1204         break;
1205     }
1206     case INSTALLMESSAGE_PROGRESS:
1207         ControlEvent_FireSubscribedEvent(package, szSetProgress, record);
1208         break;
1209     }
1210
1211     return ERROR_SUCCESS;
1212 }
1213
1214 INT WINAPI MsiProcessMessage( MSIHANDLE hInstall, INSTALLMESSAGE eMessageType,
1215                               MSIHANDLE hRecord)
1216 {
1217     UINT ret = ERROR_INVALID_HANDLE;
1218     MSIPACKAGE *package = NULL;
1219     MSIRECORD *record = NULL;
1220
1221     package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE );
1222     if( !package )
1223     {
1224         HRESULT hr;
1225         IWineMsiRemotePackage *remote_package;
1226
1227         remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
1228         if (!remote_package)
1229             return ERROR_INVALID_HANDLE;
1230
1231         hr = IWineMsiRemotePackage_ProcessMessage( remote_package, eMessageType, hRecord );
1232
1233         IWineMsiRemotePackage_Release( remote_package );
1234
1235         if (FAILED(hr))
1236         {
1237             if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1238                 return HRESULT_CODE(hr);
1239
1240             return ERROR_FUNCTION_FAILED;
1241         }
1242
1243         return ERROR_SUCCESS;
1244     }
1245
1246     record = msihandle2msiinfo( hRecord, MSIHANDLETYPE_RECORD );
1247     if( !record )
1248         goto out;
1249
1250     ret = MSI_ProcessMessage( package, eMessageType, record );
1251
1252 out:
1253     msiobj_release( &package->hdr );
1254     if( record )
1255         msiobj_release( &record->hdr );
1256
1257     return ret;
1258 }
1259
1260 /* property code */
1261
1262 UINT WINAPI MsiSetPropertyA( MSIHANDLE hInstall, LPCSTR szName, LPCSTR szValue )
1263 {
1264     LPWSTR szwName = NULL, szwValue = NULL;
1265     UINT r = ERROR_OUTOFMEMORY;
1266
1267     szwName = strdupAtoW( szName );
1268     if( szName && !szwName )
1269         goto end;
1270
1271     szwValue = strdupAtoW( szValue );
1272     if( szValue && !szwValue )
1273         goto end;
1274
1275     r = MsiSetPropertyW( hInstall, szwName, szwValue);
1276
1277 end:
1278     msi_free( szwName );
1279     msi_free( szwValue );
1280
1281     return r;
1282 }
1283
1284 UINT MSI_SetPropertyW( MSIPACKAGE *package, LPCWSTR szName, LPCWSTR szValue)
1285 {
1286     MSIQUERY *view;
1287     MSIRECORD *row = NULL;
1288     UINT rc;
1289     DWORD sz = 0;
1290     WCHAR Query[1024];
1291
1292     static const WCHAR Insert[] = {
1293         'I','N','S','E','R','T',' ','i','n','t','o',' ',
1294         '`','_','P','r','o','p','e','r','t','y','`',' ','(',
1295         '`','_','P','r','o','p','e','r','t','y','`',',',
1296         '`','V','a','l','u','e','`',')',' ','V','A','L','U','E','S'
1297         ,' ','(','?',',','?',')',0};
1298     static const WCHAR Update[] = {
1299         'U','P','D','A','T','E',' ','`','_','P','r','o','p','e','r','t','y','`',
1300         ' ','s','e','t',' ','`','V','a','l','u','e','`',' ','=',' ','?',' ',
1301         'w','h','e','r','e',' ','`','_','P','r','o','p','e','r','t','y','`',
1302         ' ','=',' ','\'','%','s','\'',0};
1303     static const WCHAR Delete[] = {
1304         'D','E','L','E','T','E',' ','F','R','O','M',' ',
1305         '`','_','P','r','o','p','e','r','t','y','`',' ','W','H','E','R','E',' ',
1306         '`','_','P','r','o','p','e','r','t','y','`',' ','=',' ','\'','%','s','\'',0};
1307
1308     TRACE("%p %s %s\n", package, debugstr_w(szName), debugstr_w(szValue));
1309
1310     if (!szName)
1311         return ERROR_INVALID_PARAMETER;
1312
1313     /* this one is weird... */
1314     if (!szName[0])
1315         return szValue ? ERROR_FUNCTION_FAILED : ERROR_SUCCESS;
1316
1317     rc = MSI_GetPropertyW(package, szName, 0, &sz);
1318     if (!szValue || !*szValue)
1319     {
1320         sprintfW(Query, Delete, szName);
1321     }
1322     else if (rc == ERROR_MORE_DATA || rc == ERROR_SUCCESS)
1323     {
1324         sprintfW(Query, Update, szName);
1325
1326         row = MSI_CreateRecord(1);
1327         MSI_RecordSetStringW(row, 1, szValue);
1328     }
1329     else
1330     {
1331         strcpyW(Query, Insert);
1332
1333         row = MSI_CreateRecord(2);
1334         MSI_RecordSetStringW(row, 1, szName);
1335         MSI_RecordSetStringW(row, 2, szValue);
1336     }
1337
1338     rc = MSI_DatabaseOpenViewW(package->db, Query, &view);
1339     if (rc == ERROR_SUCCESS)
1340     {
1341         rc = MSI_ViewExecute(view, row);
1342         MSI_ViewClose(view);
1343         msiobj_release(&view->hdr);
1344     }
1345
1346     msiobj_release(&row->hdr);
1347
1348     if (rc == ERROR_SUCCESS && (!lstrcmpW(szName, cszSourceDir)))
1349         msi_reset_folders(package, TRUE);
1350
1351     return rc;
1352 }
1353
1354 UINT WINAPI MsiSetPropertyW( MSIHANDLE hInstall, LPCWSTR szName, LPCWSTR szValue)
1355 {
1356     MSIPACKAGE *package;
1357     UINT ret;
1358
1359     package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
1360     if( !package )
1361     {
1362         HRESULT hr;
1363         BSTR name = NULL, value = NULL;
1364         IWineMsiRemotePackage *remote_package;
1365
1366         remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
1367         if (!remote_package)
1368             return ERROR_INVALID_HANDLE;
1369
1370         name = SysAllocString( szName );
1371         value = SysAllocString( szValue );
1372         if ((!name && szName) || (!value && szValue))
1373         {
1374             SysFreeString( name );
1375             SysFreeString( value );
1376             IWineMsiRemotePackage_Release( remote_package );
1377             return ERROR_OUTOFMEMORY;
1378         }
1379
1380         hr = IWineMsiRemotePackage_SetProperty( remote_package, name, value );
1381
1382         SysFreeString( name );
1383         SysFreeString( value );
1384         IWineMsiRemotePackage_Release( remote_package );
1385
1386         if (FAILED(hr))
1387         {
1388             if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1389                 return HRESULT_CODE(hr);
1390
1391             return ERROR_FUNCTION_FAILED;
1392         }
1393
1394         return ERROR_SUCCESS;
1395     }
1396
1397     ret = MSI_SetPropertyW( package, szName, szValue);
1398     msiobj_release( &package->hdr );
1399     return ret;
1400 }
1401
1402 static MSIRECORD *MSI_GetPropertyRow( MSIPACKAGE *package, LPCWSTR name )
1403 {
1404     static const WCHAR query[]= {
1405         'S','E','L','E','C','T',' ','`','V','a','l','u','e','`',' ',
1406         'F','R','O','M',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
1407         ' ','W','H','E','R','E',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
1408         '=','\'','%','s','\'',0};
1409
1410     if (!name || !*name)
1411         return NULL;
1412
1413     return MSI_QueryGetRecord( package->db, query, name );
1414 }
1415
1416 /* internal function, not compatible with MsiGetPropertyW */
1417 UINT MSI_GetPropertyW( MSIPACKAGE *package, LPCWSTR szName, 
1418                        LPWSTR szValueBuf, LPDWORD pchValueBuf )
1419 {
1420     MSIRECORD *row;
1421     UINT rc = ERROR_FUNCTION_FAILED;
1422
1423     row = MSI_GetPropertyRow( package, szName );
1424
1425     if (*pchValueBuf > 0)
1426         szValueBuf[0] = 0;
1427
1428     if (row)
1429     {
1430         rc = MSI_RecordGetStringW(row, 1, szValueBuf, pchValueBuf);
1431         msiobj_release(&row->hdr);
1432     }
1433
1434     if (rc == ERROR_SUCCESS)
1435         TRACE("returning %s for property %s\n", debugstr_w(szValueBuf),
1436             debugstr_w(szName));
1437     else if (rc == ERROR_MORE_DATA)
1438         TRACE("need %d sized buffer for %s\n", *pchValueBuf,
1439             debugstr_w(szName));
1440     else
1441     {
1442         *pchValueBuf = 0;
1443         TRACE("property %s not found\n", debugstr_w(szName));
1444     }
1445
1446     return rc;
1447 }
1448
1449 LPWSTR msi_dup_property(MSIPACKAGE *package, LPCWSTR prop)
1450 {
1451     DWORD sz = 0;
1452     LPWSTR str;
1453     UINT r;
1454
1455     r = MSI_GetPropertyW(package, prop, NULL, &sz);
1456     if (r != ERROR_SUCCESS && r != ERROR_MORE_DATA)
1457         return NULL;
1458
1459     sz++;
1460     str = msi_alloc(sz * sizeof(WCHAR));
1461     r = MSI_GetPropertyW(package, prop, str, &sz);
1462     if (r != ERROR_SUCCESS)
1463     {
1464         msi_free(str);
1465         str = NULL;
1466     }
1467
1468     return str;
1469 }
1470
1471 int msi_get_property_int(MSIPACKAGE *package, LPCWSTR prop, int def)
1472 {
1473     LPWSTR str = msi_dup_property(package, prop);
1474     int val = str ? atoiW(str) : def;
1475     msi_free(str);
1476     return val;
1477 }
1478
1479 static UINT MSI_GetProperty( MSIHANDLE handle, LPCWSTR name,
1480                              awstring *szValueBuf, LPDWORD pchValueBuf )
1481 {
1482     static const WCHAR empty[] = {0};
1483     MSIPACKAGE *package;
1484     MSIRECORD *row = NULL;
1485     UINT r = ERROR_FUNCTION_FAILED;
1486     LPCWSTR val = NULL;
1487
1488     TRACE("%lu %s %p %p\n", handle, debugstr_w(name),
1489           szValueBuf->str.w, pchValueBuf );
1490
1491     if (!name)
1492         return ERROR_INVALID_PARAMETER;
1493
1494     package = msihandle2msiinfo( handle, MSIHANDLETYPE_PACKAGE );
1495     if (!package)
1496     {
1497         HRESULT hr;
1498         IWineMsiRemotePackage *remote_package;
1499         LPWSTR value = NULL;
1500         BSTR bname;
1501         DWORD len;
1502
1503         remote_package = (IWineMsiRemotePackage *)msi_get_remote( handle );
1504         if (!remote_package)
1505             return ERROR_INVALID_HANDLE;
1506
1507         bname = SysAllocString( name );
1508         if (!bname)
1509         {
1510             IWineMsiRemotePackage_Release( remote_package );
1511             return ERROR_OUTOFMEMORY;
1512         }
1513
1514         len = 0;
1515         hr = IWineMsiRemotePackage_GetProperty( remote_package, bname, NULL, &len );
1516         if (FAILED(hr))
1517             goto done;
1518
1519         len++;
1520         value = msi_alloc(len * sizeof(WCHAR));
1521         if (!value)
1522         {
1523             r = ERROR_OUTOFMEMORY;
1524             goto done;
1525         }
1526
1527         hr = IWineMsiRemotePackage_GetProperty( remote_package, bname, (BSTR *)value, &len );
1528         if (FAILED(hr))
1529             goto done;
1530
1531         r = msi_strcpy_to_awstring( value, szValueBuf, pchValueBuf );
1532
1533         /* Bug required by Adobe installers */
1534         if (!szValueBuf->unicode && !szValueBuf->str.a)
1535             *pchValueBuf *= sizeof(WCHAR);
1536
1537 done:
1538         IWineMsiRemotePackage_Release(remote_package);
1539         SysFreeString(bname);
1540         msi_free(value);
1541
1542         if (FAILED(hr))
1543         {
1544             if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1545                 return HRESULT_CODE(hr);
1546
1547             return ERROR_FUNCTION_FAILED;
1548         }
1549
1550         return r;
1551     }
1552
1553     row = MSI_GetPropertyRow( package, name );
1554     if (row)
1555         val = MSI_RecordGetString( row, 1 );
1556
1557     if (!val)
1558         val = empty;
1559
1560     r = msi_strcpy_to_awstring( val, szValueBuf, pchValueBuf );
1561
1562     if (row)
1563         msiobj_release( &row->hdr );
1564     msiobj_release( &package->hdr );
1565
1566     return r;
1567 }
1568
1569 UINT WINAPI MsiGetPropertyA( MSIHANDLE hInstall, LPCSTR szName,
1570                              LPSTR szValueBuf, LPDWORD pchValueBuf )
1571 {
1572     awstring val;
1573     LPWSTR name;
1574     UINT r;
1575
1576     val.unicode = FALSE;
1577     val.str.a = szValueBuf;
1578
1579     name = strdupAtoW( szName );
1580     if (szName && !name)
1581         return ERROR_OUTOFMEMORY;
1582
1583     r = MSI_GetProperty( hInstall, name, &val, pchValueBuf );
1584     msi_free( name );
1585     return r;
1586 }
1587
1588 UINT WINAPI MsiGetPropertyW( MSIHANDLE hInstall, LPCWSTR szName,
1589                              LPWSTR szValueBuf, LPDWORD pchValueBuf )
1590 {
1591     awstring val;
1592
1593     val.unicode = TRUE;
1594     val.str.w = szValueBuf;
1595
1596     return MSI_GetProperty( hInstall, szName, &val, pchValueBuf );
1597 }
1598
1599 typedef struct _msi_remote_package_impl {
1600     const IWineMsiRemotePackageVtbl *lpVtbl;
1601     MSIHANDLE package;
1602     LONG refs;
1603 } msi_remote_package_impl;
1604
1605 static inline msi_remote_package_impl* mrp_from_IWineMsiRemotePackage( IWineMsiRemotePackage* iface )
1606 {
1607     return (msi_remote_package_impl*) iface;
1608 }
1609
1610 static HRESULT WINAPI mrp_QueryInterface( IWineMsiRemotePackage *iface,
1611                 REFIID riid,LPVOID *ppobj)
1612 {
1613     if( IsEqualCLSID( riid, &IID_IUnknown ) ||
1614         IsEqualCLSID( riid, &IID_IWineMsiRemotePackage ) )
1615     {
1616         IUnknown_AddRef( iface );
1617         *ppobj = iface;
1618         return S_OK;
1619     }
1620
1621     return E_NOINTERFACE;
1622 }
1623
1624 static ULONG WINAPI mrp_AddRef( IWineMsiRemotePackage *iface )
1625 {
1626     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1627
1628     return InterlockedIncrement( &This->refs );
1629 }
1630
1631 static ULONG WINAPI mrp_Release( IWineMsiRemotePackage *iface )
1632 {
1633     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1634     ULONG r;
1635
1636     r = InterlockedDecrement( &This->refs );
1637     if (r == 0)
1638     {
1639         MsiCloseHandle( This->package );
1640         msi_free( This );
1641     }
1642     return r;
1643 }
1644
1645 static HRESULT WINAPI mrp_SetMsiHandle( IWineMsiRemotePackage *iface, MSIHANDLE handle )
1646 {
1647     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1648     This->package = handle;
1649     return S_OK;
1650 }
1651
1652 static HRESULT WINAPI mrp_GetActiveDatabase( IWineMsiRemotePackage *iface, MSIHANDLE *handle )
1653 {
1654     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1655     IWineMsiRemoteDatabase *rdb = NULL;
1656     HRESULT hr;
1657     MSIHANDLE hdb;
1658
1659     hr = create_msi_remote_database( NULL, (LPVOID *)&rdb );
1660     if (FAILED(hr) || !rdb)
1661     {
1662         ERR("Failed to create remote database\n");
1663         return hr;
1664     }
1665
1666     hdb = MsiGetActiveDatabase(This->package);
1667
1668     hr = IWineMsiRemoteDatabase_SetMsiHandle( rdb, hdb );
1669     if (FAILED(hr))
1670     {
1671         ERR("Failed to set the database handle\n");
1672         return hr;
1673     }
1674
1675     *handle = alloc_msi_remote_handle( (IUnknown *)rdb );
1676     return S_OK;
1677 }
1678
1679 static HRESULT WINAPI mrp_GetProperty( IWineMsiRemotePackage *iface, BSTR property, BSTR *value, DWORD *size )
1680 {
1681     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1682     UINT r;
1683
1684     r = MsiGetPropertyW(This->package, (LPWSTR)property, (LPWSTR)value, size);
1685     if (r != ERROR_SUCCESS)
1686         return HRESULT_FROM_WIN32(r);
1687
1688     return S_OK;
1689 }
1690
1691 static HRESULT WINAPI mrp_SetProperty( IWineMsiRemotePackage *iface, BSTR property, BSTR value )
1692 {
1693     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1694     UINT r = MsiSetPropertyW(This->package, (LPWSTR)property, (LPWSTR)value);
1695     return HRESULT_FROM_WIN32(r);
1696 }
1697
1698 static HRESULT WINAPI mrp_ProcessMessage( IWineMsiRemotePackage *iface, INSTALLMESSAGE message, MSIHANDLE record )
1699 {
1700     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1701     UINT r = MsiProcessMessage(This->package, message, record);
1702     return HRESULT_FROM_WIN32(r);
1703 }
1704
1705 static HRESULT WINAPI mrp_DoAction( IWineMsiRemotePackage *iface, BSTR action )
1706 {
1707     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1708     UINT r = MsiDoActionW(This->package, (LPWSTR)action);
1709     return HRESULT_FROM_WIN32(r);
1710 }
1711
1712 static HRESULT WINAPI mrp_Sequence( IWineMsiRemotePackage *iface, BSTR table, int sequence )
1713 {
1714     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1715     UINT r = MsiSequenceW(This->package, (LPWSTR)table, sequence);
1716     return HRESULT_FROM_WIN32(r);
1717 }
1718
1719 static HRESULT WINAPI mrp_GetTargetPath( IWineMsiRemotePackage *iface, BSTR folder, BSTR *value, DWORD *size )
1720 {
1721     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1722     UINT r = MsiGetTargetPathW(This->package, (LPWSTR)folder, (LPWSTR)value, size);
1723     return HRESULT_FROM_WIN32(r);
1724 }
1725
1726 static HRESULT WINAPI mrp_SetTargetPath( IWineMsiRemotePackage *iface, BSTR folder, BSTR value)
1727 {
1728     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1729     UINT r = MsiSetTargetPathW(This->package, (LPWSTR)folder, (LPWSTR)value);
1730     return HRESULT_FROM_WIN32(r);
1731 }
1732
1733 static HRESULT WINAPI mrp_GetSourcePath( IWineMsiRemotePackage *iface, BSTR folder, BSTR *value, DWORD *size )
1734 {
1735     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1736     UINT r = MsiGetSourcePathW(This->package, (LPWSTR)folder, (LPWSTR)value, size);
1737     return HRESULT_FROM_WIN32(r);
1738 }
1739
1740 static HRESULT WINAPI mrp_GetMode( IWineMsiRemotePackage *iface, MSIRUNMODE mode, BOOL *ret )
1741 {
1742     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1743     *ret = MsiGetMode(This->package, mode);
1744     return S_OK;
1745 }
1746
1747 static HRESULT WINAPI mrp_GetFeatureState( IWineMsiRemotePackage *iface, BSTR feature,
1748                                     INSTALLSTATE *installed, INSTALLSTATE *action )
1749 {
1750     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1751     UINT r = MsiGetFeatureStateW(This->package, (LPWSTR)feature, installed, action);
1752     return HRESULT_FROM_WIN32(r);
1753 }
1754
1755 static HRESULT WINAPI mrp_SetFeatureState( IWineMsiRemotePackage *iface, BSTR feature, INSTALLSTATE state )
1756 {
1757     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1758     UINT r = MsiSetFeatureStateW(This->package, (LPWSTR)feature, state);
1759     return HRESULT_FROM_WIN32(r);
1760 }
1761
1762 static HRESULT WINAPI mrp_GetComponentState( IWineMsiRemotePackage *iface, BSTR component,
1763                                       INSTALLSTATE *installed, INSTALLSTATE *action )
1764 {
1765     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1766     UINT r = MsiGetComponentStateW(This->package, (LPWSTR)component, installed, action);
1767     return HRESULT_FROM_WIN32(r);
1768 }
1769
1770 static HRESULT WINAPI mrp_SetComponentState( IWineMsiRemotePackage *iface, BSTR component, INSTALLSTATE state )
1771 {
1772     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1773     UINT r = MsiSetComponentStateW(This->package, (LPWSTR)component, state);
1774     return HRESULT_FROM_WIN32(r);
1775 }
1776
1777 static HRESULT WINAPI mrp_GetLanguage( IWineMsiRemotePackage *iface, LANGID *language )
1778 {
1779     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1780     *language = MsiGetLanguage(This->package);
1781     return S_OK;
1782 }
1783
1784 static HRESULT WINAPI mrp_SetInstallLevel( IWineMsiRemotePackage *iface, int level )
1785 {
1786     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1787     UINT r = MsiSetInstallLevel(This->package, level);
1788     return HRESULT_FROM_WIN32(r);
1789 }
1790
1791 static HRESULT WINAPI mrp_FormatRecord( IWineMsiRemotePackage *iface, MSIHANDLE record,
1792                                         BSTR *value)
1793 {
1794     DWORD size = 0;
1795     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1796     UINT r = MsiFormatRecordW(This->package, record, NULL, &size);
1797     if (r == ERROR_SUCCESS)
1798     {
1799         *value = SysAllocStringLen(NULL, size);
1800         if (!*value)
1801             return E_OUTOFMEMORY;
1802         size++;
1803         r = MsiFormatRecordW(This->package, record, *value, &size);
1804     }
1805     return HRESULT_FROM_WIN32(r);
1806 }
1807
1808 static HRESULT WINAPI mrp_EvaluateCondition( IWineMsiRemotePackage *iface, BSTR condition )
1809 {
1810     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
1811     UINT r = MsiEvaluateConditionW(This->package, (LPWSTR)condition);
1812     return HRESULT_FROM_WIN32(r);
1813 }
1814
1815 static const IWineMsiRemotePackageVtbl msi_remote_package_vtbl =
1816 {
1817     mrp_QueryInterface,
1818     mrp_AddRef,
1819     mrp_Release,
1820     mrp_SetMsiHandle,
1821     mrp_GetActiveDatabase,
1822     mrp_GetProperty,
1823     mrp_SetProperty,
1824     mrp_ProcessMessage,
1825     mrp_DoAction,
1826     mrp_Sequence,
1827     mrp_GetTargetPath,
1828     mrp_SetTargetPath,
1829     mrp_GetSourcePath,
1830     mrp_GetMode,
1831     mrp_GetFeatureState,
1832     mrp_SetFeatureState,
1833     mrp_GetComponentState,
1834     mrp_SetComponentState,
1835     mrp_GetLanguage,
1836     mrp_SetInstallLevel,
1837     mrp_FormatRecord,
1838     mrp_EvaluateCondition,
1839 };
1840
1841 HRESULT create_msi_remote_package( IUnknown *pOuter, LPVOID *ppObj )
1842 {
1843     msi_remote_package_impl* This;
1844
1845     This = msi_alloc( sizeof *This );
1846     if (!This)
1847         return E_OUTOFMEMORY;
1848
1849     This->lpVtbl = &msi_remote_package_vtbl;
1850     This->package = 0;
1851     This->refs = 1;
1852
1853     *ppObj = This;
1854
1855     return S_OK;
1856 }
1857
1858 UINT msi_package_add_info(MSIPACKAGE *package, DWORD context, DWORD options,
1859                           LPCWSTR property, LPWSTR value)
1860 {
1861     MSISOURCELISTINFO *info;
1862
1863     info = msi_alloc(sizeof(MSISOURCELISTINFO));
1864     if (!info)
1865         return ERROR_OUTOFMEMORY;
1866
1867     info->context = context;
1868     info->options = options;
1869     info->property = property;
1870     info->value = strdupW(value);
1871     list_add_head(&package->sourcelist_info, &info->entry);
1872
1873     return ERROR_SUCCESS;
1874 }
1875
1876 UINT msi_package_add_media_disk(MSIPACKAGE *package, DWORD context, DWORD options,
1877                                 DWORD disk_id, LPWSTR volume_label, LPWSTR disk_prompt)
1878 {
1879     MSIMEDIADISK *disk;
1880
1881     disk = msi_alloc(sizeof(MSIMEDIADISK));
1882     if (!disk)
1883         return ERROR_OUTOFMEMORY;
1884
1885     disk->context = context;
1886     disk->options = options;
1887     disk->disk_id = disk_id;
1888     disk->volume_label = strdupW(volume_label);
1889     disk->disk_prompt = strdupW(disk_prompt);
1890     list_add_head(&package->sourcelist_media, &disk->entry);
1891
1892     return ERROR_SUCCESS;
1893 }