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:
29 * RemoveDuplicateFiles
38 #include "wine/debug.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
)
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
;
73 comp
->Action
= msi_get_component_action( package
, comp
);
74 if (comp
->Action
!= INSTALLSTATE_LOCAL
|| (comp
->assembly
&& comp
->assembly
->installed
))
76 TRACE("file %s is not scheduled for install\n", debugstr_w(file
->File
));
79 if ((comp
->assembly
&& !comp
->assembly
->application
&& !comp
->assembly
->installed
) ||
80 GetFileAttributesW( file
->TargetPath
) == INVALID_FILE_ATTRIBUTES
)
82 TRACE("file %s is missing\n", debugstr_w(file
->File
));
87 if ((file_version
= msi_get_disk_file_version( file
->TargetPath
)))
89 TRACE("new %s old %u.%u.%u.%u\n", debugstr_w(file
->Version
),
90 HIWORD(file_version
->dwFileVersionMS
),
91 LOWORD(file_version
->dwFileVersionMS
),
92 HIWORD(file_version
->dwFileVersionLS
),
93 LOWORD(file_version
->dwFileVersionLS
));
95 if (msi_compare_file_versions( file_version
, file
->Version
) < 0)
96 state
= msifs_overwrite
;
99 TRACE("destination file version equal or greater, not overwriting\n");
100 state
= msifs_present
;
102 msi_free( file_version
);
105 else if ((font_version
= msi_font_version_from_file( file
->TargetPath
)))
107 TRACE("new %s old %s\n", debugstr_w(file
->Version
), debugstr_w(font_version
));
109 if (msi_compare_font_versions( font_version
, file
->Version
) < 0)
110 state
= msifs_overwrite
;
113 TRACE("destination file version equal or greater, not overwriting\n");
114 state
= msifs_present
;
116 msi_free( font_version
);
120 if (msi_get_disk_file_size( file
->TargetPath
) != file
->FileSize
)
122 return msifs_overwrite
;
124 if (file
->hash
.dwFileHashInfoSize
)
126 if (msi_file_hash_matches( file
))
128 TRACE("file hashes match, not overwriting\n");
129 return msifs_hashmatch
;
133 TRACE("file hashes do not match, overwriting\n");
134 return msifs_overwrite
;
138 return msifs_present
;
141 static void schedule_install_files(MSIPACKAGE
*package
)
145 LIST_FOR_EACH_ENTRY(file
, &package
->files
, MSIFILE
, entry
)
147 MSICOMPONENT
*comp
= file
->Component
;
149 file
->state
= calculate_install_state( package
, file
);
150 if (file
->state
== msifs_overwrite
&& (comp
->Attributes
& msidbComponentAttributesNeverOverwrite
))
152 TRACE("not overwriting %s\n", debugstr_w(file
->TargetPath
));
153 file
->state
= msifs_skipped
;
158 static UINT
copy_file(MSIFILE
*file
, LPWSTR source
)
162 ret
= CopyFileW(source
, file
->TargetPath
, FALSE
);
164 return GetLastError();
166 SetFileAttributesW(file
->TargetPath
, FILE_ATTRIBUTE_NORMAL
);
168 file
->state
= msifs_installed
;
169 return ERROR_SUCCESS
;
172 static UINT
copy_install_file(MSIPACKAGE
*package
, MSIFILE
*file
, LPWSTR source
)
176 TRACE("Copying %s to %s\n", debugstr_w(source
), debugstr_w(file
->TargetPath
));
178 gle
= copy_file(file
, source
);
179 if (gle
== ERROR_SUCCESS
)
182 if (gle
== ERROR_ALREADY_EXISTS
&& file
->state
== msifs_overwrite
)
184 TRACE("overwriting existing file\n");
185 return ERROR_SUCCESS
;
187 else if (gle
== ERROR_ACCESS_DENIED
)
189 SetFileAttributesW(file
->TargetPath
, FILE_ATTRIBUTE_NORMAL
);
191 gle
= copy_file(file
, source
);
192 TRACE("Overwriting existing file: %d\n", gle
);
194 if (gle
== ERROR_SHARING_VIOLATION
|| gle
== ERROR_USER_MAPPED_FILE
)
196 WCHAR
*tmpfileW
, *pathW
, *p
;
199 TRACE("file in use, scheduling rename operation\n");
201 if (!(pathW
= strdupW( file
->TargetPath
))) return ERROR_OUTOFMEMORY
;
202 if ((p
= strrchrW(pathW
, '\\'))) *p
= 0;
203 len
= strlenW( pathW
) + 16;
204 if (!(tmpfileW
= msi_alloc(len
* sizeof(WCHAR
))))
207 return ERROR_OUTOFMEMORY
;
209 if (!GetTempFileNameW( pathW
, szMsi
, 0, tmpfileW
)) tmpfileW
[0] = 0;
212 if (CopyFileW(source
, tmpfileW
, FALSE
) &&
213 MoveFileExW(file
->TargetPath
, NULL
, MOVEFILE_DELAY_UNTIL_REBOOT
) &&
214 MoveFileExW(tmpfileW
, file
->TargetPath
, MOVEFILE_DELAY_UNTIL_REBOOT
))
216 file
->state
= msifs_installed
;
217 package
->need_reboot_at_end
= 1;
222 gle
= GetLastError();
223 WARN("failed to schedule rename operation: %d)\n", gle
);
224 DeleteFileW( tmpfileW
);
232 static UINT
msi_create_directory( MSIPACKAGE
*package
, const WCHAR
*dir
)
235 const WCHAR
*install_path
;
237 install_path
= msi_get_target_folder( package
, dir
);
238 if (!install_path
) return ERROR_FUNCTION_FAILED
;
240 folder
= msi_get_loaded_folder( package
, dir
);
241 if (folder
->State
== FOLDER_STATE_UNINITIALIZED
)
243 msi_create_full_path( install_path
);
244 folder
->State
= FOLDER_STATE_CREATED
;
246 return ERROR_SUCCESS
;
249 static MSIFILE
*find_file( MSIPACKAGE
*package
, UINT disk_id
, const WCHAR
*filename
)
253 LIST_FOR_EACH_ENTRY( file
, &package
->files
, MSIFILE
, entry
)
255 if (file
->disk_id
== disk_id
&&
256 file
->state
!= msifs_installed
&&
257 !strcmpiW( filename
, file
->File
)) return file
;
262 static BOOL
installfiles_cb(MSIPACKAGE
*package
, LPCWSTR file
, DWORD action
,
263 LPWSTR
*path
, DWORD
*attrs
, PVOID user
)
265 static MSIFILE
*f
= NULL
;
266 UINT_PTR disk_id
= (UINT_PTR
)user
;
268 if (action
== MSICABEXTRACT_BEGINEXTRACT
)
270 if (!(f
= find_file( package
, disk_id
, file
)))
272 TRACE("unknown file in cabinet (%s)\n", debugstr_w(file
));
275 if (f
->disk_id
!= disk_id
|| (f
->state
!= msifs_missing
&& f
->state
!= msifs_overwrite
))
278 if (!f
->Component
->assembly
|| f
->Component
->assembly
->application
)
280 msi_create_directory(package
, f
->Component
->Directory
);
282 *path
= strdupW(f
->TargetPath
);
283 *attrs
= f
->Attributes
;
285 else if (action
== MSICABEXTRACT_FILEEXTRACTED
)
287 f
->state
= msifs_installed
;
294 WCHAR
*msi_resolve_file_source( MSIPACKAGE
*package
, MSIFILE
*file
)
298 TRACE("Working to resolve source of file %s\n", debugstr_w(file
->File
));
300 if (file
->IsCompressed
) return NULL
;
302 p
= msi_resolve_source_folder( package
, file
->Component
->Directory
, NULL
);
303 path
= msi_build_directory_name( 2, p
, file
->ShortName
);
305 if (file
->LongName
&& GetFileAttributesW( path
) == INVALID_FILE_ATTRIBUTES
)
308 path
= msi_build_directory_name( 2, p
, file
->LongName
);
311 TRACE("file %s source resolves to %s\n", debugstr_w(file
->File
), debugstr_w(path
));
316 * ACTION_InstallFiles()
318 * For efficiency, this is done in two passes:
319 * 1) Correct all the TargetPaths and determine what files are to be installed.
320 * 2) Extract Cabinets and copy files.
322 UINT
ACTION_InstallFiles(MSIPACKAGE
*package
)
326 UINT rc
= ERROR_SUCCESS
;
329 schedule_install_files(package
);
330 mi
= msi_alloc_zero( sizeof(MSIMEDIAINFO
) );
332 LIST_FOR_EACH_ENTRY( file
, &package
->files
, MSIFILE
, entry
)
334 msi_file_update_ui( package
, file
, szInstallFiles
);
336 rc
= msi_load_media_info( package
, file
->Sequence
, mi
);
337 if (rc
!= ERROR_SUCCESS
)
339 ERR("Unable to load media info for %s (%u)\n", debugstr_w(file
->File
), rc
);
340 rc
= ERROR_FUNCTION_FAILED
;
343 if (!file
->Component
->Enabled
) continue;
345 if (file
->state
!= msifs_hashmatch
&&
346 file
->state
!= msifs_skipped
&&
347 (file
->state
!= msifs_present
|| !msi_get_property_int( package
->db
, szInstalled
, 0 )) &&
348 (rc
= ready_media( package
, file
->IsCompressed
, mi
)))
350 ERR("Failed to ready media for %s\n", debugstr_w(file
->File
));
354 if (file
->state
!= msifs_missing
&& !mi
->is_continuous
&& file
->state
!= msifs_overwrite
)
357 if (file
->Sequence
> mi
->last_sequence
|| mi
->is_continuous
||
358 (file
->IsCompressed
&& !mi
->is_extracted
))
363 data
.package
= package
;
364 data
.cb
= installfiles_cb
;
365 data
.user
= (PVOID
)(UINT_PTR
)mi
->disk_id
;
367 if (file
->IsCompressed
&&
368 !msi_cabextract(package
, mi
, &data
))
370 ERR("Failed to extract cabinet: %s\n", debugstr_w(mi
->cabinet
));
371 rc
= ERROR_INSTALL_FAILURE
;
376 if (!file
->IsCompressed
)
378 WCHAR
*source
= msi_resolve_file_source(package
, file
);
380 TRACE("copying %s to %s\n", debugstr_w(source
), debugstr_w(file
->TargetPath
));
382 if (!file
->Component
->assembly
|| file
->Component
->assembly
->application
)
384 msi_create_directory(package
, file
->Component
->Directory
);
386 rc
= copy_install_file(package
, file
, source
);
387 if (rc
!= ERROR_SUCCESS
)
389 ERR("Failed to copy %s to %s (%d)\n", debugstr_w(source
),
390 debugstr_w(file
->TargetPath
), rc
);
391 rc
= ERROR_INSTALL_FAILURE
;
397 else if (file
->state
!= msifs_installed
&& !(file
->Attributes
& msidbFileAttributesPatchAdded
))
399 ERR("compressed file wasn't installed (%s)\n", debugstr_w(file
->File
));
400 rc
= ERROR_INSTALL_FAILURE
;
404 LIST_FOR_EACH_ENTRY( comp
, &package
->components
, MSICOMPONENT
, entry
)
406 comp
->Action
= msi_get_component_action( package
, comp
);
407 if (comp
->Action
== INSTALLSTATE_LOCAL
&& comp
->assembly
&& !comp
->assembly
->installed
)
409 rc
= msi_install_assembly( package
, comp
);
410 if (rc
!= ERROR_SUCCESS
)
412 ERR("Failed to install assembly\n");
413 rc
= ERROR_INSTALL_FAILURE
;
420 msi_free_media_info(mi
);
424 static BOOL
load_mspatcha(void)
426 hmspatcha
= LoadLibraryA("mspatcha.dll");
429 ERR("Failed to load mspatcha.dll: %d\n", GetLastError());
433 ApplyPatchToFileW
= (void*)GetProcAddress(hmspatcha
, "ApplyPatchToFileW");
434 if(!ApplyPatchToFileW
)
436 ERR("GetProcAddress(ApplyPatchToFileW) failed: %d.\n", GetLastError());
443 static void unload_mspatch(void)
445 FreeLibrary(hmspatcha
);
448 static MSIFILEPATCH
*get_next_filepatch( MSIPACKAGE
*package
, const WCHAR
*key
)
452 LIST_FOR_EACH_ENTRY( patch
, &package
->filepatches
, MSIFILEPATCH
, entry
)
454 if (!patch
->IsApplied
&& !strcmpW( key
, patch
->File
->File
)) return patch
;
459 static BOOL
patchfiles_cb(MSIPACKAGE
*package
, LPCWSTR file
, DWORD action
,
460 LPWSTR
*path
, DWORD
*attrs
, PVOID user
)
462 static MSIFILEPATCH
*p
= NULL
;
463 static WCHAR patch_path
[MAX_PATH
] = {0};
464 static WCHAR temp_folder
[MAX_PATH
] = {0};
466 if (action
== MSICABEXTRACT_BEGINEXTRACT
)
468 if (temp_folder
[0] == '\0')
469 GetTempPathW(MAX_PATH
, temp_folder
);
471 if (!(p
= get_next_filepatch(package
, file
)) || !p
->File
->Component
->Enabled
)
474 GetTempFileNameW(temp_folder
, NULL
, 0, patch_path
);
476 *path
= strdupW(patch_path
);
477 *attrs
= p
->File
->Attributes
;
479 else if (action
== MSICABEXTRACT_FILEEXTRACTED
)
481 WCHAR patched_file
[MAX_PATH
];
484 GetTempFileNameW(temp_folder
, NULL
, 0, patched_file
);
486 br
= ApplyPatchToFileW(patch_path
, p
->File
->TargetPath
, patched_file
, 0);
489 /* FIXME: baseline cache */
491 DeleteFileW( p
->File
->TargetPath
);
492 MoveFileW( patched_file
, p
->File
->TargetPath
);
497 ERR("Failed patch %s: %d.\n", debugstr_w(p
->File
->TargetPath
), GetLastError());
499 DeleteFileW(patch_path
);
506 UINT
ACTION_PatchFiles( MSIPACKAGE
*package
)
510 UINT rc
= ERROR_SUCCESS
;
511 BOOL mspatcha_loaded
= FALSE
;
513 TRACE("%p\n", package
);
515 mi
= msi_alloc_zero( sizeof(MSIMEDIAINFO
) );
517 LIST_FOR_EACH_ENTRY( patch
, &package
->filepatches
, MSIFILEPATCH
, entry
)
519 MSIFILE
*file
= patch
->File
;
520 MSICOMPONENT
*comp
= file
->Component
;
522 rc
= msi_load_media_info( package
, patch
->Sequence
, mi
);
523 if (rc
!= ERROR_SUCCESS
)
525 ERR("Unable to load media info for %s (%u)\n", debugstr_w(file
->File
), rc
);
526 rc
= ERROR_FUNCTION_FAILED
;
529 comp
->Action
= msi_get_component_action( package
, comp
);
530 if (!comp
->Enabled
|| comp
->Action
!= INSTALLSTATE_LOCAL
) continue;
532 if (!patch
->IsApplied
)
536 rc
= ready_media( package
, TRUE
, mi
);
537 if (rc
!= ERROR_SUCCESS
)
539 ERR("Failed to ready media for %s\n", debugstr_w(file
->File
));
543 if (!mspatcha_loaded
&& !load_mspatcha())
545 rc
= ERROR_FUNCTION_FAILED
;
548 mspatcha_loaded
= TRUE
;
551 data
.package
= package
;
552 data
.cb
= patchfiles_cb
;
553 data
.user
= (PVOID
)(UINT_PTR
)mi
->disk_id
;
555 if (!msi_cabextract(package
, mi
, &data
))
557 ERR("Failed to extract cabinet: %s\n", debugstr_w(mi
->cabinet
));
558 rc
= ERROR_INSTALL_FAILURE
;
563 if (!patch
->IsApplied
&& !(patch
->Attributes
& msidbPatchAttributesNonVital
))
565 ERR("Failed to apply patch to file: %s\n", debugstr_w(file
->File
));
566 rc
= ERROR_INSTALL_FAILURE
;
572 msi_free_media_info(mi
);
578 #define is_dot_dir(x) ((x[0] == '.') && ((x[1] == 0) || ((x[1] == '.') && (x[2] == 0))))
589 static BOOL
msi_move_file(LPCWSTR source
, LPCWSTR dest
, int options
)
593 if (GetFileAttributesW(source
) == FILE_ATTRIBUTE_DIRECTORY
||
594 GetFileAttributesW(dest
) == FILE_ATTRIBUTE_DIRECTORY
)
596 WARN("Source or dest is directory, not moving\n");
600 if (options
== msidbMoveFileOptionsMove
)
602 TRACE("moving %s -> %s\n", debugstr_w(source
), debugstr_w(dest
));
603 ret
= MoveFileExW(source
, dest
, MOVEFILE_REPLACE_EXISTING
);
606 WARN("MoveFile failed: %d\n", GetLastError());
612 TRACE("copying %s -> %s\n", debugstr_w(source
), debugstr_w(dest
));
613 ret
= CopyFileW(source
, dest
, FALSE
);
616 WARN("CopyFile failed: %d\n", GetLastError());
624 static LPWSTR
wildcard_to_file(LPWSTR wildcard
, LPWSTR filename
)
627 DWORD dirlen
, pathlen
;
629 ptr
= strrchrW(wildcard
, '\\');
630 dirlen
= ptr
- wildcard
+ 1;
632 pathlen
= dirlen
+ lstrlenW(filename
) + 1;
633 path
= msi_alloc(pathlen
* sizeof(WCHAR
));
635 lstrcpynW(path
, wildcard
, dirlen
+ 1);
636 lstrcatW(path
, filename
);
641 static void free_file_entry(FILE_LIST
*file
)
643 msi_free(file
->source
);
644 msi_free(file
->dest
);
648 static void free_list(FILE_LIST
*list
)
650 while (!list_empty(&list
->entry
))
652 FILE_LIST
*file
= LIST_ENTRY(list_head(&list
->entry
), FILE_LIST
, entry
);
654 list_remove(&file
->entry
);
655 free_file_entry(file
);
659 static BOOL
add_wildcard(FILE_LIST
*files
, LPWSTR source
, LPWSTR dest
)
661 FILE_LIST
*new, *file
;
662 LPWSTR ptr
, filename
;
665 new = msi_alloc_zero(sizeof(FILE_LIST
));
669 new->source
= strdupW(source
);
670 ptr
= strrchrW(dest
, '\\') + 1;
671 filename
= strrchrW(new->source
, '\\') + 1;
673 new->sourcename
= filename
;
678 new->destname
= new->sourcename
;
680 size
= (ptr
- dest
) + lstrlenW(filename
) + 1;
681 new->dest
= msi_alloc(size
* sizeof(WCHAR
));
684 free_file_entry(new);
688 lstrcpynW(new->dest
, dest
, ptr
- dest
+ 1);
689 lstrcatW(new->dest
, filename
);
691 if (list_empty(&files
->entry
))
693 list_add_head(&files
->entry
, &new->entry
);
697 LIST_FOR_EACH_ENTRY(file
, &files
->entry
, FILE_LIST
, entry
)
699 if (strcmpW( source
, file
->source
) < 0)
701 list_add_before(&file
->entry
, &new->entry
);
706 list_add_after(&file
->entry
, &new->entry
);
710 static BOOL
move_files_wildcard(LPWSTR source
, LPWSTR dest
, int options
)
712 WIN32_FIND_DATAW wfd
;
716 FILE_LIST files
, *file
;
719 hfile
= FindFirstFileW(source
, &wfd
);
720 if (hfile
== INVALID_HANDLE_VALUE
) return FALSE
;
722 list_init(&files
.entry
);
724 for (res
= TRUE
; res
; res
= FindNextFileW(hfile
, &wfd
))
726 if (is_dot_dir(wfd
.cFileName
)) continue;
728 path
= wildcard_to_file(source
, wfd
.cFileName
);
735 add_wildcard(&files
, path
, dest
);
739 /* no files match the wildcard */
740 if (list_empty(&files
.entry
))
743 /* only the first wildcard match gets renamed to dest */
744 file
= LIST_ENTRY(list_head(&files
.entry
), FILE_LIST
, entry
);
745 size
= (strrchrW(file
->dest
, '\\') - file
->dest
) + lstrlenW(file
->destname
) + 2;
746 file
->dest
= msi_realloc(file
->dest
, size
* sizeof(WCHAR
));
753 /* file->dest may be shorter after the reallocation, so add a NULL
754 * terminator. This is needed for the call to strrchrW, as there will no
755 * longer be a NULL terminator within the bounds of the allocation in this case.
757 file
->dest
[size
- 1] = '\0';
758 lstrcpyW(strrchrW(file
->dest
, '\\') + 1, file
->destname
);
760 while (!list_empty(&files
.entry
))
762 file
= LIST_ENTRY(list_head(&files
.entry
), FILE_LIST
, entry
);
764 msi_move_file(file
->source
, file
->dest
, options
);
766 list_remove(&file
->entry
);
767 free_file_entry(file
);
778 void msi_reduce_to_long_filename( WCHAR
*filename
)
780 WCHAR
*p
= strchrW( filename
, '|' );
781 if (p
) memmove( filename
, p
+ 1, (strlenW( p
+ 1 ) + 1) * sizeof(WCHAR
) );
784 static UINT
ITERATE_MoveFiles( MSIRECORD
*rec
, LPVOID param
)
786 MSIPACKAGE
*package
= param
;
789 LPCWSTR sourcename
, component
;
790 LPWSTR sourcedir
, destname
= NULL
, destdir
= NULL
, source
= NULL
, dest
= NULL
;
795 component
= MSI_RecordGetString(rec
, 2);
796 comp
= msi_get_loaded_component(package
, component
);
798 return ERROR_SUCCESS
;
800 comp
->Action
= msi_get_component_action( package
, comp
);
801 if (comp
->Action
!= INSTALLSTATE_LOCAL
)
803 TRACE("component not scheduled for installation %s\n", debugstr_w(component
));
804 return ERROR_SUCCESS
;
807 sourcename
= MSI_RecordGetString(rec
, 3);
808 options
= MSI_RecordGetInteger(rec
, 7);
810 sourcedir
= msi_dup_property(package
->db
, MSI_RecordGetString(rec
, 5));
814 destdir
= msi_dup_property(package
->db
, MSI_RecordGetString(rec
, 6));
820 if (GetFileAttributesW(sourcedir
) == INVALID_FILE_ATTRIBUTES
)
823 source
= strdupW(sourcedir
);
829 size
= lstrlenW(sourcedir
) + lstrlenW(sourcename
) + 2;
830 source
= msi_alloc(size
* sizeof(WCHAR
));
834 lstrcpyW(source
, sourcedir
);
835 if (source
[lstrlenW(source
) - 1] != '\\')
836 lstrcatW(source
, szBackSlash
);
837 lstrcatW(source
, sourcename
);
840 wildcards
= strchrW(source
, '*') || strchrW(source
, '?');
842 if (MSI_RecordIsNull(rec
, 4))
846 destname
= strdupW(sourcename
);
853 destname
= strdupW(MSI_RecordGetString(rec
, 4));
854 if (destname
) msi_reduce_to_long_filename(destname
);
859 size
= lstrlenW(destname
);
861 size
+= lstrlenW(destdir
) + 2;
862 dest
= msi_alloc(size
* sizeof(WCHAR
));
866 lstrcpyW(dest
, destdir
);
867 if (dest
[lstrlenW(dest
) - 1] != '\\')
868 lstrcatW(dest
, szBackSlash
);
871 lstrcatW(dest
, destname
);
873 if (GetFileAttributesW(destdir
) == INVALID_FILE_ATTRIBUTES
)
875 if (!msi_create_full_path(destdir
))
877 WARN("failed to create directory %u\n", GetLastError());
883 msi_move_file(source
, dest
, options
);
885 move_files_wildcard(source
, dest
, options
);
888 uirow
= MSI_CreateRecord( 9 );
889 MSI_RecordSetStringW( uirow
, 1, MSI_RecordGetString(rec
, 1) );
890 MSI_RecordSetInteger( uirow
, 6, 1 ); /* FIXME */
891 MSI_RecordSetStringW( uirow
, 9, destdir
);
892 msi_ui_actiondata( package
, szMoveFiles
, uirow
);
893 msiobj_release( &uirow
->hdr
);
901 return ERROR_SUCCESS
;
904 UINT
ACTION_MoveFiles( MSIPACKAGE
*package
)
906 static const WCHAR query
[] = {
907 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
908 '`','M','o','v','e','F','i','l','e','`',0};
912 rc
= MSI_DatabaseOpenViewW(package
->db
, query
, &view
);
913 if (rc
!= ERROR_SUCCESS
)
914 return ERROR_SUCCESS
;
916 rc
= MSI_IterateRecords(view
, NULL
, ITERATE_MoveFiles
, package
);
917 msiobj_release(&view
->hdr
);
921 static WCHAR
*get_duplicate_filename( MSIPACKAGE
*package
, MSIRECORD
*row
, const WCHAR
*file_key
, const WCHAR
*src
)
924 WCHAR
*dst_name
, *dst_path
, *dst
;
926 if (MSI_RecordIsNull( row
, 4 ))
928 len
= strlenW( src
) + 1;
929 if (!(dst_name
= msi_alloc( len
* sizeof(WCHAR
)))) return NULL
;
930 strcpyW( dst_name
, strrchrW( src
, '\\' ) + 1 );
934 MSI_RecordGetStringW( row
, 4, NULL
, &len
);
935 if (!(dst_name
= msi_alloc( ++len
* sizeof(WCHAR
) ))) return NULL
;
936 MSI_RecordGetStringW( row
, 4, dst_name
, &len
);
937 msi_reduce_to_long_filename( dst_name
);
940 if (MSI_RecordIsNull( row
, 5 ))
943 dst_path
= strdupW( src
);
944 p
= strrchrW( dst_path
, '\\' );
949 const WCHAR
*dst_key
= MSI_RecordGetString( row
, 5 );
951 dst_path
= strdupW( msi_get_target_folder( package
, dst_key
) );
955 dst_path
= msi_dup_property( package
->db
, dst_key
);
958 FIXME("Unable to get destination folder, try AppSearch properties\n");
959 msi_free( dst_name
);
965 dst
= msi_build_directory_name( 2, dst_path
, dst_name
);
966 msi_create_full_path( dst_path
);
968 msi_free( dst_name
);
969 msi_free( dst_path
);
973 static UINT
ITERATE_DuplicateFiles(MSIRECORD
*row
, LPVOID param
)
975 MSIPACKAGE
*package
= param
;
977 LPCWSTR file_key
, component
;
982 component
= MSI_RecordGetString(row
,2);
983 comp
= msi_get_loaded_component(package
, component
);
985 return ERROR_SUCCESS
;
987 comp
->Action
= msi_get_component_action( package
, comp
);
988 if (comp
->Action
!= INSTALLSTATE_LOCAL
)
990 TRACE("component not scheduled for installation %s\n", debugstr_w(component
));
991 return ERROR_SUCCESS
;
994 file_key
= MSI_RecordGetString(row
,3);
997 ERR("Unable to get file key\n");
998 return ERROR_FUNCTION_FAILED
;
1001 file
= msi_get_loaded_file( package
, file_key
);
1004 ERR("Original file unknown %s\n", debugstr_w(file_key
));
1005 return ERROR_SUCCESS
;
1008 dest
= get_duplicate_filename( package
, row
, file_key
, file
->TargetPath
);
1011 WARN("Unable to get duplicate filename\n");
1012 return ERROR_SUCCESS
;
1015 TRACE("Duplicating file %s to %s\n", debugstr_w(file
->TargetPath
), debugstr_w(dest
));
1017 if (!CopyFileW( file
->TargetPath
, dest
, TRUE
))
1019 WARN("Failed to copy file %s -> %s (%u)\n",
1020 debugstr_w(file
->TargetPath
), debugstr_w(dest
), GetLastError());
1023 FIXME("We should track these duplicate files as well\n");
1025 uirow
= MSI_CreateRecord( 9 );
1026 MSI_RecordSetStringW( uirow
, 1, MSI_RecordGetString( row
, 1 ) );
1027 MSI_RecordSetInteger( uirow
, 6, file
->FileSize
);
1028 MSI_RecordSetStringW( uirow
, 9, MSI_RecordGetString( row
, 5 ) );
1029 msi_ui_actiondata( package
, szDuplicateFiles
, uirow
);
1030 msiobj_release( &uirow
->hdr
);
1033 return ERROR_SUCCESS
;
1036 UINT
ACTION_DuplicateFiles(MSIPACKAGE
*package
)
1038 static const WCHAR query
[] = {
1039 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
1040 '`','D','u','p','l','i','c','a','t','e','F','i','l','e','`',0};
1044 rc
= MSI_DatabaseOpenViewW(package
->db
, query
, &view
);
1045 if (rc
!= ERROR_SUCCESS
)
1046 return ERROR_SUCCESS
;
1048 rc
= MSI_IterateRecords(view
, NULL
, ITERATE_DuplicateFiles
, package
);
1049 msiobj_release(&view
->hdr
);
1053 static UINT
ITERATE_RemoveDuplicateFiles( MSIRECORD
*row
, LPVOID param
)
1055 MSIPACKAGE
*package
= param
;
1057 LPCWSTR file_key
, component
;
1062 component
= MSI_RecordGetString( row
, 2 );
1063 comp
= msi_get_loaded_component( package
, component
);
1065 return ERROR_SUCCESS
;
1067 comp
->Action
= msi_get_component_action( package
, comp
);
1068 if (comp
->Action
!= INSTALLSTATE_ABSENT
)
1070 TRACE("component not scheduled for removal %s\n", debugstr_w(component
));
1071 return ERROR_SUCCESS
;
1074 file_key
= MSI_RecordGetString( row
, 3 );
1077 ERR("Unable to get file key\n");
1078 return ERROR_FUNCTION_FAILED
;
1081 file
= msi_get_loaded_file( package
, file_key
);
1084 ERR("Original file unknown %s\n", debugstr_w(file_key
));
1085 return ERROR_SUCCESS
;
1088 dest
= get_duplicate_filename( package
, row
, file_key
, file
->TargetPath
);
1091 WARN("Unable to get duplicate filename\n");
1092 return ERROR_SUCCESS
;
1095 TRACE("Removing duplicate %s of %s\n", debugstr_w(dest
), debugstr_w(file
->TargetPath
));
1097 if (!DeleteFileW( dest
))
1099 WARN("Failed to delete duplicate file %s (%u)\n", debugstr_w(dest
), GetLastError());
1102 uirow
= MSI_CreateRecord( 9 );
1103 MSI_RecordSetStringW( uirow
, 1, MSI_RecordGetString( row
, 1 ) );
1104 MSI_RecordSetStringW( uirow
, 9, MSI_RecordGetString( row
, 5 ) );
1105 msi_ui_actiondata( package
, szRemoveDuplicateFiles
, uirow
);
1106 msiobj_release( &uirow
->hdr
);
1109 return ERROR_SUCCESS
;
1112 UINT
ACTION_RemoveDuplicateFiles( MSIPACKAGE
*package
)
1114 static const WCHAR query
[] = {
1115 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
1116 '`','D','u','p','l','i','c','a','t','e','F','i','l','e','`',0};
1120 rc
= MSI_DatabaseOpenViewW( package
->db
, query
, &view
);
1121 if (rc
!= ERROR_SUCCESS
)
1122 return ERROR_SUCCESS
;
1124 rc
= MSI_IterateRecords( view
, NULL
, ITERATE_RemoveDuplicateFiles
, package
);
1125 msiobj_release( &view
->hdr
);
1129 static BOOL
verify_comp_for_removal(MSICOMPONENT
*comp
, UINT install_mode
)
1132 if (comp
->Action
!= INSTALLSTATE_SOURCE
&&
1133 comp
->Attributes
& msidbComponentAttributesSourceOnly
&&
1134 (install_mode
== msidbRemoveFileInstallModeOnRemove
||
1135 install_mode
== msidbRemoveFileInstallModeOnBoth
)) return TRUE
;
1137 switch (comp
->Action
)
1139 case INSTALLSTATE_LOCAL
:
1140 case INSTALLSTATE_SOURCE
:
1141 if (install_mode
== msidbRemoveFileInstallModeOnInstall
||
1142 install_mode
== msidbRemoveFileInstallModeOnBoth
) return TRUE
;
1144 case INSTALLSTATE_ABSENT
:
1145 if (install_mode
== msidbRemoveFileInstallModeOnRemove
||
1146 install_mode
== msidbRemoveFileInstallModeOnBoth
) return TRUE
;
1153 static UINT
ITERATE_RemoveFiles(MSIRECORD
*row
, LPVOID param
)
1155 MSIPACKAGE
*package
= param
;
1158 LPCWSTR component
, dirprop
;
1160 LPWSTR dir
= NULL
, path
= NULL
, filename
= NULL
;
1162 UINT ret
= ERROR_SUCCESS
;
1164 component
= MSI_RecordGetString(row
, 2);
1165 dirprop
= MSI_RecordGetString(row
, 4);
1166 install_mode
= MSI_RecordGetInteger(row
, 5);
1168 comp
= msi_get_loaded_component(package
, component
);
1170 return ERROR_SUCCESS
;
1172 comp
->Action
= msi_get_component_action( package
, comp
);
1173 if (!verify_comp_for_removal(comp
, install_mode
))
1175 TRACE("Skipping removal due to install mode\n");
1176 return ERROR_SUCCESS
;
1178 if (comp
->assembly
&& !comp
->assembly
->application
)
1180 return ERROR_SUCCESS
;
1182 if (comp
->Attributes
& msidbComponentAttributesPermanent
)
1184 TRACE("permanent component, not removing file\n");
1185 return ERROR_SUCCESS
;
1188 dir
= msi_dup_property(package
->db
, dirprop
);
1191 WARN("directory property has no value\n");
1192 return ERROR_SUCCESS
;
1195 if ((filename
= strdupW( MSI_RecordGetString(row
, 3) )))
1197 msi_reduce_to_long_filename( filename
);
1198 size
= lstrlenW( filename
);
1200 size
+= lstrlenW(dir
) + 2;
1201 path
= msi_alloc(size
* sizeof(WCHAR
));
1204 ret
= ERROR_OUTOFMEMORY
;
1210 lstrcpyW(path
, dir
);
1211 PathAddBackslashW(path
);
1212 lstrcatW(path
, filename
);
1214 TRACE("Deleting misc file: %s\n", debugstr_w(path
));
1219 TRACE("Removing misc directory: %s\n", debugstr_w(dir
));
1220 RemoveDirectoryW(dir
);
1224 uirow
= MSI_CreateRecord( 9 );
1225 MSI_RecordSetStringW( uirow
, 1, MSI_RecordGetString(row
, 1) );
1226 MSI_RecordSetStringW( uirow
, 9, dir
);
1227 msi_ui_actiondata( package
, szRemoveFiles
, uirow
);
1228 msiobj_release( &uirow
->hdr
);
1236 static void remove_folder( MSIFOLDER
*folder
)
1240 LIST_FOR_EACH_ENTRY( fl
, &folder
->children
, FolderList
, entry
)
1242 remove_folder( fl
->folder
);
1244 if (!folder
->persistent
&& folder
->State
!= FOLDER_STATE_REMOVED
)
1246 if (RemoveDirectoryW( folder
->ResolvedTarget
)) folder
->State
= FOLDER_STATE_REMOVED
;
1250 UINT
ACTION_RemoveFiles( MSIPACKAGE
*package
)
1252 static const WCHAR query
[] = {
1253 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
1254 '`','R','e','m','o','v','e','F','i','l','e','`',0};
1260 r
= MSI_DatabaseOpenViewW(package
->db
, query
, &view
);
1261 if (r
== ERROR_SUCCESS
)
1263 r
= MSI_IterateRecords(view
, NULL
, ITERATE_RemoveFiles
, package
);
1264 msiobj_release(&view
->hdr
);
1265 if (r
!= ERROR_SUCCESS
)
1269 LIST_FOR_EACH_ENTRY( file
, &package
->files
, MSIFILE
, entry
)
1272 VS_FIXEDFILEINFO
*ver
;
1274 comp
= file
->Component
;
1275 msi_file_update_ui( package
, file
, szRemoveFiles
);
1277 comp
->Action
= msi_get_component_action( package
, comp
);
1278 if (comp
->Action
!= INSTALLSTATE_ABSENT
|| comp
->Installed
== INSTALLSTATE_SOURCE
)
1281 if (comp
->assembly
&& !comp
->assembly
->application
)
1284 if (comp
->Attributes
& msidbComponentAttributesPermanent
)
1286 TRACE("permanent component, not removing file\n");
1292 ver
= msi_get_disk_file_version( file
->TargetPath
);
1293 if (ver
&& msi_compare_file_versions( ver
, file
->Version
) > 0)
1295 TRACE("newer version detected, not removing file\n");
1302 if (file
->state
== msifs_installed
)
1303 WARN("removing installed file %s\n", debugstr_w(file
->TargetPath
));
1305 TRACE("removing %s\n", debugstr_w(file
->File
) );
1307 SetFileAttributesW( file
->TargetPath
, FILE_ATTRIBUTE_NORMAL
);
1308 if (!DeleteFileW( file
->TargetPath
))
1310 WARN("failed to delete %s (%u)\n", debugstr_w(file
->TargetPath
), GetLastError());
1312 file
->state
= msifs_missing
;
1314 uirow
= MSI_CreateRecord( 9 );
1315 MSI_RecordSetStringW( uirow
, 1, file
->FileName
);
1316 MSI_RecordSetStringW( uirow
, 9, comp
->Directory
);
1317 msi_ui_actiondata( package
, szRemoveFiles
, uirow
);
1318 msiobj_release( &uirow
->hdr
);
1321 LIST_FOR_EACH_ENTRY( comp
, &package
->components
, MSICOMPONENT
, entry
)
1323 comp
->Action
= msi_get_component_action( package
, comp
);
1324 if (comp
->Action
!= INSTALLSTATE_ABSENT
) continue;
1326 if (comp
->Attributes
& msidbComponentAttributesPermanent
)
1328 TRACE("permanent component, not removing directory\n");
1331 if (comp
->assembly
&& !comp
->assembly
->application
)
1332 msi_uninstall_assembly( package
, comp
);
1335 MSIFOLDER
*folder
= msi_get_loaded_folder( package
, comp
->Directory
);
1336 remove_folder( folder
);
1339 return ERROR_SUCCESS
;