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