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