]> wimlib.net Git - wimlib/blob - src/extract.c
extract.c: file_name_valid(): fix bad memdup
[wimlib] / src / extract.c
1 /*
2  * extract.c
3  *
4  * Support for extracting WIM images, or files or directories contained in a WIM
5  * image.
6  */
7
8 /*
9  * Copyright (C) 2012, 2013, 2014, 2015 Eric Biggers
10  *
11  * This file is free software; you can redistribute it and/or modify it under
12  * the terms of the GNU Lesser General Public License as published by the Free
13  * Software Foundation; either version 3 of the License, or (at your option) any
14  * later version.
15  *
16  * This file is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * along with this file; if not, see http://www.gnu.org/licenses/.
23  */
24
25 /*
26  * This file provides the API functions wimlib_extract_image(),
27  * wimlib_extract_image_from_pipe(), wimlib_extract_paths(), and
28  * wimlib_extract_pathlist().  Internally, all end up calling
29  * do_wimlib_extract_paths() and extract_trees().
30  *
31  * Although wimlib supports multiple extraction modes/backends (NTFS-3g, UNIX,
32  * Win32), this file does not itself have code to extract files or directories
33  * to any specific target; instead, it handles generic functionality and relies
34  * on lower-level callback functions declared in `struct apply_operations' to do
35  * the actual extraction.
36  */
37
38 #ifdef HAVE_CONFIG_H
39 #  include "config.h"
40 #endif
41
42 #include <errno.h>
43 #include <fcntl.h>
44 #include <sys/stat.h>
45 #include <unistd.h>
46
47 #include "wimlib/apply.h"
48 #include "wimlib/assert.h"
49 #include "wimlib/blob_table.h"
50 #include "wimlib/dentry.h"
51 #include "wimlib/encoding.h"
52 #include "wimlib/endianness.h"
53 #include "wimlib/error.h"
54 #include "wimlib/metadata.h"
55 #include "wimlib/pathlist.h"
56 #include "wimlib/paths.h"
57 #include "wimlib/reparse.h"
58 #include "wimlib/resource.h"
59 #include "wimlib/security.h"
60 #include "wimlib/unix_data.h"
61 #ifdef __WIN32__
62 #  include "wimlib/win32.h" /* for realpath() equivalent */
63 #endif
64 #include "wimlib/xml.h"
65 #include "wimlib/wildcard.h"
66 #include "wimlib/wim.h"
67
68 #define WIMLIB_EXTRACT_FLAG_FROM_PIPE   0x80000000
69 #define WIMLIB_EXTRACT_FLAG_IMAGEMODE   0x40000000
70
71 /* Keep in sync with wimlib.h  */
72 #define WIMLIB_EXTRACT_MASK_PUBLIC                              \
73         (WIMLIB_EXTRACT_FLAG_NTFS                       |       \
74          WIMLIB_EXTRACT_FLAG_UNIX_DATA                  |       \
75          WIMLIB_EXTRACT_FLAG_NO_ACLS                    |       \
76          WIMLIB_EXTRACT_FLAG_STRICT_ACLS                |       \
77          WIMLIB_EXTRACT_FLAG_RPFIX                      |       \
78          WIMLIB_EXTRACT_FLAG_NORPFIX                    |       \
79          WIMLIB_EXTRACT_FLAG_TO_STDOUT                  |       \
80          WIMLIB_EXTRACT_FLAG_REPLACE_INVALID_FILENAMES  |       \
81          WIMLIB_EXTRACT_FLAG_ALL_CASE_CONFLICTS         |       \
82          WIMLIB_EXTRACT_FLAG_STRICT_TIMESTAMPS          |       \
83          WIMLIB_EXTRACT_FLAG_STRICT_SHORT_NAMES         |       \
84          WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS            |       \
85          WIMLIB_EXTRACT_FLAG_GLOB_PATHS                 |       \
86          WIMLIB_EXTRACT_FLAG_STRICT_GLOB                |       \
87          WIMLIB_EXTRACT_FLAG_NO_ATTRIBUTES              |       \
88          WIMLIB_EXTRACT_FLAG_NO_PRESERVE_DIR_STRUCTURE  |       \
89          WIMLIB_EXTRACT_FLAG_WIMBOOT)
90
91 /* Send WIMLIB_PROGRESS_MSG_EXTRACT_FILE_STRUCTURE or
92  * WIMLIB_PROGRESS_MSG_EXTRACT_METADATA.  */
93 int
94 do_file_extract_progress(struct apply_ctx *ctx, enum wimlib_progress_msg msg)
95 {
96         ctx->count_until_file_progress = 500;  /* Arbitrary value to limit calls  */
97         return extract_progress(ctx, msg);
98 }
99
100 static int
101 start_file_phase(struct apply_ctx *ctx, uint64_t end_file_count, enum wimlib_progress_msg msg)
102 {
103         ctx->progress.extract.current_file_count = 0;
104         ctx->progress.extract.end_file_count = end_file_count;
105         return do_file_extract_progress(ctx, msg);
106 }
107
108 int
109 start_file_structure_phase(struct apply_ctx *ctx, uint64_t end_file_count)
110 {
111         return start_file_phase(ctx, end_file_count, WIMLIB_PROGRESS_MSG_EXTRACT_FILE_STRUCTURE);
112 }
113
114 int
115 start_file_metadata_phase(struct apply_ctx *ctx, uint64_t end_file_count)
116 {
117         return start_file_phase(ctx, end_file_count, WIMLIB_PROGRESS_MSG_EXTRACT_METADATA);
118 }
119
120 static int
121 end_file_phase(struct apply_ctx *ctx, enum wimlib_progress_msg msg)
122 {
123         ctx->progress.extract.current_file_count = ctx->progress.extract.end_file_count;
124         return do_file_extract_progress(ctx, msg);
125 }
126
127 int
128 end_file_structure_phase(struct apply_ctx *ctx)
129 {
130         return end_file_phase(ctx, WIMLIB_PROGRESS_MSG_EXTRACT_FILE_STRUCTURE);
131 }
132
133 int
134 end_file_metadata_phase(struct apply_ctx *ctx)
135 {
136         return end_file_phase(ctx, WIMLIB_PROGRESS_MSG_EXTRACT_METADATA);
137 }
138
139 #define PWM_ALLOW_WIM_HDR 0x00001
140
141 /* Read the header for a blob in a pipable WIM.  */
142 static int
143 read_pwm_blob_header(WIMStruct *pwm, struct blob_descriptor *blob,
144                      struct wim_resource_descriptor *rdesc,
145                      int flags, struct wim_header_disk *hdr_ret)
146 {
147         union {
148                 struct pwm_blob_hdr blob_hdr;
149                 struct wim_header_disk pwm_hdr;
150         } buf;
151         struct wim_reshdr reshdr;
152         int ret;
153
154         ret = full_read(&pwm->in_fd, &buf.blob_hdr, sizeof(buf.blob_hdr));
155         if (ret)
156                 goto read_error;
157
158         if ((flags & PWM_ALLOW_WIM_HDR) &&
159             le64_to_cpu(buf.blob_hdr.magic) == PWM_MAGIC)
160         {
161                 BUILD_BUG_ON(sizeof(buf.pwm_hdr) < sizeof(buf.blob_hdr));
162                 ret = full_read(&pwm->in_fd, &buf.blob_hdr + 1,
163                                 sizeof(buf.pwm_hdr) - sizeof(buf.blob_hdr));
164
165                 if (ret)
166                         goto read_error;
167                 blob->blob_location = BLOB_NONEXISTENT;
168                 memcpy(hdr_ret, &buf.pwm_hdr, sizeof(buf.pwm_hdr));
169                 return 0;
170         }
171
172         if (le64_to_cpu(buf.blob_hdr.magic) != PWM_BLOB_MAGIC) {
173                 ERROR("Data read on pipe is invalid (expected blob header).");
174                 return WIMLIB_ERR_INVALID_PIPABLE_WIM;
175         }
176
177         copy_hash(blob->hash, buf.blob_hdr.hash);
178
179         reshdr.size_in_wim = 0;
180         reshdr.flags = le32_to_cpu(buf.blob_hdr.flags);
181         reshdr.offset_in_wim = pwm->in_fd.offset;
182         reshdr.uncompressed_size = le64_to_cpu(buf.blob_hdr.uncompressed_size);
183         wim_res_hdr_to_desc(&reshdr, pwm, rdesc);
184         blob_set_is_located_in_wim_resource(blob, rdesc);
185         blob->flags = rdesc->flags;
186         blob->size = rdesc->uncompressed_size;
187         blob->offset_in_res = 0;
188         return 0;
189
190 read_error:
191         ERROR_WITH_ERRNO("Error reading pipable WIM from pipe");
192         return ret;
193 }
194
195 static int
196 read_blobs_from_pipe(struct apply_ctx *ctx,
197                      const struct read_blob_list_callbacks *cbs)
198 {
199         struct blob_descriptor *found_blob = NULL;
200         struct wim_resource_descriptor *rdesc = NULL;
201         struct blob_table *blob_table;
202         int ret;
203
204         ret = WIMLIB_ERR_NOMEM;
205         found_blob = new_blob_descriptor();
206         if (!found_blob)
207                 goto out;
208
209         rdesc = MALLOC(sizeof(struct wim_resource_descriptor));
210         if (!rdesc)
211                 goto out;
212
213         blob_table = ctx->wim->blob_table;
214         memcpy(ctx->progress.extract.guid, ctx->wim->hdr.guid, WIM_GUID_LEN);
215         ctx->progress.extract.part_number = ctx->wim->hdr.part_number;
216         ctx->progress.extract.total_parts = ctx->wim->hdr.total_parts;
217         ret = extract_progress(ctx, WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN);
218         if (ret)
219                 goto out;
220
221         while (ctx->num_blobs_remaining) {
222                 struct wim_header_disk pwm_hdr;
223                 struct blob_descriptor *needed_blob;
224
225                 if (found_blob->blob_location != BLOB_NONEXISTENT)
226                         blob_unset_is_located_in_wim_resource(found_blob);
227                 ret = read_pwm_blob_header(ctx->wim, found_blob, rdesc,
228                                            PWM_ALLOW_WIM_HDR, &pwm_hdr);
229                 if (ret)
230                         goto out;
231
232                 if ((found_blob->blob_location != BLOB_NONEXISTENT)
233                     && !(found_blob->flags & WIM_RESHDR_FLAG_METADATA)
234                     && (needed_blob = lookup_blob(blob_table, found_blob->hash))
235                     && (needed_blob->out_refcnt))
236                 {
237                         needed_blob->offset_in_res = found_blob->offset_in_res;
238                         needed_blob->flags = found_blob->flags;
239                         needed_blob->size = found_blob->size;
240
241                         blob_unset_is_located_in_wim_resource(found_blob);
242                         blob_set_is_located_in_wim_resource(needed_blob, rdesc);
243
244                         ret = (*cbs->begin_blob)(needed_blob,
245                                                  cbs->begin_blob_ctx);
246                         if (ret) {
247                                 blob_unset_is_located_in_wim_resource(needed_blob);
248                                 goto out;
249                         }
250
251                         ret = extract_blob(needed_blob, needed_blob->size,
252                                            cbs->consume_chunk,
253                                            cbs->consume_chunk_ctx);
254
255                         ret = (*cbs->end_blob)(needed_blob, ret,
256                                                cbs->end_blob_ctx);
257                         blob_unset_is_located_in_wim_resource(needed_blob);
258                         if (ret)
259                                 goto out;
260                         ctx->num_blobs_remaining--;
261                 } else if (found_blob->blob_location != BLOB_NONEXISTENT) {
262                         ret = skip_wim_resource(found_blob->rdesc);
263                         if (ret)
264                                 goto out;
265                 } else {
266                         u16 part_number = le16_to_cpu(pwm_hdr.part_number);
267                         u16 total_parts = le16_to_cpu(pwm_hdr.total_parts);
268
269                         if (part_number != ctx->progress.extract.part_number ||
270                             total_parts != ctx->progress.extract.total_parts ||
271                             memcmp(pwm_hdr.guid, ctx->progress.extract.guid,
272                                    WIM_GUID_LEN))
273                         {
274                                 ctx->progress.extract.part_number = part_number;
275                                 ctx->progress.extract.total_parts = total_parts;
276                                 memcpy(ctx->progress.extract.guid,
277                                        pwm_hdr.guid, WIM_GUID_LEN);
278                                 ret = extract_progress(ctx,
279                                                        WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN);
280                                 if (ret)
281                                         goto out;
282                         }
283                 }
284         }
285         ret = 0;
286 out:
287         if (found_blob && found_blob->blob_location != BLOB_IN_WIM)
288                 FREE(rdesc);
289         free_blob_descriptor(found_blob);
290         return ret;
291 }
292
293 /* Creates a temporary file opened for writing.  The open file descriptor is
294  * returned in @fd_ret and its name is returned in @name_ret (dynamically
295  * allocated).  */
296 static int
297 create_temporary_file(struct filedes *fd_ret, tchar **name_ret)
298 {
299         tchar *name;
300         int open_flags;
301         int raw_fd;
302
303 retry:
304         name = ttempnam(NULL, T("wimlib"));
305         if (!name) {
306                 ERROR_WITH_ERRNO("Failed to create temporary filename");
307                 return WIMLIB_ERR_NOMEM;
308         }
309
310         open_flags = O_WRONLY | O_CREAT | O_EXCL | O_BINARY;
311 #ifdef __WIN32__
312         open_flags |= _O_SHORT_LIVED;
313 #endif
314         raw_fd = topen(name, open_flags, 0600);
315
316         if (raw_fd < 0) {
317                 if (errno == EEXIST) {
318                         FREE(name);
319                         goto retry;
320                 }
321                 ERROR_WITH_ERRNO("Failed to create temporary file "
322                                  "\"%"TS"\"", name);
323                 FREE(name);
324                 return WIMLIB_ERR_OPEN;
325         }
326
327         filedes_init(fd_ret, raw_fd);
328         *name_ret = name;
329         return 0;
330 }
331
332 static int
333 begin_extract_blob_wrapper(struct blob_descriptor *blob, void *_ctx)
334 {
335         struct apply_ctx *ctx = _ctx;
336
337         ctx->cur_blob = blob;
338         ctx->cur_blob_offset = 0;
339
340         if (unlikely(blob->out_refcnt > MAX_OPEN_FILES))
341                 return create_temporary_file(&ctx->tmpfile_fd, &ctx->tmpfile_name);
342         else
343                 return (*ctx->saved_cbs->begin_blob)(blob, ctx->saved_cbs->begin_blob_ctx);
344 }
345
346 static int
347 extract_chunk_wrapper(const void *chunk, size_t size, void *_ctx)
348 {
349         struct apply_ctx *ctx = _ctx;
350         union wimlib_progress_info *progress = &ctx->progress;
351         int ret;
352
353         ctx->cur_blob_offset += size;
354
355         if (likely(ctx->supported_features.hard_links)) {
356                 progress->extract.completed_bytes +=
357                         (u64)size * ctx->cur_blob->out_refcnt;
358                 if (ctx->cur_blob_offset == ctx->cur_blob->size)
359                         progress->extract.completed_streams += ctx->cur_blob->out_refcnt;
360         } else {
361                 const struct blob_extraction_target *targets =
362                         blob_extraction_targets(ctx->cur_blob);
363                 for (u32 i = 0; i < ctx->cur_blob->out_refcnt; i++) {
364                         const struct wim_inode *inode = targets[i].inode;
365                         const struct wim_dentry *dentry;
366
367                         list_for_each_entry(dentry,
368                                             &inode->i_extraction_aliases,
369                                             d_extraction_alias_node)
370                         {
371                                 progress->extract.completed_bytes += size;
372                                 if (ctx->cur_blob_offset == ctx->cur_blob->size)
373                                         progress->extract.completed_streams++;
374                         }
375                 }
376         }
377         if (progress->extract.completed_bytes >= ctx->next_progress) {
378
379                 ret = extract_progress(ctx, WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS);
380                 if (ret)
381                         return ret;
382
383                 if (progress->extract.completed_bytes >=
384                     progress->extract.total_bytes)
385                 {
386                         ctx->next_progress = UINT64_MAX;
387                 } else {
388                         /* Send new message as soon as another 1/128 of the
389                          * total has been extracted.  (Arbitrary number.)  */
390                         ctx->next_progress =
391                                 progress->extract.completed_bytes +
392                                         progress->extract.total_bytes / 128;
393
394                         /* ... Unless that would be more than 5000000 bytes, in
395                          * which case send the next after the next 5000000
396                          * bytes.  (Another arbitrary number.)  */
397                         if (progress->extract.completed_bytes + 5000000 <
398                             ctx->next_progress)
399                                 ctx->next_progress =
400                                         progress->extract.completed_bytes + 5000000;
401
402                         /* ... But always send a message as soon as we're
403                          * completely done.  */
404                         if (progress->extract.total_bytes < ctx->next_progress)
405                                 ctx->next_progress = progress->extract.total_bytes;
406                 }
407         }
408
409         if (unlikely(filedes_valid(&ctx->tmpfile_fd))) {
410                 /* Just extracting to temporary file for now.  */
411                 ret = full_write(&ctx->tmpfile_fd, chunk, size);
412                 if (ret) {
413                         ERROR_WITH_ERRNO("Error writing data to "
414                                          "temporary file \"%"TS"\"",
415                                          ctx->tmpfile_name);
416                 }
417                 return ret;
418         } else {
419                 return (*ctx->saved_cbs->consume_chunk)(chunk, size,
420                                                         ctx->saved_cbs->consume_chunk_ctx);
421         }
422 }
423
424 static int
425 extract_from_tmpfile(const tchar *tmpfile_name, struct apply_ctx *ctx)
426 {
427         struct blob_descriptor tmpfile_blob;
428         struct blob_descriptor *orig_blob = ctx->cur_blob;
429         const struct read_blob_list_callbacks *cbs = ctx->saved_cbs;
430         int ret;
431         const u32 orig_refcnt = orig_blob->out_refcnt;
432
433         BUILD_BUG_ON(MAX_OPEN_FILES <
434                      ARRAY_LEN(orig_blob->inline_blob_extraction_targets));
435
436         struct blob_extraction_target *targets = orig_blob->blob_extraction_targets;
437
438         /* Copy the blob's data from the temporary file to each of its targets.
439          *
440          * This is executed only in the very uncommon case that a blob is being
441          * extracted to more than MAX_OPEN_FILES targets!  */
442
443         memcpy(&tmpfile_blob, orig_blob, sizeof(struct blob_descriptor));
444         tmpfile_blob.blob_location = BLOB_IN_FILE_ON_DISK;
445         tmpfile_blob.file_on_disk = ctx->tmpfile_name;
446         ret = 0;
447         for (u32 i = 0; i < orig_refcnt; i++) {
448
449                 /* Note: it usually doesn't matter whether we pass the original
450                  * blob descriptor to callbacks provided by the extraction
451                  * backend as opposed to the tmpfile blob descriptor, since they
452                  * shouldn't actually read data from the blob other than through
453                  * the read_blob_prefix() call below.  But for
454                  * WIMLIB_EXTRACT_FLAG_WIMBOOT mode on Windows it does matter
455                  * because it needs access to the original WIM resource
456                  * descriptor in order to create the external backing reference.
457                  */
458
459                 orig_blob->out_refcnt = 1;
460                 orig_blob->inline_blob_extraction_targets[0] = targets[i];
461
462                 ret = (*cbs->begin_blob)(orig_blob, cbs->begin_blob_ctx);
463                 if (ret)
464                         break;
465
466                 /* Extra SHA-1 isn't necessary here, but it shouldn't hurt as
467                  * this case is very rare anyway.  */
468                 ret = extract_blob(&tmpfile_blob, tmpfile_blob.size,
469                                    cbs->consume_chunk,
470                                    cbs->consume_chunk_ctx);
471
472                 ret = (*cbs->end_blob)(orig_blob, ret, cbs->end_blob_ctx);
473                 if (ret)
474                         break;
475         }
476         FREE(targets);
477         orig_blob->out_refcnt = 0;
478         return ret;
479 }
480
481 static int
482 end_extract_blob_wrapper(struct blob_descriptor *blob, int status, void *_ctx)
483 {
484         struct apply_ctx *ctx = _ctx;
485
486         if (unlikely(filedes_valid(&ctx->tmpfile_fd))) {
487                 filedes_close(&ctx->tmpfile_fd);
488                 if (!status)
489                         status = extract_from_tmpfile(ctx->tmpfile_name, ctx);
490                 filedes_invalidate(&ctx->tmpfile_fd);
491                 tunlink(ctx->tmpfile_name);
492                 FREE(ctx->tmpfile_name);
493                 return status;
494         } else {
495                 return (*ctx->saved_cbs->end_blob)(blob, status,
496                                                    ctx->saved_cbs->end_blob_ctx);
497         }
498 }
499
500 /*
501  * Read the list of blobs to extract and feed their data into the specified
502  * callback functions.
503  *
504  * This handles checksumming each blob.
505  *
506  * This also handles sending WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS.
507  *
508  * This also works if the WIM is being read from a pipe, whereas attempting to
509  * read blobs directly (e.g. with read_full_blob_into_buf()) will not.
510  *
511  * This also will split up blobs that will need to be extracted to more than
512  * MAX_OPEN_FILES locations, as measured by the 'out_refcnt' of each blob.
513  * Therefore, the apply_operations implementation need not worry about running
514  * out of file descriptors, unless it might open more than one file descriptor
515  * per nominal destination (e.g. Win32 currently might because the destination
516  * file system might not support hard links).
517  */
518 int
519 extract_blob_list(struct apply_ctx *ctx,
520                   const struct read_blob_list_callbacks *cbs)
521 {
522         struct read_blob_list_callbacks wrapper_cbs = {
523                 .begin_blob        = begin_extract_blob_wrapper,
524                 .begin_blob_ctx    = ctx,
525                 .consume_chunk     = extract_chunk_wrapper,
526                 .consume_chunk_ctx = ctx,
527                 .end_blob          = end_extract_blob_wrapper,
528                 .end_blob_ctx      = ctx,
529         };
530         ctx->saved_cbs = cbs;
531         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_FROM_PIPE) {
532                 return read_blobs_from_pipe(ctx, &wrapper_cbs);
533         } else {
534                 return read_blob_list(&ctx->blob_list,
535                                       offsetof(struct blob_descriptor,
536                                                extraction_list),
537                                       &wrapper_cbs, VERIFY_BLOB_HASHES);
538         }
539 }
540
541 /* Extract a WIM dentry to standard output.
542  *
543  * This obviously doesn't make sense in all cases.  We return an error if the
544  * dentry does not correspond to a regular file.  Otherwise we extract the
545  * unnamed data stream only.  */
546 static int
547 extract_dentry_to_stdout(struct wim_dentry *dentry,
548                          const struct blob_table *blob_table)
549 {
550         struct wim_inode *inode = dentry->d_inode;
551         struct blob_descriptor *blob;
552         struct filedes _stdout;
553
554         if (inode->i_attributes & (FILE_ATTRIBUTE_REPARSE_POINT |
555                                    FILE_ATTRIBUTE_DIRECTORY |
556                                    FILE_ATTRIBUTE_ENCRYPTED))
557         {
558                 ERROR("\"%"TS"\" is not a regular file and therefore cannot be "
559                       "extracted to standard output", dentry_full_path(dentry));
560                 return WIMLIB_ERR_NOT_A_REGULAR_FILE;
561         }
562
563         blob = inode_get_blob_for_unnamed_data_stream(inode, blob_table);
564         if (!blob) {
565                 const u8 *hash = inode_get_hash_of_unnamed_data_stream(inode);
566                 if (!is_zero_hash(hash))
567                         return blob_not_found_error(inode, hash);
568                 return 0;
569         }
570
571         filedes_init(&_stdout, STDOUT_FILENO);
572         return extract_full_blob_to_fd(blob, &_stdout);
573 }
574
575 static int
576 extract_dentries_to_stdout(struct wim_dentry **dentries, size_t num_dentries,
577                            const struct blob_table *blob_table)
578 {
579         for (size_t i = 0; i < num_dentries; i++) {
580                 int ret = extract_dentry_to_stdout(dentries[i], blob_table);
581                 if (ret)
582                         return ret;
583         }
584         return 0;
585 }
586
587 /**********************************************************************/
588
589 /*
590  * Removes duplicate dentries from the array.
591  *
592  * Returns the new number of dentries, packed at the front of the array.
593  */
594 static size_t
595 remove_duplicate_trees(struct wim_dentry **trees, size_t num_trees)
596 {
597         size_t i, j = 0;
598         for (i = 0; i < num_trees; i++) {
599                 if (!trees[i]->tmp_flag) {
600                         /* Found distinct dentry.  */
601                         trees[i]->tmp_flag = 1;
602                         trees[j++] = trees[i];
603                 }
604         }
605         for (i = 0; i < j; i++)
606                 trees[i]->tmp_flag = 0;
607         return j;
608 }
609
610 /*
611  * Remove dentries that are descendants of other dentries in the array.
612  *
613  * Returns the new number of dentries, packed at the front of the array.
614  */
615 static size_t
616 remove_contained_trees(struct wim_dentry **trees, size_t num_trees)
617 {
618         size_t i, j = 0;
619         for (i = 0; i < num_trees; i++)
620                 trees[i]->tmp_flag = 1;
621         for (i = 0; i < num_trees; i++) {
622                 struct wim_dentry *d = trees[i];
623                 while (!dentry_is_root(d)) {
624                         d = d->d_parent;
625                         if (d->tmp_flag)
626                                 goto tree_contained;
627                 }
628                 trees[j++] = trees[i];
629                 continue;
630
631         tree_contained:
632                 trees[i]->tmp_flag = 0;
633         }
634
635         for (i = 0; i < j; i++)
636                 trees[i]->tmp_flag = 0;
637         return j;
638 }
639
640 static int
641 dentry_append_to_list(struct wim_dentry *dentry, void *_dentry_list)
642 {
643         struct list_head *dentry_list = _dentry_list;
644         list_add_tail(&dentry->d_extraction_list_node, dentry_list);
645         return 0;
646 }
647
648 static void
649 dentry_reset_extraction_list_node(struct wim_dentry *dentry)
650 {
651         dentry->d_extraction_list_node = (struct list_head){NULL, NULL};
652 }
653
654 static int
655 dentry_delete_from_list(struct wim_dentry *dentry, void *_ignore)
656 {
657         list_del(&dentry->d_extraction_list_node);
658         dentry_reset_extraction_list_node(dentry);
659         return 0;
660 }
661
662 /*
663  * Build the preliminary list of dentries to be extracted.
664  *
665  * The list maintains the invariant that if d1 and d2 are in the list and d1 is
666  * an ancestor of d2, then d1 appears before d2 in the list.
667  */
668 static void
669 build_dentry_list(struct list_head *dentry_list, struct wim_dentry **trees,
670                   size_t num_trees, bool add_ancestors)
671 {
672         INIT_LIST_HEAD(dentry_list);
673
674         /* Add the trees recursively.  */
675         for (size_t i = 0; i < num_trees; i++)
676                 for_dentry_in_tree(trees[i], dentry_append_to_list, dentry_list);
677
678         /* If requested, add ancestors of the trees.  */
679         if (add_ancestors) {
680                 for (size_t i = 0; i < num_trees; i++) {
681                         struct wim_dentry *dentry = trees[i];
682                         struct wim_dentry *ancestor;
683                         struct list_head *place_after;
684
685                         if (dentry_is_root(dentry))
686                                 continue;
687
688                         place_after = dentry_list;
689                         ancestor = dentry;
690                         do {
691                                 ancestor = ancestor->d_parent;
692                                 if (will_extract_dentry(ancestor)) {
693                                         place_after = &ancestor->d_extraction_list_node;
694                                         break;
695                                 }
696                         } while (!dentry_is_root(ancestor));
697
698                         ancestor = dentry;
699                         do {
700                                 ancestor = ancestor->d_parent;
701                                 if (will_extract_dentry(ancestor))
702                                         break;
703                                 list_add(&ancestor->d_extraction_list_node, place_after);
704                         } while (!dentry_is_root(ancestor));
705                 }
706         }
707 }
708
709 static void
710 destroy_dentry_list(struct list_head *dentry_list)
711 {
712         struct wim_dentry *dentry, *tmp;
713         struct wim_inode *inode;
714
715         list_for_each_entry_safe(dentry, tmp, dentry_list, d_extraction_list_node) {
716                 inode = dentry->d_inode;
717                 dentry_reset_extraction_list_node(dentry);
718                 inode->i_visited = 0;
719                 inode->i_can_externally_back = 0;
720                 if ((void *)dentry->d_extraction_name != (void *)dentry->file_name)
721                         FREE(dentry->d_extraction_name);
722                 dentry->d_extraction_name = NULL;
723                 dentry->d_extraction_name_nchars = 0;
724         }
725 }
726
727 static void
728 destroy_blob_list(struct list_head *blob_list)
729 {
730         struct blob_descriptor *blob;
731
732         list_for_each_entry(blob, blob_list, extraction_list)
733                 if (blob->out_refcnt > ARRAY_LEN(blob->inline_blob_extraction_targets))
734                         FREE(blob->blob_extraction_targets);
735 }
736
737 #ifdef __WIN32__
738 static const utf16lechar replacement_char = cpu_to_le16(0xfffd);
739 #else
740 static const utf16lechar replacement_char = cpu_to_le16('?');
741 #endif
742
743 static bool
744 file_name_valid(utf16lechar *name, size_t num_chars, bool fix)
745 {
746         size_t i;
747
748         if (num_chars == 0)
749                 return true;
750         for (i = 0; i < num_chars; i++) {
751                 switch (name[i]) {
752         #ifdef __WIN32__
753                 case cpu_to_le16('\\'):
754                 case cpu_to_le16(':'):
755                 case cpu_to_le16('*'):
756                 case cpu_to_le16('?'):
757                 case cpu_to_le16('"'):
758                 case cpu_to_le16('<'):
759                 case cpu_to_le16('>'):
760                 case cpu_to_le16('|'):
761         #endif
762                 case cpu_to_le16('/'):
763                 case cpu_to_le16('\0'):
764                         if (fix)
765                                 name[i] = replacement_char;
766                         else
767                                 return false;
768                 }
769         }
770
771 #ifdef __WIN32__
772         if (name[num_chars - 1] == cpu_to_le16(' ') ||
773             name[num_chars - 1] == cpu_to_le16('.'))
774         {
775                 if (fix)
776                         name[num_chars - 1] = replacement_char;
777                 else
778                         return false;
779         }
780 #endif
781         return true;
782 }
783
784 static int
785 dentry_calculate_extraction_name(struct wim_dentry *dentry,
786                                  struct apply_ctx *ctx)
787 {
788         int ret;
789
790         if (dentry_is_root(dentry))
791                 return 0;
792
793 #ifdef WITH_NTFS_3G
794         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_NTFS) {
795                 dentry->d_extraction_name = dentry->file_name;
796                 dentry->d_extraction_name_nchars = dentry->file_name_nbytes /
797                                                    sizeof(utf16lechar);
798                 return 0;
799         }
800 #endif
801
802         if (!ctx->supported_features.case_sensitive_filenames) {
803                 struct wim_dentry *other;
804                 list_for_each_entry(other, &dentry->d_ci_conflict_list,
805                                     d_ci_conflict_list)
806                 {
807                         if (will_extract_dentry(other)) {
808                                 if (ctx->extract_flags &
809                                     WIMLIB_EXTRACT_FLAG_ALL_CASE_CONFLICTS) {
810                                         WARNING("\"%"TS"\" has the same "
811                                                 "case-insensitive name as "
812                                                 "\"%"TS"\"; extracting "
813                                                 "dummy name instead",
814                                                 dentry_full_path(dentry),
815                                                 dentry_full_path(other));
816                                         goto out_replace;
817                                 } else {
818                                         WARNING("Not extracting \"%"TS"\": "
819                                                 "has same case-insensitive "
820                                                 "name as \"%"TS"\"",
821                                                 dentry_full_path(dentry),
822                                                 dentry_full_path(other));
823                                         goto skip_dentry;
824                                 }
825                         }
826                 }
827         }
828
829         if (file_name_valid(dentry->file_name, dentry->file_name_nbytes / 2, false)) {
830                 ret = utf16le_get_tstr(dentry->file_name,
831                                        dentry->file_name_nbytes,
832                                        (const tchar **)&dentry->d_extraction_name,
833                                        &dentry->d_extraction_name_nchars);
834                 dentry->d_extraction_name_nchars /= sizeof(tchar);
835                 return ret;
836         } else {
837                 if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_REPLACE_INVALID_FILENAMES)
838                 {
839                         WARNING("\"%"TS"\" has an invalid filename "
840                                 "that is not supported on this platform; "
841                                 "extracting dummy name instead",
842                                 dentry_full_path(dentry));
843                         goto out_replace;
844                 } else {
845                         WARNING("Not extracting \"%"TS"\": has an invalid filename "
846                                 "that is not supported on this platform",
847                                 dentry_full_path(dentry));
848                         goto skip_dentry;
849                 }
850         }
851
852 out_replace:
853         {
854                 utf16lechar utf16_name_copy[dentry->file_name_nbytes / 2];
855
856                 memcpy(utf16_name_copy, dentry->file_name, dentry->file_name_nbytes);
857                 file_name_valid(utf16_name_copy, dentry->file_name_nbytes / 2, true);
858
859                 const tchar *tchar_name;
860                 size_t tchar_nchars;
861
862                 ret = utf16le_get_tstr(utf16_name_copy,
863                                        dentry->file_name_nbytes,
864                                        &tchar_name, &tchar_nchars);
865                 if (ret)
866                         return ret;
867
868                 tchar_nchars /= sizeof(tchar);
869
870                 size_t fixed_name_num_chars = tchar_nchars;
871                 tchar fixed_name[tchar_nchars + 50];
872
873                 tmemcpy(fixed_name, tchar_name, tchar_nchars);
874                 fixed_name_num_chars += tsprintf(fixed_name + tchar_nchars,
875                                                  T(" (invalid filename #%lu)"),
876                                                  ++ctx->invalid_sequence);
877
878                 utf16le_put_tstr(tchar_name);
879
880                 dentry->d_extraction_name = TSTRDUP(fixed_name);
881                 if (!dentry->d_extraction_name)
882                         return WIMLIB_ERR_NOMEM;
883                 dentry->d_extraction_name_nchars = fixed_name_num_chars;
884         }
885         return 0;
886
887 skip_dentry:
888         for_dentry_in_tree(dentry, dentry_delete_from_list, NULL);
889         return 0;
890 }
891
892 /*
893  * Calculate the actual filename component at which each WIM dentry will be
894  * extracted, with special handling for dentries that are unsupported by the
895  * extraction backend or have invalid names.
896  *
897  * ctx->supported_features must be filled in.
898  *
899  * Possible error codes: WIMLIB_ERR_NOMEM, WIMLIB_ERR_INVALID_UTF16_STRING
900  */
901 static int
902 dentry_list_calculate_extraction_names(struct list_head *dentry_list,
903                                        struct apply_ctx *ctx)
904 {
905         struct list_head *prev, *cur;
906
907         /* Can't use list_for_each_entry() because a call to
908          * dentry_calculate_extraction_name() may delete the current dentry and
909          * its children from the list.  */
910
911         prev = dentry_list;
912         for (;;) {
913                 struct wim_dentry *dentry;
914                 int ret;
915
916                 cur = prev->next;
917                 if (cur == dentry_list)
918                         break;
919
920                 dentry = list_entry(cur, struct wim_dentry, d_extraction_list_node);
921
922                 ret = dentry_calculate_extraction_name(dentry, ctx);
923                 if (ret)
924                         return ret;
925
926                 if (prev->next == cur)
927                         prev = cur;
928                 else
929                         ; /* Current dentry and its children (which follow in
930                              the list) were deleted.  prev stays the same.  */
931         }
932         return 0;
933 }
934
935 static int
936 dentry_resolve_streams(struct wim_dentry *dentry, int extract_flags,
937                        struct blob_table *blob_table)
938 {
939         struct wim_inode *inode = dentry->d_inode;
940         struct blob_descriptor *blob;
941         int ret;
942         bool force = false;
943
944         /* Special case:  when extracting from a pipe, the WIM blob table is
945          * initially empty, so "resolving" an inode's streams is initially not
946          * possible.  However, we still need to keep track of which blobs,
947          * identified by SHA-1 message digests, need to be extracted, so we
948          * "resolve" the inode's streams anyway by allocating a 'struct
949          * blob_descriptor' for each one.  */
950         if (extract_flags & WIMLIB_EXTRACT_FLAG_FROM_PIPE)
951                 force = true;
952         ret = inode_resolve_streams(inode, blob_table, force);
953         if (ret)
954                 return ret;
955         for (unsigned i = 0; i < inode->i_num_streams; i++) {
956                 blob = stream_blob_resolved(&inode->i_streams[i]);
957                 if (blob)
958                         blob->out_refcnt = 0;
959         }
960         return 0;
961 }
962
963 /*
964  * For each dentry to be extracted, resolve all streams in the corresponding
965  * inode and set 'out_refcnt' in all referenced blob_descriptors to 0.
966  *
967  * Possible error codes: WIMLIB_ERR_RESOURCE_NOT_FOUND, WIMLIB_ERR_NOMEM.
968  */
969 static int
970 dentry_list_resolve_streams(struct list_head *dentry_list,
971                             struct apply_ctx *ctx)
972 {
973         struct wim_dentry *dentry;
974         int ret;
975
976         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
977                 ret = dentry_resolve_streams(dentry,
978                                              ctx->extract_flags,
979                                              ctx->wim->blob_table);
980                 if (ret)
981                         return ret;
982         }
983         return 0;
984 }
985
986 static int
987 ref_stream(struct wim_inode_stream *strm, struct wim_dentry *dentry,
988            struct apply_ctx *ctx)
989 {
990         struct wim_inode *inode = dentry->d_inode;
991         struct blob_descriptor *blob = stream_blob_resolved(strm);
992         struct blob_extraction_target *targets;
993
994         if (!blob)
995                 return 0;
996
997         /* Tally the size only for each actual extraction of the stream (not
998          * additional hard links to the inode).  */
999         if (inode->i_visited && ctx->supported_features.hard_links)
1000                 return 0;
1001
1002         ctx->progress.extract.total_bytes += blob->size;
1003         ctx->progress.extract.total_streams++;
1004
1005         if (inode->i_visited)
1006                 return 0;
1007
1008         /* Add each blob to 'ctx->blob_list' only one time, regardless of how
1009          * many extraction targets it will have.  */
1010         if (blob->out_refcnt == 0) {
1011                 list_add_tail(&blob->extraction_list, &ctx->blob_list);
1012                 ctx->num_blobs_remaining++;
1013         }
1014
1015         /* Set this stream as an extraction target of 'blob'.  */
1016
1017         if (blob->out_refcnt < ARRAY_LEN(blob->inline_blob_extraction_targets)) {
1018                 targets = blob->inline_blob_extraction_targets;
1019         } else {
1020                 struct blob_extraction_target *prev_targets;
1021                 size_t alloc_blob_extraction_targets;
1022
1023                 if (blob->out_refcnt == ARRAY_LEN(blob->inline_blob_extraction_targets)) {
1024                         prev_targets = NULL;
1025                         alloc_blob_extraction_targets = ARRAY_LEN(blob->inline_blob_extraction_targets);
1026                 } else {
1027                         prev_targets = blob->blob_extraction_targets;
1028                         alloc_blob_extraction_targets = blob->alloc_blob_extraction_targets;
1029                 }
1030
1031                 if (blob->out_refcnt == alloc_blob_extraction_targets) {
1032                         alloc_blob_extraction_targets *= 2;
1033                         targets = REALLOC(prev_targets,
1034                                           alloc_blob_extraction_targets *
1035                                           sizeof(targets[0]));
1036                         if (!targets)
1037                                 return WIMLIB_ERR_NOMEM;
1038                         if (!prev_targets) {
1039                                 memcpy(targets,
1040                                        blob->inline_blob_extraction_targets,
1041                                        sizeof(blob->inline_blob_extraction_targets));
1042                         }
1043                         blob->blob_extraction_targets = targets;
1044                         blob->alloc_blob_extraction_targets = alloc_blob_extraction_targets;
1045                 }
1046                 targets = blob->blob_extraction_targets;
1047         }
1048         targets[blob->out_refcnt].inode = inode;
1049         targets[blob->out_refcnt].stream = strm;
1050         blob->out_refcnt++;
1051         return 0;
1052 }
1053
1054 static int
1055 ref_stream_if_needed(struct wim_dentry *dentry, struct wim_inode *inode,
1056                      struct wim_inode_stream *strm, struct apply_ctx *ctx)
1057 {
1058         bool need_stream = false;
1059         switch (strm->stream_type) {
1060         case STREAM_TYPE_DATA:
1061                 if (stream_is_named(strm)) {
1062                         /* Named data stream  */
1063                         if (ctx->supported_features.named_data_streams)
1064                                 need_stream = true;
1065                 } else if (!(inode->i_attributes & (FILE_ATTRIBUTE_DIRECTORY |
1066                                                     FILE_ATTRIBUTE_ENCRYPTED))
1067                            && !(inode_is_symlink(inode)
1068                                 && !ctx->supported_features.reparse_points
1069                                 && ctx->supported_features.symlink_reparse_points))
1070                 {
1071                         /*
1072                          * Unnamed data stream.  Skip if any of the following is true:
1073                          *
1074                          * - file is a directory
1075                          * - file is encrypted
1076                          * - backend needs to create the file as UNIX symlink
1077                          * - backend will extract the stream as externally backed
1078                          */
1079                         if (ctx->apply_ops->will_externally_back) {
1080                                 int ret = (*ctx->apply_ops->will_externally_back)(dentry, ctx);
1081                                 if (ret > 0) /* Error?  */
1082                                         return ret;
1083                                 if (ret < 0) /* Won't externally back?  */
1084                                         need_stream = true;
1085                         } else {
1086                                 need_stream = true;
1087                         }
1088                 }
1089                 break;
1090         case STREAM_TYPE_REPARSE_POINT:
1091                 wimlib_assert(inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT);
1092                 if (ctx->supported_features.reparse_points ||
1093                     (inode_is_symlink(inode) &&
1094                      ctx->supported_features.symlink_reparse_points))
1095                         need_stream = true;
1096                 break;
1097         case STREAM_TYPE_EFSRPC_RAW_DATA:
1098                 wimlib_assert(inode->i_attributes & FILE_ATTRIBUTE_ENCRYPTED);
1099                 if (inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY) {
1100                         if (ctx->supported_features.encrypted_directories)
1101                                 need_stream = true;
1102                 } else {
1103                         if (ctx->supported_features.encrypted_files)
1104                                 need_stream = true;
1105                 }
1106                 break;
1107         }
1108         if (need_stream)
1109                 return ref_stream(strm, dentry, ctx);
1110         return 0;
1111 }
1112
1113 static int
1114 dentry_ref_streams(struct wim_dentry *dentry, struct apply_ctx *ctx)
1115 {
1116         struct wim_inode *inode = dentry->d_inode;
1117         for (unsigned i = 0; i < inode->i_num_streams; i++) {
1118                 int ret = ref_stream_if_needed(dentry, inode,
1119                                                &inode->i_streams[i], ctx);
1120                 if (ret)
1121                         return ret;
1122         }
1123         inode->i_visited = 1;
1124         return 0;
1125 }
1126
1127 /*
1128  * Given a list of dentries to be extracted, build the list of blobs that need
1129  * to be extracted, and for each blob determine the streams to which that blob
1130  * will be extracted.
1131  *
1132  * This also initializes the extract progress info with byte and blob
1133  * information.
1134  *
1135  * ctx->supported_features must be filled in.
1136  */
1137 static int
1138 dentry_list_ref_streams(struct list_head *dentry_list, struct apply_ctx *ctx)
1139 {
1140         struct wim_dentry *dentry;
1141         int ret;
1142
1143         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
1144                 ret = dentry_ref_streams(dentry, ctx);
1145                 if (ret)
1146                         return ret;
1147         }
1148         list_for_each_entry(dentry, dentry_list, d_extraction_list_node)
1149                 dentry->d_inode->i_visited = 0;
1150         return 0;
1151 }
1152
1153 static void
1154 dentry_list_build_inode_alias_lists(struct list_head *dentry_list)
1155 {
1156         struct wim_dentry *dentry;
1157         struct wim_inode *inode;
1158
1159         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
1160                 inode = dentry->d_inode;
1161                 if (!inode->i_visited)
1162                         INIT_LIST_HEAD(&inode->i_extraction_aliases);
1163                 list_add_tail(&dentry->d_extraction_alias_node,
1164                               &inode->i_extraction_aliases);
1165                 inode->i_visited = 1;
1166         }
1167         list_for_each_entry(dentry, dentry_list, d_extraction_list_node)
1168                 dentry->d_inode->i_visited = 0;
1169 }
1170
1171 static void
1172 inode_tally_features(const struct wim_inode *inode,
1173                      struct wim_features *features)
1174 {
1175         if (inode->i_attributes & FILE_ATTRIBUTE_ARCHIVE)
1176                 features->archive_files++;
1177         if (inode->i_attributes & FILE_ATTRIBUTE_HIDDEN)
1178                 features->hidden_files++;
1179         if (inode->i_attributes & FILE_ATTRIBUTE_SYSTEM)
1180                 features->system_files++;
1181         if (inode->i_attributes & FILE_ATTRIBUTE_COMPRESSED)
1182                 features->compressed_files++;
1183         if (inode->i_attributes & FILE_ATTRIBUTE_ENCRYPTED) {
1184                 if (inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY)
1185                         features->encrypted_directories++;
1186                 else
1187                         features->encrypted_files++;
1188         }
1189         if (inode->i_attributes & FILE_ATTRIBUTE_NOT_CONTENT_INDEXED)
1190                 features->not_context_indexed_files++;
1191         if (inode->i_attributes & FILE_ATTRIBUTE_SPARSE_FILE)
1192                 features->sparse_files++;
1193         if (inode_has_named_data_stream(inode))
1194                 features->named_data_streams++;
1195         if (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT) {
1196                 features->reparse_points++;
1197                 if (inode_is_symlink(inode))
1198                         features->symlink_reparse_points++;
1199                 else
1200                         features->other_reparse_points++;
1201         }
1202         if (inode->i_security_id != -1)
1203                 features->security_descriptors++;
1204         if (inode_has_unix_data(inode))
1205                 features->unix_data++;
1206 }
1207
1208 /* Tally features necessary to extract a dentry and the corresponding inode.  */
1209 static void
1210 dentry_tally_features(struct wim_dentry *dentry, struct wim_features *features)
1211 {
1212         struct wim_inode *inode = dentry->d_inode;
1213
1214         if (dentry_has_short_name(dentry))
1215                 features->short_names++;
1216
1217         if (inode->i_visited) {
1218                 features->hard_links++;
1219         } else {
1220                 inode_tally_features(inode, features);
1221                 inode->i_visited = 1;
1222         }
1223 }
1224
1225 /* Tally the features necessary to extract the specified dentries.  */
1226 static void
1227 dentry_list_get_features(struct list_head *dentry_list,
1228                          struct wim_features *features)
1229 {
1230         struct wim_dentry *dentry;
1231
1232         list_for_each_entry(dentry, dentry_list, d_extraction_list_node)
1233                 dentry_tally_features(dentry, features);
1234
1235         list_for_each_entry(dentry, dentry_list, d_extraction_list_node)
1236                 dentry->d_inode->i_visited = 0;
1237 }
1238
1239 static int
1240 do_feature_check(const struct wim_features *required_features,
1241                  const struct wim_features *supported_features,
1242                  int extract_flags)
1243 {
1244         /* Encrypted files.  */
1245         if (required_features->encrypted_files &&
1246             !supported_features->encrypted_files)
1247                 WARNING("Ignoring EFS-encrypted data of %lu files",
1248                         required_features->encrypted_files);
1249
1250         /* Named data streams.  */
1251         if (required_features->named_data_streams &&
1252             !supported_features->named_data_streams)
1253                 WARNING("Ignoring named data streams of %lu files",
1254                         required_features->named_data_streams);
1255
1256         /* File attributes.  */
1257         if (!(extract_flags & WIMLIB_EXTRACT_FLAG_NO_ATTRIBUTES)) {
1258                 /* Note: Don't bother the user about FILE_ATTRIBUTE_ARCHIVE.
1259                  * We're an archive program, so theoretically we can do what we
1260                  * want with it.  */
1261
1262                 if (required_features->hidden_files &&
1263                     !supported_features->hidden_files)
1264                         WARNING("Ignoring FILE_ATTRIBUTE_HIDDEN of %lu files",
1265                                 required_features->hidden_files);
1266
1267                 if (required_features->system_files &&
1268                     !supported_features->system_files)
1269                         WARNING("Ignoring FILE_ATTRIBUTE_SYSTEM of %lu files",
1270                                 required_features->system_files);
1271
1272                 if (required_features->compressed_files &&
1273                     !supported_features->compressed_files)
1274                         WARNING("Ignoring FILE_ATTRIBUTE_COMPRESSED of %lu files",
1275                                 required_features->compressed_files);
1276
1277                 if (required_features->not_context_indexed_files &&
1278                     !supported_features->not_context_indexed_files)
1279                         WARNING("Ignoring FILE_ATTRIBUTE_NOT_CONTENT_INDEXED of %lu files",
1280                                 required_features->not_context_indexed_files);
1281
1282                 if (required_features->sparse_files &&
1283                     !supported_features->sparse_files)
1284                         WARNING("Ignoring FILE_ATTRIBUTE_SPARSE_FILE of %lu files",
1285                                 required_features->sparse_files);
1286
1287                 if (required_features->encrypted_directories &&
1288                     !supported_features->encrypted_directories)
1289                         WARNING("Ignoring FILE_ATTRIBUTE_ENCRYPTED of %lu directories",
1290                                 required_features->encrypted_directories);
1291         }
1292
1293         /* Hard links.  */
1294         if (required_features->hard_links && !supported_features->hard_links)
1295                 WARNING("Extracting %lu hard links as independent files",
1296                         required_features->hard_links);
1297
1298         /* Symbolic links and reparse points.  */
1299         if ((extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS) &&
1300             required_features->symlink_reparse_points &&
1301             !supported_features->symlink_reparse_points &&
1302             !supported_features->reparse_points)
1303         {
1304                 ERROR("Extraction backend does not support symbolic links!");
1305                 return WIMLIB_ERR_UNSUPPORTED;
1306         }
1307         if (required_features->reparse_points &&
1308             !supported_features->reparse_points)
1309         {
1310                 if (supported_features->symlink_reparse_points) {
1311                         if (required_features->other_reparse_points) {
1312                                 WARNING("Ignoring reparse data of %lu non-symlink/junction files",
1313                                         required_features->other_reparse_points);
1314                         }
1315                 } else {
1316                         WARNING("Ignoring reparse data of %lu files",
1317                                 required_features->reparse_points);
1318                 }
1319         }
1320
1321         /* Security descriptors.  */
1322         if (((extract_flags & (WIMLIB_EXTRACT_FLAG_STRICT_ACLS |
1323                                WIMLIB_EXTRACT_FLAG_UNIX_DATA))
1324              == WIMLIB_EXTRACT_FLAG_STRICT_ACLS) &&
1325             required_features->security_descriptors &&
1326             !supported_features->security_descriptors)
1327         {
1328                 ERROR("Extraction backend does not support security descriptors!");
1329                 return WIMLIB_ERR_UNSUPPORTED;
1330         }
1331         if (!(extract_flags & WIMLIB_EXTRACT_FLAG_NO_ACLS) &&
1332             required_features->security_descriptors &&
1333             !supported_features->security_descriptors)
1334                 WARNING("Ignoring Windows NT security descriptors of %lu files",
1335                         required_features->security_descriptors);
1336
1337         /* UNIX data.  */
1338         if ((extract_flags & WIMLIB_EXTRACT_FLAG_UNIX_DATA) &&
1339             required_features->unix_data && !supported_features->unix_data)
1340         {
1341                 ERROR("Extraction backend does not support UNIX data!");
1342                 return WIMLIB_ERR_UNSUPPORTED;
1343         }
1344
1345         if (required_features->unix_data &&
1346             !(extract_flags & WIMLIB_EXTRACT_FLAG_UNIX_DATA))
1347         {
1348                 WARNING("Ignoring UNIX metadata of %lu files",
1349                         required_features->unix_data);
1350         }
1351
1352         /* DOS Names.  */
1353         if (required_features->short_names &&
1354             !supported_features->short_names)
1355         {
1356                 if (extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_SHORT_NAMES) {
1357                         ERROR("Extraction backend does not support DOS names!");
1358                         return WIMLIB_ERR_UNSUPPORTED;
1359                 }
1360                 WARNING("Ignoring DOS names of %lu files",
1361                         required_features->short_names);
1362         }
1363
1364         /* Timestamps.  */
1365         if ((extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_TIMESTAMPS) &&
1366             !supported_features->timestamps)
1367         {
1368                 ERROR("Extraction backend does not support timestamps!");
1369                 return WIMLIB_ERR_UNSUPPORTED;
1370         }
1371
1372         return 0;
1373 }
1374
1375 static const struct apply_operations *
1376 select_apply_operations(int extract_flags)
1377 {
1378 #ifdef WITH_NTFS_3G
1379         if (extract_flags & WIMLIB_EXTRACT_FLAG_NTFS)
1380                 return &ntfs_3g_apply_ops;
1381 #endif
1382 #ifdef __WIN32__
1383         return &win32_apply_ops;
1384 #else
1385         return &unix_apply_ops;
1386 #endif
1387 }
1388
1389 static int
1390 extract_trees(WIMStruct *wim, struct wim_dentry **trees, size_t num_trees,
1391               const tchar *target, int extract_flags)
1392 {
1393         const struct apply_operations *ops;
1394         struct apply_ctx *ctx;
1395         int ret;
1396         LIST_HEAD(dentry_list);
1397
1398         if (extract_flags & WIMLIB_EXTRACT_FLAG_TO_STDOUT) {
1399                 ret = extract_dentries_to_stdout(trees, num_trees,
1400                                                  wim->blob_table);
1401                 goto out;
1402         }
1403
1404         num_trees = remove_duplicate_trees(trees, num_trees);
1405         num_trees = remove_contained_trees(trees, num_trees);
1406
1407         ops = select_apply_operations(extract_flags);
1408
1409         if (num_trees > 1 && ops->single_tree_only) {
1410                 ERROR("Extracting multiple directory trees "
1411                       "at once is not supported in %s extraction mode!",
1412                       ops->name);
1413                 ret = WIMLIB_ERR_UNSUPPORTED;
1414                 goto out;
1415         }
1416
1417         ctx = CALLOC(1, ops->context_size);
1418         if (!ctx) {
1419                 ret = WIMLIB_ERR_NOMEM;
1420                 goto out;
1421         }
1422
1423         ctx->wim = wim;
1424         ctx->target = target;
1425         ctx->target_nchars = tstrlen(target);
1426         ctx->extract_flags = extract_flags;
1427         if (ctx->wim->progfunc) {
1428                 ctx->progfunc = ctx->wim->progfunc;
1429                 ctx->progctx = ctx->wim->progctx;
1430                 ctx->progress.extract.image = wim->current_image;
1431                 ctx->progress.extract.extract_flags = (extract_flags &
1432                                                        WIMLIB_EXTRACT_MASK_PUBLIC);
1433                 ctx->progress.extract.wimfile_name = wim->filename;
1434                 ctx->progress.extract.image_name = wimlib_get_image_name(wim,
1435                                                                          wim->current_image);
1436                 ctx->progress.extract.target = target;
1437         }
1438         INIT_LIST_HEAD(&ctx->blob_list);
1439         filedes_invalidate(&ctx->tmpfile_fd);
1440         ctx->apply_ops = ops;
1441
1442         ret = (*ops->get_supported_features)(target, &ctx->supported_features);
1443         if (ret)
1444                 goto out_cleanup;
1445
1446         build_dentry_list(&dentry_list, trees, num_trees,
1447                           !(extract_flags &
1448                             WIMLIB_EXTRACT_FLAG_NO_PRESERVE_DIR_STRUCTURE));
1449
1450         dentry_list_get_features(&dentry_list, &ctx->required_features);
1451
1452         ret = do_feature_check(&ctx->required_features, &ctx->supported_features,
1453                                ctx->extract_flags);
1454         if (ret)
1455                 goto out_cleanup;
1456
1457         ret = dentry_list_calculate_extraction_names(&dentry_list, ctx);
1458         if (ret)
1459                 goto out_cleanup;
1460
1461         if (unlikely(list_empty(&dentry_list))) {
1462                 WARNING("There is nothing to extract!");
1463                 goto out_cleanup;
1464         }
1465
1466         ret = dentry_list_resolve_streams(&dentry_list, ctx);
1467         if (ret)
1468                 goto out_cleanup;
1469
1470         dentry_list_build_inode_alias_lists(&dentry_list);
1471
1472         ret = dentry_list_ref_streams(&dentry_list, ctx);
1473         if (ret)
1474                 goto out_cleanup;
1475
1476         if (extract_flags & WIMLIB_EXTRACT_FLAG_FROM_PIPE) {
1477                 /* When extracting from a pipe, the number of bytes of data to
1478                  * extract can't be determined in the normal way (examining the
1479                  * blob table), since at this point all we have is a set of
1480                  * SHA-1 message digests of blobs that need to be extracted.
1481                  * However, we can get a reasonably accurate estimate by taking
1482                  * <TOTALBYTES> from the corresponding <IMAGE> in the WIM XML
1483                  * data.  This does assume that a full image is being extracted,
1484                  * but currently there is no API for doing otherwise.  (Also,
1485                  * subtract <HARDLINKBYTES> from this if hard links are
1486                  * supported by the extraction mode.)  */
1487                 ctx->progress.extract.total_bytes =
1488                         wim_info_get_image_total_bytes(wim->wim_info,
1489                                                        wim->current_image);
1490                 if (ctx->supported_features.hard_links) {
1491                         ctx->progress.extract.total_bytes -=
1492                                 wim_info_get_image_hard_link_bytes(wim->wim_info,
1493                                                                    wim->current_image);
1494                 }
1495         }
1496
1497         ret = extract_progress(ctx,
1498                                ((extract_flags & WIMLIB_EXTRACT_FLAG_IMAGEMODE) ?
1499                                        WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN :
1500                                        WIMLIB_PROGRESS_MSG_EXTRACT_TREE_BEGIN));
1501         if (ret)
1502                 goto out_cleanup;
1503
1504         ret = (*ops->extract)(&dentry_list, ctx);
1505         if (ret)
1506                 goto out_cleanup;
1507
1508         if (ctx->progress.extract.completed_bytes <
1509             ctx->progress.extract.total_bytes)
1510         {
1511                 ctx->progress.extract.completed_bytes =
1512                         ctx->progress.extract.total_bytes;
1513                 ret = extract_progress(ctx, WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS);
1514                 if (ret)
1515                         goto out_cleanup;
1516         }
1517
1518         ret = extract_progress(ctx,
1519                                ((extract_flags & WIMLIB_EXTRACT_FLAG_IMAGEMODE) ?
1520                                        WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END :
1521                                        WIMLIB_PROGRESS_MSG_EXTRACT_TREE_END));
1522 out_cleanup:
1523         destroy_blob_list(&ctx->blob_list);
1524         destroy_dentry_list(&dentry_list);
1525         FREE(ctx);
1526 out:
1527         return ret;
1528 }
1529
1530 static int
1531 mkdir_if_needed(const tchar *target)
1532 {
1533         if (!tmkdir(target, 0755))
1534                 return 0;
1535
1536         if (errno == EEXIST)
1537                 return 0;
1538
1539 #ifdef __WIN32__
1540         /* _wmkdir() fails with EACCES if called on a drive root directory.  */
1541         if (errno == EACCES)
1542                 return 0;
1543 #endif
1544
1545         ERROR_WITH_ERRNO("Failed to create directory \"%"TS"\"", target);
1546         return WIMLIB_ERR_MKDIR;
1547 }
1548
1549 /* Make sure the extraction flags make sense, and update them if needed.  */
1550 static int
1551 check_extract_flags(const WIMStruct *wim, int *extract_flags_p)
1552 {
1553         int extract_flags = *extract_flags_p;
1554
1555         /* Check for invalid flag combinations  */
1556
1557         if ((extract_flags &
1558              (WIMLIB_EXTRACT_FLAG_NO_ACLS |
1559               WIMLIB_EXTRACT_FLAG_STRICT_ACLS)) == (WIMLIB_EXTRACT_FLAG_NO_ACLS |
1560                                                     WIMLIB_EXTRACT_FLAG_STRICT_ACLS))
1561                 return WIMLIB_ERR_INVALID_PARAM;
1562
1563         if ((extract_flags &
1564              (WIMLIB_EXTRACT_FLAG_RPFIX |
1565               WIMLIB_EXTRACT_FLAG_NORPFIX)) == (WIMLIB_EXTRACT_FLAG_RPFIX |
1566                                                 WIMLIB_EXTRACT_FLAG_NORPFIX))
1567                 return WIMLIB_ERR_INVALID_PARAM;
1568
1569 #ifndef WITH_NTFS_3G
1570         if (extract_flags & WIMLIB_EXTRACT_FLAG_NTFS) {
1571                 ERROR("wimlib was compiled without support for NTFS-3g, so\n"
1572                       "        it cannot apply a WIM image directly to an NTFS volume.");
1573                 return WIMLIB_ERR_UNSUPPORTED;
1574         }
1575 #endif
1576
1577         if (extract_flags & WIMLIB_EXTRACT_FLAG_WIMBOOT) {
1578 #ifdef __WIN32__
1579                 if (!wim->filename)
1580                         return WIMLIB_ERR_NO_FILENAME;
1581 #else
1582                 ERROR("WIMBoot extraction is only supported on Windows!");
1583                 return WIMLIB_ERR_UNSUPPORTED;
1584 #endif
1585         }
1586
1587
1588         if ((extract_flags & (WIMLIB_EXTRACT_FLAG_RPFIX |
1589                               WIMLIB_EXTRACT_FLAG_NORPFIX |
1590                               WIMLIB_EXTRACT_FLAG_IMAGEMODE)) ==
1591                                         WIMLIB_EXTRACT_FLAG_IMAGEMODE)
1592         {
1593                 /* For full-image extraction, do reparse point fixups by default
1594                  * if the WIM header says they are enabled.  */
1595                 if (wim->hdr.flags & WIM_HDR_FLAG_RP_FIX)
1596                         extract_flags |= WIMLIB_EXTRACT_FLAG_RPFIX;
1597         }
1598
1599         *extract_flags_p = extract_flags;
1600         return 0;
1601 }
1602
1603 static u32
1604 get_wildcard_flags(int extract_flags)
1605 {
1606         u32 wildcard_flags = 0;
1607
1608         if (extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_GLOB)
1609                 wildcard_flags |= WILDCARD_FLAG_ERROR_IF_NO_MATCH;
1610         else
1611                 wildcard_flags |= WILDCARD_FLAG_WARN_IF_NO_MATCH;
1612
1613         if (default_ignore_case)
1614                 wildcard_flags |= WILDCARD_FLAG_CASE_INSENSITIVE;
1615
1616         return wildcard_flags;
1617 }
1618
1619 struct append_dentry_ctx {
1620         struct wim_dentry **dentries;
1621         size_t num_dentries;
1622         size_t num_alloc_dentries;
1623 };
1624
1625 static int
1626 append_dentry_cb(struct wim_dentry *dentry, void *_ctx)
1627 {
1628         struct append_dentry_ctx *ctx = _ctx;
1629
1630         if (ctx->num_dentries == ctx->num_alloc_dentries) {
1631                 struct wim_dentry **new_dentries;
1632                 size_t new_length;
1633
1634                 new_length = max(ctx->num_alloc_dentries + 8,
1635                                  ctx->num_alloc_dentries * 3 / 2);
1636                 new_dentries = REALLOC(ctx->dentries,
1637                                        new_length * sizeof(ctx->dentries[0]));
1638                 if (new_dentries == NULL)
1639                         return WIMLIB_ERR_NOMEM;
1640                 ctx->dentries = new_dentries;
1641                 ctx->num_alloc_dentries = new_length;
1642         }
1643         ctx->dentries[ctx->num_dentries++] = dentry;
1644         return 0;
1645 }
1646
1647 static int
1648 do_wimlib_extract_paths(WIMStruct *wim, int image, const tchar *target,
1649                         const tchar * const *paths, size_t num_paths,
1650                         int extract_flags)
1651 {
1652         int ret;
1653         struct wim_dentry **trees;
1654         size_t num_trees;
1655
1656         if (wim == NULL || target == NULL || target[0] == T('\0') ||
1657             (num_paths != 0 && paths == NULL))
1658                 return WIMLIB_ERR_INVALID_PARAM;
1659
1660         ret = check_extract_flags(wim, &extract_flags);
1661         if (ret)
1662                 return ret;
1663
1664         ret = select_wim_image(wim, image);
1665         if (ret)
1666                 return ret;
1667
1668         ret = wim_checksum_unhashed_blobs(wim);
1669         if (ret)
1670                 return ret;
1671
1672         if ((extract_flags & (WIMLIB_EXTRACT_FLAG_NTFS |
1673                               WIMLIB_EXTRACT_FLAG_NO_PRESERVE_DIR_STRUCTURE)) ==
1674             (WIMLIB_EXTRACT_FLAG_NO_PRESERVE_DIR_STRUCTURE))
1675         {
1676                 ret = mkdir_if_needed(target);
1677                 if (ret)
1678                         return ret;
1679         }
1680
1681         if (extract_flags & WIMLIB_EXTRACT_FLAG_GLOB_PATHS) {
1682
1683                 struct append_dentry_ctx append_dentry_ctx = {
1684                         .dentries = NULL,
1685                         .num_dentries = 0,
1686                         .num_alloc_dentries = 0,
1687                 };
1688
1689                 u32 wildcard_flags = get_wildcard_flags(extract_flags);
1690
1691                 for (size_t i = 0; i < num_paths; i++) {
1692                         tchar *path = canonicalize_wim_path(paths[i]);
1693                         if (path == NULL) {
1694                                 ret = WIMLIB_ERR_NOMEM;
1695                                 trees = append_dentry_ctx.dentries;
1696                                 goto out_free_trees;
1697                         }
1698                         ret = expand_wildcard(wim, path,
1699                                               append_dentry_cb,
1700                                               &append_dentry_ctx,
1701                                               wildcard_flags);
1702                         FREE(path);
1703                         if (ret) {
1704                                 trees = append_dentry_ctx.dentries;
1705                                 goto out_free_trees;
1706                         }
1707                 }
1708                 trees = append_dentry_ctx.dentries;
1709                 num_trees = append_dentry_ctx.num_dentries;
1710         } else {
1711                 trees = MALLOC(num_paths * sizeof(trees[0]));
1712                 if (trees == NULL)
1713                         return WIMLIB_ERR_NOMEM;
1714
1715                 for (size_t i = 0; i < num_paths; i++) {
1716
1717                         tchar *path = canonicalize_wim_path(paths[i]);
1718                         if (path == NULL) {
1719                                 ret = WIMLIB_ERR_NOMEM;
1720                                 goto out_free_trees;
1721                         }
1722
1723                         trees[i] = get_dentry(wim, path,
1724                                               WIMLIB_CASE_PLATFORM_DEFAULT);
1725                         FREE(path);
1726                         if (trees[i] == NULL) {
1727                                   ERROR("Path \"%"TS"\" does not exist "
1728                                         "in WIM image %d",
1729                                         paths[i], wim->current_image);
1730                                   ret = WIMLIB_ERR_PATH_DOES_NOT_EXIST;
1731                                   goto out_free_trees;
1732                         }
1733                 }
1734                 num_trees = num_paths;
1735         }
1736
1737         if (num_trees == 0) {
1738                 ret = 0;
1739                 goto out_free_trees;
1740         }
1741
1742         ret = extract_trees(wim, trees, num_trees, target, extract_flags);
1743 out_free_trees:
1744         FREE(trees);
1745         return ret;
1746 }
1747
1748 static int
1749 extract_single_image(WIMStruct *wim, int image,
1750                      const tchar *target, int extract_flags)
1751 {
1752         const tchar *path = WIMLIB_WIM_ROOT_PATH;
1753         extract_flags |= WIMLIB_EXTRACT_FLAG_IMAGEMODE;
1754         return do_wimlib_extract_paths(wim, image, target, &path, 1, extract_flags);
1755 }
1756
1757 static const tchar * const filename_forbidden_chars =
1758 T(
1759 #ifdef __WIN32__
1760 "<>:\"/\\|?*"
1761 #else
1762 "/"
1763 #endif
1764 );
1765
1766 /* This function checks if it is okay to use a WIM image's name as a directory
1767  * name.  */
1768 static bool
1769 image_name_ok_as_dir(const tchar *image_name)
1770 {
1771         return image_name && *image_name &&
1772                 !tstrpbrk(image_name, filename_forbidden_chars) &&
1773                 tstrcmp(image_name, T(".")) &&
1774                 tstrcmp(image_name, T(".."));
1775 }
1776
1777 /* Extracts all images from the WIM to the directory @target, with the images
1778  * placed in subdirectories named by their image names. */
1779 static int
1780 extract_all_images(WIMStruct *wim, const tchar *target, int extract_flags)
1781 {
1782         size_t image_name_max_len = max(xml_get_max_image_name_len(wim), 20);
1783         size_t output_path_len = tstrlen(target);
1784         tchar buf[output_path_len + 1 + image_name_max_len + 1];
1785         int ret;
1786         int image;
1787         const tchar *image_name;
1788
1789         if (extract_flags & WIMLIB_EXTRACT_FLAG_NTFS) {
1790                 ERROR("Cannot extract multiple images in NTFS extraction mode.");
1791                 return WIMLIB_ERR_INVALID_PARAM;
1792         }
1793
1794         ret = mkdir_if_needed(target);
1795         if (ret)
1796                 return ret;
1797         tmemcpy(buf, target, output_path_len);
1798         buf[output_path_len] = OS_PREFERRED_PATH_SEPARATOR;
1799         for (image = 1; image <= wim->hdr.image_count; image++) {
1800                 image_name = wimlib_get_image_name(wim, image);
1801                 if (image_name_ok_as_dir(image_name)) {
1802                         tstrcpy(buf + output_path_len + 1, image_name);
1803                 } else {
1804                         /* Image name is empty or contains forbidden characters.
1805                          * Use image number instead. */
1806                         tsprintf(buf + output_path_len + 1, T("%d"), image);
1807                 }
1808                 ret = extract_single_image(wim, image, buf, extract_flags);
1809                 if (ret)
1810                         return ret;
1811         }
1812         return 0;
1813 }
1814
1815 static int
1816 do_wimlib_extract_image(WIMStruct *wim, int image, const tchar *target,
1817                         int extract_flags)
1818 {
1819         if (extract_flags & (WIMLIB_EXTRACT_FLAG_NO_PRESERVE_DIR_STRUCTURE |
1820                              WIMLIB_EXTRACT_FLAG_TO_STDOUT |
1821                              WIMLIB_EXTRACT_FLAG_GLOB_PATHS))
1822                 return WIMLIB_ERR_INVALID_PARAM;
1823
1824         if (image == WIMLIB_ALL_IMAGES)
1825                 return extract_all_images(wim, target, extract_flags);
1826         else
1827                 return extract_single_image(wim, image, target, extract_flags);
1828 }
1829
1830
1831 /****************************************************************************
1832  *                          Extraction API                                  *
1833  ****************************************************************************/
1834
1835 WIMLIBAPI int
1836 wimlib_extract_paths(WIMStruct *wim, int image, const tchar *target,
1837                      const tchar * const *paths, size_t num_paths,
1838                      int extract_flags)
1839 {
1840         if (extract_flags & ~WIMLIB_EXTRACT_MASK_PUBLIC)
1841                 return WIMLIB_ERR_INVALID_PARAM;
1842
1843         return do_wimlib_extract_paths(wim, image, target, paths, num_paths,
1844                                        extract_flags);
1845 }
1846
1847 WIMLIBAPI int
1848 wimlib_extract_pathlist(WIMStruct *wim, int image, const tchar *target,
1849                         const tchar *path_list_file, int extract_flags)
1850 {
1851         int ret;
1852         tchar **paths;
1853         size_t num_paths;
1854         void *mem;
1855
1856         ret = read_path_list_file(path_list_file, &paths, &num_paths, &mem);
1857         if (ret) {
1858                 ERROR("Failed to read path list file \"%"TS"\"",
1859                       path_list_file);
1860                 return ret;
1861         }
1862
1863         ret = wimlib_extract_paths(wim, image, target,
1864                                    (const tchar * const *)paths, num_paths,
1865                                    extract_flags);
1866         FREE(paths);
1867         FREE(mem);
1868         return ret;
1869 }
1870
1871 WIMLIBAPI int
1872 wimlib_extract_image_from_pipe_with_progress(int pipe_fd,
1873                                              const tchar *image_num_or_name,
1874                                              const tchar *target,
1875                                              int extract_flags,
1876                                              wimlib_progress_func_t progfunc,
1877                                              void *progctx)
1878 {
1879         int ret;
1880         WIMStruct *pwm;
1881         struct filedes *in_fd;
1882         int image;
1883         unsigned i;
1884
1885         if (extract_flags & ~WIMLIB_EXTRACT_MASK_PUBLIC)
1886                 return WIMLIB_ERR_INVALID_PARAM;
1887
1888         /* Read the WIM header from the pipe and get a WIMStruct to represent
1889          * the pipable WIM.  Caveats:  Unlike getting a WIMStruct with
1890          * wimlib_open_wim(), getting a WIMStruct in this way will result in an
1891          * empty blob table, no XML data read, and no filename set.  */
1892         ret = open_wim_as_WIMStruct(&pipe_fd, WIMLIB_OPEN_FLAG_FROM_PIPE, &pwm,
1893                                     progfunc, progctx);
1894         if (ret)
1895                 return ret;
1896
1897         /* Sanity check to make sure this is a pipable WIM.  */
1898         if (pwm->hdr.magic != PWM_MAGIC) {
1899                 ERROR("The WIM being read from file descriptor %d "
1900                       "is not pipable!", pipe_fd);
1901                 ret = WIMLIB_ERR_NOT_PIPABLE;
1902                 goto out_wimlib_free;
1903         }
1904
1905         /* Sanity check to make sure the first part of a pipable split WIM is
1906          * sent over the pipe first.  */
1907         if (pwm->hdr.part_number != 1) {
1908                 ERROR("The first part of the split WIM must be "
1909                       "sent over the pipe first.");
1910                 ret = WIMLIB_ERR_INVALID_PIPABLE_WIM;
1911                 goto out_wimlib_free;
1912         }
1913
1914         in_fd = &pwm->in_fd;
1915         wimlib_assert(in_fd->offset == WIM_HEADER_DISK_SIZE);
1916
1917         /* As mentioned, the WIMStruct we created from the pipe does not have
1918          * XML data yet.  Fix this by reading the extra copy of the XML data
1919          * that directly follows the header in pipable WIMs.  (Note: see
1920          * write_pipable_wim() for more details about the format of pipable
1921          * WIMs.)  */
1922         {
1923                 struct blob_descriptor xml_blob;
1924                 struct wim_resource_descriptor xml_rdesc;
1925                 ret = read_pwm_blob_header(pwm, &xml_blob, &xml_rdesc, 0, NULL);
1926                 if (ret)
1927                         goto out_wimlib_free;
1928
1929                 if (!(xml_blob.flags & WIM_RESHDR_FLAG_METADATA))
1930                 {
1931                         ERROR("Expected XML data, but found non-metadata resource.");
1932                         ret = WIMLIB_ERR_INVALID_PIPABLE_WIM;
1933                         goto out_wimlib_free;
1934                 }
1935
1936                 wim_res_desc_to_hdr(&xml_rdesc, &pwm->hdr.xml_data_reshdr);
1937
1938                 ret = read_wim_xml_data(pwm);
1939                 if (ret)
1940                         goto out_wimlib_free;
1941
1942                 if (wim_info_get_num_images(pwm->wim_info) != pwm->hdr.image_count) {
1943                         ERROR("Image count in XML data is not the same as in WIM header.");
1944                         ret = WIMLIB_ERR_IMAGE_COUNT;
1945                         goto out_wimlib_free;
1946                 }
1947         }
1948
1949         /* Get image index (this may use the XML data that was just read to
1950          * resolve an image name).  */
1951         if (image_num_or_name) {
1952                 image = wimlib_resolve_image(pwm, image_num_or_name);
1953                 if (image == WIMLIB_NO_IMAGE) {
1954                         ERROR("\"%"TS"\" is not a valid image in the pipable WIM!",
1955                               image_num_or_name);
1956                         ret = WIMLIB_ERR_INVALID_IMAGE;
1957                         goto out_wimlib_free;
1958                 } else if (image == WIMLIB_ALL_IMAGES) {
1959                         ERROR("Applying all images from a pipe is not supported!");
1960                         ret = WIMLIB_ERR_INVALID_IMAGE;
1961                         goto out_wimlib_free;
1962                 }
1963         } else {
1964                 if (pwm->hdr.image_count != 1) {
1965                         ERROR("No image was specified, but the pipable WIM "
1966                               "did not contain exactly 1 image");
1967                         ret = WIMLIB_ERR_INVALID_IMAGE;
1968                         goto out_wimlib_free;
1969                 }
1970                 image = 1;
1971         }
1972
1973         /* Load the needed metadata resource.  */
1974         for (i = 1; i <= pwm->hdr.image_count; i++) {
1975                 struct blob_descriptor *metadata_blob;
1976                 struct wim_image_metadata *imd;
1977                 struct wim_resource_descriptor *metadata_rdesc;
1978
1979                 metadata_blob = new_blob_descriptor();
1980                 if (metadata_blob == NULL) {
1981                         ret = WIMLIB_ERR_NOMEM;
1982                         goto out_wimlib_free;
1983                 }
1984                 metadata_rdesc = MALLOC(sizeof(struct wim_resource_descriptor));
1985                 if (metadata_rdesc == NULL) {
1986                         ret = WIMLIB_ERR_NOMEM;
1987                         free_blob_descriptor(metadata_blob);
1988                         goto out_wimlib_free;
1989                 }
1990
1991                 ret = read_pwm_blob_header(pwm, metadata_blob, metadata_rdesc, 0, NULL);
1992                 imd = pwm->image_metadata[i - 1];
1993                 imd->metadata_blob = metadata_blob;
1994                 if (ret) {
1995                         FREE(metadata_rdesc);
1996                         goto out_wimlib_free;
1997                 }
1998
1999                 if (!(metadata_blob->flags & WIM_RESHDR_FLAG_METADATA)) {
2000                         ERROR("Expected metadata resource, but found "
2001                               "non-metadata resource.");
2002                         ret = WIMLIB_ERR_INVALID_PIPABLE_WIM;
2003                         goto out_wimlib_free;
2004                 }
2005
2006                 if (i == image) {
2007                         /* Metadata resource is for the image being extracted.
2008                          * Parse it and save the metadata in memory.  */
2009                         ret = read_metadata_resource(imd);
2010                         if (ret)
2011                                 goto out_wimlib_free;
2012                         imd->modified = 1;
2013                 } else {
2014                         /* Metadata resource is not for the image being
2015                          * extracted.  Skip over it.  */
2016                         ret = skip_wim_resource(metadata_rdesc);
2017                         if (ret)
2018                                 goto out_wimlib_free;
2019                 }
2020         }
2021         /* Extract the image.  */
2022         extract_flags |= WIMLIB_EXTRACT_FLAG_FROM_PIPE;
2023         ret = do_wimlib_extract_image(pwm, image, target, extract_flags);
2024         /* Clean up and return.  */
2025 out_wimlib_free:
2026         wimlib_free(pwm);
2027         return ret;
2028 }
2029
2030
2031 WIMLIBAPI int
2032 wimlib_extract_image_from_pipe(int pipe_fd, const tchar *image_num_or_name,
2033                                const tchar *target, int extract_flags)
2034 {
2035         return wimlib_extract_image_from_pipe_with_progress(pipe_fd,
2036                                                             image_num_or_name,
2037                                                             target,
2038                                                             extract_flags,
2039                                                             NULL,
2040                                                             NULL);
2041 }
2042
2043 WIMLIBAPI int
2044 wimlib_extract_image(WIMStruct *wim, int image, const tchar *target,
2045                      int extract_flags)
2046 {
2047         if (extract_flags & ~WIMLIB_EXTRACT_MASK_PUBLIC)
2048                 return WIMLIB_ERR_INVALID_PARAM;
2049         return do_wimlib_extract_image(wim, image, target, extract_flags);
2050 }