4 * Support for extracting WIM files.
6 * This code does NOT contain any filesystem-specific features. In particular,
7 * security information (i.e. file permissions) and alternate data streams are
8 * ignored, except possibly to read an alternate data stream that contains
13 * Copyright (C) 2012 Eric Biggers
15 * This file is part of wimlib, a library for working with WIM files.
17 * wimlib is free software; you can redistribute it and/or modify it under the
18 * terms of the GNU General Public License as published by the Free
19 * Software Foundation; either version 3 of the License, or (at your option)
22 * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
23 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
24 * A PARTICULAR PURPOSE. See the GNU General Public License for more
27 * You should have received a copy of the GNU General Public License
28 * along with wimlib; if not, see http://www.gnu.org/licenses/.
48 #include "lookup_table.h"
49 #include "timestamp.h"
50 #include "wimlib_internal.h"
54 #include <ntfs-3g/volume.h>
57 static int extract_regular_file_linked(struct dentry *dentry,
58 const char *output_path,
59 struct apply_args *args,
60 struct lookup_table_entry *lte)
62 /* This mode overrides the normal hard-link extraction and
63 * instead either symlinks or hardlinks *all* identical files in
64 * the WIM, even if they are in a different image (in the case
65 * of a multi-image extraction) */
67 if (args->extract_flags & WIMLIB_EXTRACT_FLAG_HARDLINK) {
68 if (link(lte->extracted_file, output_path) != 0) {
69 ERROR_WITH_ERRNO("Failed to hard link "
71 output_path, lte->extracted_file);
72 return WIMLIB_ERR_LINK;
75 int num_path_components;
76 int num_output_dir_path_components;
77 size_t extracted_file_len;
83 get_num_path_components(dentry->full_path_utf8) - 1;
84 num_output_dir_path_components =
85 get_num_path_components(args->target);
87 if (args->extract_flags & WIMLIB_EXTRACT_FLAG_MULTI_IMAGE) {
88 num_path_components++;
89 num_output_dir_path_components--;
91 extracted_file_len = strlen(lte->extracted_file);
93 char buf[extracted_file_len + 3 * num_path_components + 1];
96 for (i = 0; i < num_path_components; i++) {
101 p2 = lte->extracted_file;
104 while (num_output_dir_path_components--)
105 p2 = path_next_part(p2, NULL);
107 if (symlink(buf, output_path) != 0) {
108 ERROR_WITH_ERRNO("Failed to symlink `%s' to "
110 buf, lte->extracted_file);
111 return WIMLIB_ERR_LINK;
117 static int extract_regular_file_unlinked(struct dentry *dentry,
118 struct apply_args *args,
119 const char *output_path,
120 struct lookup_table_entry *lte)
122 /* Normal mode of extraction. Regular files and hard links are
123 * extracted in the way that they appear in the WIM. */
127 struct inode *inode = dentry->d_inode;
129 if (!((args->extract_flags & WIMLIB_EXTRACT_FLAG_MULTI_IMAGE)
130 && (args->extract_flags & (WIMLIB_EXTRACT_FLAG_SYMLINK |
131 WIMLIB_EXTRACT_FLAG_HARDLINK))))
133 /* If the dentry is one of a hard link set of at least 2
134 * dentries and one of the other dentries has already been
135 * extracted, make a hard link to the file corresponding to this
136 * already-extracted directory. Otherwise, extract the file,
137 * and set the inode->extracted_file field so that other
138 * dentries in the hard link group can link to it. */
139 if (inode->link_count > 1) {
140 if (inode->extracted_file) {
141 DEBUG("Extracting hard link `%s' => `%s'",
142 output_path, inode->extracted_file);
143 if (link(inode->extracted_file, output_path) != 0) {
144 ERROR_WITH_ERRNO("Failed to hard link "
147 inode->extracted_file);
148 return WIMLIB_ERR_LINK;
152 FREE(inode->extracted_file);
153 inode->extracted_file = STRDUP(output_path);
154 if (!inode->extracted_file) {
155 ERROR("Failed to allocate memory for filename");
156 return WIMLIB_ERR_NOMEM;
161 /* Extract the contents of the file to @output_path. */
163 out_fd = open(output_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
165 ERROR_WITH_ERRNO("Failed to open the file `%s' for writing",
167 return WIMLIB_ERR_OPEN;
171 /* Empty file with no lookup table entry */
172 DEBUG("Empty file `%s'.", output_path);
177 ret = extract_wim_resource_to_fd(lte, out_fd, wim_resource_size(lte));
179 ERROR("Failed to extract resource to `%s'", output_path);
182 args->progress.extract.completed_bytes += wim_resource_size(lte);
184 if (close(out_fd) != 0) {
185 ERROR_WITH_ERRNO("Failed to close file `%s'", output_path);
186 ret = WIMLIB_ERR_WRITE;
192 * Extracts a regular file from the WIM archive.
194 static int extract_regular_file(struct dentry *dentry,
195 struct apply_args *args,
196 const char *output_path)
198 struct lookup_table_entry *lte;
199 const struct inode *inode = dentry->d_inode;
201 lte = inode_unnamed_lte_resolved(inode);
203 if (lte && (args->extract_flags & (WIMLIB_EXTRACT_FLAG_SYMLINK |
204 WIMLIB_EXTRACT_FLAG_HARDLINK)))
206 if (lte->extracted_file) {
207 return extract_regular_file_linked(dentry, output_path, args, lte);
209 lte->extracted_file = STRDUP(output_path);
210 if (!lte->extracted_file)
211 return WIMLIB_ERR_NOMEM;
214 return extract_regular_file_unlinked(dentry, args, output_path, lte);
217 static int extract_symlink(struct dentry *dentry,
218 struct apply_args *args,
219 const char *output_path)
222 ssize_t ret = inode_readlink(dentry->d_inode, target,
223 sizeof(target), args->w, 0);
224 struct lookup_table_entry *lte;
227 ERROR("Could not read the symbolic link from dentry `%s'",
228 dentry->full_path_utf8);
229 return WIMLIB_ERR_INVALID_DENTRY;
231 ret = symlink(target, output_path);
233 ERROR_WITH_ERRNO("Failed to symlink `%s' to `%s'",
234 output_path, target);
235 return WIMLIB_ERR_LINK;
237 lte = inode_unnamed_lte_resolved(dentry->d_inode);
238 args->progress.extract.completed_bytes += wim_resource_size(lte);
243 * Extracts a directory from the WIM archive.
245 * @dentry: The directory entry for the directory.
246 * @output_path: The path to which the directory is to be extracted to.
247 * @return: True on success, false on failure.
249 static int extract_directory(const char *output_path, bool is_root)
253 ret = stat(output_path, &stbuf);
255 if (S_ISDIR(stbuf.st_mode)) {
257 /*WARNING("`%s' already exists", output_path);*/
260 ERROR("`%s' is not a directory", output_path);
261 return WIMLIB_ERR_MKDIR;
264 if (errno != ENOENT) {
265 ERROR_WITH_ERRNO("Failed to stat `%s'", output_path);
266 return WIMLIB_ERR_STAT;
269 /* Compute the output path directory to the directory. */
270 if (mkdir(output_path, S_IRWXU | S_IRGRP | S_IXGRP |
271 S_IROTH | S_IXOTH) != 0) {
272 ERROR_WITH_ERRNO("Cannot create directory `%s'",
274 return WIMLIB_ERR_MKDIR;
280 * Extracts a file, directory, or symbolic link from the WIM archive. For use
281 * in for_dentry_in_tree().
283 static int apply_dentry_normal(struct dentry *dentry, void *arg)
285 struct apply_args *args = arg;
286 int extract_flags = args->extract_flags;
287 struct inode *inode = dentry->d_inode;
291 if (dentry->is_extracted)
294 if (extract_flags & WIMLIB_EXTRACT_FLAG_NO_STREAMS)
295 if (inode_unnamed_lte_resolved(inode))
298 if ((extract_flags & WIMLIB_EXTRACT_FLAG_VERBOSE) &&
301 args->progress.extract.cur_path = dentry->full_path_utf8;
302 args->progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_DENTRY,
306 len = strlen(args->target);
307 char output_path[len + dentry->full_path_utf8_len + 1];
308 memcpy(output_path, args->target, len);
309 memcpy(output_path + len, dentry->full_path_utf8, dentry->full_path_utf8_len);
310 output_path[len + dentry->full_path_utf8_len] = '\0';
312 if (inode_is_symlink(inode))
313 ret = extract_symlink(dentry, args, output_path);
314 else if (inode_is_directory(inode))
315 ret = extract_directory(output_path, false);
317 ret = extract_regular_file(dentry, args, output_path);
319 dentry->is_extracted = 1;
323 /* Apply timestamp to extracted file */
324 static int apply_dentry_timestamps_normal(struct dentry *dentry, void *arg)
326 struct apply_args *args = arg;
327 size_t len = strlen(args->target);
328 char output_path[len + dentry->full_path_utf8_len + 1];
329 const struct inode *inode = dentry->d_inode;
332 memcpy(output_path, args->target, len);
333 memcpy(output_path + len, dentry->full_path_utf8, dentry->full_path_utf8_len);
334 output_path[len + dentry->full_path_utf8_len] = '\0';
336 struct timeval tv[2];
337 wim_timestamp_to_timeval(inode->last_access_time, &tv[0]);
338 wim_timestamp_to_timeval(inode->last_write_time, &tv[1]);
340 ret = lutimes(output_path, tv);
347 if (errno == ENOSYS) {
349 buf.actime = wim_timestamp_to_unix(inode->last_access_time);
350 buf.modtime = wim_timestamp_to_unix(inode->last_write_time);
351 if (utime(output_path, &buf) == 0)
355 if (errno != ENOSYS || args->num_lutimes_warnings < 10) {
356 /*WARNING("Failed to set timestamp on file `%s': %s",*/
357 /*output_path, strerror(errno));*/
358 args->num_lutimes_warnings++;
364 static int cmp_streams_by_wim_position(const void *p1, const void *p2)
366 const struct lookup_table_entry *lte1, *lte2;
367 lte1 = *(const struct lookup_table_entry**)p1;
368 lte2 = *(const struct lookup_table_entry**)p2;
369 if (lte1->resource_entry.offset < lte2->resource_entry.offset)
371 else if (lte1->resource_entry.offset > lte2->resource_entry.offset)
377 static int sort_stream_list_by_wim_position(struct list_head *stream_list)
379 struct list_head *cur;
381 struct lookup_table_entry **array;
386 list_for_each(cur, stream_list)
388 array_size = num_streams * sizeof(array[0]);
389 array = MALLOC(array_size);
391 ERROR("Failed to allocate %zu bytes to sort stream entries",
393 return WIMLIB_ERR_NOMEM;
395 cur = stream_list->next;
396 for (i = 0; i < num_streams; i++) {
397 array[i] = container_of(cur, struct lookup_table_entry, staging_list);
401 qsort(array, num_streams, sizeof(array[0]), cmp_streams_by_wim_position);
403 INIT_LIST_HEAD(stream_list);
404 for (i = 0; i < num_streams; i++)
405 list_add_tail(&array[i]->staging_list, stream_list);
410 static void calculate_bytes_to_extract(struct list_head *stream_list,
412 union wimlib_progress_info *progress)
414 struct lookup_table_entry *lte;
418 /* For each stream to be extracted... */
419 list_for_each_entry(lte, stream_list, staging_list) {
421 (WIMLIB_EXTRACT_FLAG_SYMLINK | WIMLIB_EXTRACT_FLAG_HARDLINK))
423 /* In the symlink or hard link extraction mode, each
424 * stream will be extracted one time regardless of how
425 * many dentries share the stream. */
426 wimlib_assert(!(extract_flags & WIMLIB_EXTRACT_FLAG_NTFS));
427 if (!lte->extracted_file) {
429 total_bytes += wim_resource_size(lte);
432 num_streams += lte->out_refcnt;
433 total_bytes += lte->out_refcnt * wim_resource_size(lte);
436 progress->extract.num_streams = num_streams;
437 progress->extract.total_bytes = total_bytes;
438 progress->extract.completed_bytes = 0;
441 static void maybe_add_stream_for_extraction(struct lookup_table_entry *lte,
442 struct list_head *stream_list)
444 if (++lte->out_refcnt == 1) {
445 INIT_LIST_HEAD(<e->inode_list);
446 list_add_tail(<e->staging_list, stream_list);
450 static void inode_find_streams_for_extraction(struct inode *inode,
451 struct list_head *stream_list,
454 struct lookup_table_entry *lte;
455 bool inode_added = false;
457 lte = inode_unnamed_lte_resolved(inode);
460 maybe_add_stream_for_extraction(lte, stream_list);
461 list_add_tail(&inode->lte_inode_list, <e->inode_list);
465 if (extract_flags & WIMLIB_EXTRACT_FLAG_NTFS) {
466 for (unsigned i = 0; i < inode->num_ads; i++) {
467 if (inode->ads_entries[i].stream_name_len != 0) {
468 lte = inode->ads_entries[i].lte;
470 maybe_add_stream_for_extraction(lte,
473 list_add_tail(&inode->lte_inode_list,
484 static void find_streams_for_extraction(struct hlist_head *inode_list,
485 struct list_head *stream_list,
486 struct lookup_table *lookup_table,
490 struct hlist_node *cur;
491 struct dentry *dentry;
493 for_lookup_table_entry(lookup_table, lte_zero_out_refcnt, NULL);
494 INIT_LIST_HEAD(stream_list);
495 hlist_for_each_entry(inode, cur, inode_list, hlist) {
496 if (!inode->resolved)
497 inode_resolve_ltes(inode, lookup_table);
498 inode_for_each_dentry(dentry, inode)
499 dentry->is_extracted = 0;
500 inode_find_streams_for_extraction(inode, stream_list,
505 struct apply_operations {
506 int (*apply_dentry)(struct dentry *dentry, void *arg);
507 int (*apply_dentry_timestamps)(struct dentry *dentry, void *arg);
510 static const struct apply_operations normal_apply_operations = {
511 .apply_dentry = apply_dentry_normal,
512 .apply_dentry_timestamps = apply_dentry_timestamps_normal,
516 static const struct apply_operations ntfs_apply_operations = {
517 .apply_dentry = apply_dentry_ntfs,
518 .apply_dentry_timestamps = apply_dentry_timestamps_ntfs,
522 static int apply_stream_list(struct list_head *stream_list,
523 struct apply_args *args,
524 const struct apply_operations *ops,
525 wimlib_progress_func_t progress_func)
527 uint64_t bytes_per_progress = args->progress.extract.total_bytes / 100;
528 uint64_t next_progress = bytes_per_progress;
529 struct lookup_table_entry *lte;
531 struct dentry *dentry;
534 /* This complicated loop is actually just looping through the dentries
535 * (as for_dentry_in_tree() does), but the outer loop is actually over
536 * the distinct streams to be extracted so that sequential reading of
537 * the WIM can be implemented. */
539 /* For each distinct stream to be extracted */
540 list_for_each_entry(lte, stream_list, staging_list) {
541 /* For each inode that contains the stream */
542 list_for_each_entry(inode, <e->inode_list, lte_inode_list) {
543 /* For each dentry that points to the inode */
544 inode_for_each_dentry(dentry, inode) {
545 ret = ops->apply_dentry(dentry, args);
549 args->progress.extract.completed_bytes >= next_progress &&
550 args->progress.extract.total_bytes != 0)
552 progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS,
554 next_progress += bytes_per_progress;
563 static int extract_single_image(WIMStruct *w, int image,
564 const char *target, int extract_flags,
565 wimlib_progress_func_t progress_func)
568 struct list_head stream_list;
569 struct hlist_head *inode_list;
571 struct apply_args args;
572 const struct apply_operations *ops;
575 args.target = target;
576 args.extract_flags = extract_flags;
577 args.num_lutimes_warnings = 0;
578 args.target = target;
579 args.stream_list = &stream_list;
580 args.progress_func = progress_func;
583 args.progress.extract.wimfile_name = w->filename;
584 args.progress.extract.image = image;
585 args.progress.extract.extract_flags = (extract_flags &
586 WIMLIB_EXTRACT_MASK_PUBLIC);
587 args.progress.extract.image_name = wimlib_get_image_name(w, image);
588 args.progress.extract.target = target;
592 if (extract_flags & WIMLIB_EXTRACT_FLAG_NTFS) {
593 args.vol = ntfs_mount(target, 0);
595 ERROR_WITH_ERRNO("Failed to mount NTFS volume `%s'", target);
596 return WIMLIB_ERR_NTFS_3G;
598 ops = &ntfs_apply_operations;
601 ops = &normal_apply_operations;
603 ret = select_wim_image(w, image);
607 inode_list = &w->image_metadata[image - 1].inode_list;
609 find_streams_for_extraction(inode_list, &stream_list,
610 w->lookup_table, extract_flags);
612 calculate_bytes_to_extract(&stream_list, extract_flags,
616 progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN,
620 if (extract_flags & WIMLIB_EXTRACT_FLAG_SEQUENTIAL) {
621 ret = sort_stream_list_by_wim_position(&stream_list);
623 WARNING("Falling back to non-sequential extraction");
624 extract_flags &= ~WIMLIB_EXTRACT_FLAG_SEQUENTIAL;
629 progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_BEGIN,
633 args.extract_flags |= WIMLIB_EXTRACT_FLAG_NO_STREAMS;
634 ret = for_dentry_in_tree(wim_root_dentry(w), ops->apply_dentry, &args);
635 args.extract_flags &= ~WIMLIB_EXTRACT_FLAG_NO_STREAMS;
640 progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_END,
644 ret = apply_stream_list(&stream_list, &args, ops, progress_func);
649 progress_func(WIMLIB_PROGRESS_MSG_APPLY_TIMESTAMPS, NULL);
651 ret = for_dentry_in_tree_depth(wim_root_dentry(w),
652 ops->apply_dentry_timestamps, &args);
657 progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END,
662 if (extract_flags & WIMLIB_EXTRACT_FLAG_NTFS) {
663 if (ntfs_umount(args.vol, FALSE) != 0) {
664 ERROR_WITH_ERRNO("Failed to unmount NTFS volume `%s'", args.target);
666 ret = WIMLIB_ERR_NTFS_3G;
674 /* Extracts all images from the WIM to @output_dir, with the images placed in
675 * subdirectories named by their image names. */
676 static int extract_all_images(WIMStruct *w, const char *target,
678 wimlib_progress_func_t progress_func)
680 size_t image_name_max_len = max(xml_get_max_image_name_len(w), 20);
681 size_t output_path_len = strlen(target);
682 char buf[output_path_len + 1 + image_name_max_len + 1];
685 const char *image_name;
687 ret = extract_directory(target, true);
691 memcpy(buf, target, output_path_len);
692 buf[output_path_len] = '/';
693 for (image = 1; image <= w->hdr.image_count; image++) {
694 image_name = wimlib_get_image_name(w, image);
695 if (image_name && *image_name) {
696 strcpy(buf + output_path_len + 1, image_name);
698 /* Image name is empty. Use image number instead */
699 sprintf(buf + output_path_len + 1, "%d", image);
701 ret = extract_single_image(w, image, buf, extract_flags,
709 /* Extracts a single image or all images from a WIM file. */
710 WIMLIBAPI int wimlib_extract_image(WIMStruct *w, int image,
713 WIMStruct **additional_swms,
714 unsigned num_additional_swms,
715 wimlib_progress_func_t progress_func)
717 struct lookup_table *joined_tab, *w_tab_save;
721 return WIMLIB_ERR_INVALID_PARAM;
723 extract_flags &= WIMLIB_EXTRACT_MASK_PUBLIC;
725 if ((extract_flags & (WIMLIB_EXTRACT_FLAG_SYMLINK | WIMLIB_EXTRACT_FLAG_HARDLINK))
726 == (WIMLIB_EXTRACT_FLAG_SYMLINK | WIMLIB_EXTRACT_FLAG_HARDLINK))
727 return WIMLIB_ERR_INVALID_PARAM;
729 if (extract_flags & WIMLIB_EXTRACT_FLAG_NTFS) {
731 if ((extract_flags & (WIMLIB_EXTRACT_FLAG_SYMLINK | WIMLIB_EXTRACT_FLAG_HARDLINK))) {
732 ERROR("Cannot specify symlink or hardlink flags when applying\n"
733 " directly to a NTFS volume");
734 return WIMLIB_ERR_INVALID_PARAM;
736 if (image == WIMLIB_ALL_IMAGES) {
737 ERROR("Can only apply a single image when applying "
738 "directly to a NTFS volume");
739 return WIMLIB_ERR_INVALID_PARAM;
742 ERROR("wimlib was compiled without support for NTFS-3g, so");
743 ERROR("we cannot apply a WIM image directly to a NTFS volume");
744 return WIMLIB_ERR_UNSUPPORTED;
748 ret = verify_swm_set(w, additional_swms, num_additional_swms);
752 if (num_additional_swms) {
753 ret = new_joined_lookup_table(w, additional_swms,
754 num_additional_swms, &joined_tab);
757 w_tab_save = w->lookup_table;
758 w->lookup_table = joined_tab;
761 if (image == WIMLIB_ALL_IMAGES) {
762 extract_flags |= WIMLIB_EXTRACT_FLAG_MULTI_IMAGE;
763 ret = extract_all_images(w, target, extract_flags,
766 extract_flags &= ~WIMLIB_EXTRACT_FLAG_MULTI_IMAGE;
767 ret = extract_single_image(w, image, target, extract_flags,
771 if (extract_flags & (WIMLIB_EXTRACT_FLAG_SYMLINK |
772 WIMLIB_EXTRACT_FLAG_HARDLINK))
774 for_lookup_table_entry(w->lookup_table,
775 lte_free_extracted_file,
779 if (num_additional_swms) {
780 free_lookup_table(w->lookup_table);
781 w->lookup_table = w_tab_save;