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