regedit: An English (United States) spelling fix.
[wine/multimedia.git] / dlls / msi / files.c
blobe9285648ae3b54ffc406c9c9b36c6c5c199b20ca
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:
25 * InstallFiles
26 * DuplicateFiles
27 * MoveFiles
28 * PatchFiles
29 * RemoveDuplicateFiles
30 * RemoveFiles
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 "msipriv.h"
43 #include "winuser.h"
44 #include "winreg.h"
45 #include "shlwapi.h"
46 #include "wine/unicode.h"
48 WINE_DEFAULT_DEBUG_CHANNEL(msi);
50 static HMODULE hmspatcha;
51 static BOOL (WINAPI *ApplyPatchToFileW)(LPCWSTR, LPCWSTR, LPCWSTR, ULONG);
53 static void msi_file_update_ui( MSIPACKAGE *package, MSIFILE *f, const WCHAR *action )
55 MSIRECORD *uirow;
57 uirow = MSI_CreateRecord( 9 );
58 MSI_RecordSetStringW( uirow, 1, f->FileName );
59 MSI_RecordSetStringW( uirow, 9, f->Component->Directory );
60 MSI_RecordSetInteger( uirow, 6, f->FileSize );
61 msi_ui_actiondata( package, action, uirow );
62 msiobj_release( &uirow->hdr );
63 msi_ui_progress( package, 2, f->FileSize, 0, 0 );
66 static msi_file_state calculate_install_state( MSIPACKAGE *package, MSIFILE *file )
68 MSICOMPONENT *comp = file->Component;
69 VS_FIXEDFILEINFO *file_version;
70 WCHAR *font_version;
71 msi_file_state state;
72 DWORD file_size;
74 comp->Action = msi_get_component_action( package, comp );
75 if (comp->Action != INSTALLSTATE_LOCAL || (comp->assembly && comp->assembly->installed))
77 TRACE("file %s is not scheduled for install\n", debugstr_w(file->File));
78 return msifs_skipped;
80 if ((comp->assembly && !comp->assembly->application && !comp->assembly->installed) ||
81 GetFileAttributesW( file->TargetPath ) == INVALID_FILE_ATTRIBUTES)
83 TRACE("file %s is missing\n", debugstr_w(file->File));
84 return msifs_missing;
86 if (file->Version)
88 if ((file_version = msi_get_disk_file_version( file->TargetPath )))
90 TRACE("new %s old %u.%u.%u.%u\n", debugstr_w(file->Version),
91 HIWORD(file_version->dwFileVersionMS),
92 LOWORD(file_version->dwFileVersionMS),
93 HIWORD(file_version->dwFileVersionLS),
94 LOWORD(file_version->dwFileVersionLS));
96 if (msi_compare_file_versions( file_version, file->Version ) < 0)
97 state = msifs_overwrite;
98 else
100 TRACE("destination file version equal or greater, not overwriting\n");
101 state = msifs_present;
103 msi_free( file_version );
104 return state;
106 else if ((font_version = msi_font_version_from_file( file->TargetPath )))
108 TRACE("new %s old %s\n", debugstr_w(file->Version), debugstr_w(font_version));
110 if (msi_compare_font_versions( font_version, file->Version ) < 0)
111 state = msifs_overwrite;
112 else
114 TRACE("destination file version equal or greater, not overwriting\n");
115 state = msifs_present;
117 msi_free( font_version );
118 return state;
121 if ((file_size = msi_get_disk_file_size( file->TargetPath )) != file->FileSize)
123 return msifs_overwrite;
125 if (file->hash.dwFileHashInfoSize)
127 if (msi_file_hash_matches( file ))
129 TRACE("file hashes match, not overwriting\n");
130 return msifs_hashmatch;
132 else
134 TRACE("file hashes do not match, overwriting\n");
135 return msifs_overwrite;
138 /* assume present */
139 return msifs_present;
142 static void schedule_install_files(MSIPACKAGE *package)
144 MSIFILE *file;
146 LIST_FOR_EACH_ENTRY(file, &package->files, MSIFILE, entry)
148 MSICOMPONENT *comp = file->Component;
150 file->state = calculate_install_state( package, file );
151 if (file->state == msifs_overwrite && (comp->Attributes & msidbComponentAttributesNeverOverwrite))
153 TRACE("not overwriting %s\n", debugstr_w(file->TargetPath));
154 file->state = msifs_skipped;
159 static UINT copy_file(MSIFILE *file, LPWSTR source)
161 BOOL ret;
163 ret = CopyFileW(source, file->TargetPath, FALSE);
164 if (!ret)
165 return GetLastError();
167 SetFileAttributesW(file->TargetPath, FILE_ATTRIBUTE_NORMAL);
169 file->state = msifs_installed;
170 return ERROR_SUCCESS;
173 static UINT copy_install_file(MSIPACKAGE *package, MSIFILE *file, LPWSTR source)
175 UINT gle;
177 TRACE("Copying %s to %s\n", debugstr_w(source), debugstr_w(file->TargetPath));
179 gle = copy_file(file, source);
180 if (gle == ERROR_SUCCESS)
181 return gle;
183 if (gle == ERROR_ALREADY_EXISTS && file->state == msifs_overwrite)
185 TRACE("overwriting existing file\n");
186 return ERROR_SUCCESS;
188 else if (gle == ERROR_ACCESS_DENIED)
190 SetFileAttributesW(file->TargetPath, FILE_ATTRIBUTE_NORMAL);
192 gle = copy_file(file, source);
193 TRACE("Overwriting existing file: %d\n", gle);
195 if (gle == ERROR_SHARING_VIOLATION || gle == ERROR_USER_MAPPED_FILE)
197 WCHAR *tmpfileW, *pathW, *p;
198 DWORD len;
200 TRACE("file in use, scheduling rename operation\n");
202 if (!(pathW = strdupW( file->TargetPath ))) return ERROR_OUTOFMEMORY;
203 if ((p = strrchrW(pathW, '\\'))) *p = 0;
204 len = strlenW( pathW ) + 16;
205 if (!(tmpfileW = msi_alloc(len * sizeof(WCHAR))))
207 msi_free( pathW );
208 return ERROR_OUTOFMEMORY;
210 if (!GetTempFileNameW( pathW, szMsi, 0, tmpfileW )) tmpfileW[0] = 0;
211 msi_free( pathW );
213 if (CopyFileW(source, tmpfileW, FALSE) &&
214 MoveFileExW(file->TargetPath, NULL, MOVEFILE_DELAY_UNTIL_REBOOT) &&
215 MoveFileExW(tmpfileW, file->TargetPath, MOVEFILE_DELAY_UNTIL_REBOOT))
217 file->state = msifs_installed;
218 package->need_reboot = 1;
219 gle = ERROR_SUCCESS;
221 else
223 gle = GetLastError();
224 WARN("failed to schedule rename operation: %d)\n", gle);
225 DeleteFileW( tmpfileW );
227 msi_free(tmpfileW);
230 return gle;
233 static UINT msi_create_directory( MSIPACKAGE *package, const WCHAR *dir )
235 MSIFOLDER *folder;
236 const WCHAR *install_path;
238 install_path = msi_get_target_folder( package, dir );
239 if (!install_path) return ERROR_FUNCTION_FAILED;
241 folder = msi_get_loaded_folder( package, dir );
242 if (folder->State == FOLDER_STATE_UNINITIALIZED)
244 msi_create_full_path( install_path );
245 folder->State = FOLDER_STATE_CREATED;
247 return ERROR_SUCCESS;
250 static MSIFILE *find_file( MSIPACKAGE *package, const WCHAR *filename )
252 MSIFILE *file;
254 LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry )
256 if (!strcmpiW( filename, file->File )) return file;
258 return NULL;
261 static BOOL installfiles_cb(MSIPACKAGE *package, LPCWSTR file, DWORD action,
262 LPWSTR *path, DWORD *attrs, PVOID user)
264 static MSIFILE *f = NULL;
265 UINT_PTR disk_id = (UINT_PTR)user;
267 if (action == MSICABEXTRACT_BEGINEXTRACT)
269 if (!(f = find_file( package, file )))
271 TRACE("unknown file in cabinet (%s)\n", debugstr_w(file));
272 return FALSE;
274 if (f->disk_id != disk_id || (f->state != msifs_missing && f->state != msifs_overwrite))
275 return FALSE;
277 if (!f->Component->assembly || f->Component->assembly->application)
279 msi_create_directory(package, f->Component->Directory);
281 *path = strdupW(f->TargetPath);
282 *attrs = f->Attributes;
284 else if (action == MSICABEXTRACT_FILEEXTRACTED)
286 f->state = msifs_installed;
287 f = NULL;
290 return TRUE;
293 WCHAR *msi_resolve_file_source( MSIPACKAGE *package, MSIFILE *file )
295 WCHAR *p, *path;
297 TRACE("Working to resolve source of file %s\n", debugstr_w(file->File));
299 if (file->IsCompressed) return NULL;
301 p = msi_resolve_source_folder( package, file->Component->Directory, NULL );
302 path = msi_build_directory_name( 2, p, file->ShortName );
304 if (file->LongName && GetFileAttributesW( path ) == INVALID_FILE_ATTRIBUTES)
306 msi_free( path );
307 path = msi_build_directory_name( 2, p, file->LongName );
309 msi_free( p );
310 TRACE("file %s source resolves to %s\n", debugstr_w(file->File), debugstr_w(path));
311 return path;
315 * ACTION_InstallFiles()
317 * For efficiency, this is done in two passes:
318 * 1) Correct all the TargetPaths and determine what files are to be installed.
319 * 2) Extract Cabinets and copy files.
321 UINT ACTION_InstallFiles(MSIPACKAGE *package)
323 MSIMEDIAINFO *mi;
324 MSICOMPONENT *comp;
325 UINT rc = ERROR_SUCCESS;
326 MSIFILE *file;
328 schedule_install_files(package);
329 mi = msi_alloc_zero( sizeof(MSIMEDIAINFO) );
331 LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry )
333 msi_file_update_ui( package, file, szInstallFiles );
335 rc = msi_load_media_info( package, file->Sequence, mi );
336 if (rc != ERROR_SUCCESS)
338 ERR("Unable to load media info for %s (%u)\n", debugstr_w(file->File), rc);
339 return ERROR_FUNCTION_FAILED;
341 if (!file->Component->Enabled) continue;
343 if (file->state != msifs_hashmatch &&
344 file->state != msifs_skipped &&
345 (file->state != msifs_present || !msi_get_property_int( package->db, szInstalled, 0 )) &&
346 (rc = ready_media( package, file->IsCompressed, mi )))
348 ERR("Failed to ready media for %s\n", debugstr_w(file->File));
349 goto done;
352 if (file->state != msifs_missing && !mi->is_continuous && file->state != msifs_overwrite)
353 continue;
355 if (file->Sequence > mi->last_sequence || mi->is_continuous ||
356 (file->IsCompressed && !mi->is_extracted))
358 MSICABDATA data;
360 data.mi = mi;
361 data.package = package;
362 data.cb = installfiles_cb;
363 data.user = (PVOID)(UINT_PTR)mi->disk_id;
365 if (file->IsCompressed &&
366 !msi_cabextract(package, mi, &data))
368 ERR("Failed to extract cabinet: %s\n", debugstr_w(mi->cabinet));
369 rc = ERROR_INSTALL_FAILURE;
370 goto done;
374 if (!file->IsCompressed)
376 WCHAR *source = msi_resolve_file_source(package, file);
378 TRACE("copying %s to %s\n", debugstr_w(source), debugstr_w(file->TargetPath));
380 if (!file->Component->assembly || file->Component->assembly->application)
382 msi_create_directory(package, file->Component->Directory);
384 rc = copy_install_file(package, file, source);
385 if (rc != ERROR_SUCCESS)
387 ERR("Failed to copy %s to %s (%d)\n", debugstr_w(source),
388 debugstr_w(file->TargetPath), rc);
389 rc = ERROR_INSTALL_FAILURE;
390 msi_free(source);
391 goto done;
393 msi_free(source);
395 else if (file->state != msifs_installed && !(file->Attributes & msidbFileAttributesPatchAdded))
397 ERR("compressed file wasn't installed (%s)\n", debugstr_w(file->TargetPath));
398 rc = ERROR_INSTALL_FAILURE;
399 goto done;
402 msi_init_assembly_caches( package );
403 LIST_FOR_EACH_ENTRY( comp, &package->components, MSICOMPONENT, entry )
405 comp->Action = msi_get_component_action( package, comp );
406 if (comp->Action == INSTALLSTATE_LOCAL && comp->assembly && !comp->assembly->installed)
408 rc = msi_install_assembly( package, comp );
409 if (rc != ERROR_SUCCESS)
411 ERR("Failed to install assembly\n");
412 rc = ERROR_INSTALL_FAILURE;
413 break;
417 msi_destroy_assembly_caches( package );
419 done:
420 msi_free_media_info(mi);
421 return rc;
424 static BOOL load_mspatcha(void)
426 hmspatcha = LoadLibraryA("mspatcha.dll");
427 if (!hmspatcha)
429 ERR("Failed to load mspatcha.dll: %d\n", GetLastError());
430 return FALSE;
433 ApplyPatchToFileW = (void*)GetProcAddress(hmspatcha, "ApplyPatchToFileW");
434 if(!ApplyPatchToFileW)
436 ERR("GetProcAddress(ApplyPatchToFileW) failed: %d.\n", GetLastError());
437 return FALSE;
440 return TRUE;
443 static void unload_mspatch(void)
445 FreeLibrary(hmspatcha);
448 static BOOL patchfiles_cb(MSIPACKAGE *package, LPCWSTR file, DWORD action,
449 LPWSTR *path, DWORD *attrs, PVOID user)
451 static MSIFILEPATCH *p = NULL;
452 static WCHAR patch_path[MAX_PATH] = {0};
453 static WCHAR temp_folder[MAX_PATH] = {0};
455 if (action == MSICABEXTRACT_BEGINEXTRACT)
457 if (temp_folder[0] == '\0')
458 GetTempPathW(MAX_PATH, temp_folder);
460 p = msi_get_loaded_filepatch(package, file);
461 if (!p)
463 TRACE("unknown file in cabinet (%s)\n", debugstr_w(file));
464 return FALSE;
466 GetTempFileNameW(temp_folder, NULL, 0, patch_path);
468 *path = strdupW(patch_path);
469 *attrs = p->File->Attributes;
471 else if (action == MSICABEXTRACT_FILEEXTRACTED)
473 WCHAR patched_file[MAX_PATH];
474 BOOL br;
476 GetTempFileNameW(temp_folder, NULL, 0, patched_file);
478 br = ApplyPatchToFileW(patch_path, p->File->TargetPath, patched_file, 0);
479 if (br)
481 /* FIXME: baseline cache */
483 DeleteFileW( p->File->TargetPath );
484 MoveFileW( patched_file, p->File->TargetPath );
486 p->IsApplied = TRUE;
488 else
489 ERR("Failed patch %s: %d.\n", debugstr_w(p->File->TargetPath), GetLastError());
491 DeleteFileW(patch_path);
492 p = NULL;
495 return TRUE;
498 UINT ACTION_PatchFiles( MSIPACKAGE *package )
500 MSIFILEPATCH *patch;
501 MSIMEDIAINFO *mi;
502 UINT rc = ERROR_SUCCESS;
503 BOOL mspatcha_loaded = FALSE;
505 TRACE("%p\n", package);
507 mi = msi_alloc_zero( sizeof(MSIMEDIAINFO) );
509 LIST_FOR_EACH_ENTRY( patch, &package->filepatches, MSIFILEPATCH, entry )
511 MSIFILE *file = patch->File;
512 MSICOMPONENT *comp = file->Component;
514 rc = msi_load_media_info( package, patch->Sequence, mi );
515 if (rc != ERROR_SUCCESS)
517 ERR("Unable to load media info for %s (%u)\n", debugstr_w(file->File), rc);
518 return ERROR_FUNCTION_FAILED;
520 comp->Action = msi_get_component_action( package, comp );
521 if (!comp->Enabled || comp->Action != INSTALLSTATE_LOCAL) continue;
523 if (!patch->IsApplied)
525 MSICABDATA data;
527 rc = ready_media( package, TRUE, mi );
528 if (rc != ERROR_SUCCESS)
530 ERR("Failed to ready media for %s\n", debugstr_w(file->File));
531 goto done;
534 if (!mspatcha_loaded && !load_mspatcha())
536 rc = ERROR_FUNCTION_FAILED;
537 goto done;
539 mspatcha_loaded = TRUE;
541 data.mi = mi;
542 data.package = package;
543 data.cb = patchfiles_cb;
544 data.user = (PVOID)(UINT_PTR)mi->disk_id;
546 if (!msi_cabextract(package, mi, &data))
548 ERR("Failed to extract cabinet: %s\n", debugstr_w(mi->cabinet));
549 rc = ERROR_INSTALL_FAILURE;
550 goto done;
554 if (!patch->IsApplied && !(patch->Attributes & msidbPatchAttributesNonVital))
556 ERR("Failed to apply patch to file: %s\n", debugstr_w(file->File));
557 rc = ERROR_INSTALL_FAILURE;
558 goto done;
562 done:
563 msi_free_media_info(mi);
564 if (mspatcha_loaded)
565 unload_mspatch();
566 return rc;
569 #define is_dot_dir(x) ((x[0] == '.') && ((x[1] == 0) || ((x[1] == '.') && (x[2] == 0))))
571 typedef struct
573 struct list entry;
574 LPWSTR sourcename;
575 LPWSTR destname;
576 LPWSTR source;
577 LPWSTR dest;
578 } FILE_LIST;
580 static BOOL msi_move_file(LPCWSTR source, LPCWSTR dest, int options)
582 BOOL ret;
584 if (GetFileAttributesW(source) == FILE_ATTRIBUTE_DIRECTORY ||
585 GetFileAttributesW(dest) == FILE_ATTRIBUTE_DIRECTORY)
587 WARN("Source or dest is directory, not moving\n");
588 return FALSE;
591 if (options == msidbMoveFileOptionsMove)
593 TRACE("moving %s -> %s\n", debugstr_w(source), debugstr_w(dest));
594 ret = MoveFileExW(source, dest, MOVEFILE_REPLACE_EXISTING);
595 if (!ret)
597 WARN("MoveFile failed: %d\n", GetLastError());
598 return FALSE;
601 else
603 TRACE("copying %s -> %s\n", debugstr_w(source), debugstr_w(dest));
604 ret = CopyFileW(source, dest, FALSE);
605 if (!ret)
607 WARN("CopyFile failed: %d\n", GetLastError());
608 return FALSE;
612 return TRUE;
615 static LPWSTR wildcard_to_file(LPWSTR wildcard, LPWSTR filename)
617 LPWSTR path, ptr;
618 DWORD dirlen, pathlen;
620 ptr = strrchrW(wildcard, '\\');
621 dirlen = ptr - wildcard + 1;
623 pathlen = dirlen + lstrlenW(filename) + 1;
624 path = msi_alloc(pathlen * sizeof(WCHAR));
626 lstrcpynW(path, wildcard, dirlen + 1);
627 lstrcatW(path, filename);
629 return path;
632 static void free_file_entry(FILE_LIST *file)
634 msi_free(file->source);
635 msi_free(file->dest);
636 msi_free(file);
639 static void free_list(FILE_LIST *list)
641 while (!list_empty(&list->entry))
643 FILE_LIST *file = LIST_ENTRY(list_head(&list->entry), FILE_LIST, entry);
645 list_remove(&file->entry);
646 free_file_entry(file);
650 static BOOL add_wildcard(FILE_LIST *files, LPWSTR source, LPWSTR dest)
652 FILE_LIST *new, *file;
653 LPWSTR ptr, filename;
654 DWORD size;
656 new = msi_alloc_zero(sizeof(FILE_LIST));
657 if (!new)
658 return FALSE;
660 new->source = strdupW(source);
661 ptr = strrchrW(dest, '\\') + 1;
662 filename = strrchrW(new->source, '\\') + 1;
664 new->sourcename = filename;
666 if (*ptr)
667 new->destname = ptr;
668 else
669 new->destname = new->sourcename;
671 size = (ptr - dest) + lstrlenW(filename) + 1;
672 new->dest = msi_alloc(size * sizeof(WCHAR));
673 if (!new->dest)
675 free_file_entry(new);
676 return FALSE;
679 lstrcpynW(new->dest, dest, ptr - dest + 1);
680 lstrcatW(new->dest, filename);
682 if (list_empty(&files->entry))
684 list_add_head(&files->entry, &new->entry);
685 return TRUE;
688 LIST_FOR_EACH_ENTRY(file, &files->entry, FILE_LIST, entry)
690 if (strcmpW( source, file->source ) < 0)
692 list_add_before(&file->entry, &new->entry);
693 return TRUE;
697 list_add_after(&file->entry, &new->entry);
698 return TRUE;
701 static BOOL move_files_wildcard(LPWSTR source, LPWSTR dest, int options)
703 WIN32_FIND_DATAW wfd;
704 HANDLE hfile;
705 LPWSTR path;
706 BOOL res;
707 FILE_LIST files, *file;
708 DWORD size;
710 hfile = FindFirstFileW(source, &wfd);
711 if (hfile == INVALID_HANDLE_VALUE) return FALSE;
713 list_init(&files.entry);
715 for (res = TRUE; res; res = FindNextFileW(hfile, &wfd))
717 if (is_dot_dir(wfd.cFileName)) continue;
719 path = wildcard_to_file(source, wfd.cFileName);
720 if (!path)
722 res = FALSE;
723 goto done;
726 add_wildcard(&files, path, dest);
727 msi_free(path);
730 /* no files match the wildcard */
731 if (list_empty(&files.entry))
732 goto done;
734 /* only the first wildcard match gets renamed to dest */
735 file = LIST_ENTRY(list_head(&files.entry), FILE_LIST, entry);
736 size = (strrchrW(file->dest, '\\') - file->dest) + lstrlenW(file->destname) + 2;
737 file->dest = msi_realloc(file->dest, size * sizeof(WCHAR));
738 if (!file->dest)
740 res = FALSE;
741 goto done;
744 /* file->dest may be shorter after the reallocation, so add a NULL
745 * terminator. This is needed for the call to strrchrW, as there will no
746 * longer be a NULL terminator within the bounds of the allocation in this case.
748 file->dest[size - 1] = '\0';
749 lstrcpyW(strrchrW(file->dest, '\\') + 1, file->destname);
751 while (!list_empty(&files.entry))
753 file = LIST_ENTRY(list_head(&files.entry), FILE_LIST, entry);
755 msi_move_file(file->source, file->dest, options);
757 list_remove(&file->entry);
758 free_file_entry(file);
761 res = TRUE;
763 done:
764 free_list(&files);
765 FindClose(hfile);
766 return res;
769 void msi_reduce_to_long_filename( WCHAR *filename )
771 WCHAR *p = strchrW( filename, '|' );
772 if (p) memmove( filename, p + 1, (strlenW( p + 1 ) + 1) * sizeof(WCHAR) );
775 static UINT ITERATE_MoveFiles( MSIRECORD *rec, LPVOID param )
777 MSIPACKAGE *package = param;
778 MSIRECORD *uirow;
779 MSICOMPONENT *comp;
780 LPCWSTR sourcename, component;
781 LPWSTR sourcedir, destname = NULL, destdir = NULL, source = NULL, dest = NULL;
782 int options;
783 DWORD size;
784 BOOL ret, wildcards;
786 component = MSI_RecordGetString(rec, 2);
787 comp = msi_get_loaded_component(package, component);
788 if (!comp)
789 return ERROR_SUCCESS;
791 comp->Action = msi_get_component_action( package, comp );
792 if (comp->Action != INSTALLSTATE_LOCAL)
794 TRACE("component not scheduled for installation %s\n", debugstr_w(component));
795 return ERROR_SUCCESS;
798 sourcename = MSI_RecordGetString(rec, 3);
799 options = MSI_RecordGetInteger(rec, 7);
801 sourcedir = msi_dup_property(package->db, MSI_RecordGetString(rec, 5));
802 if (!sourcedir)
803 goto done;
805 destdir = msi_dup_property(package->db, MSI_RecordGetString(rec, 6));
806 if (!destdir)
807 goto done;
809 if (!sourcename)
811 if (GetFileAttributesW(sourcedir) == INVALID_FILE_ATTRIBUTES)
812 goto done;
814 source = strdupW(sourcedir);
815 if (!source)
816 goto done;
818 else
820 size = lstrlenW(sourcedir) + lstrlenW(sourcename) + 2;
821 source = msi_alloc(size * sizeof(WCHAR));
822 if (!source)
823 goto done;
825 lstrcpyW(source, sourcedir);
826 if (source[lstrlenW(source) - 1] != '\\')
827 lstrcatW(source, szBackSlash);
828 lstrcatW(source, sourcename);
831 wildcards = strchrW(source, '*') || strchrW(source, '?');
833 if (MSI_RecordIsNull(rec, 4))
835 if (!wildcards)
837 destname = strdupW(sourcename);
838 if (!destname)
839 goto done;
842 else
844 destname = strdupW(MSI_RecordGetString(rec, 4));
845 if (destname) msi_reduce_to_long_filename(destname);
848 size = 0;
849 if (destname)
850 size = lstrlenW(destname);
852 size += lstrlenW(destdir) + 2;
853 dest = msi_alloc(size * sizeof(WCHAR));
854 if (!dest)
855 goto done;
857 lstrcpyW(dest, destdir);
858 if (dest[lstrlenW(dest) - 1] != '\\')
859 lstrcatW(dest, szBackSlash);
861 if (destname)
862 lstrcatW(dest, destname);
864 if (GetFileAttributesW(destdir) == INVALID_FILE_ATTRIBUTES)
866 if (!(ret = msi_create_full_path(destdir)))
868 WARN("failed to create directory %u\n", GetLastError());
869 goto done;
873 if (!wildcards)
874 msi_move_file(source, dest, options);
875 else
876 move_files_wildcard(source, dest, options);
878 done:
879 uirow = MSI_CreateRecord( 9 );
880 MSI_RecordSetStringW( uirow, 1, MSI_RecordGetString(rec, 1) );
881 MSI_RecordSetInteger( uirow, 6, 1 ); /* FIXME */
882 MSI_RecordSetStringW( uirow, 9, destdir );
883 msi_ui_actiondata( package, szMoveFiles, uirow );
884 msiobj_release( &uirow->hdr );
886 msi_free(sourcedir);
887 msi_free(destdir);
888 msi_free(destname);
889 msi_free(source);
890 msi_free(dest);
892 return ERROR_SUCCESS;
895 UINT ACTION_MoveFiles( MSIPACKAGE *package )
897 static const WCHAR query[] = {
898 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
899 '`','M','o','v','e','F','i','l','e','`',0};
900 MSIQUERY *view;
901 UINT rc;
903 rc = MSI_DatabaseOpenViewW(package->db, query, &view);
904 if (rc != ERROR_SUCCESS)
905 return ERROR_SUCCESS;
907 rc = MSI_IterateRecords(view, NULL, ITERATE_MoveFiles, package);
908 msiobj_release(&view->hdr);
909 return rc;
912 static WCHAR *get_duplicate_filename( MSIPACKAGE *package, MSIRECORD *row, const WCHAR *file_key, const WCHAR *src )
914 DWORD len;
915 WCHAR *dst_name, *dst_path, *dst;
917 if (MSI_RecordIsNull( row, 4 ))
919 len = strlenW( src ) + 1;
920 if (!(dst_name = msi_alloc( len * sizeof(WCHAR)))) return NULL;
921 strcpyW( dst_name, strrchrW( src, '\\' ) + 1 );
923 else
925 MSI_RecordGetStringW( row, 4, NULL, &len );
926 if (!(dst_name = msi_alloc( ++len * sizeof(WCHAR) ))) return NULL;
927 MSI_RecordGetStringW( row, 4, dst_name, &len );
928 msi_reduce_to_long_filename( dst_name );
931 if (MSI_RecordIsNull( row, 5 ))
933 WCHAR *p;
934 dst_path = strdupW( src );
935 p = strrchrW( dst_path, '\\' );
936 if (p) *p = 0;
938 else
940 const WCHAR *dst_key = MSI_RecordGetString( row, 5 );
942 dst_path = strdupW( msi_get_target_folder( package, dst_key ) );
943 if (!dst_path)
945 /* try a property */
946 dst_path = msi_dup_property( package->db, dst_key );
947 if (!dst_path)
949 FIXME("Unable to get destination folder, try AppSearch properties\n");
950 msi_free( dst_name );
951 return NULL;
956 dst = msi_build_directory_name( 2, dst_path, dst_name );
957 msi_create_full_path( dst_path );
959 msi_free( dst_name );
960 msi_free( dst_path );
961 return dst;
964 static UINT ITERATE_DuplicateFiles(MSIRECORD *row, LPVOID param)
966 MSIPACKAGE *package = param;
967 LPWSTR dest;
968 LPCWSTR file_key, component;
969 MSICOMPONENT *comp;
970 MSIRECORD *uirow;
971 MSIFILE *file;
973 component = MSI_RecordGetString(row,2);
974 comp = msi_get_loaded_component(package, component);
975 if (!comp)
976 return ERROR_SUCCESS;
978 comp->Action = msi_get_component_action( package, comp );
979 if (comp->Action != INSTALLSTATE_LOCAL)
981 TRACE("component not scheduled for installation %s\n", debugstr_w(component));
982 return ERROR_SUCCESS;
985 file_key = MSI_RecordGetString(row,3);
986 if (!file_key)
988 ERR("Unable to get file key\n");
989 return ERROR_FUNCTION_FAILED;
992 file = msi_get_loaded_file( package, file_key );
993 if (!file)
995 ERR("Original file unknown %s\n", debugstr_w(file_key));
996 return ERROR_SUCCESS;
999 dest = get_duplicate_filename( package, row, file_key, file->TargetPath );
1000 if (!dest)
1002 WARN("Unable to get duplicate filename\n");
1003 return ERROR_SUCCESS;
1006 TRACE("Duplicating file %s to %s\n", debugstr_w(file->TargetPath), debugstr_w(dest));
1008 if (!CopyFileW( file->TargetPath, dest, TRUE ))
1010 WARN("Failed to copy file %s -> %s (%u)\n",
1011 debugstr_w(file->TargetPath), debugstr_w(dest), GetLastError());
1014 FIXME("We should track these duplicate files as well\n");
1016 uirow = MSI_CreateRecord( 9 );
1017 MSI_RecordSetStringW( uirow, 1, MSI_RecordGetString( row, 1 ) );
1018 MSI_RecordSetInteger( uirow, 6, file->FileSize );
1019 MSI_RecordSetStringW( uirow, 9, MSI_RecordGetString( row, 5 ) );
1020 msi_ui_actiondata( package, szDuplicateFiles, uirow );
1021 msiobj_release( &uirow->hdr );
1023 msi_free(dest);
1024 return ERROR_SUCCESS;
1027 UINT ACTION_DuplicateFiles(MSIPACKAGE *package)
1029 static const WCHAR query[] = {
1030 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
1031 '`','D','u','p','l','i','c','a','t','e','F','i','l','e','`',0};
1032 MSIQUERY *view;
1033 UINT rc;
1035 rc = MSI_DatabaseOpenViewW(package->db, query, &view);
1036 if (rc != ERROR_SUCCESS)
1037 return ERROR_SUCCESS;
1039 rc = MSI_IterateRecords(view, NULL, ITERATE_DuplicateFiles, package);
1040 msiobj_release(&view->hdr);
1041 return rc;
1044 static UINT ITERATE_RemoveDuplicateFiles( MSIRECORD *row, LPVOID param )
1046 MSIPACKAGE *package = param;
1047 LPWSTR dest;
1048 LPCWSTR file_key, component;
1049 MSICOMPONENT *comp;
1050 MSIRECORD *uirow;
1051 MSIFILE *file;
1053 component = MSI_RecordGetString( row, 2 );
1054 comp = msi_get_loaded_component( package, component );
1055 if (!comp)
1056 return ERROR_SUCCESS;
1058 comp->Action = msi_get_component_action( package, comp );
1059 if (comp->Action != INSTALLSTATE_ABSENT)
1061 TRACE("component not scheduled for removal %s\n", debugstr_w(component));
1062 return ERROR_SUCCESS;
1065 file_key = MSI_RecordGetString( row, 3 );
1066 if (!file_key)
1068 ERR("Unable to get file key\n");
1069 return ERROR_FUNCTION_FAILED;
1072 file = msi_get_loaded_file( package, file_key );
1073 if (!file)
1075 ERR("Original file unknown %s\n", debugstr_w(file_key));
1076 return ERROR_SUCCESS;
1079 dest = get_duplicate_filename( package, row, file_key, file->TargetPath );
1080 if (!dest)
1082 WARN("Unable to get duplicate filename\n");
1083 return ERROR_SUCCESS;
1086 TRACE("Removing duplicate %s of %s\n", debugstr_w(dest), debugstr_w(file->TargetPath));
1088 if (!DeleteFileW( dest ))
1090 WARN("Failed to delete duplicate file %s (%u)\n", debugstr_w(dest), GetLastError());
1093 uirow = MSI_CreateRecord( 9 );
1094 MSI_RecordSetStringW( uirow, 1, MSI_RecordGetString( row, 1 ) );
1095 MSI_RecordSetStringW( uirow, 9, MSI_RecordGetString( row, 5 ) );
1096 msi_ui_actiondata( package, szRemoveDuplicateFiles, uirow );
1097 msiobj_release( &uirow->hdr );
1099 msi_free(dest);
1100 return ERROR_SUCCESS;
1103 UINT ACTION_RemoveDuplicateFiles( MSIPACKAGE *package )
1105 static const WCHAR query[] = {
1106 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
1107 '`','D','u','p','l','i','c','a','t','e','F','i','l','e','`',0};
1108 MSIQUERY *view;
1109 UINT rc;
1111 rc = MSI_DatabaseOpenViewW( package->db, query, &view );
1112 if (rc != ERROR_SUCCESS)
1113 return ERROR_SUCCESS;
1115 rc = MSI_IterateRecords( view, NULL, ITERATE_RemoveDuplicateFiles, package );
1116 msiobj_release( &view->hdr );
1117 return rc;
1120 static BOOL verify_comp_for_removal(MSICOMPONENT *comp, UINT install_mode)
1122 /* special case */
1123 if (comp->Action != INSTALLSTATE_SOURCE &&
1124 comp->Attributes & msidbComponentAttributesSourceOnly &&
1125 (install_mode == msidbRemoveFileInstallModeOnRemove ||
1126 install_mode == msidbRemoveFileInstallModeOnBoth)) return TRUE;
1128 switch (comp->Action)
1130 case INSTALLSTATE_LOCAL:
1131 case INSTALLSTATE_SOURCE:
1132 if (install_mode == msidbRemoveFileInstallModeOnInstall ||
1133 install_mode == msidbRemoveFileInstallModeOnBoth) return TRUE;
1134 break;
1135 case INSTALLSTATE_ABSENT:
1136 if (install_mode == msidbRemoveFileInstallModeOnRemove ||
1137 install_mode == msidbRemoveFileInstallModeOnBoth) return TRUE;
1138 break;
1139 default: break;
1141 return FALSE;
1144 static UINT ITERATE_RemoveFiles(MSIRECORD *row, LPVOID param)
1146 MSIPACKAGE *package = param;
1147 MSICOMPONENT *comp;
1148 MSIRECORD *uirow;
1149 LPCWSTR component, dirprop;
1150 UINT install_mode;
1151 LPWSTR dir = NULL, path = NULL, filename = NULL;
1152 DWORD size;
1153 UINT ret = ERROR_SUCCESS;
1155 component = MSI_RecordGetString(row, 2);
1156 dirprop = MSI_RecordGetString(row, 4);
1157 install_mode = MSI_RecordGetInteger(row, 5);
1159 comp = msi_get_loaded_component(package, component);
1160 if (!comp)
1161 return ERROR_SUCCESS;
1163 comp->Action = msi_get_component_action( package, comp );
1164 if (!verify_comp_for_removal(comp, install_mode))
1166 TRACE("Skipping removal due to install mode\n");
1167 return ERROR_SUCCESS;
1169 if (comp->assembly && !comp->assembly->application)
1171 return ERROR_SUCCESS;
1173 if (comp->Attributes & msidbComponentAttributesPermanent)
1175 TRACE("permanent component, not removing file\n");
1176 return ERROR_SUCCESS;
1179 dir = msi_dup_property(package->db, dirprop);
1180 if (!dir)
1182 WARN("directory property has no value\n");
1183 return ERROR_SUCCESS;
1185 size = 0;
1186 if ((filename = strdupW( MSI_RecordGetString(row, 3) )))
1188 msi_reduce_to_long_filename( filename );
1189 size = lstrlenW( filename );
1191 size += lstrlenW(dir) + 2;
1192 path = msi_alloc(size * sizeof(WCHAR));
1193 if (!path)
1195 ret = ERROR_OUTOFMEMORY;
1196 goto done;
1199 if (filename)
1201 lstrcpyW(path, dir);
1202 PathAddBackslashW(path);
1203 lstrcatW(path, filename);
1205 TRACE("Deleting misc file: %s\n", debugstr_w(path));
1206 DeleteFileW(path);
1208 else
1210 TRACE("Removing misc directory: %s\n", debugstr_w(dir));
1211 RemoveDirectoryW(dir);
1214 done:
1215 uirow = MSI_CreateRecord( 9 );
1216 MSI_RecordSetStringW( uirow, 1, MSI_RecordGetString(row, 1) );
1217 MSI_RecordSetStringW( uirow, 9, dir );
1218 msi_ui_actiondata( package, szRemoveFiles, uirow );
1219 msiobj_release( &uirow->hdr );
1221 msi_free(filename);
1222 msi_free(path);
1223 msi_free(dir);
1224 return ret;
1227 static void remove_folder( MSIFOLDER *folder )
1229 FolderList *fl;
1231 LIST_FOR_EACH_ENTRY( fl, &folder->children, FolderList, entry )
1233 remove_folder( fl->folder );
1235 if (!folder->persistent && folder->State != FOLDER_STATE_REMOVED)
1237 if (RemoveDirectoryW( folder->ResolvedTarget )) folder->State = FOLDER_STATE_REMOVED;
1241 UINT ACTION_RemoveFiles( MSIPACKAGE *package )
1243 static const WCHAR query[] = {
1244 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
1245 '`','R','e','m','o','v','e','F','i','l','e','`',0};
1246 MSIQUERY *view;
1247 MSICOMPONENT *comp;
1248 MSIFILE *file;
1249 UINT r;
1251 r = MSI_DatabaseOpenViewW(package->db, query, &view);
1252 if (r == ERROR_SUCCESS)
1254 r = MSI_IterateRecords(view, NULL, ITERATE_RemoveFiles, package);
1255 msiobj_release(&view->hdr);
1256 if (r != ERROR_SUCCESS)
1257 return r;
1260 LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry )
1262 MSIRECORD *uirow;
1263 VS_FIXEDFILEINFO *ver;
1265 comp = file->Component;
1266 msi_file_update_ui( package, file, szRemoveFiles );
1268 comp->Action = msi_get_component_action( package, comp );
1269 if (comp->Action != INSTALLSTATE_ABSENT || comp->Installed == INSTALLSTATE_SOURCE)
1270 continue;
1272 if (comp->assembly && !comp->assembly->application)
1273 continue;
1275 if (comp->Attributes & msidbComponentAttributesPermanent)
1277 TRACE("permanent component, not removing file\n");
1278 continue;
1281 if (file->Version)
1283 ver = msi_get_disk_file_version( file->TargetPath );
1284 if (ver && msi_compare_file_versions( ver, file->Version ) > 0)
1286 TRACE("newer version detected, not removing file\n");
1287 msi_free( ver );
1288 continue;
1290 msi_free( ver );
1293 if (file->state == msifs_installed)
1294 WARN("removing installed file %s\n", debugstr_w(file->TargetPath));
1296 TRACE("removing %s\n", debugstr_w(file->File) );
1298 SetFileAttributesW( file->TargetPath, FILE_ATTRIBUTE_NORMAL );
1299 if (!DeleteFileW( file->TargetPath ))
1301 WARN("failed to delete %s (%u)\n", debugstr_w(file->TargetPath), GetLastError());
1303 file->state = msifs_missing;
1305 uirow = MSI_CreateRecord( 9 );
1306 MSI_RecordSetStringW( uirow, 1, file->FileName );
1307 MSI_RecordSetStringW( uirow, 9, comp->Directory );
1308 msi_ui_actiondata( package, szRemoveFiles, uirow );
1309 msiobj_release( &uirow->hdr );
1311 LIST_FOR_EACH_ENTRY( comp, &package->components, MSICOMPONENT, entry )
1313 MSIFOLDER *folder;
1315 comp->Action = msi_get_component_action( package, comp );
1316 if (comp->Action != INSTALLSTATE_ABSENT) continue;
1318 if (comp->assembly && !comp->assembly->application) continue;
1320 if (comp->Attributes & msidbComponentAttributesPermanent)
1322 TRACE("permanent component, not removing directory\n");
1323 continue;
1325 folder = msi_get_loaded_folder( package, comp->Directory );
1326 remove_folder( folder );
1328 return ERROR_SUCCESS;