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