msi: Read the disk prompt source list property from the user-unmanaged context.
[wine.git] / dlls / msi / files.c
blob8ed23955c63b5cf823c4a119d7aa5f71392a94b8
1 /*
2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2005 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
23 * Actions dealing with files These are
25 * InstallFiles
26 * DuplicateFiles
27 * MoveFiles (TODO)
28 * PatchFiles (TODO)
29 * RemoveDuplicateFiles(TODO)
30 * RemoveFiles(TODO)
33 #include <stdarg.h>
35 #include "windef.h"
36 #include "winbase.h"
37 #include "winerror.h"
38 #include "wine/debug.h"
39 #include "fdi.h"
40 #include "msi.h"
41 #include "msidefs.h"
42 #include "msvcrt/fcntl.h"
43 #include "msipriv.h"
44 #include "winuser.h"
45 #include "winreg.h"
46 #include "shlwapi.h"
47 #include "wine/unicode.h"
49 WINE_DEFAULT_DEBUG_CHANNEL(msi);
51 extern const WCHAR szInstallFiles[];
52 extern const WCHAR szDuplicateFiles[];
53 extern const WCHAR szMoveFiles[];
54 extern const WCHAR szPatchFiles[];
55 extern const WCHAR szRemoveDuplicateFiles[];
56 extern const WCHAR szRemoveFiles[];
58 static const WCHAR cszTempFolder[]= {'T','e','m','p','F','o','l','d','e','r',0};
60 struct media_info {
61 UINT disk_id;
62 UINT last_sequence;
63 LPWSTR disk_prompt;
64 LPWSTR cabinet;
65 LPWSTR first_volume;
66 LPWSTR volume_label;
67 BOOL is_continuous;
68 BOOL is_extracted;
69 WCHAR source[MAX_PATH];
72 static BOOL source_matches_volume(struct media_info *mi, LPWSTR source_root)
74 WCHAR volume_name[MAX_PATH + 1];
76 if (!GetVolumeInformationW(source_root, volume_name, MAX_PATH + 1,
77 NULL, NULL, NULL, NULL, 0))
79 ERR("Failed to get volume information\n");
80 return FALSE;
83 return !lstrcmpW(mi->volume_label, volume_name);
86 static UINT msi_change_media( MSIPACKAGE *package, struct media_info *mi )
88 LPSTR msg;
89 LPWSTR error, error_dialog;
90 LPWSTR source_dir;
91 UINT r = ERROR_SUCCESS;
93 static const WCHAR szUILevel[] = {'U','I','L','e','v','e','l',0};
94 static const WCHAR error_prop[] = {'E','r','r','o','r','D','i','a','l','o','g',0};
96 if ( (msi_get_property_int(package, szUILevel, 0) & INSTALLUILEVEL_MASK) == INSTALLUILEVEL_NONE && !gUIHandlerA )
97 return ERROR_SUCCESS;
99 error = generate_error_string( package, 1302, 1, mi->disk_prompt );
100 error_dialog = msi_dup_property( package, error_prop );
101 source_dir = msi_dup_property( package, cszSourceDir );
102 PathStripToRootW(source_dir);
104 while ( r == ERROR_SUCCESS &&
105 !source_matches_volume(mi, source_dir) )
107 r = msi_spawn_error_dialog( package, error_dialog, error );
109 if (gUIHandlerA)
111 msg = strdupWtoA( error );
112 gUIHandlerA( gUIContext, MB_RETRYCANCEL | INSTALLMESSAGE_ERROR, msg );
113 msi_free(msg);
117 msi_free( error );
118 msi_free( error_dialog );
119 msi_free( source_dir );
121 return r;
125 * This is a helper function for handling embedded cabinet media
127 static UINT writeout_cabinet_stream(MSIPACKAGE *package, LPCWSTR stream_name,
128 WCHAR* source)
130 UINT rc;
131 USHORT* data;
132 UINT size;
133 DWORD write;
134 HANDLE the_file;
135 WCHAR tmp[MAX_PATH];
137 rc = read_raw_stream_data(package->db,stream_name,&data,&size);
138 if (rc != ERROR_SUCCESS)
139 return rc;
141 write = MAX_PATH;
142 if (MSI_GetPropertyW(package, cszTempFolder, tmp, &write))
143 GetTempPathW(MAX_PATH,tmp);
145 GetTempFileNameW(tmp,stream_name,0,source);
147 track_tempfile(package, source);
148 the_file = CreateFileW(source, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
149 FILE_ATTRIBUTE_NORMAL, NULL);
151 if (the_file == INVALID_HANDLE_VALUE)
153 ERR("Unable to create file %s\n",debugstr_w(source));
154 rc = ERROR_FUNCTION_FAILED;
155 goto end;
158 WriteFile(the_file,data,size,&write,NULL);
159 CloseHandle(the_file);
160 TRACE("wrote %i bytes to %s\n",write,debugstr_w(source));
161 end:
162 msi_free(data);
163 return rc;
167 /* Support functions for FDI functions */
168 typedef struct
170 MSIPACKAGE* package;
171 struct media_info *mi;
172 } CabData;
174 static void * cabinet_alloc(ULONG cb)
176 return msi_alloc(cb);
179 static void cabinet_free(void *pv)
181 msi_free(pv);
184 static INT_PTR cabinet_open(char *pszFile, int oflag, int pmode)
186 HANDLE handle;
187 DWORD dwAccess = 0;
188 DWORD dwShareMode = 0;
189 DWORD dwCreateDisposition = OPEN_EXISTING;
190 switch (oflag & _O_ACCMODE)
192 case _O_RDONLY:
193 dwAccess = GENERIC_READ;
194 dwShareMode = FILE_SHARE_READ | FILE_SHARE_DELETE;
195 break;
196 case _O_WRONLY:
197 dwAccess = GENERIC_WRITE;
198 dwShareMode = FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE;
199 break;
200 case _O_RDWR:
201 dwAccess = GENERIC_READ | GENERIC_WRITE;
202 dwShareMode = FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE;
203 break;
205 if ((oflag & (_O_CREAT | _O_EXCL)) == (_O_CREAT | _O_EXCL))
206 dwCreateDisposition = CREATE_NEW;
207 else if (oflag & _O_CREAT)
208 dwCreateDisposition = CREATE_ALWAYS;
209 handle = CreateFileA( pszFile, dwAccess, dwShareMode, NULL,
210 dwCreateDisposition, 0, NULL );
211 if (handle == INVALID_HANDLE_VALUE)
212 return 0;
213 return (INT_PTR) handle;
216 static UINT cabinet_read(INT_PTR hf, void *pv, UINT cb)
218 HANDLE handle = (HANDLE) hf;
219 DWORD dwRead;
220 if (ReadFile(handle, pv, cb, &dwRead, NULL))
221 return dwRead;
222 return 0;
225 static UINT cabinet_write(INT_PTR hf, void *pv, UINT cb)
227 HANDLE handle = (HANDLE) hf;
228 DWORD dwWritten;
229 if (WriteFile(handle, pv, cb, &dwWritten, NULL))
230 return dwWritten;
231 return 0;
234 static int cabinet_close(INT_PTR hf)
236 HANDLE handle = (HANDLE) hf;
237 return CloseHandle(handle) ? 0 : -1;
240 static long cabinet_seek(INT_PTR hf, long dist, int seektype)
242 HANDLE handle = (HANDLE) hf;
243 /* flags are compatible and so are passed straight through */
244 return SetFilePointer(handle, dist, NULL, seektype);
247 static void msi_file_update_ui( MSIPACKAGE *package, MSIFILE *f, const WCHAR *action )
249 MSIRECORD *uirow;
250 LPWSTR uipath, p;
252 /* the UI chunk */
253 uirow = MSI_CreateRecord( 9 );
254 MSI_RecordSetStringW( uirow, 1, f->FileName );
255 uipath = strdupW( f->TargetPath );
256 p = strrchrW(uipath,'\\');
257 if (p)
258 p[1]=0;
259 MSI_RecordSetStringW( uirow, 9, uipath);
260 MSI_RecordSetInteger( uirow, 6, f->FileSize );
261 ui_actiondata( package, action, uirow);
262 msiobj_release( &uirow->hdr );
263 msi_free( uipath );
264 ui_progress( package, 2, f->FileSize, 0, 0);
267 static UINT msi_media_get_disk_info( MSIPACKAGE *package, struct media_info *mi )
269 MSIRECORD *row;
270 LPWSTR ptr;
272 static const WCHAR query[] =
273 {'S','E','L','E','C','T',' ','*',' ', 'F','R','O','M',' ',
274 '`','M','e','d','i','a','`',' ','W','H','E','R','E',' ',
275 '`','D','i','s','k','I','d','`',' ','=',' ','%','i',0};
277 row = MSI_QueryGetRecord(package->db, query, mi->disk_id);
278 if (!row)
280 TRACE("Unable to query row\n");
281 return ERROR_FUNCTION_FAILED;
284 mi->disk_prompt = strdupW(MSI_RecordGetString(row, 3));
285 mi->cabinet = strdupW(MSI_RecordGetString(row, 4));
286 mi->volume_label = strdupW(MSI_RecordGetString(row, 5));
288 if (!mi->first_volume)
289 mi->first_volume = strdupW(mi->volume_label);
291 ptr = strrchrW(mi->source, '\\') + 1;
292 lstrcpyW(ptr, mi->cabinet);
293 msiobj_release(&row->hdr);
295 return ERROR_SUCCESS;
298 static INT_PTR cabinet_notify(FDINOTIFICATIONTYPE fdint, PFDINOTIFICATION pfdin)
300 TRACE("(%d)\n", fdint);
302 switch (fdint)
304 case fdintPARTIAL_FILE:
306 CabData *data = (CabData *)pfdin->pv;
307 data->mi->is_continuous = FALSE;
308 return 0;
310 case fdintNEXT_CABINET:
312 CabData *data = (CabData *)pfdin->pv;
313 struct media_info *mi = data->mi;
314 LPWSTR cab = strdupAtoW(pfdin->psz1);
315 UINT rc;
317 msi_free(mi->disk_prompt);
318 msi_free(mi->cabinet);
319 msi_free(mi->volume_label);
320 mi->disk_prompt = NULL;
321 mi->cabinet = NULL;
322 mi->volume_label = NULL;
324 mi->disk_id++;
325 mi->is_continuous = TRUE;
327 rc = msi_media_get_disk_info(data->package, mi);
328 if (rc != ERROR_SUCCESS)
330 msi_free(cab);
331 ERR("Failed to get next cabinet information: %d\n", rc);
332 return -1;
335 if (lstrcmpiW(mi->cabinet, cab))
337 msi_free(cab);
338 ERR("Continuous cabinet does not match the next cabinet in the Media table\n");
339 return -1;
342 msi_free(cab);
344 TRACE("Searching for %s\n", debugstr_w(mi->source));
346 if (GetFileAttributesW(mi->source) == INVALID_FILE_ATTRIBUTES)
347 rc = msi_change_media(data->package, mi);
349 if (rc != ERROR_SUCCESS)
350 return -1;
352 return 0;
354 case fdintCOPY_FILE:
356 CabData *data = (CabData*) pfdin->pv;
357 HANDLE handle;
358 LPWSTR file;
359 MSIFILE *f;
360 DWORD attrs;
362 file = strdupAtoW(pfdin->psz1);
363 f = get_loaded_file(data->package, file);
364 msi_free(file);
366 if (!f)
368 WARN("unknown file in cabinet (%s)\n",debugstr_a(pfdin->psz1));
369 return 0;
372 if (f->state != msifs_missing && f->state != msifs_overwrite)
374 TRACE("Skipping extraction of %s\n",debugstr_a(pfdin->psz1));
375 return 0;
378 msi_file_update_ui( data->package, f, szInstallFiles );
380 TRACE("extracting %s\n", debugstr_w(f->TargetPath) );
382 attrs = f->Attributes & (FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM);
383 if (!attrs) attrs = FILE_ATTRIBUTE_NORMAL;
385 handle = CreateFileW( f->TargetPath, GENERIC_READ | GENERIC_WRITE, 0,
386 NULL, CREATE_ALWAYS, attrs, NULL );
387 if ( handle == INVALID_HANDLE_VALUE )
389 if ( GetFileAttributesW( f->TargetPath ) != INVALID_FILE_ATTRIBUTES )
390 f->state = msifs_installed;
391 else
392 ERR("failed to create %s (error %d)\n",
393 debugstr_w( f->TargetPath ), GetLastError() );
395 return 0;
398 f->state = msifs_installed;
399 return (INT_PTR) handle;
401 case fdintCLOSE_FILE_INFO:
403 FILETIME ft;
404 FILETIME ftLocal;
405 HANDLE handle = (HANDLE) pfdin->hf;
407 if (!DosDateTimeToFileTime(pfdin->date, pfdin->time, &ft))
408 return -1;
409 if (!LocalFileTimeToFileTime(&ft, &ftLocal))
410 return -1;
411 if (!SetFileTime(handle, &ftLocal, 0, &ftLocal))
412 return -1;
413 CloseHandle(handle);
414 return 1;
416 default:
417 return 0;
421 /***********************************************************************
422 * extract_cabinet_file
424 * Extract files from a cab file.
426 static BOOL extract_cabinet_file(MSIPACKAGE* package, struct media_info *mi)
428 LPSTR cabinet, cab_path = NULL;
429 LPWSTR ptr;
430 HFDI hfdi;
431 ERF erf;
432 BOOL ret = FALSE;
433 CabData data;
435 TRACE("Extracting %s\n", debugstr_w(mi->source));
437 hfdi = FDICreate(cabinet_alloc, cabinet_free, cabinet_open, cabinet_read,
438 cabinet_write, cabinet_close, cabinet_seek, 0, &erf);
439 if (!hfdi)
441 ERR("FDICreate failed\n");
442 return FALSE;
445 ptr = strrchrW(mi->source, '\\') + 1;
446 cabinet = strdupWtoA(ptr);
447 if (!cabinet)
448 goto done;
450 cab_path = strdupWtoA(mi->source);
451 if (!cab_path)
452 goto done;
454 cab_path[ptr - mi->source] = '\0';
456 data.package = package;
457 data.mi = mi;
459 ret = FDICopy(hfdi, cabinet, cab_path, 0, cabinet_notify, NULL, &data);
460 if (!ret)
461 ERR("FDICopy failed\n");
463 done:
464 FDIDestroy(hfdi);
465 msi_free(cabinet);
466 msi_free(cab_path);
468 if (ret)
469 mi->is_extracted = TRUE;
471 return ret;
474 static VOID set_file_source(MSIPACKAGE* package, MSIFILE* file, LPCWSTR path)
476 if (!file->IsCompressed)
478 LPWSTR p, path;
479 p = resolve_folder(package, file->Component->Directory, TRUE, FALSE, TRUE, NULL);
480 path = build_directory_name(2, p, file->ShortName);
481 if (file->LongName &&
482 INVALID_FILE_ATTRIBUTES == GetFileAttributesW( path ))
484 msi_free(path);
485 path = build_directory_name(2, p, file->LongName);
487 file->SourcePath = path;
488 msi_free(p);
490 else
491 file->SourcePath = build_directory_name(2, path, file->File);
494 static void free_media_info( struct media_info *mi )
496 msi_free( mi->disk_prompt );
497 msi_free( mi->cabinet );
498 msi_free( mi->volume_label );
499 msi_free( mi->first_volume );
500 msi_free( mi );
503 static UINT load_media_info(MSIPACKAGE *package, MSIFILE *file, struct media_info *mi)
505 MSIRECORD *row;
506 LPWSTR source_dir;
507 UINT r;
509 static const WCHAR query[] = {
510 'S','E','L','E','C','T',' ','*',' ', 'F','R','O','M',' ',
511 '`','M','e','d','i','a','`',' ','W','H','E','R','E',' ',
512 '`','L','a','s','t','S','e','q','u','e','n','c','e','`',' ','>','=',
513 ' ','%','i',' ','A','N','D',' ','`','D','i','s','k','I','d','`',' ','>','=',
514 ' ','%','i',' ','O','R','D','E','R',' ','B','Y',' ',
515 '`','D','i','s','k','I','d','`',0
518 row = MSI_QueryGetRecord(package->db, query, file->Sequence, mi->disk_id);
519 if (!row)
521 TRACE("Unable to query row\n");
522 return ERROR_FUNCTION_FAILED;
525 mi->is_extracted = FALSE;
526 mi->disk_id = MSI_RecordGetInteger(row, 1);
527 mi->last_sequence = MSI_RecordGetInteger(row, 2);
528 msi_free(mi->disk_prompt);
529 mi->disk_prompt = strdupW(MSI_RecordGetString(row, 3));
530 msi_free(mi->cabinet);
531 mi->cabinet = strdupW(MSI_RecordGetString(row, 4));
532 msi_free(mi->volume_label);
533 mi->volume_label = strdupW(MSI_RecordGetString(row, 5));
534 msiobj_release(&row->hdr);
536 if (!mi->first_volume)
537 mi->first_volume = strdupW(mi->volume_label);
539 source_dir = msi_dup_property(package, cszSourceDir);
540 lstrcpyW(mi->source, source_dir);
542 if (file->IsCompressed && mi->cabinet)
544 if (mi->cabinet[0] == '#')
546 r = writeout_cabinet_stream(package, &mi->cabinet[1], mi->source);
547 if (r != ERROR_SUCCESS)
549 ERR("Failed to extract cabinet stream\n");
550 return ERROR_FUNCTION_FAILED;
553 else
554 lstrcatW(mi->source, mi->cabinet);
557 msi_package_add_media_disk(package, MSIINSTALLCONTEXT_USERUNMANAGED, MSICODE_PRODUCT,
558 mi->disk_id, mi->volume_label, mi->disk_prompt);
560 msi_package_add_info(package, MSIINSTALLCONTEXT_USERUNMANAGED,
561 MSICODE_PRODUCT | MSISOURCETYPE_MEDIA,
562 INSTALLPROPERTY_LASTUSEDSOURCEW, mi->source);
564 msi_free(source_dir);
565 return ERROR_SUCCESS;
568 static UINT ready_media(MSIPACKAGE *package, MSIFILE *file, struct media_info *mi)
570 UINT rc = ERROR_SUCCESS;
572 /* media info for continuous cabinet is already loaded */
573 if (mi->is_continuous)
574 return ERROR_SUCCESS;
576 rc = load_media_info(package, file, mi);
577 if (rc != ERROR_SUCCESS)
579 ERR("Unable to load media info\n");
580 return ERROR_FUNCTION_FAILED;
583 /* cabinet is internal, no checks needed */
584 if (!mi->cabinet || mi->cabinet[0] == '#')
585 return ERROR_SUCCESS;
587 /* package should be downloaded */
588 if (file->IsCompressed &&
589 GetFileAttributesW(mi->source) == INVALID_FILE_ATTRIBUTES &&
590 package->BaseURL && UrlIsW(package->BaseURL, URLIS_URL))
592 WCHAR temppath[MAX_PATH];
594 msi_download_file(mi->source, temppath);
595 lstrcpyW(mi->source, temppath);
596 return ERROR_SUCCESS;
599 /* check volume matches, change media if not */
600 if (mi->volume_label && mi->disk_id > 1 &&
601 lstrcmpW(mi->first_volume, mi->volume_label))
603 LPWSTR source = msi_dup_property(package, cszSourceDir);
604 BOOL matches;
605 UINT type;
607 PathStripToRootW(source);
608 type = GetDriveTypeW(source);
609 matches = source_matches_volume(mi, source);
610 msi_free(source);
612 if ((type == DRIVE_CDROM || type == DRIVE_REMOVABLE) && !matches)
614 rc = msi_change_media(package, mi);
615 if (rc != ERROR_SUCCESS)
616 return rc;
620 if (file->IsCompressed &&
621 GetFileAttributesW(mi->source) == INVALID_FILE_ATTRIBUTES)
623 ERR("Cabinet not found: %s\n", debugstr_w(mi->source));
624 return ERROR_INSTALL_FAILURE;
627 return ERROR_SUCCESS;
630 static UINT get_file_target(MSIPACKAGE *package, LPCWSTR file_key,
631 MSIFILE** file)
633 LIST_FOR_EACH_ENTRY( *file, &package->files, MSIFILE, entry )
635 if (lstrcmpW( file_key, (*file)->File )==0)
637 if ((*file)->state >= msifs_overwrite)
638 return ERROR_SUCCESS;
639 else
640 return ERROR_FILE_NOT_FOUND;
644 return ERROR_FUNCTION_FAILED;
647 static void schedule_install_files(MSIPACKAGE *package)
649 MSIFILE *file;
651 LIST_FOR_EACH_ENTRY(file, &package->files, MSIFILE, entry)
653 if (!ACTION_VerifyComponentForAction(file->Component, INSTALLSTATE_LOCAL))
655 TRACE("File %s is not scheduled for install\n", debugstr_w(file->File));
657 ui_progress(package,2,file->FileSize,0,0);
658 file->state = msifs_skipped;
663 static UINT copy_file(MSIFILE *file)
665 BOOL ret;
667 ret = CopyFileW(file->SourcePath, file->TargetPath, FALSE);
668 if (ret)
670 file->state = msifs_installed;
671 return ERROR_SUCCESS;
674 return GetLastError();
677 static UINT copy_install_file(MSIFILE *file)
679 UINT gle;
681 TRACE("Copying %s to %s\n", debugstr_w(file->SourcePath),
682 debugstr_w(file->TargetPath));
684 gle = copy_file(file);
685 if (gle == ERROR_SUCCESS)
686 return gle;
688 if (gle == ERROR_ALREADY_EXISTS && file->state == msifs_overwrite)
690 TRACE("overwriting existing file\n");
691 gle = ERROR_SUCCESS;
693 else if (gle == ERROR_FILE_NOT_FOUND)
695 /* FIXME: this needs to be tested, I'm pretty sure it fails */
696 TRACE("Source file not found\n");
697 gle = ERROR_SUCCESS;
699 else if (gle == ERROR_ACCESS_DENIED)
701 SetFileAttributesW(file->TargetPath, FILE_ATTRIBUTE_NORMAL);
703 gle = copy_file(file);
704 TRACE("Overwriting existing file: %d\n", gle);
706 else if (!(file->Attributes & msidbFileAttributesVital))
708 TRACE("Ignoring error for nonvital\n");
709 gle = ERROR_SUCCESS;
712 return gle;
715 static BOOL check_dest_hash_matches(MSIFILE *file)
717 MSIFILEHASHINFO hash;
718 UINT r;
720 if (!file->hash.dwFileHashInfoSize)
721 return FALSE;
723 hash.dwFileHashInfoSize = sizeof(MSIFILEHASHINFO);
724 r = MsiGetFileHashW(file->TargetPath, 0, &hash);
725 if (r != ERROR_SUCCESS)
726 return FALSE;
728 return !memcmp(&hash, &file->hash, sizeof(MSIFILEHASHINFO));
732 * ACTION_InstallFiles()
734 * For efficiency, this is done in two passes:
735 * 1) Correct all the TargetPaths and determine what files are to be installed.
736 * 2) Extract Cabinets and copy files.
738 UINT ACTION_InstallFiles(MSIPACKAGE *package)
740 struct media_info *mi;
741 UINT rc = ERROR_SUCCESS;
742 MSIFILE *file;
744 /* increment progress bar each time action data is sent */
745 ui_progress(package,1,1,0,0);
747 schedule_install_files(package);
750 * Despite MSDN specifying that the CreateFolders action
751 * should be called before InstallFiles, some installers don't
752 * do that, and they seem to work correctly. We need to create
753 * directories here to make sure that the files can be copied.
755 msi_create_component_directories( package );
757 mi = msi_alloc_zero( sizeof(struct media_info) );
759 LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry )
761 if (file->state != msifs_missing && !mi->is_continuous && file->state != msifs_overwrite)
762 continue;
764 if (check_dest_hash_matches(file))
766 TRACE("File hashes match, not overwriting\n");
767 continue;
770 if (file->Sequence > mi->last_sequence || mi->is_continuous ||
771 (file->IsCompressed && !mi->is_extracted))
773 rc = ready_media(package, file, mi);
774 if (rc != ERROR_SUCCESS)
776 ERR("Failed to ready media\n");
777 break;
780 if (file->IsCompressed && !extract_cabinet_file(package, mi))
782 ERR("Failed to extract cabinet: %s\n", debugstr_w(mi->cabinet));
783 rc = ERROR_FUNCTION_FAILED;
784 break;
788 set_file_source(package, file, mi->source);
790 TRACE("file paths %s to %s\n",debugstr_w(file->SourcePath),
791 debugstr_w(file->TargetPath));
793 if (!file->IsCompressed)
795 msi_file_update_ui(package, file, szInstallFiles);
796 rc = copy_install_file(file);
797 if (rc != ERROR_SUCCESS)
799 ERR("Failed to copy %s to %s (%d)\n", debugstr_w(file->SourcePath),
800 debugstr_w(file->TargetPath), rc);
801 rc = ERROR_INSTALL_FAILURE;
802 break;
805 else if (file->state != msifs_installed)
807 ERR("compressed file wasn't extracted (%s)\n", debugstr_w(file->TargetPath));
808 rc = ERROR_INSTALL_FAILURE;
809 break;
813 free_media_info( mi );
814 return rc;
817 static UINT ITERATE_DuplicateFiles(MSIRECORD *row, LPVOID param)
819 MSIPACKAGE *package = (MSIPACKAGE*)param;
820 WCHAR dest_name[0x100];
821 LPWSTR dest_path, dest;
822 LPCWSTR file_key, component;
823 DWORD sz;
824 DWORD rc;
825 MSICOMPONENT *comp;
826 MSIFILE *file;
828 component = MSI_RecordGetString(row,2);
829 comp = get_loaded_component(package,component);
831 if (!ACTION_VerifyComponentForAction( comp, INSTALLSTATE_LOCAL ))
833 TRACE("Skipping copy due to disabled component %s\n",
834 debugstr_w(component));
836 /* the action taken was the same as the current install state */
837 comp->Action = comp->Installed;
839 return ERROR_SUCCESS;
842 comp->Action = INSTALLSTATE_LOCAL;
844 file_key = MSI_RecordGetString(row,3);
845 if (!file_key)
847 ERR("Unable to get file key\n");
848 return ERROR_FUNCTION_FAILED;
851 rc = get_file_target(package,file_key,&file);
853 if (rc != ERROR_SUCCESS)
855 ERR("Original file unknown %s\n",debugstr_w(file_key));
856 return ERROR_SUCCESS;
859 if (MSI_RecordIsNull(row,4))
860 strcpyW(dest_name,strrchrW(file->TargetPath,'\\')+1);
861 else
863 sz=0x100;
864 MSI_RecordGetStringW(row,4,dest_name,&sz);
865 reduce_to_longfilename(dest_name);
868 if (MSI_RecordIsNull(row,5))
870 LPWSTR p;
871 dest_path = strdupW(file->TargetPath);
872 p = strrchrW(dest_path,'\\');
873 if (p)
874 *p=0;
876 else
878 LPCWSTR destkey;
879 destkey = MSI_RecordGetString(row,5);
880 dest_path = resolve_folder(package, destkey, FALSE, FALSE, TRUE, NULL);
881 if (!dest_path)
883 /* try a Property */
884 dest_path = msi_dup_property( package, destkey );
885 if (!dest_path)
887 FIXME("Unable to get destination folder, try AppSearch properties\n");
888 return ERROR_SUCCESS;
893 dest = build_directory_name(2, dest_path, dest_name);
894 create_full_pathW(dest_path);
896 TRACE("Duplicating file %s to %s\n",debugstr_w(file->TargetPath),
897 debugstr_w(dest));
899 if (strcmpW(file->TargetPath,dest))
900 rc = !CopyFileW(file->TargetPath,dest,TRUE);
901 else
902 rc = ERROR_SUCCESS;
904 if (rc != ERROR_SUCCESS)
905 ERR("Failed to copy file %s -> %s, last error %d\n",
906 debugstr_w(file->TargetPath), debugstr_w(dest_path), GetLastError());
908 FIXME("We should track these duplicate files as well\n");
910 msi_free(dest_path);
911 msi_free(dest);
913 msi_file_update_ui(package, file, szDuplicateFiles);
915 return ERROR_SUCCESS;
918 UINT ACTION_DuplicateFiles(MSIPACKAGE *package)
920 UINT rc;
921 MSIQUERY * view;
922 static const WCHAR ExecSeqQuery[] =
923 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
924 '`','D','u','p','l','i','c','a','t','e','F','i','l','e','`',0};
926 rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view);
927 if (rc != ERROR_SUCCESS)
928 return ERROR_SUCCESS;
930 rc = MSI_IterateRecords(view, NULL, ITERATE_DuplicateFiles, package);
931 msiobj_release(&view->hdr);
933 return rc;
936 /* compares the version of a file read from the filesystem and
937 * the version specified in the File table
939 static int msi_compare_file_version( MSIFILE *file )
941 WCHAR version[MAX_PATH];
942 DWORD size;
943 UINT r;
945 size = MAX_PATH;
946 version[0] = '\0';
947 r = MsiGetFileVersionW( file->TargetPath, version, &size, NULL, NULL );
948 if ( r != ERROR_SUCCESS )
949 return 0;
951 return lstrcmpW( version, file->Version );
954 UINT ACTION_RemoveFiles( MSIPACKAGE *package )
956 MSIFILE *file;
958 LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry )
960 MSIRECORD *uirow;
961 LPWSTR uipath, p;
963 if ( !file->Component )
964 continue;
965 if ( file->Component->Installed == INSTALLSTATE_LOCAL )
966 continue;
968 if ( file->state == msifs_installed )
969 ERR("removing installed file %s\n", debugstr_w(file->TargetPath));
971 if ( file->state != msifs_present )
972 continue;
974 /* only remove a file if the version to be installed
975 * is strictly newer than the old file
977 if ( msi_compare_file_version( file ) >= 0 )
978 continue;
980 TRACE("removing %s\n", debugstr_w(file->File) );
981 if ( !DeleteFileW( file->TargetPath ) )
982 ERR("failed to delete %s\n", debugstr_w(file->TargetPath) );
983 file->state = msifs_missing;
985 /* the UI chunk */
986 uirow = MSI_CreateRecord( 9 );
987 MSI_RecordSetStringW( uirow, 1, file->FileName );
988 uipath = strdupW( file->TargetPath );
989 p = strrchrW(uipath,'\\');
990 if (p)
991 p[1]=0;
992 MSI_RecordSetStringW( uirow, 9, uipath);
993 ui_actiondata( package, szRemoveFiles, uirow);
994 msiobj_release( &uirow->hdr );
995 msi_free( uipath );
996 /* FIXME: call ui_progress here? */
999 return ERROR_SUCCESS;