msi: Keep track of the patch filename in apply_registered_patch.
[wine.git] / dlls / msi / package.c
blobbff1bb43f0b1fb6ec3a343b5d47bf5a2bc817b2a
1 /*
2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2004 Aric Stewart for CodeWeavers
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.
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.
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
21 #define NONAMELESSUNION
22 #define NONAMELESSSTRUCT
23 #define COBJMACROS
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"
47 #include "msipriv.h"
48 #include "msiserver.h"
50 WINE_DEFAULT_DEBUG_CHANNEL(msi);
52 static void remove_tracked_tempfiles( MSIPACKAGE *package )
54 struct list *item, *cursor;
56 LIST_FOR_EACH_SAFE( item, cursor, &package->tempfiles )
58 MSITEMPFILE *temp = LIST_ENTRY( item, MSITEMPFILE, entry );
60 list_remove( &temp->entry );
61 TRACE("deleting temp file %s\n", debugstr_w( temp->Path ));
62 if (!DeleteFileW( temp->Path ))
63 ERR("failed to delete %s\n", debugstr_w( temp->Path ));
64 msi_free( temp->Path );
65 msi_free( temp );
69 static void free_feature( MSIFEATURE *feature )
71 struct list *item, *cursor;
73 LIST_FOR_EACH_SAFE( item, cursor, &feature->Children )
75 FeatureList *fl = LIST_ENTRY( item, FeatureList, entry );
76 list_remove( &fl->entry );
77 msi_free( fl );
80 LIST_FOR_EACH_SAFE( item, cursor, &feature->Components )
82 ComponentList *cl = LIST_ENTRY( item, ComponentList, entry );
83 list_remove( &cl->entry );
84 msi_free( cl );
86 msi_free( feature->Feature );
87 msi_free( feature->Feature_Parent );
88 msi_free( feature->Directory );
89 msi_free( feature->Description );
90 msi_free( feature->Title );
91 msi_free( feature );
94 static void free_extension( MSIEXTENSION *ext )
96 struct list *item, *cursor;
98 LIST_FOR_EACH_SAFE( item, cursor, &ext->verbs )
100 MSIVERB *verb = LIST_ENTRY( item, MSIVERB, entry );
102 list_remove( &verb->entry );
103 msi_free( verb->Verb );
104 msi_free( verb->Command );
105 msi_free( verb->Argument );
106 msi_free( verb );
109 msi_free( ext->Extension );
110 msi_free( ext->ProgIDText );
111 msi_free( ext );
114 static void free_package_structures( MSIPACKAGE *package )
116 INT i;
117 struct list *item, *cursor;
119 TRACE("Freeing package action data\n");
121 remove_tracked_tempfiles(package);
123 LIST_FOR_EACH_SAFE( item, cursor, &package->features )
125 MSIFEATURE *feature = LIST_ENTRY( item, MSIFEATURE, entry );
126 list_remove( &feature->entry );
127 free_feature( feature );
130 LIST_FOR_EACH_SAFE( item, cursor, &package->folders )
132 MSIFOLDER *folder = LIST_ENTRY( item, MSIFOLDER, entry );
134 list_remove( &folder->entry );
135 msi_free( folder->Parent );
136 msi_free( folder->Directory );
137 msi_free( folder->TargetDefault );
138 msi_free( folder->SourceLongPath );
139 msi_free( folder->SourceShortPath );
140 msi_free( folder->ResolvedTarget );
141 msi_free( folder->ResolvedSource );
142 msi_free( folder->Property );
143 msi_free( folder );
146 LIST_FOR_EACH_SAFE( item, cursor, &package->components )
148 MSICOMPONENT *comp = LIST_ENTRY( item, MSICOMPONENT, entry );
150 list_remove( &comp->entry );
151 msi_free( comp->Component );
152 msi_free( comp->ComponentId );
153 msi_free( comp->Directory );
154 msi_free( comp->Condition );
155 msi_free( comp->KeyPath );
156 msi_free( comp->FullKeypath );
157 msi_free( comp );
160 LIST_FOR_EACH_SAFE( item, cursor, &package->files )
162 MSIFILE *file = LIST_ENTRY( item, MSIFILE, entry );
164 list_remove( &file->entry );
165 msi_free( file->File );
166 msi_free( file->FileName );
167 msi_free( file->ShortName );
168 msi_free( file->LongName );
169 msi_free( file->Version );
170 msi_free( file->Language );
171 msi_free( file->TargetPath );
172 msi_free( file );
175 /* clean up extension, progid, class and verb structures */
176 LIST_FOR_EACH_SAFE( item, cursor, &package->classes )
178 MSICLASS *cls = LIST_ENTRY( item, MSICLASS, entry );
180 list_remove( &cls->entry );
181 msi_free( cls->clsid );
182 msi_free( cls->Context );
183 msi_free( cls->Description );
184 msi_free( cls->FileTypeMask );
185 msi_free( cls->IconPath );
186 msi_free( cls->DefInprocHandler );
187 msi_free( cls->DefInprocHandler32 );
188 msi_free( cls->Argument );
189 msi_free( cls->ProgIDText );
190 msi_free( cls );
193 LIST_FOR_EACH_SAFE( item, cursor, &package->extensions )
195 MSIEXTENSION *ext = LIST_ENTRY( item, MSIEXTENSION, entry );
197 list_remove( &ext->entry );
198 free_extension( ext );
201 LIST_FOR_EACH_SAFE( item, cursor, &package->progids )
203 MSIPROGID *progid = LIST_ENTRY( item, MSIPROGID, entry );
205 list_remove( &progid->entry );
206 msi_free( progid->ProgID );
207 msi_free( progid->Description );
208 msi_free( progid->IconPath );
209 msi_free( progid );
212 LIST_FOR_EACH_SAFE( item, cursor, &package->mimes )
214 MSIMIME *mt = LIST_ENTRY( item, MSIMIME, entry );
216 list_remove( &mt->entry );
217 msi_free( mt->suffix );
218 msi_free( mt->clsid );
219 msi_free( mt->ContentType );
220 msi_free( mt );
223 LIST_FOR_EACH_SAFE( item, cursor, &package->appids )
225 MSIAPPID *appid = LIST_ENTRY( item, MSIAPPID, entry );
227 list_remove( &appid->entry );
228 msi_free( appid->AppID );
229 msi_free( appid->RemoteServerName );
230 msi_free( appid->LocalServer );
231 msi_free( appid->ServiceParameters );
232 msi_free( appid->DllSurrogate );
233 msi_free( appid );
236 LIST_FOR_EACH_SAFE( item, cursor, &package->sourcelist_info )
238 MSISOURCELISTINFO *info = LIST_ENTRY( item, MSISOURCELISTINFO, entry );
240 list_remove( &info->entry );
241 msi_free( info->value );
242 msi_free( info );
245 LIST_FOR_EACH_SAFE( item, cursor, &package->sourcelist_media )
247 MSIMEDIADISK *info = LIST_ENTRY( item, MSIMEDIADISK, entry );
249 list_remove( &info->entry );
250 msi_free( info->volume_label );
251 msi_free( info->disk_prompt );
252 msi_free( info );
255 if (package->script)
257 for (i = 0; i < TOTAL_SCRIPTS; i++)
258 msi_free_action_script( package, i );
260 for (i = 0; i < package->script->UniqueActionsCount; i++)
261 msi_free( package->script->UniqueActions[i] );
263 msi_free( package->script->UniqueActions );
264 msi_free( package->script );
267 LIST_FOR_EACH_SAFE( item, cursor, &package->patches )
269 MSIPATCHINFO *patch = LIST_ENTRY( item, MSIPATCHINFO, entry );
271 list_remove( &patch->entry );
272 msi_free( patch->patchcode );
273 msi_free( patch->transforms );
274 msi_free( patch->localfile );
275 msi_free( patch );
278 msi_free( package->BaseURL );
279 msi_free( package->PackagePath );
280 msi_free( package->ProductCode );
281 msi_free( package->ActionFormat );
282 msi_free( package->LastAction );
284 /* cleanup control event subscriptions */
285 ControlEvent_CleanupSubscriptions( package );
288 static void MSI_FreePackage( MSIOBJECTHDR *arg)
290 MSIPACKAGE *package= (MSIPACKAGE*) arg;
292 if( package->dialog )
293 msi_dialog_destroy( package->dialog );
295 msiobj_release( &package->db->hdr );
296 free_package_structures(package);
299 static UINT create_temp_property_table(MSIPACKAGE *package)
301 MSIQUERY *view = NULL;
302 UINT rc;
304 static const WCHAR CreateSql[] = {
305 'C','R','E','A','T','E',' ','T','A','B','L','E',' ',
306 '`','_','P','r','o','p','e','r','t','y','`',' ','(',' ',
307 '`','_','P','r','o','p','e','r','t','y','`',' ',
308 'C','H','A','R','(','5','6',')',' ','N','O','T',' ','N','U','L','L',' ',
309 'T','E','M','P','O','R','A','R','Y',',',' ',
310 '`','V','a','l','u','e','`',' ','C','H','A','R','(','9','8',')',' ',
311 'N','O','T',' ','N','U','L','L',' ','T','E','M','P','O','R','A','R','Y',
312 ' ','P','R','I','M','A','R','Y',' ','K','E','Y',' ',
313 '`','_','P','r','o','p','e','r','t','y','`',')',' ','H','O','L','D',0};
315 rc = MSI_DatabaseOpenViewW(package->db, CreateSql, &view);
316 if (rc != ERROR_SUCCESS)
317 return rc;
319 rc = MSI_ViewExecute(view, 0);
320 MSI_ViewClose(view);
321 msiobj_release(&view->hdr);
322 return rc;
325 UINT msi_clone_properties(MSIPACKAGE *package)
327 MSIQUERY *view = NULL;
328 UINT rc;
330 static const WCHAR Query[] = {
331 'S','E','L','E','C','T',' ','*',' ',
332 'F','R','O','M',' ','`','P','r','o','p','e','r','t','y','`',0};
333 static const WCHAR Insert[] = {
334 'I','N','S','E','R','T',' ','i','n','t','o',' ',
335 '`','_','P','r','o','p','e','r','t','y','`',' ',
336 '(','`','_','P','r','o','p','e','r','t','y','`',',',
337 '`','V','a','l','u','e','`',')',' ',
338 'V','A','L','U','E','S',' ','(','?',',','?',')',0};
340 /* clone the existing properties */
341 rc = MSI_DatabaseOpenViewW(package->db, Query, &view);
342 if (rc != ERROR_SUCCESS)
343 return rc;
345 rc = MSI_ViewExecute(view, 0);
346 if (rc != ERROR_SUCCESS)
348 MSI_ViewClose(view);
349 msiobj_release(&view->hdr);
350 return rc;
353 while (1)
355 MSIRECORD *row;
356 MSIQUERY *view2;
358 rc = MSI_ViewFetch(view, &row);
359 if (rc != ERROR_SUCCESS)
360 break;
362 rc = MSI_DatabaseOpenViewW(package->db, Insert, &view2);
363 if (rc != ERROR_SUCCESS)
365 msiobj_release(&row->hdr);
366 continue;
369 MSI_ViewExecute(view2, row);
370 MSI_ViewClose(view2);
371 msiobj_release(&view2->hdr);
372 msiobj_release(&row->hdr);
375 MSI_ViewClose(view);
376 msiobj_release(&view->hdr);
378 return rc;
382 * set_installed_prop
384 * Sets the "Installed" property to indicate that
385 * the product is installed for the current user.
387 static UINT set_installed_prop( MSIPACKAGE *package )
389 HKEY hkey = 0;
390 UINT r;
392 r = MSIREG_OpenUninstallKey( package->ProductCode, &hkey, FALSE );
393 if (r == ERROR_SUCCESS)
395 RegCloseKey( hkey );
396 msi_set_property( package->db, szInstalled, szOne );
399 return r;
402 static UINT set_user_sid_prop( MSIPACKAGE *package )
404 SID_NAME_USE use;
405 LPWSTR user_name;
406 LPWSTR sid_str = NULL, dom = NULL;
407 DWORD size, dom_size;
408 PSID psid = NULL;
409 UINT r = ERROR_FUNCTION_FAILED;
411 size = 0;
412 GetUserNameW( NULL, &size );
414 user_name = msi_alloc( (size + 1) * sizeof(WCHAR) );
415 if (!user_name)
416 return ERROR_OUTOFMEMORY;
418 if (!GetUserNameW( user_name, &size ))
419 goto done;
421 size = 0;
422 dom_size = 0;
423 LookupAccountNameW( NULL, user_name, NULL, &size, NULL, &dom_size, &use );
425 psid = msi_alloc( size );
426 dom = msi_alloc( dom_size*sizeof (WCHAR) );
427 if (!psid || !dom)
429 r = ERROR_OUTOFMEMORY;
430 goto done;
433 if (!LookupAccountNameW( NULL, user_name, psid, &size, dom, &dom_size, &use ))
434 goto done;
436 if (!ConvertSidToStringSidW( psid, &sid_str ))
437 goto done;
439 r = msi_set_property( package->db, szUserSID, sid_str );
441 done:
442 LocalFree( sid_str );
443 msi_free( dom );
444 msi_free( psid );
445 msi_free( user_name );
447 return r;
450 static LPWSTR get_fusion_filename(MSIPACKAGE *package)
452 HKEY netsetup;
453 LONG res;
454 LPWSTR file = NULL;
455 DWORD index = 0, size;
456 WCHAR ver[MAX_PATH];
457 WCHAR name[MAX_PATH];
458 WCHAR windir[MAX_PATH];
460 static const WCHAR fusion[] = {'f','u','s','i','o','n','.','d','l','l',0};
461 static const WCHAR sub[] = {
462 'S','o','f','t','w','a','r','e','\\',
463 'M','i','c','r','o','s','o','f','t','\\',
464 'N','E','T',' ','F','r','a','m','e','w','o','r','k',' ','S','e','t','u','p','\\',
465 'N','D','P',0
467 static const WCHAR subdir[] = {
468 'M','i','c','r','o','s','o','f','t','.','N','E','T','\\',
469 'F','r','a','m','e','w','o','r','k','\\',0
472 res = RegOpenKeyExW(HKEY_LOCAL_MACHINE, sub, 0, KEY_ENUMERATE_SUB_KEYS, &netsetup);
473 if (res != ERROR_SUCCESS)
474 return NULL;
476 GetWindowsDirectoryW(windir, MAX_PATH);
478 ver[0] = '\0';
479 size = MAX_PATH;
480 while (RegEnumKeyExW(netsetup, index, name, &size, NULL, NULL, NULL, NULL) == ERROR_SUCCESS)
482 index++;
484 /* verify existence of fusion.dll .Net 3.0 does not install a new one */
485 if (lstrcmpW(ver, name) < 0)
487 LPWSTR check;
488 size = lstrlenW(windir) + lstrlenW(subdir) + lstrlenW(name) +lstrlenW(fusion) + 3;
489 check = msi_alloc(size * sizeof(WCHAR));
491 if (!check)
493 msi_free(file);
494 return NULL;
497 lstrcpyW(check, windir);
498 lstrcatW(check, szBackSlash);
499 lstrcatW(check, subdir);
500 lstrcatW(check, name);
501 lstrcatW(check, szBackSlash);
502 lstrcatW(check, fusion);
504 if(GetFileAttributesW(check) != INVALID_FILE_ATTRIBUTES)
506 msi_free(file);
507 file = check;
508 lstrcpyW(ver, name);
510 else
511 msi_free(check);
515 RegCloseKey(netsetup);
516 return file;
519 typedef struct tagLANGANDCODEPAGE
521 WORD wLanguage;
522 WORD wCodePage;
523 } LANGANDCODEPAGE;
525 static void set_msi_assembly_prop(MSIPACKAGE *package)
527 UINT val_len;
528 DWORD size, handle;
529 LPVOID version = NULL;
530 WCHAR buf[MAX_PATH];
531 LPWSTR fusion, verstr;
532 LANGANDCODEPAGE *translate;
534 static const WCHAR netasm[] = {
535 'M','s','i','N','e','t','A','s','s','e','m','b','l','y','S','u','p','p','o','r','t',0
537 static const WCHAR translation[] = {
538 '\\','V','a','r','F','i','l','e','I','n','f','o',
539 '\\','T','r','a','n','s','l','a','t','i','o','n',0
541 static const WCHAR verfmt[] = {
542 '\\','S','t','r','i','n','g','F','i','l','e','I','n','f','o',
543 '\\','%','0','4','x','%','0','4','x',
544 '\\','P','r','o','d','u','c','t','V','e','r','s','i','o','n',0
547 fusion = get_fusion_filename(package);
548 if (!fusion)
549 return;
551 size = GetFileVersionInfoSizeW(fusion, &handle);
552 if (!size) return;
554 version = msi_alloc(size);
555 if (!version) return;
557 if (!GetFileVersionInfoW(fusion, handle, size, version))
558 goto done;
560 if (!VerQueryValueW(version, translation, (LPVOID *)&translate, &val_len))
561 goto done;
563 sprintfW(buf, verfmt, translate[0].wLanguage, translate[0].wCodePage);
565 if (!VerQueryValueW(version, buf, (LPVOID *)&verstr, &val_len))
566 goto done;
568 if (!val_len || !verstr)
569 goto done;
571 msi_set_property(package->db, netasm, verstr);
573 done:
574 msi_free(fusion);
575 msi_free(version);
578 static VOID set_installer_properties(MSIPACKAGE *package)
580 WCHAR pth[MAX_PATH];
581 WCHAR *ptr;
582 OSVERSIONINFOEXW OSVersion;
583 MEMORYSTATUSEX msex;
584 DWORD verval, len;
585 WCHAR verstr[10], bufstr[20];
586 HDC dc;
587 HKEY hkey;
588 LPWSTR username, companyname;
589 SYSTEM_INFO sys_info;
590 SYSTEMTIME systemtime;
591 LANGID langid;
593 static const WCHAR CFF[] =
594 {'C','o','m','m','o','n','F','i','l','e','s','F','o','l','d','e','r',0};
595 static const WCHAR PFF[] =
596 {'P','r','o','g','r','a','m','F','i','l','e','s','F','o','l','d','e','r',0};
597 static const WCHAR CADF[] =
598 {'C','o','m','m','o','n','A','p','p','D','a','t','a','F','o','l','d','e','r',0};
599 static const WCHAR FaF[] =
600 {'F','a','v','o','r','i','t','e','s','F','o','l','d','e','r',0};
601 static const WCHAR FoF[] =
602 {'F','o','n','t','s','F','o','l','d','e','r',0};
603 static const WCHAR SendTF[] =
604 {'S','e','n','d','T','o','F','o','l','d','e','r',0};
605 static const WCHAR SMF[] =
606 {'S','t','a','r','t','M','e','n','u','F','o','l','d','e','r',0};
607 static const WCHAR StF[] =
608 {'S','t','a','r','t','u','p','F','o','l','d','e','r',0};
609 static const WCHAR TemplF[] =
610 {'T','e','m','p','l','a','t','e','F','o','l','d','e','r',0};
611 static const WCHAR DF[] =
612 {'D','e','s','k','t','o','p','F','o','l','d','e','r',0};
613 static const WCHAR PMF[] =
614 {'P','r','o','g','r','a','m','M','e','n','u','F','o','l','d','e','r',0};
615 static const WCHAR ATF[] =
616 {'A','d','m','i','n','T','o','o','l','s','F','o','l','d','e','r',0};
617 static const WCHAR ADF[] =
618 {'A','p','p','D','a','t','a','F','o','l','d','e','r',0};
619 static const WCHAR SF[] =
620 {'S','y','s','t','e','m','F','o','l','d','e','r',0};
621 static const WCHAR SF16[] =
622 {'S','y','s','t','e','m','1','6','F','o','l','d','e','r',0};
623 static const WCHAR LADF[] =
624 {'L','o','c','a','l','A','p','p','D','a','t','a','F','o','l','d','e','r',0};
625 static const WCHAR MPF[] =
626 {'M','y','P','i','c','t','u','r','e','s','F','o','l','d','e','r',0};
627 static const WCHAR PF[] =
628 {'P','e','r','s','o','n','a','l','F','o','l','d','e','r',0};
629 static const WCHAR WF[] =
630 {'W','i','n','d','o','w','s','F','o','l','d','e','r',0};
631 static const WCHAR WV[] =
632 {'W','i','n','d','o','w','s','V','o','l','u','m','e',0};
633 static const WCHAR TF[]=
634 {'T','e','m','p','F','o','l','d','e','r',0};
635 static const WCHAR szAdminUser[] =
636 {'A','d','m','i','n','U','s','e','r',0};
637 static const WCHAR szPriv[] =
638 {'P','r','i','v','i','l','e','g','e','d',0};
639 static const WCHAR v9x[] = { 'V','e','r','s','i','o','n','9','X',0 };
640 static const WCHAR vNT[] = { 'V','e','r','s','i','o','n','N','T',0 };
641 static const WCHAR szMsiNTProductType[] = { 'M','s','i','N','T','P','r','o','d','u','c','t','T','y','p','e',0 };
642 static const WCHAR szFormat[] = {'%','l','i',0};
643 static const WCHAR szWinBuild[] =
644 {'W','i','n','d','o','w','s','B','u','i','l','d', 0 };
645 static const WCHAR szSPL[] =
646 {'S','e','r','v','i','c','e','P','a','c','k','L','e','v','e','l',0 };
647 static const WCHAR szSix[] = {'6',0 };
649 static const WCHAR szVersionMsi[] = { 'V','e','r','s','i','o','n','M','s','i',0 };
650 static const WCHAR szVersionDatabase[] = { 'V','e','r','s','i','o','n','D','a','t','a','b','a','s','e',0 };
651 static const WCHAR szPhysicalMemory[] = { 'P','h','y','s','i','c','a','l','M','e','m','o','r','y',0 };
652 static const WCHAR szFormat2[] = {'%','l','i','.','%','l','i',0};
653 /* Screen properties */
654 static const WCHAR szScreenX[] = {'S','c','r','e','e','n','X',0};
655 static const WCHAR szScreenY[] = {'S','c','r','e','e','n','Y',0};
656 static const WCHAR szColorBits[] = {'C','o','l','o','r','B','i','t','s',0};
657 static const WCHAR szIntFormat[] = {'%','d',0};
658 static const WCHAR szIntel[] = { 'I','n','t','e','l',0 };
659 static const WCHAR szUserInfo[] = {
660 'S','O','F','T','W','A','R','E','\\',
661 'M','i','c','r','o','s','o','f','t','\\',
662 'M','S',' ','S','e','t','u','p',' ','(','A','C','M','E',')','\\',
663 'U','s','e','r',' ','I','n','f','o',0
665 static const WCHAR szDefName[] = { 'D','e','f','N','a','m','e',0 };
666 static const WCHAR szDefCompany[] = { 'D','e','f','C','o','m','p','a','n','y',0 };
667 static const WCHAR szCurrentVersion[] = {
668 'S','O','F','T','W','A','R','E','\\',
669 'M','i','c','r','o','s','o','f','t','\\',
670 'W','i','n','d','o','w','s',' ','N','T','\\',
671 'C','u','r','r','e','n','t','V','e','r','s','i','o','n',0
673 static const WCHAR szRegisteredUser[] = {'R','e','g','i','s','t','e','r','e','d','O','w','n','e','r',0};
674 static const WCHAR szRegisteredOrg[] = {
675 'R','e','g','i','s','t','e','r','e','d','O','r','g','a','n','i','z','a','t','i','o','n',0
677 static const WCHAR szUSERNAME[] = {'U','S','E','R','N','A','M','E',0};
678 static const WCHAR szCOMPANYNAME[] = {'C','O','M','P','A','N','Y','N','A','M','E',0};
679 static const WCHAR szDate[] = {'D','a','t','e',0};
680 static const WCHAR szTime[] = {'T','i','m','e',0};
681 static const WCHAR szUserLangID[] = {'U','s','e','r','L','a','n','g','u','a','g','e','I','D',0};
682 static const WCHAR szSystemLangID[] = {'S','y','s','t','e','m','L','a','n','g','u','a','g','e','I','D',0};
683 static const WCHAR szProductState[] = {'P','r','o','d','u','c','t','S','t','a','t','e',0};
684 static const WCHAR szLogonUser[] = {'L','o','g','o','n','U','s','e','r',0};
687 * Other things that probably should be set:
689 * ComputerName VirtualMemory
690 * ShellAdvSupport DefaultUIFont PackagecodeChanging
691 * CaptionHeight BorderTop BorderSide TextHeight
692 * RedirectedDllSupport
695 SHGetFolderPathW(NULL,CSIDL_PROGRAM_FILES_COMMON,NULL,0,pth);
696 strcatW(pth, szBackSlash);
697 msi_set_property(package->db, CFF, pth);
699 SHGetFolderPathW(NULL,CSIDL_PROGRAM_FILES,NULL,0,pth);
700 strcatW(pth, szBackSlash);
701 msi_set_property(package->db, PFF, pth);
703 SHGetFolderPathW(NULL,CSIDL_COMMON_APPDATA,NULL,0,pth);
704 strcatW(pth, szBackSlash);
705 msi_set_property(package->db, CADF, pth);
707 SHGetFolderPathW(NULL,CSIDL_FAVORITES,NULL,0,pth);
708 strcatW(pth, szBackSlash);
709 msi_set_property(package->db, FaF, pth);
711 SHGetFolderPathW(NULL,CSIDL_FONTS,NULL,0,pth);
712 strcatW(pth, szBackSlash);
713 msi_set_property(package->db, FoF, pth);
715 SHGetFolderPathW(NULL,CSIDL_SENDTO,NULL,0,pth);
716 strcatW(pth, szBackSlash);
717 msi_set_property(package->db, SendTF, pth);
719 SHGetFolderPathW(NULL,CSIDL_STARTMENU,NULL,0,pth);
720 strcatW(pth, szBackSlash);
721 msi_set_property(package->db, SMF, pth);
723 SHGetFolderPathW(NULL,CSIDL_STARTUP,NULL,0,pth);
724 strcatW(pth, szBackSlash);
725 msi_set_property(package->db, StF, pth);
727 SHGetFolderPathW(NULL,CSIDL_TEMPLATES,NULL,0,pth);
728 strcatW(pth, szBackSlash);
729 msi_set_property(package->db, TemplF, pth);
731 SHGetFolderPathW(NULL,CSIDL_DESKTOP,NULL,0,pth);
732 strcatW(pth, szBackSlash);
733 msi_set_property(package->db, DF, pth);
735 SHGetFolderPathW(NULL,CSIDL_PROGRAMS,NULL,0,pth);
736 strcatW(pth, szBackSlash);
737 msi_set_property(package->db, PMF, pth);
739 SHGetFolderPathW(NULL,CSIDL_ADMINTOOLS,NULL,0,pth);
740 strcatW(pth, szBackSlash);
741 msi_set_property(package->db, ATF, pth);
743 SHGetFolderPathW(NULL,CSIDL_APPDATA,NULL,0,pth);
744 strcatW(pth, szBackSlash);
745 msi_set_property(package->db, ADF, pth);
747 SHGetFolderPathW(NULL,CSIDL_SYSTEM,NULL,0,pth);
748 strcatW(pth, szBackSlash);
749 msi_set_property(package->db, SF, pth);
750 msi_set_property(package->db, SF16, pth);
752 SHGetFolderPathW(NULL,CSIDL_LOCAL_APPDATA,NULL,0,pth);
753 strcatW(pth, szBackSlash);
754 msi_set_property(package->db, LADF, pth);
756 SHGetFolderPathW(NULL,CSIDL_MYPICTURES,NULL,0,pth);
757 strcatW(pth, szBackSlash);
758 msi_set_property(package->db, MPF, pth);
760 SHGetFolderPathW(NULL,CSIDL_PERSONAL,NULL,0,pth);
761 strcatW(pth, szBackSlash);
762 msi_set_property(package->db, PF, pth);
764 SHGetFolderPathW(NULL,CSIDL_WINDOWS,NULL,0,pth);
765 strcatW(pth, szBackSlash);
766 msi_set_property(package->db, WF, pth);
768 /* Physical Memory is specified in MB. Using total amount. */
769 msex.dwLength = sizeof(msex);
770 GlobalMemoryStatusEx( &msex );
771 sprintfW( bufstr, szIntFormat, (int)(msex.ullTotalPhys/1024/1024));
772 msi_set_property(package->db, szPhysicalMemory, bufstr);
774 SHGetFolderPathW(NULL,CSIDL_WINDOWS,NULL,0,pth);
775 ptr = strchrW(pth,'\\');
776 if (ptr)
777 *(ptr+1) = 0;
778 msi_set_property(package->db, WV, pth);
780 GetTempPathW(MAX_PATH,pth);
781 msi_set_property(package->db, TF, pth);
784 /* in a wine environment the user is always admin and privileged */
785 msi_set_property(package->db, szAdminUser, szOne);
786 msi_set_property(package->db, szPriv, szOne);
788 /* set the os things */
789 OSVersion.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEXW);
790 GetVersionExW((OSVERSIONINFOW *)&OSVersion);
791 verval = OSVersion.dwMinorVersion+OSVersion.dwMajorVersion*100;
792 sprintfW(verstr,szFormat,verval);
793 switch (OSVersion.dwPlatformId)
795 case VER_PLATFORM_WIN32_WINDOWS:
796 msi_set_property(package->db, v9x, verstr);
797 break;
798 case VER_PLATFORM_WIN32_NT:
799 msi_set_property(package->db, vNT, verstr);
800 sprintfW(verstr,szFormat,OSVersion.wProductType);
801 msi_set_property(package->db, szMsiNTProductType, verstr);
802 break;
804 sprintfW(verstr,szFormat,OSVersion.dwBuildNumber);
805 msi_set_property(package->db, szWinBuild, verstr);
806 /* just fudge this */
807 msi_set_property(package->db, szSPL, szSix);
809 sprintfW( bufstr, szFormat2, MSI_MAJORVERSION, MSI_MINORVERSION);
810 msi_set_property( package->db, szVersionMsi, bufstr );
811 sprintfW( bufstr, szFormat, MSI_MAJORVERSION * 100);
812 msi_set_property( package->db, szVersionDatabase, bufstr );
814 GetSystemInfo( &sys_info );
815 if (sys_info.u.s.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_INTEL)
817 sprintfW( bufstr, szIntFormat, sys_info.wProcessorLevel );
818 msi_set_property( package->db, szIntel, bufstr );
821 /* Screen properties. */
822 dc = GetDC(0);
823 sprintfW( bufstr, szIntFormat, GetDeviceCaps( dc, HORZRES ) );
824 msi_set_property( package->db, szScreenX, bufstr );
825 sprintfW( bufstr, szIntFormat, GetDeviceCaps( dc, VERTRES ));
826 msi_set_property( package->db, szScreenY, bufstr );
827 sprintfW( bufstr, szIntFormat, GetDeviceCaps( dc, BITSPIXEL ));
828 msi_set_property( package->db, szColorBits, bufstr );
829 ReleaseDC(0, dc);
831 /* USERNAME and COMPANYNAME */
832 username = msi_dup_property( package->db, szUSERNAME );
833 companyname = msi_dup_property( package->db, szCOMPANYNAME );
835 if ((!username || !companyname) &&
836 RegOpenKeyW( HKEY_CURRENT_USER, szUserInfo, &hkey ) == ERROR_SUCCESS)
838 if (!username &&
839 (username = msi_reg_get_val_str( hkey, szDefName )))
840 msi_set_property( package->db, szUSERNAME, username );
841 if (!companyname &&
842 (companyname = msi_reg_get_val_str( hkey, szDefCompany )))
843 msi_set_property( package->db, szCOMPANYNAME, companyname );
844 CloseHandle( hkey );
846 if ((!username || !companyname) &&
847 RegOpenKeyW( HKEY_LOCAL_MACHINE, szCurrentVersion, &hkey ) == ERROR_SUCCESS)
849 if (!username &&
850 (username = msi_reg_get_val_str( hkey, szRegisteredUser )))
851 msi_set_property( package->db, szUSERNAME, username );
852 if (!companyname &&
853 (companyname = msi_reg_get_val_str( hkey, szRegisteredOrg )))
854 msi_set_property( package->db, szCOMPANYNAME, companyname );
855 CloseHandle( hkey );
857 msi_free( username );
858 msi_free( companyname );
860 if ( set_user_sid_prop( package ) != ERROR_SUCCESS)
861 ERR("Failed to set the UserSID property\n");
863 /* Date and time properties */
864 GetSystemTime( &systemtime );
865 if (GetDateFormatW( LOCALE_USER_DEFAULT, DATE_SHORTDATE, &systemtime,
866 NULL, bufstr, sizeof(bufstr)/sizeof(bufstr[0]) ))
867 msi_set_property( package->db, szDate, bufstr );
868 else
869 ERR("Couldn't set Date property: GetDateFormat failed with error %d\n", GetLastError());
871 if (GetTimeFormatW( LOCALE_USER_DEFAULT,
872 TIME_FORCE24HOURFORMAT | TIME_NOTIMEMARKER,
873 &systemtime, NULL, bufstr,
874 sizeof(bufstr)/sizeof(bufstr[0]) ))
875 msi_set_property( package->db, szTime, bufstr );
876 else
877 ERR("Couldn't set Time property: GetTimeFormat failed with error %d\n", GetLastError());
879 set_msi_assembly_prop( package );
881 langid = GetUserDefaultLangID();
882 sprintfW(bufstr, szIntFormat, langid);
883 msi_set_property( package->db, szUserLangID, bufstr );
885 langid = GetSystemDefaultLangID();
886 sprintfW(bufstr, szIntFormat, langid);
887 msi_set_property( package->db, szSystemLangID, bufstr );
889 sprintfW(bufstr, szIntFormat, MsiQueryProductStateW(package->ProductCode));
890 msi_set_property( package->db, szProductState, bufstr );
892 len = 0;
893 if (!GetUserNameW( NULL, &len ) && GetLastError() == ERROR_MORE_DATA)
895 WCHAR *username;
896 if ((username = msi_alloc( len * sizeof(WCHAR) )))
898 if (GetUserNameW( username, &len ))
899 msi_set_property( package->db, szLogonUser, username );
900 msi_free( username );
905 static UINT msi_load_summary_properties( MSIPACKAGE *package )
907 UINT rc;
908 MSIHANDLE suminfo;
909 MSIHANDLE hdb = alloc_msihandle( &package->db->hdr );
910 INT count;
911 DWORD len;
912 LPWSTR package_code;
913 static const WCHAR szPackageCode[] = {
914 'P','a','c','k','a','g','e','C','o','d','e',0};
916 if (!hdb) {
917 ERR("Unable to allocate handle\n");
918 return ERROR_OUTOFMEMORY;
921 rc = MsiGetSummaryInformationW( hdb, NULL, 0, &suminfo );
922 MsiCloseHandle(hdb);
923 if (rc != ERROR_SUCCESS)
925 ERR("Unable to open Summary Information\n");
926 return rc;
929 rc = MsiSummaryInfoGetPropertyW( suminfo, PID_PAGECOUNT, NULL,
930 &count, NULL, NULL, NULL );
931 if (rc != ERROR_SUCCESS)
933 WARN("Unable to query page count: %d\n", rc);
934 goto done;
937 /* load package code property */
938 len = 0;
939 rc = MsiSummaryInfoGetPropertyW( suminfo, PID_REVNUMBER, NULL,
940 NULL, NULL, NULL, &len );
941 if (rc != ERROR_MORE_DATA)
943 WARN("Unable to query revision number: %d\n", rc);
944 rc = ERROR_FUNCTION_FAILED;
945 goto done;
948 len++;
949 package_code = msi_alloc( len * sizeof(WCHAR) );
950 rc = MsiSummaryInfoGetPropertyW( suminfo, PID_REVNUMBER, NULL,
951 NULL, NULL, package_code, &len );
952 if (rc != ERROR_SUCCESS)
954 WARN("Unable to query rev number: %d\n", rc);
955 goto done;
958 msi_set_property( package->db, szPackageCode, package_code );
959 msi_free( package_code );
961 /* load package attributes */
962 count = 0;
963 MsiSummaryInfoGetPropertyW( suminfo, PID_WORDCOUNT, NULL,
964 &count, NULL, NULL, NULL );
965 package->WordCount = count;
967 done:
968 MsiCloseHandle(suminfo);
969 return rc;
972 static MSIPACKAGE *msi_alloc_package( void )
974 MSIPACKAGE *package;
976 package = alloc_msiobject( MSIHANDLETYPE_PACKAGE, sizeof (MSIPACKAGE),
977 MSI_FreePackage );
978 if( package )
980 list_init( &package->components );
981 list_init( &package->features );
982 list_init( &package->files );
983 list_init( &package->tempfiles );
984 list_init( &package->folders );
985 list_init( &package->subscriptions );
986 list_init( &package->appids );
987 list_init( &package->classes );
988 list_init( &package->mimes );
989 list_init( &package->extensions );
990 list_init( &package->progids );
991 list_init( &package->RunningActions );
992 list_init( &package->sourcelist_info );
993 list_init( &package->sourcelist_media );
994 list_init( &package->patches );
997 return package;
1000 static UINT msi_load_admin_properties(MSIPACKAGE *package)
1002 BYTE *data;
1003 UINT r, sz;
1005 static const WCHAR stmname[] = {'A','d','m','i','n','P','r','o','p','e','r','t','i','e','s',0};
1007 r = read_stream_data(package->db->storage, stmname, FALSE, &data, &sz);
1008 if (r != ERROR_SUCCESS)
1009 return r;
1011 r = msi_parse_command_line(package, (WCHAR *)data, TRUE);
1013 msi_free(data);
1014 return r;
1017 static void adjust_allusers_property( MSIPACKAGE *package )
1019 /* FIXME: this should depend on the user's privileges */
1020 if (msi_get_property_int( package->db, szAllUsers, 0 ) == 2)
1022 TRACE("resetting ALLUSERS property from 2 to 1\n");
1023 msi_set_property( package->db, szAllUsers, szOne );
1027 MSIPACKAGE *MSI_CreatePackage( MSIDATABASE *db, LPCWSTR base_url )
1029 static const WCHAR szLevel[] = { 'U','I','L','e','v','e','l',0 };
1030 static const WCHAR szpi[] = {'%','i',0};
1031 MSIPACKAGE *package;
1032 WCHAR uilevel[10];
1033 UINT r;
1035 TRACE("%p\n", db);
1037 package = msi_alloc_package();
1038 if (package)
1040 msiobj_addref( &db->hdr );
1041 package->db = db;
1043 package->WordCount = 0;
1044 package->PackagePath = strdupW( db->path );
1045 package->BaseURL = strdupW( base_url );
1047 create_temp_property_table( package );
1048 msi_clone_properties( package );
1050 package->ProductCode = msi_dup_property( package->db, szProductCode );
1051 package->script = msi_alloc_zero( sizeof(MSISCRIPT) );
1053 set_installed_prop( package );
1054 set_installer_properties( package );
1056 sprintfW(uilevel,szpi,gUILevel);
1057 msi_set_property(package->db, szLevel, uilevel);
1059 r = msi_load_summary_properties( package );
1060 if (r != ERROR_SUCCESS)
1062 msiobj_release( &package->hdr );
1063 return NULL;
1066 if (package->WordCount & msidbSumInfoSourceTypeAdminImage)
1067 msi_load_admin_properties( package );
1069 adjust_allusers_property( package );
1072 return package;
1076 * copy_package_to_temp [internal]
1078 * copy the msi file to a temp file to prevent locking a CD
1079 * with a multi disc install
1081 * FIXME: I think this is wrong, and instead of copying the package,
1082 * we should read all the tables to memory, then open the
1083 * database to read binary streams on demand.
1085 static UINT copy_package_to_temp( LPCWSTR szPackage, LPWSTR filename )
1087 WCHAR path[MAX_PATH];
1089 GetTempPathW( MAX_PATH, path );
1090 GetTempFileNameW( path, szMsi, 0, filename );
1092 if( !CopyFileW( szPackage, filename, FALSE ) )
1094 UINT error = GetLastError();
1095 ERR("failed to copy package %s to %s (%u)\n", debugstr_w(szPackage), debugstr_w(filename), error);
1096 DeleteFileW( filename );
1097 return error;
1100 return ERROR_SUCCESS;
1103 UINT msi_download_file( LPCWSTR szUrl, LPWSTR filename )
1105 LPINTERNET_CACHE_ENTRY_INFOW cache_entry;
1106 DWORD size = 0;
1107 HRESULT hr;
1109 /* call will always fail, becase size is 0,
1110 * but will return ERROR_FILE_NOT_FOUND first
1111 * if the file doesn't exist
1113 GetUrlCacheEntryInfoW( szUrl, NULL, &size );
1114 if ( GetLastError() != ERROR_FILE_NOT_FOUND )
1116 cache_entry = msi_alloc( size );
1117 if ( !GetUrlCacheEntryInfoW( szUrl, cache_entry, &size ) )
1119 UINT error = GetLastError();
1120 msi_free( cache_entry );
1121 return error;
1124 lstrcpyW( filename, cache_entry->lpszLocalFileName );
1125 msi_free( cache_entry );
1126 return ERROR_SUCCESS;
1129 hr = URLDownloadToCacheFileW( NULL, szUrl, filename, MAX_PATH, 0, NULL );
1130 if ( FAILED(hr) )
1132 WARN("failed to download %s to cache file\n", debugstr_w(szUrl));
1133 return ERROR_FUNCTION_FAILED;
1136 return ERROR_SUCCESS;
1139 UINT msi_get_local_package_name( LPWSTR path, LPCWSTR suffix )
1141 static const WCHAR szInstaller[] = {
1142 '\\','I','n','s','t','a','l','l','e','r','\\',0};
1143 static const WCHAR fmt[] = {'%','x',0};
1144 DWORD time, len, i, offset;
1145 HANDLE handle;
1147 time = GetTickCount();
1148 GetWindowsDirectoryW( path, MAX_PATH );
1149 strcatW( path, szInstaller );
1150 CreateDirectoryW( path, NULL );
1152 len = strlenW(path);
1153 for (i = 0; i < 0x10000; i++)
1155 offset = snprintfW( path + len, MAX_PATH - len, fmt, (time + i) & 0xffff );
1156 memcpy( path + len + offset, suffix, (strlenW( suffix ) + 1) * sizeof(WCHAR) );
1157 handle = CreateFileW( path, GENERIC_WRITE, 0, NULL,
1158 CREATE_NEW, FILE_ATTRIBUTE_NORMAL, 0 );
1159 if (handle != INVALID_HANDLE_VALUE)
1161 CloseHandle(handle);
1162 break;
1164 if (GetLastError() != ERROR_FILE_EXISTS &&
1165 GetLastError() != ERROR_SHARING_VIOLATION)
1166 return ERROR_FUNCTION_FAILED;
1169 return ERROR_SUCCESS;
1172 static UINT apply_registered_patch( MSIPACKAGE *package, LPCWSTR patch_code )
1174 UINT r;
1175 DWORD len;
1176 WCHAR patch_file[MAX_PATH];
1177 MSIDATABASE *patch_db;
1178 MSIPATCHINFO *patch_info;
1179 MSISUMMARYINFO *si;
1181 len = sizeof(patch_file) / sizeof(WCHAR);
1182 r = MsiGetPatchInfoExW( patch_code, package->ProductCode, NULL, package->Context,
1183 INSTALLPROPERTY_LOCALPACKAGEW, patch_file, &len );
1184 if (r != ERROR_SUCCESS)
1186 ERR("failed to get patch filename %u\n", r);
1187 return r;
1190 r = MSI_OpenDatabaseW( patch_file, MSIDBOPEN_READONLY + MSIDBOPEN_PATCHFILE, &patch_db );
1191 if (r != ERROR_SUCCESS)
1193 ERR("failed to open patch database %s\n", debugstr_w( patch_file ));
1194 return r;
1197 si = MSI_GetSummaryInformationW( patch_db->storage, 0 );
1198 if (!si)
1200 msiobj_release( &patch_db->hdr );
1201 return ERROR_FUNCTION_FAILED;
1204 r = msi_parse_patch_summary( si, &patch_info );
1205 msiobj_release( &si->hdr );
1206 if (r != ERROR_SUCCESS)
1208 ERR("failed to parse patch summary %u\n", r);
1209 msiobj_release( &patch_db->hdr );
1210 return r;
1213 patch_info->localfile = strdupW( patch_file );
1214 if (!patch_info->localfile)
1216 msiobj_release( &patch_db->hdr );
1217 return ERROR_OUTOFMEMORY;
1220 r = msi_apply_patch_db( package, patch_db, patch_info );
1221 msiobj_release( &patch_db->hdr );
1222 if (r != ERROR_SUCCESS)
1224 ERR("failed to apply patch %u\n", r);
1225 msi_free( patch_info->patchcode );
1226 msi_free( patch_info->transforms );
1227 msi_free( patch_info->localfile );
1228 msi_free( patch_info );
1230 return r;
1233 UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
1235 static const WCHAR Database[] = {'D','A','T','A','B','A','S','E',0};
1236 static const WCHAR dotmsi[] = {'.','m','s','i',0};
1237 MSIDATABASE *db = NULL;
1238 MSIPACKAGE *package;
1239 MSIHANDLE handle;
1240 LPWSTR ptr, base_url = NULL;
1241 UINT r;
1242 WCHAR temppath[MAX_PATH], localfile[MAX_PATH], cachefile[MAX_PATH];
1243 LPCWSTR file = szPackage;
1244 DWORD index = 0;
1246 TRACE("%s %p\n", debugstr_w(szPackage), pPackage);
1248 if( szPackage[0] == '#' )
1250 handle = atoiW(&szPackage[1]);
1251 db = msihandle2msiinfo( handle, MSIHANDLETYPE_DATABASE );
1252 if( !db )
1254 IWineMsiRemoteDatabase *remote_database;
1256 remote_database = (IWineMsiRemoteDatabase *)msi_get_remote( handle );
1257 if ( !remote_database )
1258 return ERROR_INVALID_HANDLE;
1260 IWineMsiRemoteDatabase_Release( remote_database );
1261 WARN("MsiOpenPackage not allowed during a custom action!\n");
1263 return ERROR_FUNCTION_FAILED;
1266 else
1268 if ( UrlIsW( szPackage, URLIS_URL ) )
1270 r = msi_download_file( szPackage, cachefile );
1271 if ( r != ERROR_SUCCESS )
1272 return r;
1274 r = copy_package_to_temp( cachefile, temppath );
1275 if ( r != ERROR_SUCCESS )
1276 return r;
1278 file = temppath;
1280 base_url = strdupW( szPackage );
1281 if ( !base_url )
1282 return ERROR_OUTOFMEMORY;
1284 ptr = strrchrW( base_url, '/' );
1285 if (ptr) *(ptr + 1) = '\0';
1287 else
1289 r = copy_package_to_temp( szPackage, temppath );
1290 if ( r != ERROR_SUCCESS )
1291 return r;
1293 file = temppath;
1296 r = msi_get_local_package_name( localfile, dotmsi );
1297 if (r != ERROR_SUCCESS)
1298 return r;
1300 TRACE("Copying to local package %s\n", debugstr_w(localfile));
1302 if (!CopyFileW( file, localfile, FALSE ))
1304 ERR("Unable to copy package (%s -> %s) (error %u)\n",
1305 debugstr_w(file), debugstr_w(localfile), GetLastError());
1306 return GetLastError();
1309 TRACE("Opening relocated package %s\n", debugstr_w( file ));
1311 /* transforms that add binary streams require that we open the database
1312 * read/write, which is safe because we always create a copy that is thrown
1313 * away when we're done.
1315 r = MSI_OpenDatabaseW( file, MSIDBOPEN_DIRECT, &db );
1316 if( r != ERROR_SUCCESS )
1318 if (file != szPackage)
1319 DeleteFileW( file );
1321 if (GetFileAttributesW(szPackage) == INVALID_FILE_ATTRIBUTES)
1322 return ERROR_FILE_NOT_FOUND;
1324 return r;
1327 db->localfile = strdupW( localfile );
1330 package = MSI_CreatePackage( db, base_url );
1331 msi_free( base_url );
1332 msiobj_release( &db->hdr );
1333 if( !package )
1335 if (file != szPackage)
1336 DeleteFileW( file );
1338 return ERROR_INSTALL_PACKAGE_INVALID;
1341 if( file != szPackage )
1342 track_tempfile( package, file );
1344 msi_set_property( package->db, Database, db->path );
1346 if( UrlIsW( szPackage, URLIS_URL ) )
1347 msi_set_property( package->db, szOriginalDatabase, szPackage );
1348 else if( szPackage[0] == '#' )
1349 msi_set_property( package->db, szOriginalDatabase, db->path );
1350 else
1352 WCHAR fullpath[MAX_PATH];
1354 GetFullPathNameW( szPackage, MAX_PATH, fullpath, NULL );
1355 msi_set_property( package->db, szOriginalDatabase, fullpath );
1358 msi_set_context( package );
1360 while (1)
1362 WCHAR patch_code[GUID_SIZE];
1363 r = MsiEnumPatchesExW( package->ProductCode, NULL, package->Context,
1364 MSIPATCHSTATE_APPLIED, index, patch_code, NULL, NULL, NULL, NULL );
1365 if (r != ERROR_SUCCESS)
1366 break;
1368 TRACE("found registered patch %s\n", debugstr_w(patch_code));
1370 r = apply_registered_patch( package, patch_code );
1371 if (r != ERROR_SUCCESS)
1373 ERR("registered patch failed to apply %u\n", r);
1374 MSI_FreePackage( (MSIOBJECTHDR *)package );
1375 return r;
1378 index++;
1381 *pPackage = package;
1382 return ERROR_SUCCESS;
1385 UINT WINAPI MsiOpenPackageExW(LPCWSTR szPackage, DWORD dwOptions, MSIHANDLE *phPackage)
1387 MSIPACKAGE *package = NULL;
1388 UINT ret;
1390 TRACE("%s %08x %p\n", debugstr_w(szPackage), dwOptions, phPackage );
1392 if( !szPackage || !phPackage )
1393 return ERROR_INVALID_PARAMETER;
1395 if ( !*szPackage )
1397 FIXME("Should create an empty database and package\n");
1398 return ERROR_FUNCTION_FAILED;
1401 if( dwOptions )
1402 FIXME("dwOptions %08x not supported\n", dwOptions);
1404 ret = MSI_OpenPackageW( szPackage, &package );
1405 if( ret == ERROR_SUCCESS )
1407 *phPackage = alloc_msihandle( &package->hdr );
1408 if (! *phPackage)
1409 ret = ERROR_NOT_ENOUGH_MEMORY;
1410 msiobj_release( &package->hdr );
1413 return ret;
1416 UINT WINAPI MsiOpenPackageW(LPCWSTR szPackage, MSIHANDLE *phPackage)
1418 return MsiOpenPackageExW( szPackage, 0, phPackage );
1421 UINT WINAPI MsiOpenPackageExA(LPCSTR szPackage, DWORD dwOptions, MSIHANDLE *phPackage)
1423 LPWSTR szwPack = NULL;
1424 UINT ret;
1426 if( szPackage )
1428 szwPack = strdupAtoW( szPackage );
1429 if( !szwPack )
1430 return ERROR_OUTOFMEMORY;
1433 ret = MsiOpenPackageExW( szwPack, dwOptions, phPackage );
1435 msi_free( szwPack );
1437 return ret;
1440 UINT WINAPI MsiOpenPackageA(LPCSTR szPackage, MSIHANDLE *phPackage)
1442 return MsiOpenPackageExA( szPackage, 0, phPackage );
1445 MSIHANDLE WINAPI MsiGetActiveDatabase(MSIHANDLE hInstall)
1447 MSIPACKAGE *package;
1448 MSIHANDLE handle = 0;
1449 IUnknown *remote_unk;
1450 IWineMsiRemotePackage *remote_package;
1452 TRACE("(%d)\n",hInstall);
1454 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
1455 if( package)
1457 handle = alloc_msihandle( &package->db->hdr );
1458 msiobj_release( &package->hdr );
1460 else if ((remote_unk = msi_get_remote(hInstall)))
1462 if (IUnknown_QueryInterface(remote_unk, &IID_IWineMsiRemotePackage,
1463 (LPVOID *)&remote_package) == S_OK)
1465 IWineMsiRemotePackage_GetActiveDatabase(remote_package, &handle);
1466 IWineMsiRemotePackage_Release(remote_package);
1468 else
1470 WARN("remote handle %d is not a package\n", hInstall);
1472 IUnknown_Release(remote_unk);
1475 return handle;
1478 INT MSI_ProcessMessage( MSIPACKAGE *package, INSTALLMESSAGE eMessageType,
1479 MSIRECORD *record)
1481 static const WCHAR szActionData[] =
1482 {'A','c','t','i','o','n','D','a','t','a',0};
1483 static const WCHAR szSetProgress[] =
1484 {'S','e','t','P','r','o','g','r','e','s','s',0};
1485 static const WCHAR szActionText[] =
1486 {'A','c','t','i','o','n','T','e','x','t',0};
1487 DWORD log_type = 0;
1488 LPWSTR message;
1489 DWORD sz;
1490 DWORD total_size = 0;
1491 INT i;
1492 INT rc;
1493 char *msg;
1494 int len;
1496 TRACE("%x\n", eMessageType);
1497 rc = 0;
1499 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ERROR)
1500 log_type |= INSTALLLOGMODE_ERROR;
1501 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_WARNING)
1502 log_type |= INSTALLLOGMODE_WARNING;
1503 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_USER)
1504 log_type |= INSTALLLOGMODE_USER;
1505 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_INFO)
1506 log_type |= INSTALLLOGMODE_INFO;
1507 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_COMMONDATA)
1508 log_type |= INSTALLLOGMODE_COMMONDATA;
1509 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONSTART)
1510 log_type |= INSTALLLOGMODE_ACTIONSTART;
1511 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONDATA)
1512 log_type |= INSTALLLOGMODE_ACTIONDATA;
1513 /* just a guess */
1514 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_PROGRESS)
1515 log_type |= 0x800;
1517 if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONSTART)
1519 static const WCHAR template_s[]=
1520 {'A','c','t','i','o','n',' ','%','s',':',' ','%','s','.',' ',0};
1521 static const WCHAR format[] =
1522 {'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0};
1523 WCHAR timet[0x100];
1524 LPCWSTR action_text, action;
1525 LPWSTR deformatted = NULL;
1527 GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, format, timet, 0x100);
1529 action = MSI_RecordGetString(record, 1);
1530 action_text = MSI_RecordGetString(record, 2);
1532 if (!action || !action_text)
1533 return IDOK;
1535 deformat_string(package, action_text, &deformatted);
1537 len = strlenW(timet) + strlenW(action) + strlenW(template_s);
1538 if (deformatted)
1539 len += strlenW(deformatted);
1540 message = msi_alloc(len*sizeof(WCHAR));
1541 sprintfW(message, template_s, timet, action);
1542 if (deformatted)
1543 strcatW(message, deformatted);
1544 msi_free(deformatted);
1546 else
1548 INT msg_field=1;
1549 message = msi_alloc(1*sizeof (WCHAR));
1550 message[0]=0;
1551 msg_field = MSI_RecordGetFieldCount(record);
1552 for (i = 1; i <= msg_field; i++)
1554 LPWSTR tmp;
1555 WCHAR number[3];
1556 static const WCHAR format[] = { '%','i',':',' ',0};
1557 sz = 0;
1558 MSI_RecordGetStringW(record,i,NULL,&sz);
1559 sz+=4;
1560 total_size+=sz*sizeof(WCHAR);
1561 tmp = msi_alloc(sz*sizeof(WCHAR));
1562 message = msi_realloc(message,total_size*sizeof (WCHAR));
1564 MSI_RecordGetStringW(record,i,tmp,&sz);
1566 if (msg_field > 1)
1568 sprintfW(number,format,i);
1569 strcatW(message,number);
1571 strcatW(message,tmp);
1572 if (msg_field > 1)
1573 strcatW(message, szSpace);
1575 msi_free(tmp);
1579 TRACE("%p %p %p %x %x %s\n", gUIHandlerA, gUIHandlerW, gUIHandlerRecord,
1580 gUIFilter, log_type, debugstr_w(message));
1582 /* convert it to ASCII */
1583 len = WideCharToMultiByte( CP_ACP, 0, message, -1, NULL, 0, NULL, NULL );
1584 msg = msi_alloc( len );
1585 WideCharToMultiByte( CP_ACP, 0, message, -1, msg, len, NULL, NULL );
1587 if (gUIHandlerW && (gUIFilter & log_type))
1589 rc = gUIHandlerW( gUIContext, eMessageType, message );
1591 else if (gUIHandlerA && (gUIFilter & log_type))
1593 rc = gUIHandlerA( gUIContext, eMessageType, msg );
1595 else if (gUIHandlerRecord && (gUIFilter & log_type))
1597 MSIHANDLE rec = MsiCreateRecord( 1 );
1598 MsiRecordSetStringW( rec, 0, message );
1599 rc = gUIHandlerRecord( gUIContext, eMessageType, rec );
1600 MsiCloseHandle( rec );
1603 if ((!rc) && (gszLogFile[0]) && !((eMessageType & 0xff000000) ==
1604 INSTALLMESSAGE_PROGRESS))
1606 DWORD write;
1607 HANDLE log_file = CreateFileW(gszLogFile,GENERIC_WRITE, 0, NULL,
1608 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
1610 if (log_file != INVALID_HANDLE_VALUE)
1612 SetFilePointer(log_file,0, NULL, FILE_END);
1613 WriteFile(log_file,msg,strlen(msg),&write,NULL);
1614 WriteFile(log_file,"\n",1,&write,NULL);
1615 CloseHandle(log_file);
1618 msi_free( msg );
1619 msi_free( message );
1621 switch (eMessageType & 0xff000000)
1623 case INSTALLMESSAGE_ACTIONDATA:
1624 /* FIXME: format record here instead of in ui_actiondata to get the
1625 * correct action data for external scripts */
1626 ControlEvent_FireSubscribedEvent(package, szActionData, record);
1627 break;
1628 case INSTALLMESSAGE_ACTIONSTART:
1630 MSIRECORD *uirow;
1631 LPWSTR deformated;
1632 LPCWSTR action_text = MSI_RecordGetString(record, 2);
1634 deformat_string(package, action_text, &deformated);
1635 uirow = MSI_CreateRecord(1);
1636 MSI_RecordSetStringW(uirow, 1, deformated);
1637 TRACE("INSTALLMESSAGE_ACTIONSTART: %s\n", debugstr_w(deformated));
1638 msi_free(deformated);
1640 ControlEvent_FireSubscribedEvent(package, szActionText, uirow);
1642 msiobj_release(&uirow->hdr);
1643 break;
1645 case INSTALLMESSAGE_PROGRESS:
1646 ControlEvent_FireSubscribedEvent(package, szSetProgress, record);
1647 break;
1650 return ERROR_SUCCESS;
1653 INT WINAPI MsiProcessMessage( MSIHANDLE hInstall, INSTALLMESSAGE eMessageType,
1654 MSIHANDLE hRecord)
1656 UINT ret = ERROR_INVALID_HANDLE;
1657 MSIPACKAGE *package = NULL;
1658 MSIRECORD *record = NULL;
1660 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE );
1661 if( !package )
1663 HRESULT hr;
1664 IWineMsiRemotePackage *remote_package;
1666 remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
1667 if (!remote_package)
1668 return ERROR_INVALID_HANDLE;
1670 hr = IWineMsiRemotePackage_ProcessMessage( remote_package, eMessageType, hRecord );
1672 IWineMsiRemotePackage_Release( remote_package );
1674 if (FAILED(hr))
1676 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1677 return HRESULT_CODE(hr);
1679 return ERROR_FUNCTION_FAILED;
1682 return ERROR_SUCCESS;
1685 record = msihandle2msiinfo( hRecord, MSIHANDLETYPE_RECORD );
1686 if( !record )
1687 goto out;
1689 ret = MSI_ProcessMessage( package, eMessageType, record );
1691 out:
1692 msiobj_release( &package->hdr );
1693 if( record )
1694 msiobj_release( &record->hdr );
1696 return ret;
1699 /* property code */
1701 UINT WINAPI MsiSetPropertyA( MSIHANDLE hInstall, LPCSTR szName, LPCSTR szValue )
1703 LPWSTR szwName = NULL, szwValue = NULL;
1704 UINT r = ERROR_OUTOFMEMORY;
1706 szwName = strdupAtoW( szName );
1707 if( szName && !szwName )
1708 goto end;
1710 szwValue = strdupAtoW( szValue );
1711 if( szValue && !szwValue )
1712 goto end;
1714 r = MsiSetPropertyW( hInstall, szwName, szwValue);
1716 end:
1717 msi_free( szwName );
1718 msi_free( szwValue );
1720 return r;
1723 void msi_reset_folders( MSIPACKAGE *package, BOOL source )
1725 MSIFOLDER *folder;
1727 LIST_FOR_EACH_ENTRY( folder, &package->folders, MSIFOLDER, entry )
1729 if ( source )
1731 msi_free( folder->ResolvedSource );
1732 folder->ResolvedSource = NULL;
1734 else
1736 msi_free( folder->ResolvedTarget );
1737 folder->ResolvedTarget = NULL;
1742 UINT msi_set_property( MSIDATABASE *db, LPCWSTR szName, LPCWSTR szValue )
1744 MSIQUERY *view;
1745 MSIRECORD *row = NULL;
1746 UINT rc;
1747 DWORD sz = 0;
1748 WCHAR Query[1024];
1750 static const WCHAR Insert[] = {
1751 'I','N','S','E','R','T',' ','i','n','t','o',' ',
1752 '`','_','P','r','o','p','e','r','t','y','`',' ','(',
1753 '`','_','P','r','o','p','e','r','t','y','`',',',
1754 '`','V','a','l','u','e','`',')',' ','V','A','L','U','E','S'
1755 ,' ','(','?',',','?',')',0};
1756 static const WCHAR Update[] = {
1757 'U','P','D','A','T','E',' ','`','_','P','r','o','p','e','r','t','y','`',
1758 ' ','s','e','t',' ','`','V','a','l','u','e','`',' ','=',' ','?',' ',
1759 'w','h','e','r','e',' ','`','_','P','r','o','p','e','r','t','y','`',
1760 ' ','=',' ','\'','%','s','\'',0};
1761 static const WCHAR Delete[] = {
1762 'D','E','L','E','T','E',' ','F','R','O','M',' ',
1763 '`','_','P','r','o','p','e','r','t','y','`',' ','W','H','E','R','E',' ',
1764 '`','_','P','r','o','p','e','r','t','y','`',' ','=',' ','\'','%','s','\'',0};
1766 TRACE("%p %s %s\n", db, debugstr_w(szName), debugstr_w(szValue));
1768 if (!szName)
1769 return ERROR_INVALID_PARAMETER;
1771 /* this one is weird... */
1772 if (!szName[0])
1773 return szValue ? ERROR_FUNCTION_FAILED : ERROR_SUCCESS;
1775 rc = msi_get_property(db, szName, 0, &sz);
1776 if (!szValue || !*szValue)
1778 sprintfW(Query, Delete, szName);
1780 else if (rc == ERROR_MORE_DATA || rc == ERROR_SUCCESS)
1782 sprintfW(Query, Update, szName);
1784 row = MSI_CreateRecord(1);
1785 MSI_RecordSetStringW(row, 1, szValue);
1787 else
1789 strcpyW(Query, Insert);
1791 row = MSI_CreateRecord(2);
1792 MSI_RecordSetStringW(row, 1, szName);
1793 MSI_RecordSetStringW(row, 2, szValue);
1796 rc = MSI_DatabaseOpenViewW(db, Query, &view);
1797 if (rc == ERROR_SUCCESS)
1799 rc = MSI_ViewExecute(view, row);
1800 MSI_ViewClose(view);
1801 msiobj_release(&view->hdr);
1804 if (row)
1805 msiobj_release(&row->hdr);
1807 return rc;
1810 UINT WINAPI MsiSetPropertyW( MSIHANDLE hInstall, LPCWSTR szName, LPCWSTR szValue)
1812 MSIPACKAGE *package;
1813 UINT ret;
1815 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE);
1816 if( !package )
1818 HRESULT hr;
1819 BSTR name = NULL, value = NULL;
1820 IWineMsiRemotePackage *remote_package;
1822 remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
1823 if (!remote_package)
1824 return ERROR_INVALID_HANDLE;
1826 name = SysAllocString( szName );
1827 value = SysAllocString( szValue );
1828 if ((!name && szName) || (!value && szValue))
1830 SysFreeString( name );
1831 SysFreeString( value );
1832 IWineMsiRemotePackage_Release( remote_package );
1833 return ERROR_OUTOFMEMORY;
1836 hr = IWineMsiRemotePackage_SetProperty( remote_package, name, value );
1838 SysFreeString( name );
1839 SysFreeString( value );
1840 IWineMsiRemotePackage_Release( remote_package );
1842 if (FAILED(hr))
1844 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1845 return HRESULT_CODE(hr);
1847 return ERROR_FUNCTION_FAILED;
1850 return ERROR_SUCCESS;
1853 ret = msi_set_property( package->db, szName, szValue );
1854 if (ret == ERROR_SUCCESS && !strcmpW( szName, cszSourceDir ))
1855 msi_reset_folders( package, TRUE );
1857 msiobj_release( &package->hdr );
1858 return ret;
1861 static MSIRECORD *msi_get_property_row( MSIDATABASE *db, LPCWSTR name )
1863 MSIQUERY *view;
1864 MSIRECORD *rec, *row = NULL;
1865 UINT r;
1867 static const WCHAR query[]= {
1868 'S','E','L','E','C','T',' ','`','V','a','l','u','e','`',' ',
1869 'F','R','O','M',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
1870 ' ','W','H','E','R','E',' ' ,'`','_','P','r','o','p','e','r','t','y','`',
1871 '=','?',0};
1873 if (!name || !*name)
1874 return NULL;
1876 rec = MSI_CreateRecord(1);
1877 if (!rec)
1878 return NULL;
1880 MSI_RecordSetStringW(rec, 1, name);
1882 r = MSI_DatabaseOpenViewW(db, query, &view);
1883 if (r == ERROR_SUCCESS)
1885 MSI_ViewExecute(view, rec);
1886 MSI_ViewFetch(view, &row);
1887 MSI_ViewClose(view);
1888 msiobj_release(&view->hdr);
1891 msiobj_release(&rec->hdr);
1892 return row;
1895 /* internal function, not compatible with MsiGetPropertyW */
1896 UINT msi_get_property( MSIDATABASE *db, LPCWSTR szName,
1897 LPWSTR szValueBuf, LPDWORD pchValueBuf )
1899 MSIRECORD *row;
1900 UINT rc = ERROR_FUNCTION_FAILED;
1902 row = msi_get_property_row( db, szName );
1904 if (*pchValueBuf > 0)
1905 szValueBuf[0] = 0;
1907 if (row)
1909 rc = MSI_RecordGetStringW(row, 1, szValueBuf, pchValueBuf);
1910 msiobj_release(&row->hdr);
1913 if (rc == ERROR_SUCCESS)
1914 TRACE("returning %s for property %s\n", debugstr_w(szValueBuf),
1915 debugstr_w(szName));
1916 else if (rc == ERROR_MORE_DATA)
1917 TRACE("need %d sized buffer for %s\n", *pchValueBuf,
1918 debugstr_w(szName));
1919 else
1921 *pchValueBuf = 0;
1922 TRACE("property %s not found\n", debugstr_w(szName));
1925 return rc;
1928 LPWSTR msi_dup_property(MSIDATABASE *db, LPCWSTR prop)
1930 DWORD sz = 0;
1931 LPWSTR str;
1932 UINT r;
1934 r = msi_get_property(db, prop, NULL, &sz);
1935 if (r != ERROR_SUCCESS && r != ERROR_MORE_DATA)
1936 return NULL;
1938 sz++;
1939 str = msi_alloc(sz * sizeof(WCHAR));
1940 r = msi_get_property(db, prop, str, &sz);
1941 if (r != ERROR_SUCCESS)
1943 msi_free(str);
1944 str = NULL;
1947 return str;
1950 int msi_get_property_int( MSIDATABASE *db, LPCWSTR prop, int def )
1952 LPWSTR str = msi_dup_property( db, prop );
1953 int val = str ? atoiW(str) : def;
1954 msi_free(str);
1955 return val;
1958 static UINT MSI_GetProperty( MSIHANDLE handle, LPCWSTR name,
1959 awstring *szValueBuf, LPDWORD pchValueBuf )
1961 MSIPACKAGE *package;
1962 MSIRECORD *row = NULL;
1963 UINT r = ERROR_FUNCTION_FAILED;
1964 LPCWSTR val = NULL;
1966 TRACE("%u %s %p %p\n", handle, debugstr_w(name),
1967 szValueBuf->str.w, pchValueBuf );
1969 if (!name)
1970 return ERROR_INVALID_PARAMETER;
1972 package = msihandle2msiinfo( handle, MSIHANDLETYPE_PACKAGE );
1973 if (!package)
1975 HRESULT hr;
1976 IWineMsiRemotePackage *remote_package;
1977 LPWSTR value = NULL;
1978 BSTR bname;
1979 DWORD len;
1981 remote_package = (IWineMsiRemotePackage *)msi_get_remote( handle );
1982 if (!remote_package)
1983 return ERROR_INVALID_HANDLE;
1985 bname = SysAllocString( name );
1986 if (!bname)
1988 IWineMsiRemotePackage_Release( remote_package );
1989 return ERROR_OUTOFMEMORY;
1992 len = 0;
1993 hr = IWineMsiRemotePackage_GetProperty( remote_package, bname, NULL, &len );
1994 if (FAILED(hr))
1995 goto done;
1997 len++;
1998 value = msi_alloc(len * sizeof(WCHAR));
1999 if (!value)
2001 r = ERROR_OUTOFMEMORY;
2002 goto done;
2005 hr = IWineMsiRemotePackage_GetProperty( remote_package, bname, (BSTR *)value, &len );
2006 if (FAILED(hr))
2007 goto done;
2009 r = msi_strcpy_to_awstring( value, szValueBuf, pchValueBuf );
2011 /* Bug required by Adobe installers */
2012 if (!szValueBuf->unicode && !szValueBuf->str.a)
2013 *pchValueBuf *= sizeof(WCHAR);
2015 done:
2016 IWineMsiRemotePackage_Release(remote_package);
2017 SysFreeString(bname);
2018 msi_free(value);
2020 if (FAILED(hr))
2022 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
2023 return HRESULT_CODE(hr);
2025 return ERROR_FUNCTION_FAILED;
2028 return r;
2031 row = msi_get_property_row( package->db, name );
2032 if (row)
2033 val = MSI_RecordGetString( row, 1 );
2035 if (!val)
2036 val = szEmpty;
2038 r = msi_strcpy_to_awstring( val, szValueBuf, pchValueBuf );
2040 if (row)
2041 msiobj_release( &row->hdr );
2042 msiobj_release( &package->hdr );
2044 return r;
2047 UINT WINAPI MsiGetPropertyA( MSIHANDLE hInstall, LPCSTR szName,
2048 LPSTR szValueBuf, LPDWORD pchValueBuf )
2050 awstring val;
2051 LPWSTR name;
2052 UINT r;
2054 val.unicode = FALSE;
2055 val.str.a = szValueBuf;
2057 name = strdupAtoW( szName );
2058 if (szName && !name)
2059 return ERROR_OUTOFMEMORY;
2061 r = MSI_GetProperty( hInstall, name, &val, pchValueBuf );
2062 msi_free( name );
2063 return r;
2066 UINT WINAPI MsiGetPropertyW( MSIHANDLE hInstall, LPCWSTR szName,
2067 LPWSTR szValueBuf, LPDWORD pchValueBuf )
2069 awstring val;
2071 val.unicode = TRUE;
2072 val.str.w = szValueBuf;
2074 return MSI_GetProperty( hInstall, szName, &val, pchValueBuf );
2077 typedef struct _msi_remote_package_impl {
2078 const IWineMsiRemotePackageVtbl *lpVtbl;
2079 MSIHANDLE package;
2080 LONG refs;
2081 } msi_remote_package_impl;
2083 static inline msi_remote_package_impl* mrp_from_IWineMsiRemotePackage( IWineMsiRemotePackage* iface )
2085 return (msi_remote_package_impl*) iface;
2088 static HRESULT WINAPI mrp_QueryInterface( IWineMsiRemotePackage *iface,
2089 REFIID riid,LPVOID *ppobj)
2091 if( IsEqualCLSID( riid, &IID_IUnknown ) ||
2092 IsEqualCLSID( riid, &IID_IWineMsiRemotePackage ) )
2094 IUnknown_AddRef( iface );
2095 *ppobj = iface;
2096 return S_OK;
2099 return E_NOINTERFACE;
2102 static ULONG WINAPI mrp_AddRef( IWineMsiRemotePackage *iface )
2104 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2106 return InterlockedIncrement( &This->refs );
2109 static ULONG WINAPI mrp_Release( IWineMsiRemotePackage *iface )
2111 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2112 ULONG r;
2114 r = InterlockedDecrement( &This->refs );
2115 if (r == 0)
2117 MsiCloseHandle( This->package );
2118 msi_free( This );
2120 return r;
2123 static HRESULT WINAPI mrp_SetMsiHandle( IWineMsiRemotePackage *iface, MSIHANDLE handle )
2125 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2126 This->package = handle;
2127 return S_OK;
2130 static HRESULT WINAPI mrp_GetActiveDatabase( IWineMsiRemotePackage *iface, MSIHANDLE *handle )
2132 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2133 IWineMsiRemoteDatabase *rdb = NULL;
2134 HRESULT hr;
2135 MSIHANDLE hdb;
2137 hr = create_msi_remote_database( NULL, (LPVOID *)&rdb );
2138 if (FAILED(hr) || !rdb)
2140 ERR("Failed to create remote database\n");
2141 return hr;
2144 hdb = MsiGetActiveDatabase(This->package);
2146 hr = IWineMsiRemoteDatabase_SetMsiHandle( rdb, hdb );
2147 if (FAILED(hr))
2149 ERR("Failed to set the database handle\n");
2150 return hr;
2153 *handle = alloc_msi_remote_handle( (IUnknown *)rdb );
2154 return S_OK;
2157 static HRESULT WINAPI mrp_GetProperty( IWineMsiRemotePackage *iface, BSTR property, BSTR *value, DWORD *size )
2159 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2160 UINT r;
2162 r = MsiGetPropertyW(This->package, (LPWSTR)property, (LPWSTR)value, size);
2163 if (r != ERROR_SUCCESS)
2164 return HRESULT_FROM_WIN32(r);
2166 return S_OK;
2169 static HRESULT WINAPI mrp_SetProperty( IWineMsiRemotePackage *iface, BSTR property, BSTR value )
2171 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2172 UINT r = MsiSetPropertyW(This->package, property, value);
2173 return HRESULT_FROM_WIN32(r);
2176 static HRESULT WINAPI mrp_ProcessMessage( IWineMsiRemotePackage *iface, INSTALLMESSAGE message, MSIHANDLE record )
2178 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2179 UINT r = MsiProcessMessage(This->package, message, record);
2180 return HRESULT_FROM_WIN32(r);
2183 static HRESULT WINAPI mrp_DoAction( IWineMsiRemotePackage *iface, BSTR action )
2185 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2186 UINT r = MsiDoActionW(This->package, action);
2187 return HRESULT_FROM_WIN32(r);
2190 static HRESULT WINAPI mrp_Sequence( IWineMsiRemotePackage *iface, BSTR table, int sequence )
2192 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2193 UINT r = MsiSequenceW(This->package, table, sequence);
2194 return HRESULT_FROM_WIN32(r);
2197 static HRESULT WINAPI mrp_GetTargetPath( IWineMsiRemotePackage *iface, BSTR folder, BSTR *value, DWORD *size )
2199 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2200 UINT r = MsiGetTargetPathW(This->package, (LPWSTR)folder, (LPWSTR)value, size);
2201 return HRESULT_FROM_WIN32(r);
2204 static HRESULT WINAPI mrp_SetTargetPath( IWineMsiRemotePackage *iface, BSTR folder, BSTR value)
2206 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2207 UINT r = MsiSetTargetPathW(This->package, folder, value);
2208 return HRESULT_FROM_WIN32(r);
2211 static HRESULT WINAPI mrp_GetSourcePath( IWineMsiRemotePackage *iface, BSTR folder, BSTR *value, DWORD *size )
2213 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2214 UINT r = MsiGetSourcePathW(This->package, (LPWSTR)folder, (LPWSTR)value, size);
2215 return HRESULT_FROM_WIN32(r);
2218 static HRESULT WINAPI mrp_GetMode( IWineMsiRemotePackage *iface, MSIRUNMODE mode, BOOL *ret )
2220 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2221 *ret = MsiGetMode(This->package, mode);
2222 return S_OK;
2225 static HRESULT WINAPI mrp_SetMode( IWineMsiRemotePackage *iface, MSIRUNMODE mode, BOOL state )
2227 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2228 UINT r = MsiSetMode(This->package, mode, state);
2229 return HRESULT_FROM_WIN32(r);
2232 static HRESULT WINAPI mrp_GetFeatureState( IWineMsiRemotePackage *iface, BSTR feature,
2233 INSTALLSTATE *installed, INSTALLSTATE *action )
2235 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2236 UINT r = MsiGetFeatureStateW(This->package, feature, installed, action);
2237 return HRESULT_FROM_WIN32(r);
2240 static HRESULT WINAPI mrp_SetFeatureState( IWineMsiRemotePackage *iface, BSTR feature, INSTALLSTATE state )
2242 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2243 UINT r = MsiSetFeatureStateW(This->package, feature, state);
2244 return HRESULT_FROM_WIN32(r);
2247 static HRESULT WINAPI mrp_GetComponentState( IWineMsiRemotePackage *iface, BSTR component,
2248 INSTALLSTATE *installed, INSTALLSTATE *action )
2250 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2251 UINT r = MsiGetComponentStateW(This->package, component, installed, action);
2252 return HRESULT_FROM_WIN32(r);
2255 static HRESULT WINAPI mrp_SetComponentState( IWineMsiRemotePackage *iface, BSTR component, INSTALLSTATE state )
2257 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2258 UINT r = MsiSetComponentStateW(This->package, component, state);
2259 return HRESULT_FROM_WIN32(r);
2262 static HRESULT WINAPI mrp_GetLanguage( IWineMsiRemotePackage *iface, LANGID *language )
2264 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2265 *language = MsiGetLanguage(This->package);
2266 return S_OK;
2269 static HRESULT WINAPI mrp_SetInstallLevel( IWineMsiRemotePackage *iface, int level )
2271 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2272 UINT r = MsiSetInstallLevel(This->package, level);
2273 return HRESULT_FROM_WIN32(r);
2276 static HRESULT WINAPI mrp_FormatRecord( IWineMsiRemotePackage *iface, MSIHANDLE record,
2277 BSTR *value)
2279 DWORD size = 0;
2280 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2281 UINT r = MsiFormatRecordW(This->package, record, NULL, &size);
2282 if (r == ERROR_SUCCESS)
2284 *value = SysAllocStringLen(NULL, size);
2285 if (!*value)
2286 return E_OUTOFMEMORY;
2287 size++;
2288 r = MsiFormatRecordW(This->package, record, *value, &size);
2290 return HRESULT_FROM_WIN32(r);
2293 static HRESULT WINAPI mrp_EvaluateCondition( IWineMsiRemotePackage *iface, BSTR condition )
2295 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2296 UINT r = MsiEvaluateConditionW(This->package, condition);
2297 return HRESULT_FROM_WIN32(r);
2300 static HRESULT WINAPI mrp_GetFeatureCost( IWineMsiRemotePackage *iface, BSTR feature,
2301 INT cost_tree, INSTALLSTATE state, INT *cost )
2303 msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
2304 UINT r = MsiGetFeatureCostW(This->package, feature, cost_tree, state, cost);
2305 return HRESULT_FROM_WIN32(r);
2308 static const IWineMsiRemotePackageVtbl msi_remote_package_vtbl =
2310 mrp_QueryInterface,
2311 mrp_AddRef,
2312 mrp_Release,
2313 mrp_SetMsiHandle,
2314 mrp_GetActiveDatabase,
2315 mrp_GetProperty,
2316 mrp_SetProperty,
2317 mrp_ProcessMessage,
2318 mrp_DoAction,
2319 mrp_Sequence,
2320 mrp_GetTargetPath,
2321 mrp_SetTargetPath,
2322 mrp_GetSourcePath,
2323 mrp_GetMode,
2324 mrp_SetMode,
2325 mrp_GetFeatureState,
2326 mrp_SetFeatureState,
2327 mrp_GetComponentState,
2328 mrp_SetComponentState,
2329 mrp_GetLanguage,
2330 mrp_SetInstallLevel,
2331 mrp_FormatRecord,
2332 mrp_EvaluateCondition,
2333 mrp_GetFeatureCost,
2336 HRESULT create_msi_remote_package( IUnknown *pOuter, LPVOID *ppObj )
2338 msi_remote_package_impl* This;
2340 This = msi_alloc( sizeof *This );
2341 if (!This)
2342 return E_OUTOFMEMORY;
2344 This->lpVtbl = &msi_remote_package_vtbl;
2345 This->package = 0;
2346 This->refs = 1;
2348 *ppObj = This;
2350 return S_OK;
2353 UINT msi_package_add_info(MSIPACKAGE *package, DWORD context, DWORD options,
2354 LPCWSTR property, LPWSTR value)
2356 MSISOURCELISTINFO *info;
2358 info = msi_alloc(sizeof(MSISOURCELISTINFO));
2359 if (!info)
2360 return ERROR_OUTOFMEMORY;
2362 info->context = context;
2363 info->options = options;
2364 info->property = property;
2365 info->value = strdupW(value);
2366 list_add_head(&package->sourcelist_info, &info->entry);
2368 return ERROR_SUCCESS;
2371 UINT msi_package_add_media_disk(MSIPACKAGE *package, DWORD context, DWORD options,
2372 DWORD disk_id, LPWSTR volume_label, LPWSTR disk_prompt)
2374 MSIMEDIADISK *disk;
2376 disk = msi_alloc(sizeof(MSIMEDIADISK));
2377 if (!disk)
2378 return ERROR_OUTOFMEMORY;
2380 disk->context = context;
2381 disk->options = options;
2382 disk->disk_id = disk_id;
2383 disk->volume_label = strdupW(volume_label);
2384 disk->disk_prompt = strdupW(disk_prompt);
2385 list_add_head(&package->sourcelist_media, &disk->entry);
2387 return ERROR_SUCCESS;