]> wimlib.net Git - wimlib/blob - src/extract.c
Add apply_ops.requires_short_name_reordering
[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 Eric Biggers
10  *
11  * This file is part of wimlib, a library for working with WIM files.
12  *
13  * wimlib is free software; you can redistribute it and/or modify it under the
14  * terms of the GNU General Public License as published by the Free
15  * Software Foundation; either version 3 of the License, or (at your option)
16  * any later version.
17  *
18  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
19  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20  * A PARTICULAR PURPOSE. See the GNU General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with wimlib; if not, see http://www.gnu.org/licenses/.
25  */
26
27 /*
28  * This file provides the API functions wimlib_extract_image(),
29  * wimlib_extract_files(), and wimlib_extract_image_from_pipe().  Internally,
30  * all end up calling extract_tree() zero or more times to extract a tree of
31  * files from the currently selected WIM image to the specified target directory
32  * or NTFS volume.
33  *
34  * Although wimlib supports multiple extraction modes/backends (NTFS-3g, UNIX,
35  * Win32), this file does not itself have code to extract files or directories
36  * to any specific target; instead, it handles generic functionality and relies
37  * on lower-level callback functions declared in `struct apply_operations' to do
38  * the actual extraction.
39  */
40
41 #ifdef HAVE_CONFIG_H
42 #  include "config.h"
43 #endif
44
45 #include "wimlib/apply.h"
46 #include "wimlib/dentry.h"
47 #include "wimlib/encoding.h"
48 #include "wimlib/endianness.h"
49 #include "wimlib/error.h"
50 #include "wimlib/lookup_table.h"
51 #include "wimlib/metadata.h"
52 #include "wimlib/paths.h"
53 #include "wimlib/reparse.h"
54 #include "wimlib/resource.h"
55 #include "wimlib/security.h"
56 #include "wimlib/swm.h"
57 #ifdef __WIN32__
58 #  include "wimlib/win32.h" /* for realpath() equivalent */
59 #endif
60 #include "wimlib/xml.h"
61 #include "wimlib/wim.h"
62
63 #include <errno.h>
64 #include <fcntl.h>
65 #include <stdlib.h>
66 #include <sys/stat.h>
67 #include <unistd.h>
68
69 #define WIMLIB_EXTRACT_FLAG_MULTI_IMAGE 0x80000000
70 #define WIMLIB_EXTRACT_FLAG_FROM_PIPE   0x40000000
71 #define WIMLIB_EXTRACT_MASK_PUBLIC      0x3fffffff
72
73 /* Given a WIM dentry in the tree to be extracted, resolve all streams in the
74  * corresponding inode and set 'out_refcnt' in each to 0.  */
75 static int
76 dentry_resolve_and_zero_lte_refcnt(struct wim_dentry *dentry, void *_ctx)
77 {
78         struct apply_ctx *ctx = _ctx;
79         struct wim_inode *inode = dentry->d_inode;
80         struct wim_lookup_table_entry *lte;
81         int ret;
82         bool force = false;
83
84         if (dentry->extraction_skipped)
85                 return 0;
86
87         /* Special case:  when extracting from a pipe, the WIM lookup table is
88          * initially empty, so "resolving" an inode's streams is initially not
89          * possible.  However, we still need to keep track of which streams,
90          * identified by SHA1 message digests, need to be extracted, so we
91          * "resolve" the inode's streams anyway by allocating new entries.  */
92         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_FROM_PIPE)
93                 force = true;
94         ret = inode_resolve_ltes(inode, ctx->wim->lookup_table, force);
95         if (ret)
96                 return ret;
97         for (unsigned i = 0; i <= inode->i_num_ads; i++) {
98                 lte = inode_stream_lte_resolved(inode, i);
99                 if (lte)
100                         lte->out_refcnt = 0;
101         }
102         return 0;
103 }
104
105 static inline bool
106 is_linked_extraction(const struct apply_ctx *ctx)
107 {
108         return 0 != (ctx->extract_flags & (WIMLIB_EXTRACT_FLAG_HARDLINK |
109                                            WIMLIB_EXTRACT_FLAG_SYMLINK));
110 }
111
112 static inline bool
113 can_extract_named_data_streams(const struct apply_ctx *ctx)
114 {
115         return ctx->supported_features.named_data_streams &&
116                 !is_linked_extraction(ctx);
117 }
118
119 static int
120 ref_stream_to_extract(struct wim_lookup_table_entry *lte,
121                       struct wim_dentry *dentry, struct apply_ctx *ctx)
122 {
123         if (!lte)
124                 return 0;
125
126         /* Tally the size only for each extraction of the stream (not hard
127          * links).  */
128         if (!(dentry->d_inode->i_visited &&
129               ctx->supported_features.hard_links) &&
130             (!is_linked_extraction(ctx) || (lte->out_refcnt == 0 &&
131                                             lte->extracted_file == NULL)))
132         {
133                 ctx->progress.extract.total_bytes += wim_resource_size(lte);
134                 ctx->progress.extract.num_streams++;
135         }
136
137         /* Add stream to the extraction_list only one time, even if it's going
138          * to be extracted to multiple locations.  */
139         if (lte->out_refcnt == 0) {
140                 list_add_tail(&lte->extraction_list, &ctx->stream_list);
141                 ctx->num_streams_remaining++;
142         }
143
144         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_SEQUENTIAL) {
145                 struct wim_dentry **lte_dentries;
146
147                 /* Append dentry to this stream's array of dentries referencing
148                  * it.  Use inline array to avoid memory allocation until the
149                  * number of dentries becomes too large.  */
150                 if (lte->out_refcnt < ARRAY_LEN(lte->inline_lte_dentries)) {
151                         lte_dentries = lte->inline_lte_dentries;
152                 } else {
153                         struct wim_dentry **prev_lte_dentries;
154                         size_t alloc_lte_dentries;
155
156                         if (lte->out_refcnt == ARRAY_LEN(lte->inline_lte_dentries)) {
157                                 prev_lte_dentries = NULL;
158                                 alloc_lte_dentries = ARRAY_LEN(lte->inline_lte_dentries);
159                         } else {
160                                 prev_lte_dentries = lte->lte_dentries;
161                                 alloc_lte_dentries = lte->alloc_lte_dentries;
162                         }
163
164                         if (lte->out_refcnt == alloc_lte_dentries) {
165                                 alloc_lte_dentries *= 2;
166                                 lte_dentries = REALLOC(prev_lte_dentries,
167                                                        alloc_lte_dentries *
168                                                         sizeof(lte_dentries[0]));
169                                 if (!lte_dentries)
170                                         return WIMLIB_ERR_NOMEM;
171                                 if (prev_lte_dentries == NULL) {
172                                         memcpy(lte_dentries,
173                                                lte->inline_lte_dentries,
174                                                sizeof(lte->inline_lte_dentries));
175                                 }
176                                 lte->lte_dentries = lte_dentries;
177                                 lte->alloc_lte_dentries = alloc_lte_dentries;
178                         }
179                         lte_dentries = lte->lte_dentries;
180                 }
181                 lte_dentries[lte->out_refcnt] = dentry;
182         }
183         lte->out_refcnt++;
184         return 0;
185 }
186
187 /* Given a WIM dentry in the tree to be extracted, iterate through streams that
188  * need to be extracted.  For each one, add it to the list of streams to be
189  * extracted (ctx->stream_list) if not already done so, and also update the
190  * progress information (ctx->progress) with the stream.  Furthermore, if doing
191  * a sequential extraction, build a mapping from each the stream to the dentries
192  * referencing it.
193  *
194  * This uses the i_visited member of the inodes (assumed to be 0 initially).  */
195 static int
196 dentry_add_streams_to_extract(struct wim_dentry *dentry, void *_ctx)
197 {
198         struct apply_ctx *ctx = _ctx;
199         struct wim_inode *inode = dentry->d_inode;
200         int ret;
201
202         /* Don't process dentries marked as skipped.  */
203         if (dentry->extraction_skipped)
204                 return 0;
205
206         /* The unnamed data stream will always be extracted, except in an
207          * unlikely case.  */
208         if (!inode_is_encrypted_directory(inode)) {
209                 ret = ref_stream_to_extract(inode_unnamed_lte_resolved(inode),
210                                             dentry, ctx);
211                 if (ret)
212                         return ret;
213         }
214
215         /* Named data streams will be extracted only if supported in the current
216          * extraction mode and volume, and to avoid complications, if not doing
217          * a linked extraction.  */
218         if (can_extract_named_data_streams(ctx)) {
219                 for (u16 i = 0; i < inode->i_num_ads; i++) {
220                         if (!ads_entry_is_named_stream(&inode->i_ads_entries[i]))
221                                 continue;
222                         ret = ref_stream_to_extract(inode->i_ads_entries[i].lte,
223                                                     dentry, ctx);
224                         if (ret)
225                                 return ret;
226                 }
227         }
228         inode->i_visited = 1;
229         return 0;
230 }
231
232 /* Inform library user of progress of stream extraction following the successful
233  * extraction of a copy of the stream specified by @lte.  */
234 static void
235 update_extract_progress(struct apply_ctx *ctx,
236                         const struct wim_lookup_table_entry *lte)
237 {
238         wimlib_progress_func_t progress_func = ctx->progress_func;
239         union wimlib_progress_info *progress = &ctx->progress;
240
241         progress->extract.completed_bytes += wim_resource_size(lte);
242         if (progress_func &&
243             progress->extract.completed_bytes >= ctx->next_progress)
244         {
245                 progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS, progress);
246                 if (progress->extract.completed_bytes >=
247                     progress->extract.total_bytes)
248                 {
249                         ctx->next_progress = ~0ULL;
250                 } else {
251                         ctx->next_progress += progress->extract.total_bytes / 128;
252                         if (ctx->next_progress > progress->extract.total_bytes)
253                                 ctx->next_progress = progress->extract.total_bytes;
254                 }
255         }
256 }
257
258 #ifndef __WIN32__
259 /* Extract a symbolic link (not directly as reparse data), handling fixing up
260  * the target of absolute symbolic links and updating the extract progress.
261  *
262  * @inode must specify the WIM inode for a symbolic link or junction reparse
263  * point.
264  *
265  * @lte_override overrides the resource used as the reparse data for the
266  * symbolic link.  */
267 static int
268 extract_symlink(const tchar *path, struct apply_ctx *ctx,
269                 struct wim_inode *inode,
270                 struct wim_lookup_table_entry *lte_override)
271 {
272         ssize_t bufsize = ctx->ops->path_max;
273         tchar target[bufsize];
274         tchar *buf = target;
275         tchar *fixed_target;
276         ssize_t sret;
277         int ret;
278
279         /* If absolute symbolic link fixups requested, reserve space in the link
280          * target buffer for the absolute path of the target directory.  */
281         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_RPFIX)
282         {
283                 buf += ctx->realtarget_nchars;
284                 bufsize -= ctx->realtarget_nchars;
285         }
286
287         /* Translate the WIM inode's reparse data into the link target.  */
288         sret = wim_inode_readlink(inode, buf, bufsize - 1, lte_override);
289         if (sret < 0) {
290                 errno = -sret;
291                 return WIMLIB_ERR_READLINK;
292         }
293         buf[sret] = '\0';
294
295         if ((ctx->extract_flags & WIMLIB_EXTRACT_FLAG_RPFIX) &&
296             buf[0] == '/')
297         {
298                 /* Fix absolute symbolic link target to point into the
299                  * actual extraction destination.  */
300                 tmemcpy(target, ctx->realtarget, ctx->realtarget_nchars);
301                 fixed_target = target;
302         } else {
303                 /* Keep same link target.  */
304                 fixed_target = buf;
305         }
306
307         /* Call into the apply_operations to create the symbolic link.  */
308         DEBUG("Creating symlink \"%"TS"\" => \"%"TS"\"",
309               path, fixed_target);
310         ret = ctx->ops->create_symlink(fixed_target, path, ctx);
311         if (ret) {
312                 ERROR_WITH_ERRNO("Failed to create symlink "
313                                  "\"%"TS"\" => \"%"TS"\"", path, fixed_target);
314                 return ret;
315         }
316
317         /* Account for reparse data consumed.  */
318         update_extract_progress(ctx,
319                                 (lte_override ? lte_override :
320                                       inode_unnamed_lte_resolved(inode)));
321         return 0;
322 }
323 #endif /* !__WIN32__ */
324
325 /* Create a file, directory, or symbolic link.  */
326 static int
327 extract_inode(const tchar *path, struct apply_ctx *ctx, struct wim_inode *inode)
328 {
329         int ret;
330
331 #ifndef __WIN32__
332         if (ctx->supported_features.symlink_reparse_points &&
333             !ctx->supported_features.reparse_points &&
334             inode_is_symlink(inode))
335         {
336                 ret = extract_symlink(path, ctx, inode, NULL);
337         } else
338 #endif /* !__WIN32__ */
339         if (inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY) {
340                 ret = ctx->ops->create_directory(path, ctx, &inode->extract_cookie);
341                 if (ret) {
342                         ERROR_WITH_ERRNO("Failed to create the directory "
343                                          "\"%"TS"\"", path);
344                 }
345         } else if ((inode->i_attributes & FILE_ATTRIBUTE_ENCRYPTED) &&
346                     ctx->ops->extract_encrypted_stream_creates_file &&
347                     ctx->supported_features.encrypted_files) {
348                 ret = ctx->ops->extract_encrypted_stream(
349                                 path, inode_unnamed_lte_resolved(inode), ctx);
350                 if (ret) {
351                         ERROR_WITH_ERRNO("Failed to create and extract "
352                                          "encrypted file \"%"TS"\"", path);
353                 }
354         } else {
355                 ret = ctx->ops->create_file(path, ctx, &inode->extract_cookie);
356                 if (ret) {
357                         ERROR_WITH_ERRNO("Failed to create the file "
358                                          "\"%"TS"\"", path);
359                 }
360         }
361         return ret;
362 }
363
364 static int
365 extract_hardlink(const tchar *oldpath, const tchar *newpath,
366                  struct apply_ctx *ctx)
367 {
368         int ret;
369
370         DEBUG("Creating hardlink \"%"TS"\" => \"%"TS"\"", newpath, oldpath);
371         ret = ctx->ops->create_hardlink(oldpath, newpath, ctx);
372         if (ret) {
373                 ERROR_WITH_ERRNO("Failed to create hardlink "
374                                  "\"%"TS"\" => \"%"TS"\"",
375                                  newpath, oldpath);
376         }
377         return ret;
378 }
379
380 #ifdef __WIN32__
381 static int
382 try_extract_rpfix(u8 *rpbuf,
383                   u16 *rpbuflen_p,
384                   const wchar_t *extract_root_realpath,
385                   unsigned extract_root_realpath_nchars)
386 {
387         struct reparse_data rpdata;
388         wchar_t *target;
389         size_t target_nchars;
390         size_t stripped_nchars;
391         wchar_t *stripped_target;
392         wchar_t stripped_target_nchars;
393         int ret;
394
395         utf16lechar *new_target;
396         utf16lechar *new_print_name;
397         size_t new_target_nchars;
398         size_t new_print_name_nchars;
399         utf16lechar *p;
400
401         ret = parse_reparse_data(rpbuf, *rpbuflen_p, &rpdata);
402         if (ret)
403                 return ret;
404
405         if (extract_root_realpath[0] == L'\0' ||
406             extract_root_realpath[1] != L':' ||
407             extract_root_realpath[2] != L'\\')
408                 return WIMLIB_ERR_REPARSE_POINT_FIXUP_FAILED;
409
410         ret = parse_substitute_name(rpdata.substitute_name,
411                                     rpdata.substitute_name_nbytes,
412                                     rpdata.rptag);
413         if (ret < 0)
414                 return 0;
415         stripped_nchars = ret;
416         target = rpdata.substitute_name;
417         target_nchars = rpdata.substitute_name_nbytes / sizeof(utf16lechar);
418         stripped_target = target + stripped_nchars;
419         stripped_target_nchars = target_nchars - stripped_nchars;
420
421         new_target = alloca((6 + extract_root_realpath_nchars +
422                              stripped_target_nchars) * sizeof(utf16lechar));
423
424         p = new_target;
425         if (stripped_nchars == 6) {
426                 /* Include \??\ prefix if it was present before */
427                 p = wmempcpy(p, L"\\??\\", 4);
428         }
429
430         /* Print name excludes the \??\ if present. */
431         new_print_name = p;
432         if (stripped_nchars != 0) {
433                 /* Get drive letter from real path to extract root, if a drive
434                  * letter was present before. */
435                 *p++ = extract_root_realpath[0];
436                 *p++ = extract_root_realpath[1];
437         }
438         /* Copy the rest of the extract root */
439         p = wmempcpy(p, extract_root_realpath + 2, extract_root_realpath_nchars - 2);
440
441         /* Append the stripped target */
442         p = wmempcpy(p, stripped_target, stripped_target_nchars);
443         new_target_nchars = p - new_target;
444         new_print_name_nchars = p - new_print_name;
445
446         if (new_target_nchars * sizeof(utf16lechar) >= REPARSE_POINT_MAX_SIZE ||
447             new_print_name_nchars * sizeof(utf16lechar) >= REPARSE_POINT_MAX_SIZE)
448                 return WIMLIB_ERR_REPARSE_POINT_FIXUP_FAILED;
449
450         rpdata.substitute_name = new_target;
451         rpdata.substitute_name_nbytes = new_target_nchars * sizeof(utf16lechar);
452         rpdata.print_name = new_print_name;
453         rpdata.print_name_nbytes = new_print_name_nchars * sizeof(utf16lechar);
454         return make_reparse_buffer(&rpdata, rpbuf, rpbuflen_p);
455 }
456 #endif /* __WIN32__ */
457
458 /* Set reparse data on extracted file or directory that has
459  * FILE_ATTRIBUTE_REPARSE_POINT set.  */
460 static int
461 extract_reparse_data(const tchar *path, struct apply_ctx *ctx,
462                      struct wim_inode *inode,
463                      struct wim_lookup_table_entry *lte_override)
464 {
465         int ret;
466         u8 rpbuf[REPARSE_POINT_MAX_SIZE];
467         u16 rpbuflen;
468
469         ret = wim_inode_get_reparse_data(inode, rpbuf, &rpbuflen, lte_override);
470         if (ret)
471                 goto error;
472
473 #ifdef __WIN32__
474         /* Fix up target of absolute symbolic link or junction points so
475          * that they point into the actual extraction target.  */
476         if ((ctx->extract_flags & WIMLIB_EXTRACT_FLAG_RPFIX) &&
477             (inode->i_reparse_tag == WIM_IO_REPARSE_TAG_SYMLINK ||
478              inode->i_reparse_tag == WIM_IO_REPARSE_TAG_MOUNT_POINT) &&
479             !inode->i_not_rpfixed)
480         {
481                 ret = try_extract_rpfix(rpbuf, &rpbuflen, ctx->realtarget,
482                                         ctx->realtarget_nchars);
483                 if (ret && !(ctx->extract_flags &
484                              WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS))
485                 {
486                         WARNING("Reparse point fixup of \"%"TS"\" "
487                                 "failed", path);
488                         ret = 0;
489                 }
490                 if (ret)
491                         goto error;
492         }
493 #endif
494
495         ret = ctx->ops->set_reparse_data(path, rpbuf, rpbuflen, ctx);
496
497         /* On Windows, the SeCreateSymbolicLink privilege is required to create
498          * symbolic links.  To be more friendly towards non-Administrator users,
499          * we merely warn the user if symbolic links cannot be created due to
500          * insufficient permissions or privileges, unless
501          * WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS was provided.  */
502 #ifdef __WIN32__
503         if (ret && inode_is_symlink(inode) &&
504             (errno == EACCES || errno == EPERM) &&
505             !(ctx->extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS))
506         {
507                 WARNING("Can't set reparse data on \"%"TS"\": "
508                         "Access denied!\n"
509                         "          You may be trying to "
510                         "extract a symbolic link without the\n"
511                         "          SeCreateSymbolicLink privilege, "
512                         "which by default non-Administrator\n"
513                         "          accounts do not have.",
514                         path);
515                 ret = 0;
516         }
517 #endif
518         if (ret)
519                 goto error;
520
521         /* Account for reparse data consumed.  */
522         update_extract_progress(ctx,
523                                 (lte_override ? lte_override :
524                                       inode_unnamed_lte_resolved(inode)));
525         return 0;
526
527 error:
528         ERROR_WITH_ERRNO("Failed to set reparse data on \"%"TS"\"", path);
529         return ret;
530 }
531
532 /*
533  * Extract zero or more streams to a file.
534  *
535  * This function operates slightly differently depending on whether @lte_spec is
536  * NULL or not.  When @lte_spec is NULL, the behavior is to extract the default
537  * file contents (unnamed stream), and, if named data streams are supported in
538  * the extract mode and volume, any named data streams.  When @lte_spec is NULL,
539  * the behavior is to extract only all copies of the stream @lte_spec, and in
540  * addition use @lte_spec to set the reparse data or create the symbolic link if
541  * appropriate.
542  *
543  * @path
544  *      Path to file to extract (as can be passed to apply_operations
545  *      functions).
546  * @ctx
547  *      Apply context.
548  * @dentry
549  *      WIM dentry that corresponds to the file being extracted.
550  * @lte_spec
551  *      If non-NULL, specifies the lookup table entry for a stream to extract,
552  *      and only that stream will be extracted (although there may be more than
553  *      one instance of it).
554  * @lte_override
555  *      Used only if @lte_spec != NULL; it is passed to the extraction functions
556  *      rather than @lte_spec, allowing the location of the stream to be
557  *      overridden.  (This is used when the WIM is being read from a nonseekable
558  *      file, such as a pipe, when streams need to be used more than once; each
559  *      such stream is extracted to a temporary file.)
560  */
561 static int
562 extract_streams(const tchar *path, struct apply_ctx *ctx,
563                 struct wim_dentry *dentry,
564                 struct wim_lookup_table_entry *lte_spec,
565                 struct wim_lookup_table_entry *lte_override)
566 {
567         struct wim_inode *inode = dentry->d_inode;
568         struct wim_lookup_table_entry *lte;
569         file_spec_t file_spec;
570         int ret;
571
572         if (dentry->was_hardlinked)
573                 return 0;
574
575 #ifdef ENABLE_DEBUG
576         if (lte_spec) {
577                 char sha1_str[100];
578                 char *p = sha1_str;
579                 for (unsigned i = 0; i < SHA1_HASH_SIZE; i++)
580                         p += sprintf(p, "%02x", lte_override->hash[i]);
581                 DEBUG("Extracting stream SHA1=%s to \"%"TS"\"",
582                       sha1_str, path, inode->i_ino);
583         } else {
584                 DEBUG("Extracting streams to \"%"TS"\"", path, inode->i_ino);
585         }
586 #endif
587
588         if (ctx->ops->uses_cookies)
589                 file_spec.cookie = inode->extract_cookie;
590         else
591                 file_spec.path = path;
592
593         /* Unnamed data stream.  */
594         lte = inode_unnamed_lte_resolved(inode);
595         if (lte && (!lte_spec || lte == lte_spec)) {
596                 if (lte_spec)
597                         lte = lte_override;
598                 if (!(inode->i_attributes & (FILE_ATTRIBUTE_DIRECTORY |
599                                              FILE_ATTRIBUTE_REPARSE_POINT)))
600                 {
601                         if (inode->i_attributes & FILE_ATTRIBUTE_ENCRYPTED &&
602                             ctx->supported_features.encrypted_files) {
603                                 if (!ctx->ops->extract_encrypted_stream_creates_file) {
604                                         ret = ctx->ops->extract_encrypted_stream(
605                                                                 path, lte, ctx);
606                                         if (ret)
607                                                 goto error;
608                                 }
609                         } else {
610                                 ret = ctx->ops->extract_unnamed_stream(
611                                                         file_spec, lte, ctx);
612                                 if (ret)
613                                         goto error;
614                         }
615                         update_extract_progress(ctx, lte);
616                 }
617                 else if (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT)
618                 {
619                         ret = 0;
620                         if (ctx->supported_features.reparse_points)
621                                 ret = extract_reparse_data(path, ctx, inode, lte);
622                 #ifndef __WIN32__
623                         else if ((inode_is_symlink(inode) &&
624                                   ctx->supported_features.symlink_reparse_points))
625                                 ret = extract_symlink(path, ctx, inode, lte);
626                 #endif
627                         if (ret)
628                                 return ret;
629                 }
630         }
631
632         /* Named data streams.  */
633         if (can_extract_named_data_streams(ctx)) {
634                 for (u16 i = 0; i < inode->i_num_ads; i++) {
635                         struct wim_ads_entry *entry = &inode->i_ads_entries[i];
636
637                         if (!ads_entry_is_named_stream(entry))
638                                 continue;
639                         lte = entry->lte;
640                         if (!lte)
641                                 continue;
642                         if (lte_spec && lte_spec != lte)
643                                 continue;
644                         if (lte_spec)
645                                 lte = lte_override;
646                         ret = ctx->ops->extract_named_stream(file_spec, entry->stream_name,
647                                                              entry->stream_name_nbytes / 2,
648                                                              lte, ctx);
649                         if (ret)
650                                 goto error;
651                         update_extract_progress(ctx, lte);
652                 }
653         }
654         return 0;
655
656 error:
657         ERROR_WITH_ERRNO("Failed to extract data of \"%"TS"\"", path);
658         return ret;
659 }
660
661 /* Set attributes on an extracted file or directory if supported by the
662  * extraction mode.  */
663 static int
664 extract_file_attributes(const tchar *path, struct apply_ctx *ctx,
665                         struct wim_dentry *dentry, unsigned pass)
666 {
667         int ret;
668
669         if (ctx->ops->set_file_attributes &&
670             !(dentry == ctx->extract_root && ctx->root_dentry_is_special)) {
671                 u32 attributes = dentry->d_inode->i_attributes;
672
673                 /* Clear unsupported attributes.  */
674                 attributes &= ctx->supported_attributes_mask;
675
676                 if ((attributes & FILE_ATTRIBUTE_DIRECTORY &&
677                      !ctx->supported_features.encrypted_directories) ||
678                     (!(attributes & FILE_ATTRIBUTE_DIRECTORY) &&
679                      !ctx->supported_features.encrypted_files))
680                 {
681                         attributes &= ~FILE_ATTRIBUTE_ENCRYPTED;
682                 }
683
684                 if (attributes == 0)
685                         attributes = FILE_ATTRIBUTE_NORMAL;
686
687                 ret = ctx->ops->set_file_attributes(path, attributes, ctx, pass);
688                 if (ret) {
689                         ERROR_WITH_ERRNO("Failed to set attributes on "
690                                          "\"%"TS"\"", path);
691                         return ret;
692                 }
693         }
694         return 0;
695 }
696
697
698 /* Set or remove the short (DOS) name on an extracted file or directory if
699  * supported by the extraction mode.  Since DOS names are unimportant and it's
700  * easy to run into problems setting them on Windows (SetFileShortName()
701  * requires SE_RESTORE privilege, which only the Administrator can request, and
702  * also requires DELETE access to the file), failure is ignored unless
703  * WIMLIB_EXTRACT_FLAG_STRICT_SHORT_NAMES is set.  */
704 static int
705 extract_short_name(const tchar *path, struct apply_ctx *ctx,
706                    struct wim_dentry *dentry)
707 {
708         int ret;
709
710         /* The root of the dentry tree being extracted may not be extracted to
711          * its original name, so its short name should be ignored.  */
712         if (dentry == ctx->extract_root)
713                 return 0;
714
715         if (ctx->supported_features.short_names) {
716                 ret = ctx->ops->set_short_name(path,
717                                                dentry->short_name,
718                                                dentry->short_name_nbytes / 2,
719                                                ctx);
720                 if (ret && (ctx->extract_flags &
721                             WIMLIB_EXTRACT_FLAG_STRICT_SHORT_NAMES))
722                 {
723                         ERROR_WITH_ERRNO("Failed to set short name of "
724                                          "\"%"TS"\"", path);
725                         return ret;
726                 }
727         }
728         return 0;
729 }
730
731 /* Set security descriptor, UNIX data, or neither on an extracted file, taking
732  * into account the current extraction mode and flags.  */
733 static int
734 extract_security(const tchar *path, struct apply_ctx *ctx,
735                  struct wim_dentry *dentry)
736 {
737         int ret;
738         struct wim_inode *inode = dentry->d_inode;
739
740         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_NO_ACLS)
741                 return 0;
742
743         if ((ctx->extract_root == dentry) && ctx->root_dentry_is_special)
744                 return 0;
745
746 #ifndef __WIN32__
747         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_UNIX_DATA) {
748                 struct wimlib_unix_data data;
749
750                 ret = inode_get_unix_data(inode, &data, NULL);
751                 if (ret < 0)
752                         ret = 0;
753                 else if (ret == 0)
754                         ret = ctx->ops->set_unix_data(path, &data, ctx);
755                 if (ret) {
756                         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_ACLS) {
757                                 ERROR_WITH_ERRNO("Failed to set UNIX owner, "
758                                                  "group, and/or mode on "
759                                                  "\"%"TS"\"", path);
760                                 return ret;
761                         } else {
762                                 WARNING_WITH_ERRNO("Failed to set UNIX owner, "
763                                                    "group, and/or/mode on "
764                                                    "\"%"TS"\"", path);
765                         }
766                 }
767         }
768         else
769 #endif /* __WIN32__ */
770         if (ctx->supported_features.security_descriptors &&
771             inode->i_security_id != -1)
772         {
773                 const struct wim_security_data *sd;
774                 const u8 *desc;
775                 size_t desc_size;
776
777                 sd = wim_const_security_data(ctx->wim);
778                 desc = sd->descriptors[inode->i_security_id];
779                 desc_size = sd->sizes[inode->i_security_id];
780
781                 ret = ctx->ops->set_security_descriptor(path, desc,
782                                                         desc_size, ctx);
783                 if (ret) {
784                         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_ACLS) {
785                                 ERROR_WITH_ERRNO("Failed to set security "
786                                                  "descriptor on \"%"TS"\"", path);
787                                 return ret;
788                         } else {
789                         #if 0
790                                 if (errno != EACCES) {
791                                         WARNING_WITH_ERRNO("Failed to set "
792                                                            "security descriptor "
793                                                            "on \"%"TS"\"", path);
794                                 }
795                         #endif
796                                 ctx->no_security_descriptors++;
797                         }
798                 }
799         }
800         return 0;
801 }
802
803 /* Set timestamps on an extracted file.  Failure is warning-only unless
804  * WIMLIB_EXTRACT_FLAG_STRICT_TIMESTAMPS is set.  */
805 static int
806 extract_timestamps(const tchar *path, struct apply_ctx *ctx,
807                    struct wim_dentry *dentry)
808 {
809         struct wim_inode *inode = dentry->d_inode;
810         int ret;
811
812         if ((ctx->extract_root == dentry) && ctx->root_dentry_is_special)
813                 return 0;
814
815         if (ctx->ops->set_timestamps) {
816                 ret = ctx->ops->set_timestamps(path,
817                                                inode->i_creation_time,
818                                                inode->i_last_write_time,
819                                                inode->i_last_access_time,
820                                                ctx);
821                 if (ret) {
822                         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_TIMESTAMPS) {
823                                 ERROR_WITH_ERRNO("Failed to set timestamps "
824                                                  "on \"%"TS"\"", path);
825                                 return ret;
826                         } else {
827                                 WARNING_WITH_ERRNO("Failed to set timestamps "
828                                                    "on \"%"TS"\"", path);
829                         }
830                 }
831         }
832         return 0;
833 }
834
835 /* Check whether the extraction of a dentry should be skipped completely.  */
836 static bool
837 dentry_is_supported(struct wim_dentry *dentry,
838                     const struct wim_features *supported_features)
839 {
840         struct wim_inode *inode = dentry->d_inode;
841
842         if (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT) {
843                 return supported_features->reparse_points ||
844                         (inode_is_symlink(inode) &&
845                          supported_features->symlink_reparse_points);
846         }
847         if (inode->i_attributes & FILE_ATTRIBUTE_ENCRYPTED) {
848                 if (inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY)
849                         return supported_features->encrypted_directories != 0;
850                 else
851                         return supported_features->encrypted_files != 0;
852         }
853         return true;
854 }
855
856 /* Given a WIM dentry to extract, build the path to which to extract it, in the
857  * format understood by the callbacks in the apply_operations being used.
858  *
859  * Write the resulting path into @path, which must have room for at least
860  * ctx->ops->max_path characters including the null-terminator.
861  *
862  * Return %true if successful; %false if this WIM dentry doesn't actually need
863  * to be extracted or if the calculated path exceeds ctx->ops->max_path
864  * characters.
865  *
866  * This function clobbers the tmp_list member of @dentry and its ancestors up
867  * until the extraction root.  */
868 static bool
869 build_extraction_path(tchar path[], struct wim_dentry *dentry,
870                       struct apply_ctx *ctx)
871 {
872         size_t path_nchars;
873         LIST_HEAD(ancestor_list);
874         tchar *p = path;
875         const tchar *target_prefix;
876         size_t target_prefix_nchars;
877         struct wim_dentry *d;
878
879         if (dentry->extraction_skipped)
880                 return false;
881
882         path_nchars = ctx->ops->path_prefix_nchars;
883
884         if (ctx->ops->requires_realtarget_in_paths) {
885                 target_prefix        = ctx->realtarget;
886                 target_prefix_nchars = ctx->realtarget_nchars;
887         } else if (ctx->ops->requires_target_in_paths) {
888                 target_prefix        = ctx->target;
889                 target_prefix_nchars = ctx->target_nchars;
890         } else {
891                 target_prefix        = NULL;
892                 target_prefix_nchars = 0;
893         }
894         path_nchars += target_prefix_nchars;
895
896         for (d = dentry; d != ctx->extract_root; d = d->parent) {
897                 path_nchars += d->extraction_name_nchars + 1;
898                 list_add(&d->tmp_list, &ancestor_list);
899         }
900
901         path_nchars++; /* null terminator */
902
903         if (path_nchars > ctx->ops->path_max) {
904                 WARNING("\"%"TS"\": Path too long to extract",
905                         dentry_full_path(dentry));
906                 return false;
907         }
908
909         p = tmempcpy(p, ctx->ops->path_prefix, ctx->ops->path_prefix_nchars);
910         p = tmempcpy(p, target_prefix, target_prefix_nchars);
911         list_for_each_entry(d, &ancestor_list, tmp_list) {
912                 *p++ = ctx->ops->path_separator;
913                 p = tmempcpy(p, d->extraction_name, d->extraction_name_nchars);
914         }
915         *p++ = T('\0');
916         wimlib_assert(p - path == path_nchars);
917         return true;
918 }
919
920 static unsigned
921 get_num_path_components(const tchar *path, tchar path_separator)
922 {
923         unsigned num_components = 0;
924 #ifdef __WIN32__
925         /* Ignore drive letter.  */
926         if (path[0] != L'\0' && path[1] == L':')
927                 path += 2;
928 #endif
929
930         while (*path) {
931                 while (*path == path_separator)
932                         path++;
933                 if (*path)
934                         num_components++;
935                 while (*path && *path != path_separator)
936                         path++;
937         }
938         return num_components;
939 }
940
941 static int
942 extract_multiimage_symlink(const tchar *oldpath, const tchar *newpath,
943                            struct apply_ctx *ctx, struct wim_dentry *dentry)
944 {
945         size_t num_raw_path_components;
946         const struct wim_dentry *d;
947         size_t num_target_path_components;
948         tchar *p;
949         const tchar *p_old;
950         int ret;
951
952         num_raw_path_components = 0;
953         for (d = dentry; d != ctx->extract_root; d = d->parent)
954                 num_raw_path_components++;
955
956         if (ctx->ops->requires_realtarget_in_paths)
957                 num_target_path_components = get_num_path_components(ctx->realtarget,
958                                                                      ctx->ops->path_separator);
959         else if (ctx->ops->requires_target_in_paths)
960                 num_target_path_components = get_num_path_components(ctx->target,
961                                                                      ctx->ops->path_separator);
962         else
963                 num_target_path_components = 0;
964
965         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_MULTI_IMAGE) {
966                 wimlib_assert(num_target_path_components > 0);
967                 num_raw_path_components++;
968                 num_target_path_components--;
969         }
970
971         p_old = oldpath + ctx->ops->path_prefix_nchars;
972 #ifdef __WIN32__
973         if (p_old[0] != L'\0' && p_old[1] == ':')
974                 p_old += 2;
975 #endif
976         while (*p_old == ctx->ops->path_separator)
977                 p_old++;
978         while (--num_target_path_components) {
979                 while (*p_old != ctx->ops->path_separator)
980                         p_old++;
981                 while (*p_old == ctx->ops->path_separator)
982                         p_old++;
983         }
984
985         tchar symlink_target[tstrlen(p_old) + 3 * num_raw_path_components + 1];
986
987         p = &symlink_target[0];
988         while (num_raw_path_components--) {
989                 *p++ = '.';
990                 *p++ = '.';
991                 *p++ = ctx->ops->path_separator;
992         }
993         tstrcpy(p, p_old);
994         DEBUG("Creating symlink \"%"TS"\" => \"%"TS"\"",
995               newpath, symlink_target);
996         ret = ctx->ops->create_symlink(symlink_target, newpath, ctx);
997         if (ret) {
998                 ERROR_WITH_ERRNO("Failed to create symlink "
999                                  "\"%"TS"\" => \"%"TS"\"",
1000                                  newpath, symlink_target);
1001         }
1002         return ret;
1003 }
1004
1005 /* Create the "skeleton" of an extracted file or directory.  Don't yet extract
1006  * data streams, reparse data (including symbolic links), timestamps, and
1007  * security descriptors.  Basically, everything that doesn't require reading
1008  * non-metadata resources from the WIM file and isn't delayed until the final
1009  * pass.  */
1010 static int
1011 do_dentry_extract_skeleton(tchar path[], struct wim_dentry *dentry,
1012                            struct apply_ctx *ctx)
1013 {
1014         struct wim_inode *inode = dentry->d_inode;
1015         int ret;
1016         const tchar *oldpath;
1017
1018         if (unlikely(is_linked_extraction(ctx))) {
1019                 struct wim_lookup_table_entry *unnamed_lte;
1020
1021                 unnamed_lte = inode_unnamed_lte_resolved(dentry->d_inode);
1022                 if (unnamed_lte && unnamed_lte->extracted_file) {
1023                         oldpath = unnamed_lte->extracted_file;
1024                         if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_HARDLINK)
1025                                 goto hardlink;
1026                         else
1027                                 goto symlink;
1028                 }
1029         }
1030
1031         /* Create hard link if this dentry corresponds to an already-extracted
1032          * inode.  */
1033         if (inode->i_extracted_file) {
1034                 oldpath = inode->i_extracted_file;
1035                 goto hardlink;
1036         }
1037
1038         /* Skip symlinks unless they can be extracted as reparse points rather
1039          * than created directly.  */
1040         if (inode_is_symlink(inode) && !ctx->supported_features.reparse_points)
1041                 return 0;
1042
1043         /* Create this file or directory unless it's the extraction root, which
1044          * was already created if necessary.  */
1045         if (dentry != ctx->extract_root) {
1046                 ret = extract_inode(path, ctx, inode);
1047                 if (ret)
1048                         return ret;
1049         }
1050
1051         /* Create empty named data streams.  */
1052         if (can_extract_named_data_streams(ctx)) {
1053                 for (u16 i = 0; i < inode->i_num_ads; i++) {
1054                         file_spec_t file_spec;
1055                         struct wim_ads_entry *entry = &inode->i_ads_entries[i];
1056
1057                         if (!ads_entry_is_named_stream(entry))
1058                                 continue;
1059                         if (entry->lte)
1060                                 continue;
1061                         if (ctx->ops->uses_cookies)
1062                                 file_spec.cookie = inode->extract_cookie;
1063                         else
1064                                 file_spec.path = path;
1065                         ret = ctx->ops->extract_named_stream(file_spec,
1066                                                              entry->stream_name,
1067                                                              entry->stream_name_nbytes / 2,
1068                                                              entry->lte, ctx);
1069                         if (ret) {
1070                                 ERROR_WITH_ERRNO("\"%"TS"\": failed to create "
1071                                                  "empty named data stream",
1072                                                  path);
1073                                 return ret;
1074                         }
1075                 }
1076         }
1077
1078         /* Set file attributes (if supported).  */
1079         ret = extract_file_attributes(path, ctx, dentry, 0);
1080         if (ret)
1081                 return ret;
1082
1083         /* Set or remove file short name (if supported).  */
1084         ret = extract_short_name(path, ctx, dentry);
1085         if (ret)
1086                 return ret;
1087
1088         /* If inode has multiple links and hard links are supported in this
1089          * extraction mode and volume, save the path to the extracted file in
1090          * case it's needed to create a hard link.  */
1091         if (unlikely(is_linked_extraction(ctx))) {
1092                 struct wim_lookup_table_entry *unnamed_lte;
1093
1094                 unnamed_lte = inode_unnamed_lte_resolved(dentry->d_inode);
1095                 if (unnamed_lte) {
1096                         unnamed_lte->extracted_file = TSTRDUP(path);
1097                         if (!unnamed_lte->extracted_file)
1098                                 return WIMLIB_ERR_NOMEM;
1099                 }
1100         } else if (inode->i_nlink > 1 && ctx->supported_features.hard_links) {
1101                 inode->i_extracted_file = TSTRDUP(path);
1102                 if (!inode->i_extracted_file)
1103                         return WIMLIB_ERR_NOMEM;
1104         }
1105         return 0;
1106
1107 symlink:
1108         ret = extract_multiimage_symlink(oldpath, path, ctx, dentry);
1109         if (ret)
1110                 return ret;
1111         dentry->was_hardlinked = 1;
1112         return 0;
1113
1114 hardlink:
1115         ret = extract_hardlink(oldpath, path, ctx);
1116         if (ret)
1117                 return ret;
1118         dentry->was_hardlinked = 1;
1119         return 0;
1120 }
1121
1122 /* This is a wrapper around do_dentry_extract_skeleton() that handles building
1123  * the path, doing short name reordering.  This is also idempotent; dentries
1124  * already processed have skeleton_extracted set and no action is taken.  See
1125  * apply_operations.requires_short_name_reordering for more details about short
1126  * name reordering.  */
1127 static int
1128 dentry_extract_skeleton(struct wim_dentry *dentry, void *_ctx)
1129 {
1130         struct apply_ctx *ctx = _ctx;
1131         tchar path[ctx->ops->path_max];
1132         struct wim_dentry *orig_dentry;
1133         struct wim_dentry *other_dentry;
1134         int ret;
1135
1136         if (dentry->skeleton_extracted)
1137                 return 0;
1138
1139         orig_dentry = NULL;
1140         if (ctx->supported_features.short_names
1141             && ctx->ops->requires_short_name_reordering
1142             && !dentry_has_short_name(dentry)
1143             && !dentry->d_inode->i_dos_name_extracted)
1144         {
1145                 inode_for_each_dentry(other_dentry, dentry->d_inode) {
1146                         if (dentry_has_short_name(other_dentry)
1147                             && !other_dentry->skeleton_extracted)
1148                         {
1149                                 DEBUG("Creating %"TS" before %"TS" "
1150                                       "to guarantee correct DOS name extraction",
1151                                       dentry_full_path(other_dentry),
1152                                       dentry_full_path(dentry));
1153                                 orig_dentry = dentry;
1154                                 dentry = other_dentry;
1155                                 break;
1156                         }
1157                 }
1158         }
1159 again:
1160         if (!build_extraction_path(path, dentry, ctx))
1161                 return 0;
1162         ret = do_dentry_extract_skeleton(path, dentry, ctx);
1163         if (ret)
1164                 return ret;
1165
1166         dentry->skeleton_extracted = 1;
1167
1168         if (orig_dentry) {
1169                 dentry = orig_dentry;
1170                 orig_dentry = NULL;
1171                 goto again;
1172         }
1173         dentry->d_inode->i_dos_name_extracted = 1;
1174         return 0;
1175 }
1176
1177 static int
1178 dentry_extract_dir_skeleton(struct wim_dentry *dentry, void *_ctx)
1179 {
1180         if (dentry->d_inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY)
1181                 return dentry_extract_skeleton(dentry, _ctx);
1182         return 0;
1183 }
1184
1185 /* Create a file or directory, then immediately extract all streams.  This
1186  * assumes that WIMLIB_EXTRACT_FLAG_SEQUENTIAL is not specified, since the WIM
1187  * may not be read sequentially by this function.  */
1188 static int
1189 dentry_extract(struct wim_dentry *dentry, void *_ctx)
1190 {
1191         struct apply_ctx *ctx = _ctx;
1192         tchar path[ctx->ops->path_max];
1193         int ret;
1194
1195         ret = dentry_extract_skeleton(dentry, ctx);
1196         if (ret)
1197                 return ret;
1198
1199         if (!build_extraction_path(path, dentry, ctx))
1200                 return 0;
1201
1202         return extract_streams(path, ctx, dentry, NULL, NULL);
1203 }
1204
1205 /* Extract all instances of the stream @lte that are being extracted in this
1206  * call of extract_tree().  @can_seek specifies whether the WIM file descriptor
1207  * is seekable or not (e.g. is a pipe).  If not and the stream needs to be
1208  * extracted multiple times, it is extracted to a temporary file first.
1209  *
1210  * This is intended for use with sequential extraction of a WIM image
1211  * (WIMLIB_EXTRACT_FLAG_SEQUENTIAL specified).  */
1212 static int
1213 extract_stream_instances(struct wim_lookup_table_entry *lte,
1214                          struct apply_ctx *ctx, bool can_seek)
1215 {
1216         struct wim_dentry **lte_dentries;
1217         struct wim_lookup_table_entry *lte_tmp = NULL;
1218         struct wim_lookup_table_entry *lte_override;
1219         tchar *stream_tmp_filename = NULL;
1220         tchar path[ctx->ops->path_max];
1221         unsigned i;
1222         int ret;
1223
1224         if (lte->out_refcnt <= ARRAY_LEN(lte->inline_lte_dentries))
1225                 lte_dentries = lte->inline_lte_dentries;
1226         else
1227                 lte_dentries = lte->lte_dentries;
1228
1229         if (likely(can_seek || lte->out_refcnt < 2)) {
1230                 lte_override = lte;
1231         } else {
1232                 /* Need to extract stream to temporary file.  */
1233                 struct filedes fd;
1234                 int raw_fd;
1235
1236                 stream_tmp_filename = ttempnam(NULL, T("wimlib"));
1237                 if (!stream_tmp_filename) {
1238                         ERROR_WITH_ERRNO("Failed to create temporary filename");
1239                         ret = WIMLIB_ERR_OPEN;
1240                         goto out;
1241                 }
1242
1243                 lte_tmp = memdup(lte, sizeof(struct wim_lookup_table_entry));
1244                 if (!lte_tmp) {
1245                         ret = WIMLIB_ERR_NOMEM;
1246                         goto out_free_stream_tmp_filename;
1247                 }
1248                 lte_tmp->resource_location = RESOURCE_IN_FILE_ON_DISK;
1249                 lte_tmp->file_on_disk = stream_tmp_filename;
1250                 lte_override = lte_tmp;
1251
1252                 raw_fd = topen(stream_tmp_filename,
1253                                O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0600);
1254                 if (raw_fd < 0) {
1255                         ERROR_WITH_ERRNO("Failed to open temporary file");
1256                         ret = WIMLIB_ERR_OPEN;
1257                         goto out_free_lte_tmp;
1258                 }
1259                 filedes_init(&fd, raw_fd);
1260                 ret = extract_wim_resource_to_fd(lte, &fd,
1261                                                  wim_resource_size(lte));
1262                 if (filedes_close(&fd) && !ret)
1263                         ret = WIMLIB_ERR_WRITE;
1264                 if (ret)
1265                         goto out_unlink_stream_tmp_file;
1266         }
1267
1268         /* Extract all instances of the stream, reading either from the stream
1269          * in the WIM file or from the temporary file containing the stream.
1270          * dentry->tmp_flag is used to ensure that each dentry is processed only
1271          * once regardless of how many times this stream appears in the streams
1272          * of the corresponding inode.  */
1273         for (i = 0; i < lte->out_refcnt; i++) {
1274                 struct wim_dentry *dentry = lte_dentries[i];
1275
1276                 if (dentry->tmp_flag)
1277                         continue;
1278                 if (!build_extraction_path(path, dentry, ctx))
1279                         continue;
1280                 ret = extract_streams(path, ctx, dentry,
1281                                       lte, lte_override);
1282                 if (ret)
1283                         goto out_clear_tmp_flags;
1284                 dentry->tmp_flag = 1;
1285         }
1286         ret = 0;
1287 out_clear_tmp_flags:
1288         for (i = 0; i < lte->out_refcnt; i++)
1289                 lte_dentries[i]->tmp_flag = 0;
1290 out_unlink_stream_tmp_file:
1291         if (stream_tmp_filename)
1292                 tunlink(stream_tmp_filename);
1293 out_free_lte_tmp:
1294         FREE(lte_tmp);
1295 out_free_stream_tmp_filename:
1296         FREE(stream_tmp_filename);
1297 out:
1298         return ret;
1299 }
1300
1301 /* Extracts a list of streams (ctx.stream_list), assuming that the directory
1302  * structure and empty files were already created.  This relies on the
1303  * per-`struct wim_lookup_table_entry' list of dentries that reference each
1304  * stream that was constructed earlier.  Streams are extracted exactly in the
1305  * order of the stream list; however, unless the WIM's file descriptor is
1306  * detected to be non-seekable, streams may be read from the WIM file more than
1307  * one time if multiple copies need to be extracted.  */
1308 static int
1309 extract_stream_list(struct apply_ctx *ctx)
1310 {
1311         struct wim_lookup_table_entry *lte;
1312         bool can_seek;
1313         int ret;
1314
1315         can_seek = (lseek(ctx->wim->in_fd.fd, 0, SEEK_CUR) != -1);
1316         list_for_each_entry(lte, &ctx->stream_list, extraction_list) {
1317                 ret = extract_stream_instances(lte, ctx, can_seek);
1318                 if (ret)
1319                         return ret;
1320         }
1321         return 0;
1322 }
1323
1324 #define PWM_ALLOW_WIM_HDR 0x00001
1325 #define PWM_SILENT_EOF    0x00002
1326
1327 /* Read the header from a stream in a pipable WIM.  */
1328 static int
1329 read_pwm_stream_header(WIMStruct *pwm, struct wim_lookup_table_entry *lte,
1330                        int flags, struct wim_header_disk *hdr_ret)
1331 {
1332         union {
1333                 struct pwm_stream_hdr stream_hdr;
1334                 struct wim_header_disk pwm_hdr;
1335         } buf;
1336         int ret;
1337
1338         ret = full_read(&pwm->in_fd, &buf.stream_hdr, sizeof(buf.stream_hdr));
1339         if (ret)
1340                 goto read_error;
1341
1342         if ((flags & PWM_ALLOW_WIM_HDR) && buf.stream_hdr.magic == PWM_MAGIC) {
1343                 BUILD_BUG_ON(sizeof(buf.pwm_hdr) < sizeof(buf.stream_hdr));
1344                 ret = full_read(&pwm->in_fd, &buf.stream_hdr + 1,
1345                                 sizeof(buf.pwm_hdr) - sizeof(buf.stream_hdr));
1346
1347                 if (ret)
1348                         goto read_error;
1349                 lte->resource_location = RESOURCE_NONEXISTENT;
1350                 memcpy(hdr_ret, &buf.pwm_hdr, sizeof(buf.pwm_hdr));
1351                 return 0;
1352         }
1353
1354         if (buf.stream_hdr.magic != PWM_STREAM_MAGIC) {
1355                 ERROR("Data read on pipe is invalid (expected stream header).");
1356                 return WIMLIB_ERR_INVALID_PIPABLE_WIM;
1357         }
1358
1359         lte->resource_entry.original_size = le64_to_cpu(buf.stream_hdr.uncompressed_size);
1360         copy_hash(lte->hash, buf.stream_hdr.hash);
1361         lte->resource_entry.flags = le32_to_cpu(buf.stream_hdr.flags);
1362         lte->resource_entry.offset = pwm->in_fd.offset;
1363         lte->resource_location = RESOURCE_IN_WIM;
1364         lte->wim = pwm;
1365         if (lte->resource_entry.flags & WIM_RESHDR_FLAG_COMPRESSED) {
1366                 lte->compression_type = pwm->compression_type;
1367                 lte->resource_entry.size = 0;
1368         } else {
1369                 lte->compression_type = WIMLIB_COMPRESSION_TYPE_NONE;
1370                 lte->resource_entry.size = lte->resource_entry.original_size;
1371         }
1372         lte->is_pipable = 1;
1373         return 0;
1374
1375 read_error:
1376         if (ret != WIMLIB_ERR_UNEXPECTED_END_OF_FILE || !(flags & PWM_SILENT_EOF))
1377                 ERROR_WITH_ERRNO("Error reading pipable WIM from pipe");
1378         return ret;
1379 }
1380
1381 /* Skip over an unneeded stream in a pipable WIM being read from a pipe.  */
1382 static int
1383 skip_pwm_stream(struct wim_lookup_table_entry *lte)
1384 {
1385         return read_partial_wim_resource(lte, wim_resource_size(lte),
1386                                          NULL, NULL,
1387                                          WIMLIB_READ_RESOURCE_FLAG_SEEK_ONLY,
1388                                          0);
1389 }
1390
1391 static int
1392 extract_streams_from_pipe(struct apply_ctx *ctx)
1393 {
1394         struct wim_lookup_table_entry *found_lte;
1395         struct wim_lookup_table_entry *needed_lte;
1396         struct wim_lookup_table *lookup_table;
1397         struct wim_header_disk pwm_hdr;
1398         int ret;
1399         int pwm_flags;
1400
1401         ret = WIMLIB_ERR_NOMEM;
1402         found_lte = new_lookup_table_entry();
1403         if (!found_lte)
1404                 goto out;
1405
1406         lookup_table = ctx->wim->lookup_table;
1407         pwm_flags = PWM_ALLOW_WIM_HDR;
1408         if ((ctx->extract_flags & WIMLIB_EXTRACT_FLAG_RESUME))
1409                 pwm_flags |= PWM_SILENT_EOF;
1410         memcpy(ctx->progress.extract.guid, ctx->wim->hdr.guid, WIM_GID_LEN);
1411         ctx->progress.extract.part_number = ctx->wim->hdr.part_number;
1412         ctx->progress.extract.total_parts = ctx->wim->hdr.total_parts;
1413         if (ctx->progress_func)
1414                 ctx->progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN,
1415                                    &ctx->progress);
1416         while (ctx->num_streams_remaining) {
1417                 ret = read_pwm_stream_header(ctx->wim, found_lte, pwm_flags,
1418                                              &pwm_hdr);
1419                 if (ret) {
1420                         if (ret == WIMLIB_ERR_UNEXPECTED_END_OF_FILE &&
1421                             (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_RESUME))
1422                         {
1423                                 goto resume_done;
1424                         }
1425                         goto out_free_found_lte;
1426                 }
1427
1428                 if ((found_lte->resource_location != RESOURCE_NONEXISTENT)
1429                     && !(found_lte->resource_entry.flags & WIM_RESHDR_FLAG_METADATA)
1430                     && (needed_lte = __lookup_resource(lookup_table, found_lte->hash))
1431                     && (needed_lte->out_refcnt))
1432                 {
1433                         copy_resource_entry(&needed_lte->resource_entry,
1434                                             &found_lte->resource_entry);
1435                         needed_lte->resource_location = found_lte->resource_location;
1436                         needed_lte->wim               = found_lte->wim;
1437                         needed_lte->compression_type  = found_lte->compression_type;
1438                         needed_lte->is_pipable        = found_lte->is_pipable;
1439
1440                         ret = extract_stream_instances(needed_lte, ctx, false);
1441                         if (ret)
1442                                 goto out_free_found_lte;
1443                         ctx->num_streams_remaining--;
1444                 } else if (found_lte->resource_location != RESOURCE_NONEXISTENT) {
1445                         ret = skip_pwm_stream(found_lte);
1446                         if (ret)
1447                                 goto out_free_found_lte;
1448                 } else {
1449                         u16 part_number = le16_to_cpu(pwm_hdr.part_number);
1450                         u16 total_parts = le16_to_cpu(pwm_hdr.total_parts);
1451
1452                         if (part_number != ctx->progress.extract.part_number ||
1453                             total_parts != ctx->progress.extract.total_parts ||
1454                             memcmp(pwm_hdr.guid, ctx->progress.extract.guid,
1455                                    WIM_GID_LEN))
1456                         {
1457                                 ctx->progress.extract.part_number = part_number;
1458                                 ctx->progress.extract.total_parts = total_parts;
1459                                 memcpy(ctx->progress.extract.guid,
1460                                        pwm_hdr.guid, WIM_GID_LEN);
1461                                 if (ctx->progress_func) {
1462                                         ctx->progress_func(
1463                                                 WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN,
1464                                                            &ctx->progress);
1465                                 }
1466
1467                         }
1468                 }
1469         }
1470         ret = 0;
1471 out_free_found_lte:
1472         free_lookup_table_entry(found_lte);
1473 out:
1474         return ret;
1475
1476 resume_done:
1477         /* TODO */
1478         return 0;
1479 }
1480
1481 /* Finish extracting a file, directory, or symbolic link by setting file
1482  * security and timestamps.  */
1483 static int
1484 dentry_extract_final(struct wim_dentry *dentry, void *_ctx)
1485 {
1486         struct apply_ctx *ctx = _ctx;
1487         int ret;
1488         tchar path[ctx->ops->path_max];
1489
1490         if (!build_extraction_path(path, dentry, ctx))
1491                 return 0;
1492
1493         ret = extract_security(path, ctx, dentry);
1494         if (ret)
1495                 return ret;
1496
1497         if (ctx->ops->requires_final_set_attributes_pass) {
1498                 /* Set file attributes (if supported).  */
1499                 ret = extract_file_attributes(path, ctx, dentry, 1);
1500                 if (ret)
1501                         return ret;
1502         }
1503
1504         return extract_timestamps(path, ctx, dentry);
1505 }
1506
1507 /*
1508  * Extract a WIM dentry to standard output.
1509  *
1510  * This obviously doesn't make sense in all cases.  We return an error if the
1511  * dentry does not correspond to a regular file.  Otherwise we extract the
1512  * unnamed data stream only.
1513  */
1514 static int
1515 extract_dentry_to_stdout(struct wim_dentry *dentry)
1516 {
1517         int ret = 0;
1518         if (dentry->d_inode->i_attributes & (FILE_ATTRIBUTE_REPARSE_POINT |
1519                                              FILE_ATTRIBUTE_DIRECTORY))
1520         {
1521                 ERROR("\"%"TS"\" is not a regular file and therefore cannot be "
1522                       "extracted to standard output", dentry_full_path(dentry));
1523                 ret = WIMLIB_ERR_NOT_A_REGULAR_FILE;
1524         } else {
1525                 struct wim_lookup_table_entry *lte;
1526
1527                 lte = inode_unnamed_lte_resolved(dentry->d_inode);
1528                 if (lte) {
1529                         struct filedes _stdout;
1530                         filedes_init(&_stdout, STDOUT_FILENO);
1531                         ret = extract_wim_resource_to_fd(lte, &_stdout,
1532                                                          wim_resource_size(lte));
1533                 }
1534         }
1535         return ret;
1536 }
1537
1538 #ifdef __WIN32__
1539 static const utf16lechar replacement_char = cpu_to_le16(0xfffd);
1540 #else
1541 static const utf16lechar replacement_char = cpu_to_le16('?');
1542 #endif
1543
1544 static bool
1545 file_name_valid(utf16lechar *name, size_t num_chars, bool fix)
1546 {
1547         size_t i;
1548
1549         if (num_chars == 0)
1550                 return true;
1551         for (i = 0; i < num_chars; i++) {
1552                 switch (name[i]) {
1553         #ifdef __WIN32__
1554                 case cpu_to_le16('\\'):
1555                 case cpu_to_le16(':'):
1556                 case cpu_to_le16('*'):
1557                 case cpu_to_le16('?'):
1558                 case cpu_to_le16('"'):
1559                 case cpu_to_le16('<'):
1560                 case cpu_to_le16('>'):
1561                 case cpu_to_le16('|'):
1562         #endif
1563                 case cpu_to_le16('/'):
1564                 case cpu_to_le16('\0'):
1565                         if (fix)
1566                                 name[i] = replacement_char;
1567                         else
1568                                 return false;
1569                 }
1570         }
1571
1572 #ifdef __WIN32__
1573         if (name[num_chars - 1] == cpu_to_le16(' ') ||
1574             name[num_chars - 1] == cpu_to_le16('.'))
1575         {
1576                 if (fix)
1577                         name[num_chars - 1] = replacement_char;
1578                 else
1579                         return false;
1580         }
1581 #endif
1582         return true;
1583 }
1584
1585 static bool
1586 dentry_is_dot_or_dotdot(const struct wim_dentry *dentry)
1587 {
1588         const utf16lechar *file_name = dentry->file_name;
1589         return file_name != NULL &&
1590                 file_name[0] == cpu_to_le16('.') &&
1591                 (file_name[1] == cpu_to_le16('\0') ||
1592                  (file_name[1] == cpu_to_le16('.') &&
1593                   file_name[2] == cpu_to_le16('\0')));
1594 }
1595
1596 static int
1597 dentry_mark_skipped(struct wim_dentry *dentry, void *_ignore)
1598 {
1599         dentry->extraction_skipped = 1;
1600         return 0;
1601 }
1602
1603 /*
1604  * dentry_calculate_extraction_path-
1605  *
1606  * Calculate the actual filename component at which a WIM dentry will be
1607  * extracted, handling invalid filenames "properly".
1608  *
1609  * dentry->extraction_name usually will be set the same as dentry->file_name (on
1610  * UNIX, converted into the platform's multibyte encoding).  However, if the
1611  * file name contains characters that are not valid on the current platform or
1612  * has some other format that is not valid, leave dentry->extraction_name as
1613  * NULL and set dentry->extraction_skipped to indicate that this dentry should
1614  * not be extracted, unless the appropriate flag
1615  * WIMLIB_EXTRACT_FLAG_REPLACE_INVALID_FILENAMES is set in the extract flags, in
1616  * which case a substitute filename will be created and set instead.
1617  *
1618  * Conflicts with case-insensitive names on Windows are handled similarly; see
1619  * below.
1620  */
1621 static int
1622 dentry_calculate_extraction_path(struct wim_dentry *dentry, void *_args)
1623 {
1624         struct apply_ctx *ctx = _args;
1625         int ret;
1626
1627         if (dentry == ctx->extract_root || dentry->extraction_skipped)
1628                 return 0;
1629
1630         if (!dentry_is_supported(dentry, &ctx->supported_features))
1631                 goto skip_dentry;
1632
1633         if (dentry_is_dot_or_dotdot(dentry)) {
1634                 /* WIM files shouldn't contain . or .. entries.  But if they are
1635                  * there, don't attempt to extract them. */
1636                 WARNING("Skipping extraction of unexpected . or .. file "
1637                         "\"%"TS"\"", dentry_full_path(dentry));
1638                 goto skip_dentry;
1639         }
1640
1641 #ifdef __WIN32__
1642         if (!ctx->ops->supports_case_sensitive_filenames)
1643         {
1644                 struct wim_dentry *other;
1645                 list_for_each_entry(other, &dentry->case_insensitive_conflict_list,
1646                                     case_insensitive_conflict_list)
1647                 {
1648                         if (ctx->extract_flags &
1649                             WIMLIB_EXTRACT_FLAG_ALL_CASE_CONFLICTS) {
1650                                 WARNING("\"%"TS"\" has the same "
1651                                         "case-insensitive name as "
1652                                         "\"%"TS"\"; extracting "
1653                                         "dummy name instead",
1654                                         dentry_full_path(dentry),
1655                                         dentry_full_path(other));
1656                                 goto out_replace;
1657                         } else {
1658                                 WARNING("Not extracting \"%"TS"\": "
1659                                         "has same case-insensitive "
1660                                         "name as \"%"TS"\"",
1661                                         dentry_full_path(dentry),
1662                                         dentry_full_path(other));
1663                                 goto skip_dentry;
1664                         }
1665                 }
1666         }
1667 #else   /* __WIN32__ */
1668         wimlib_assert(ctx->ops->supports_case_sensitive_filenames);
1669 #endif  /* !__WIN32__ */
1670
1671         if (file_name_valid(dentry->file_name, dentry->file_name_nbytes / 2, false)) {
1672 #ifdef __WIN32__
1673                 dentry->extraction_name = dentry->file_name;
1674                 dentry->extraction_name_nchars = dentry->file_name_nbytes / 2;
1675                 return 0;
1676 #else
1677                 return utf16le_to_tstr(dentry->file_name,
1678                                        dentry->file_name_nbytes,
1679                                        &dentry->extraction_name,
1680                                        &dentry->extraction_name_nchars);
1681 #endif
1682         } else {
1683                 if (ctx->extract_flags & WIMLIB_EXTRACT_FLAG_REPLACE_INVALID_FILENAMES)
1684                 {
1685                         WARNING("\"%"TS"\" has an invalid filename "
1686                                 "that is not supported on this platform; "
1687                                 "extracting dummy name instead",
1688                                 dentry_full_path(dentry));
1689                         goto out_replace;
1690                 } else {
1691                         WARNING("Not extracting \"%"TS"\": has an invalid filename "
1692                                 "that is not supported on this platform",
1693                                 dentry_full_path(dentry));
1694                         goto skip_dentry;
1695                 }
1696         }
1697
1698 out_replace:
1699         {
1700                 utf16lechar utf16_name_copy[dentry->file_name_nbytes / 2];
1701
1702                 memcpy(utf16_name_copy, dentry->file_name, dentry->file_name_nbytes);
1703                 file_name_valid(utf16_name_copy, dentry->file_name_nbytes / 2, true);
1704
1705                 tchar *tchar_name;
1706                 size_t tchar_nchars;
1707         #ifdef __WIN32__
1708                 tchar_name = utf16_name_copy;
1709                 tchar_nchars = dentry->file_name_nbytes / 2;
1710         #else
1711                 ret = utf16le_to_tstr(utf16_name_copy,
1712                                       dentry->file_name_nbytes,
1713                                       &tchar_name, &tchar_nchars);
1714                 if (ret)
1715                         return ret;
1716         #endif
1717                 size_t fixed_name_num_chars = tchar_nchars;
1718                 tchar fixed_name[tchar_nchars + 50];
1719
1720                 tmemcpy(fixed_name, tchar_name, tchar_nchars);
1721                 fixed_name_num_chars += tsprintf(fixed_name + tchar_nchars,
1722                                                  T(" (invalid filename #%lu)"),
1723                                                  ++ctx->invalid_sequence);
1724         #ifndef __WIN32__
1725                 FREE(tchar_name);
1726         #endif
1727                 dentry->extraction_name = memdup(fixed_name,
1728                                                  2 * fixed_name_num_chars + 2);
1729                 if (!dentry->extraction_name)
1730                         return WIMLIB_ERR_NOMEM;
1731                 dentry->extraction_name_nchars = fixed_name_num_chars;
1732         }
1733         return 0;
1734
1735 skip_dentry:
1736         for_dentry_in_tree(dentry, dentry_mark_skipped, NULL);
1737         return 0;
1738 }
1739
1740 /* Clean up dentry and inode structure after extraction.  */
1741 static int
1742 dentry_reset_needs_extraction(struct wim_dentry *dentry, void *_ignore)
1743 {
1744         struct wim_inode *inode = dentry->d_inode;
1745
1746         dentry->extraction_skipped = 0;
1747         dentry->was_hardlinked = 0;
1748         dentry->skeleton_extracted = 0;
1749         inode->i_visited = 0;
1750         FREE(inode->i_extracted_file);
1751         inode->i_extracted_file = NULL;
1752         inode->i_dos_name_extracted = 0;
1753         if ((void*)dentry->extraction_name != (void*)dentry->file_name)
1754                 FREE(dentry->extraction_name);
1755         dentry->extraction_name = NULL;
1756         return 0;
1757 }
1758
1759 /* Tally features necessary to extract a dentry and the corresponding inode.  */
1760 static int
1761 dentry_tally_features(struct wim_dentry *dentry, void *_features)
1762 {
1763         struct wim_features *features = _features;
1764         struct wim_inode *inode = dentry->d_inode;
1765
1766         if (inode->i_attributes & FILE_ATTRIBUTE_ARCHIVE)
1767                 features->archive_files++;
1768         if (inode->i_attributes & FILE_ATTRIBUTE_HIDDEN)
1769                 features->hidden_files++;
1770         if (inode->i_attributes & FILE_ATTRIBUTE_SYSTEM)
1771                 features->system_files++;
1772         if (inode->i_attributes & FILE_ATTRIBUTE_COMPRESSED)
1773                 features->compressed_files++;
1774         if (inode->i_attributes & FILE_ATTRIBUTE_ENCRYPTED) {
1775                 if (inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY)
1776                         features->encrypted_directories++;
1777                 else
1778                         features->encrypted_files++;
1779         }
1780         if (inode->i_attributes & FILE_ATTRIBUTE_NOT_CONTENT_INDEXED)
1781                 features->not_context_indexed_files++;
1782         if (inode->i_attributes & FILE_ATTRIBUTE_SPARSE_FILE)
1783                 features->sparse_files++;
1784         if (inode_has_named_stream(inode))
1785                 features->named_data_streams++;
1786         if (inode->i_visited)
1787                 features->hard_links++;
1788         if (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT) {
1789                 features->reparse_points++;
1790                 if (inode_is_symlink(inode))
1791                         features->symlink_reparse_points++;
1792                 else
1793                         features->other_reparse_points++;
1794         }
1795         if (inode->i_security_id != -1)
1796                 features->security_descriptors++;
1797         if (dentry->short_name_nbytes)
1798                 features->short_names++;
1799         if (inode_has_unix_data(inode))
1800                 features->unix_data++;
1801         inode->i_visited = 1;
1802         return 0;
1803 }
1804
1805 static int
1806 dentry_clear_inode_visited(struct wim_dentry *dentry, void *_ignore)
1807 {
1808         dentry->d_inode->i_visited = 0;
1809         return 0;
1810 }
1811
1812 /* Tally the features necessary to extract a dentry tree.  */
1813 static void
1814 dentry_tree_get_features(struct wim_dentry *root, struct wim_features *features)
1815 {
1816         memset(features, 0, sizeof(struct wim_features));
1817         for_dentry_in_tree(root, dentry_tally_features, features);
1818         for_dentry_in_tree(root, dentry_clear_inode_visited, NULL);
1819 }
1820
1821 static u32
1822 compute_supported_attributes_mask(const struct wim_features *supported_features)
1823 {
1824         u32 mask = ~(u32)0;
1825
1826         if (!supported_features->archive_files)
1827                 mask &= ~FILE_ATTRIBUTE_ARCHIVE;
1828
1829         if (!supported_features->hidden_files)
1830                 mask &= ~FILE_ATTRIBUTE_HIDDEN;
1831
1832         if (!supported_features->system_files)
1833                 mask &= ~FILE_ATTRIBUTE_SYSTEM;
1834
1835         if (!supported_features->not_context_indexed_files)
1836                 mask &= ~FILE_ATTRIBUTE_NOT_CONTENT_INDEXED;
1837
1838         if (!supported_features->compressed_files)
1839                 mask &= ~FILE_ATTRIBUTE_COMPRESSED;
1840
1841         if (!supported_features->sparse_files)
1842                 mask &= ~FILE_ATTRIBUTE_SPARSE_FILE;
1843
1844         if (!supported_features->reparse_points)
1845                 mask &= ~FILE_ATTRIBUTE_REPARSE_POINT;
1846
1847         return mask;
1848 }
1849
1850 static int
1851 do_feature_check(const struct wim_features *required_features,
1852                  const struct wim_features *supported_features,
1853                  int extract_flags,
1854                  const struct apply_operations *ops,
1855                  const tchar *wim_source_path)
1856 {
1857         const tchar *loc;
1858         const tchar *mode = T("this extraction mode");
1859
1860         if (wim_source_path[0] == '\0')
1861                 loc = T("the WIM image");
1862         else
1863                 loc = wim_source_path;
1864
1865         /* We're an archive program, so theoretically we can do what we want
1866          * with FILE_ATTRIBUTE_ARCHIVE (which is a dumb flag anyway).  Don't
1867          * bother the user about it.  */
1868 #if 0
1869         if (required_features->archive_files && !supported_features->archive_files)
1870         {
1871                 WARNING(
1872           "%lu files in %"TS" are marked as archived, but this attribute\n"
1873 "          is not supported in %"TS".",
1874                         required_features->archive_files, loc, mode);
1875         }
1876 #endif
1877
1878         if (required_features->hidden_files && !supported_features->hidden_files)
1879         {
1880                 WARNING(
1881           "%lu files in %"TS" are marked as hidden, but this\n"
1882 "          attribute is not supported in %"TS".",
1883                         required_features->hidden_files, loc, mode);
1884         }
1885
1886         if (required_features->system_files && !supported_features->system_files)
1887         {
1888                 WARNING(
1889           "%lu files in %"TS" are marked as system files,\n"
1890 "          but this attribute is not supported in %"TS".",
1891                         required_features->system_files, loc, mode);
1892         }
1893
1894         if (required_features->compressed_files && !supported_features->compressed_files)
1895         {
1896                 WARNING(
1897           "%lu files in %"TS" are marked as being transparently\n"
1898 "          compressed, but transparent compression is not supported in\n"
1899 "          %"TS".  These files will be extracted as uncompressed.",
1900                         required_features->compressed_files, loc, mode);
1901         }
1902
1903         if (required_features->encrypted_files && !supported_features->encrypted_files)
1904         {
1905                 WARNING(
1906           "%lu files in %"TS" are marked as being encrypted,\n"
1907 "           but encryption is not supported in %"TS".  These files\n"
1908 "           will not be extracted.",
1909                         required_features->encrypted_files, loc, mode);
1910         }
1911
1912         if (required_features->encrypted_directories &&
1913             !supported_features->encrypted_directories)
1914         {
1915                 WARNING(
1916           "%lu directories in %"TS" are marked as being encrypted,\n"
1917 "           but encryption is not supported in %"TS".\n"
1918 "           These directories will be extracted as unencrypted.",
1919                         required_features->encrypted_directories, loc, mode);
1920         }
1921
1922         if (required_features->not_context_indexed_files &&
1923             !supported_features->not_context_indexed_files)
1924         {
1925                 WARNING(
1926           "%lu files in %"TS" are marked as not content indexed,\n"
1927 "          but this attribute is not supported in %"TS".",
1928                         required_features->not_context_indexed_files, loc, mode);
1929         }
1930
1931         if (required_features->sparse_files && !supported_features->sparse_files)
1932         {
1933                 WARNING(
1934           "%lu files in %"TS" are marked as sparse, but creating\n"
1935 "           sparse files is not supported in %"TS".  These files\n"
1936 "           will be extracted as non-sparse.",
1937                         required_features->sparse_files, loc, mode);
1938         }
1939
1940         if (required_features->named_data_streams &&
1941             !supported_features->named_data_streams)
1942         {
1943                 WARNING(
1944           "%lu files in %"TS" contain one or more alternate (named)\n"
1945 "          data streams, which are not supported in %"TS".\n"
1946 "          Alternate data streams will NOT be extracted.",
1947                         required_features->named_data_streams, loc, mode);
1948         }
1949
1950         if (unlikely(extract_flags & (WIMLIB_EXTRACT_FLAG_HARDLINK |
1951                                       WIMLIB_EXTRACT_FLAG_SYMLINK)) &&
1952             required_features->named_data_streams &&
1953             supported_features->named_data_streams)
1954         {
1955                 WARNING(
1956           "%lu files in %"TS" contain one or more alternate (named)\n"
1957 "          data streams, which are not supported in linked extraction mode.\n"
1958 "          Alternate data streams will NOT be extracted.",
1959                         required_features->named_data_streams, loc);
1960         }
1961
1962         if (required_features->hard_links && !supported_features->hard_links)
1963         {
1964                 WARNING(
1965           "%lu files in %"TS" are hard links, but hard links are\n"
1966 "          not supported in %"TS".  Hard links will be extracted as\n"
1967 "          duplicate copies of the linked files.",
1968                         required_features->hard_links, loc, mode);
1969         }
1970
1971         if (required_features->reparse_points && !supported_features->reparse_points)
1972         {
1973                 if (supported_features->symlink_reparse_points) {
1974                         if (required_features->other_reparse_points) {
1975                                 WARNING(
1976           "%lu files in %"TS" are reparse points that are neither\n"
1977 "          symbolic links nor junction points and are not supported in\n"
1978 "          %"TS".  These reparse points will not be extracted.",
1979                                         required_features->other_reparse_points, loc,
1980                                         mode);
1981                         }
1982                 } else {
1983                         WARNING(
1984           "%lu files in %"TS" are reparse points, which are\n"
1985 "          not supported in %"TS" and will not be extracted.",
1986                                 required_features->reparse_points, loc, mode);
1987                 }
1988         }
1989
1990         if (required_features->security_descriptors &&
1991             !supported_features->security_descriptors)
1992         {
1993                 WARNING(
1994           "%lu files in %"TS" have Windows NT security descriptors,\n"
1995 "          but extracting security descriptors is not supported in\n"
1996 "          %"TS".  No security descriptors will be extracted.",
1997                         required_features->security_descriptors, loc, mode);
1998         }
1999
2000         if (required_features->short_names && !supported_features->short_names)
2001         {
2002                 WARNING(
2003           "%lu files in %"TS" have short (DOS) names, but\n"
2004 "          extracting short names is not supported in %"TS".\n"
2005 "          Short names will not be extracted.\n",
2006                         required_features->short_names, loc, mode);
2007         }
2008
2009         if ((extract_flags & WIMLIB_EXTRACT_FLAG_UNIX_DATA) &&
2010             required_features->unix_data && !supported_features->unix_data)
2011         {
2012                 ERROR("Extracting UNIX data is not supported in %"TS, mode);
2013                 return WIMLIB_ERR_UNSUPPORTED;
2014         }
2015         if ((extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_SHORT_NAMES) &&
2016             required_features->short_names && !supported_features->short_names)
2017         {
2018                 ERROR("Extracting short names is not supported in %"TS"", mode);
2019                 return WIMLIB_ERR_UNSUPPORTED;
2020         }
2021         if ((extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_TIMESTAMPS) &&
2022             !ops->set_timestamps)
2023         {
2024                 ERROR("Extracting timestamps is not supported in %"TS"", mode);
2025                 return WIMLIB_ERR_UNSUPPORTED;
2026         }
2027         if (((extract_flags & (WIMLIB_EXTRACT_FLAG_STRICT_ACLS |
2028                                WIMLIB_EXTRACT_FLAG_UNIX_DATA))
2029              == WIMLIB_EXTRACT_FLAG_STRICT_ACLS) &&
2030             required_features->security_descriptors &&
2031             !supported_features->security_descriptors)
2032         {
2033                 ERROR("Extracting security descriptors is not supported in %"TS, mode);
2034                 return WIMLIB_ERR_UNSUPPORTED;
2035         }
2036
2037         if ((extract_flags & WIMLIB_EXTRACT_FLAG_HARDLINK) &&
2038             !supported_features->hard_links)
2039         {
2040                 ERROR("Hard link extraction mode requested, but "
2041                       "%"TS" does not support hard links!", mode);
2042                 return WIMLIB_ERR_UNSUPPORTED;
2043         }
2044
2045         if ((extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS) &&
2046             required_features->symlink_reparse_points &&
2047             !(supported_features->symlink_reparse_points ||
2048               supported_features->reparse_points))
2049         {
2050                 ERROR("Extracting symbolic links is not supported in %"TS, mode);
2051                 return WIMLIB_ERR_UNSUPPORTED;
2052         }
2053
2054         if ((extract_flags & WIMLIB_EXTRACT_FLAG_SYMLINK) &&
2055             !supported_features->symlink_reparse_points)
2056         {
2057                 ERROR("Symbolic link extraction mode requested, but "
2058                       "%"TS" does not support symbolic "
2059                       "links!", mode);
2060                 return WIMLIB_ERR_UNSUPPORTED;
2061         }
2062         return 0;
2063 }
2064
2065 static void
2066 do_extract_warnings(struct apply_ctx *ctx)
2067 {
2068         if (ctx->partial_security_descriptors == 0 &&
2069             ctx->no_security_descriptors == 0)
2070                 return;
2071
2072         WARNING("Extraction of \"%"TS"\" complete, but with one or more warnings:",
2073                 ctx->target);
2074         if (ctx->partial_security_descriptors != 0) {
2075                 WARNING("- Could only partially set the security descriptor\n"
2076                         "            on %lu files or directories.",
2077                         ctx->partial_security_descriptors);
2078         }
2079         if (ctx->no_security_descriptors != 0) {
2080                 WARNING("- Could not set security descriptor at all\n"
2081                         "            on %lu files or directories.",
2082                         ctx->no_security_descriptors);
2083         }
2084 #ifdef __WIN32__
2085         WARNING("To fully restore all security descriptors, run the program\n"
2086                 "          with Administrator rights.");
2087 #endif
2088 }
2089
2090 /*
2091  * extract_tree - Extract a file or directory tree from the currently selected
2092  *                WIM image.
2093  *
2094  * @wim:        WIMStruct for the WIM file, with the desired image selected
2095  *              (as wim->current_image).
2096  *
2097  * @wim_source_path:
2098  *              "Canonical" (i.e. no leading or trailing slashes, path
2099  *              separators WIM_PATH_SEPARATOR) path inside the WIM image to
2100  *              extract.  An empty string means the full image.
2101  *
2102  * @target:
2103  *              Filesystem path to extract the file or directory tree to.
2104  *              (Or, with WIMLIB_EXTRACT_FLAG_NTFS: the name of a NTFS volume.)
2105  *
2106  * @extract_flags:
2107  *              WIMLIB_EXTRACT_FLAG_*.  Also, the private flag
2108  *              WIMLIB_EXTRACT_FLAG_MULTI_IMAGE will be set if this is being
2109  *              called through wimlib_extract_image() with WIMLIB_ALL_IMAGES as
2110  *              the image.
2111  *
2112  * @progress_func:
2113  *              If non-NULL, progress function for the extraction.  The messages
2114  *              that may be sent in this function are:
2115  *
2116  *              WIMLIB_PROGRESS_MSG_EXTRACT_TREE_BEGIN or
2117  *                      WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN;
2118  *              WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_BEGIN;
2119  *              WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_END;
2120  *              WIMLIB_PROGRESS_MSG_EXTRACT_DENTRY;
2121  *              WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS;
2122  *              WIMLIB_PROGRESS_MSG_APPLY_TIMESTAMPS;
2123  *              WIMLIB_PROGRESS_MSG_EXTRACT_TREE_END or
2124  *                      WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END.
2125  *
2126  * Returns 0 on success; a positive WIMLIB_ERR_* code on failure.
2127  */
2128 static int
2129 extract_tree(WIMStruct *wim, const tchar *wim_source_path, const tchar *target,
2130              int extract_flags, wimlib_progress_func_t progress_func)
2131 {
2132         struct wim_dentry *root;
2133         struct wim_features required_features;
2134         struct apply_ctx ctx;
2135         int ret;
2136         struct wim_lookup_table_entry *lte;
2137
2138         /* Start initializing the apply_ctx.  */
2139         memset(&ctx, 0, sizeof(struct apply_ctx));
2140         ctx.wim = wim;
2141         ctx.extract_flags = extract_flags;
2142         ctx.target = target;
2143         ctx.target_nchars = tstrlen(target);
2144         ctx.progress_func = progress_func;
2145         if (progress_func) {
2146                 ctx.progress.extract.wimfile_name = wim->filename;
2147                 ctx.progress.extract.image = wim->current_image;
2148                 ctx.progress.extract.extract_flags = (extract_flags &
2149                                                       WIMLIB_EXTRACT_MASK_PUBLIC);
2150                 ctx.progress.extract.image_name = wimlib_get_image_name(wim,
2151                                                                         wim->current_image);
2152                 ctx.progress.extract.extract_root_wim_source_path = wim_source_path;
2153                 ctx.progress.extract.target = target;
2154         }
2155         INIT_LIST_HEAD(&ctx.stream_list);
2156
2157         /* Translate the path to extract into the corresponding
2158          * `struct wim_dentry', which will be the root of the
2159          * "dentry tree" to extract.  */
2160         root = get_dentry(wim, wim_source_path);
2161         if (!root) {
2162                 ERROR("Path \"%"TS"\" does not exist in WIM image %d",
2163                       wim_source_path, wim->current_image);
2164                 ret = WIMLIB_ERR_PATH_DOES_NOT_EXIST;
2165                 goto out;
2166         }
2167
2168         ctx.extract_root = root;
2169
2170         /* Select the appropriate apply_operations based on the
2171          * platform and extract_flags.  */
2172 #ifdef __WIN32__
2173         ctx.ops = &win32_apply_ops;
2174 #else
2175         ctx.ops = &unix_apply_ops;
2176 #endif
2177
2178 #ifdef WITH_NTFS_3G
2179         if (extract_flags & WIMLIB_EXTRACT_FLAG_NTFS)
2180                 ctx.ops = &ntfs_3g_apply_ops;
2181 #endif
2182
2183         /* Call the start_extract() callback.  This gives the apply_operations
2184          * implementation a chance to do any setup needed to access the volume.
2185          * Furthermore, it's expected to set the supported features of this
2186          * extraction mode (ctx.supported_features), which are determined at
2187          * runtime as they may vary depending on the actual volume.  These
2188          * features are then compared with the actual features extracting this
2189          * dentry tree requires.  Some mismatches will merely produce warnings
2190          * and the unsupported data will be ignored; others will produce errors.
2191          */
2192         ret = ctx.ops->start_extract(target, &ctx);
2193         if (ret)
2194                 goto out;
2195
2196         dentry_tree_get_features(root, &required_features);
2197         ret = do_feature_check(&required_features, &ctx.supported_features,
2198                                extract_flags, ctx.ops, wim_source_path);
2199         if (ret)
2200                 goto out_finish_or_abort_extract;
2201
2202         ctx.supported_attributes_mask =
2203                 compute_supported_attributes_mask(&ctx.supported_features);
2204
2205         /* Figure out whether the root dentry is being extracted to the root of
2206          * a volume and therefore needs to be treated "specially", for example
2207          * not being explicitly created and not having attributes set.  */
2208         if (ctx.ops->target_is_root && ctx.ops->root_directory_is_special)
2209                 ctx.root_dentry_is_special = ctx.ops->target_is_root(target);
2210
2211         /* Calculate the actual filename component of each extracted dentry.  In
2212          * the process, set the dentry->extraction_skipped flag on dentries that
2213          * are being skipped for some reason (e.g. invalid filename).  */
2214         ret = for_dentry_in_tree(root, dentry_calculate_extraction_path, &ctx);
2215         if (ret)
2216                 goto out_dentry_reset_needs_extraction;
2217
2218         /* Build the list of the streams that need to be extracted and
2219          * initialize ctx.progress.extract with stream information.  */
2220         ret = for_dentry_in_tree(ctx.extract_root,
2221                                  dentry_resolve_and_zero_lte_refcnt, &ctx);
2222         if (ret)
2223                 goto out_dentry_reset_needs_extraction;
2224
2225         ret = for_dentry_in_tree(ctx.extract_root,
2226                                  dentry_add_streams_to_extract, &ctx);
2227         if (ret)
2228                 goto out_teardown_stream_list;
2229
2230         if (extract_flags & WIMLIB_EXTRACT_FLAG_FROM_PIPE) {
2231                 /* When extracting from a pipe, the number of bytes of data to
2232                  * extract can't be determined in the normal way (examining the
2233                  * lookup table), since at this point all we have is a set of
2234                  * SHA1 message digests of streams that need to be extracted.
2235                  * However, we can get a reasonably accurate estimate by taking
2236                  * <TOTALBYTES> from the corresponding <IMAGE> in the WIM XML
2237                  * data.  This does assume that a full image is being extracted,
2238                  * but currently there is no API for doing otherwise.  (Also,
2239                  * subtract <HARDLINKBYTES> from this if hard links are
2240                  * supported by the extraction mode.)  */
2241                 ctx.progress.extract.total_bytes =
2242                         wim_info_get_image_total_bytes(wim->wim_info,
2243                                                        wim->current_image);
2244                 if (ctx.supported_features.hard_links) {
2245                         ctx.progress.extract.total_bytes -=
2246                                 wim_info_get_image_hard_link_bytes(wim->wim_info,
2247                                                                    wim->current_image);
2248                 }
2249         }
2250
2251         /* Handle the special case of extracting a file to standard
2252          * output.  In that case, "root" should be a single file, not a
2253          * directory tree.  (If not, extract_dentry_to_stdout() will
2254          * return an error.)  */
2255         if (extract_flags & WIMLIB_EXTRACT_FLAG_TO_STDOUT) {
2256                 ret = extract_dentry_to_stdout(root);
2257                 goto out_teardown_stream_list;
2258         }
2259
2260         /* If a sequential extraction was specified, sort the streams to be
2261          * extracted by their position in the WIM file so that the WIM file can
2262          * be read sequentially.  */
2263         if ((extract_flags & (WIMLIB_EXTRACT_FLAG_SEQUENTIAL |
2264                               WIMLIB_EXTRACT_FLAG_FROM_PIPE))
2265                                         == WIMLIB_EXTRACT_FLAG_SEQUENTIAL)
2266         {
2267                 ret = sort_stream_list_by_sequential_order(
2268                                 &ctx.stream_list,
2269                                 offsetof(struct wim_lookup_table_entry,
2270                                          extraction_list));
2271                 if (ret)
2272                         goto out_teardown_stream_list;
2273         }
2274
2275         if (ctx.ops->realpath_works_on_nonexisting_files &&
2276             ((extract_flags & WIMLIB_EXTRACT_FLAG_RPFIX) ||
2277              ctx.ops->requires_realtarget_in_paths))
2278         {
2279                 ctx.realtarget = realpath(target, NULL);
2280                 if (!ctx.realtarget) {
2281                         ret = WIMLIB_ERR_NOMEM;
2282                         goto out_teardown_stream_list;
2283                 }
2284                 ctx.realtarget_nchars = tstrlen(ctx.realtarget);
2285         }
2286
2287         if (progress_func) {
2288                 progress_func(*wim_source_path ? WIMLIB_PROGRESS_MSG_EXTRACT_TREE_BEGIN :
2289                                                  WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN,
2290                               &ctx.progress);
2291         }
2292
2293         if (!ctx.root_dentry_is_special)
2294         {
2295                 tchar path[ctx.ops->path_max];
2296                 if (build_extraction_path(path, root, &ctx))
2297                 {
2298                         ret = extract_inode(path, &ctx, root->d_inode);
2299                         if (ret)
2300                                 goto out_free_realtarget;
2301                 }
2302         }
2303
2304         /* If we need to fix up the targets of absolute symbolic links
2305          * (WIMLIB_EXTRACT_FLAG_RPFIX) or the extraction mode requires paths to
2306          * be absolute, use realpath() (or its replacement on Windows) to get
2307          * the absolute path to the extraction target.  Note that this requires
2308          * the target directory to exist, unless
2309          * realpath_works_on_nonexisting_files is set in the apply_operations.
2310          * */
2311         if (!ctx.realtarget &&
2312             (((extract_flags & WIMLIB_EXTRACT_FLAG_RPFIX) &&
2313               required_features.symlink_reparse_points) ||
2314              ctx.ops->requires_realtarget_in_paths))
2315         {
2316                 ctx.realtarget = realpath(target, NULL);
2317                 if (!ctx.realtarget) {
2318                         ret = WIMLIB_ERR_NOMEM;
2319                         goto out_free_realtarget;
2320                 }
2321                 ctx.realtarget_nchars = tstrlen(ctx.realtarget);
2322         }
2323
2324         if (ctx.ops->requires_short_name_reordering) {
2325                 ret = for_dentry_in_tree(root, dentry_extract_dir_skeleton,
2326                                          &ctx);
2327                 if (ret)
2328                         goto out_free_realtarget;
2329         }
2330
2331         /* Finally, the important part: extract the tree of files.  */
2332         if (extract_flags & (WIMLIB_EXTRACT_FLAG_SEQUENTIAL |
2333                              WIMLIB_EXTRACT_FLAG_FROM_PIPE)) {
2334                 /* Sequential extraction requested, so two passes are needed
2335                  * (one for directory structure, one for streams.)  */
2336                 if (progress_func)
2337                         progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_BEGIN,
2338                                       &ctx.progress);
2339
2340                 if (!(extract_flags & WIMLIB_EXTRACT_FLAG_RESUME)) {
2341                         ret = for_dentry_in_tree(root, dentry_extract_skeleton, &ctx);
2342                         if (ret)
2343                                 goto out_free_realtarget;
2344                 }
2345                 if (progress_func)
2346                         progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_END,
2347                                       &ctx.progress);
2348                 if (extract_flags & WIMLIB_EXTRACT_FLAG_FROM_PIPE)
2349                         ret = extract_streams_from_pipe(&ctx);
2350                 else
2351                         ret = extract_stream_list(&ctx);
2352                 if (ret)
2353                         goto out_free_realtarget;
2354         } else {
2355                 /* Sequential extraction was not requested, so we can make do
2356                  * with one pass where we both create the files and extract
2357                  * streams.   */
2358                 if (progress_func)
2359                         progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_BEGIN,
2360                                       &ctx.progress);
2361                 ret = for_dentry_in_tree(root, dentry_extract, &ctx);
2362                 if (ret)
2363                         goto out_free_realtarget;
2364                 if (progress_func)
2365                         progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_END,
2366                                       &ctx.progress);
2367         }
2368
2369         /* If the total number of bytes to extract was miscalculated, just jump
2370          * to the calculated number in order to avoid confusing the progress
2371          * function.  This should only occur when extracting from a pipe.  */
2372         if (ctx.progress.extract.completed_bytes != ctx.progress.extract.total_bytes)
2373         {
2374                 DEBUG("Calculated %"PRIu64" bytes to extract, but actually "
2375                       "extracted %"PRIu64,
2376                       ctx.progress.extract.total_bytes,
2377                       ctx.progress.extract.completed_bytes);
2378         }
2379         if (progress_func &&
2380             ctx.progress.extract.completed_bytes < ctx.progress.extract.total_bytes)
2381         {
2382                 ctx.progress.extract.completed_bytes = ctx.progress.extract.total_bytes;
2383                 progress_func(WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS, &ctx.progress);
2384         }
2385
2386         /* Apply security descriptors and timestamps.  This is done at the end,
2387          * and in a depth-first manner, to prevent timestamps from getting
2388          * changed by subsequent extract operations and to minimize the chance
2389          * of the restored security descriptors getting in our way.  */
2390         if (progress_func)
2391                 progress_func(WIMLIB_PROGRESS_MSG_APPLY_TIMESTAMPS,
2392                               &ctx.progress);
2393         ret = for_dentry_in_tree_depth(root, dentry_extract_final, &ctx);
2394         if (ret)
2395                 goto out_free_realtarget;
2396
2397         if (progress_func) {
2398                 progress_func(*wim_source_path ? WIMLIB_PROGRESS_MSG_EXTRACT_TREE_END :
2399                               WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END,
2400                               &ctx.progress);
2401         }
2402
2403         do_extract_warnings(&ctx);
2404
2405         ret = 0;
2406 out_free_realtarget:
2407         FREE(ctx.realtarget);
2408 out_teardown_stream_list:
2409         /* Free memory allocated as part of the mapping from each
2410          * wim_lookup_table_entry to the dentries that reference it.  */
2411         if (ctx.extract_flags & WIMLIB_EXTRACT_FLAG_SEQUENTIAL)
2412                 list_for_each_entry(lte, &ctx.stream_list, extraction_list)
2413                         if (lte->out_refcnt > ARRAY_LEN(lte->inline_lte_dentries))
2414                                 FREE(lte->lte_dentries);
2415 out_dentry_reset_needs_extraction:
2416         for_dentry_in_tree(root, dentry_reset_needs_extraction, NULL);
2417 out_finish_or_abort_extract:
2418         if (ret) {
2419                 if (ctx.ops->abort_extract)
2420                         ctx.ops->abort_extract(&ctx);
2421         } else {
2422                 if (ctx.ops->finish_extract)
2423                         ret = ctx.ops->finish_extract(&ctx);
2424         }
2425 out:
2426         return ret;
2427 }
2428
2429 /* Validates a single wimlib_extract_command, mostly checking to make sure the
2430  * extract flags make sense. */
2431 static int
2432 check_extract_command(struct wimlib_extract_command *cmd, int wim_header_flags)
2433 {
2434         int extract_flags;
2435
2436         /* Empty destination path? */
2437         if (cmd->fs_dest_path[0] == T('\0'))
2438                 return WIMLIB_ERR_INVALID_PARAM;
2439
2440         extract_flags = cmd->extract_flags;
2441
2442         /* Check for invalid flag combinations  */
2443         if ((extract_flags &
2444              (WIMLIB_EXTRACT_FLAG_SYMLINK |
2445               WIMLIB_EXTRACT_FLAG_HARDLINK)) == (WIMLIB_EXTRACT_FLAG_SYMLINK |
2446                                                  WIMLIB_EXTRACT_FLAG_HARDLINK))
2447                 return WIMLIB_ERR_INVALID_PARAM;
2448
2449         if ((extract_flags &
2450              (WIMLIB_EXTRACT_FLAG_NO_ACLS |
2451               WIMLIB_EXTRACT_FLAG_STRICT_ACLS)) == (WIMLIB_EXTRACT_FLAG_NO_ACLS |
2452                                                     WIMLIB_EXTRACT_FLAG_STRICT_ACLS))
2453                 return WIMLIB_ERR_INVALID_PARAM;
2454
2455         if ((extract_flags &
2456              (WIMLIB_EXTRACT_FLAG_RPFIX |
2457               WIMLIB_EXTRACT_FLAG_NORPFIX)) == (WIMLIB_EXTRACT_FLAG_RPFIX |
2458                                                 WIMLIB_EXTRACT_FLAG_NORPFIX))
2459                 return WIMLIB_ERR_INVALID_PARAM;
2460
2461         if ((extract_flags &
2462              (WIMLIB_EXTRACT_FLAG_RESUME |
2463               WIMLIB_EXTRACT_FLAG_FROM_PIPE)) == WIMLIB_EXTRACT_FLAG_RESUME)
2464                 return WIMLIB_ERR_INVALID_PARAM;
2465
2466         if (extract_flags & WIMLIB_EXTRACT_FLAG_NTFS) {
2467 #ifndef WITH_NTFS_3G
2468                 ERROR("wimlib was compiled without support for NTFS-3g, so\n"
2469                       "        we cannot apply a WIM image directly to a NTFS volume.");
2470                 return WIMLIB_ERR_UNSUPPORTED;
2471 #endif
2472         }
2473
2474         if ((extract_flags & (WIMLIB_EXTRACT_FLAG_RPFIX |
2475                               WIMLIB_EXTRACT_FLAG_NORPFIX)) == 0)
2476         {
2477                 /* Do reparse point fixups by default if the WIM header says
2478                  * they are enabled and we are extracting a full image. */
2479                 if (wim_header_flags & WIM_HDR_FLAG_RP_FIX)
2480                         extract_flags |= WIMLIB_EXTRACT_FLAG_RPFIX;
2481         }
2482
2483         /* TODO: Since UNIX data entries are stored in the file resources, in a
2484          * completely sequential extraction they may come up before the
2485          * corresponding file or symbolic link data.  This needs to be handled
2486          * better.  */
2487         if ((extract_flags & (WIMLIB_EXTRACT_FLAG_UNIX_DATA |
2488                               WIMLIB_EXTRACT_FLAG_SEQUENTIAL))
2489                                     == (WIMLIB_EXTRACT_FLAG_UNIX_DATA |
2490                                         WIMLIB_EXTRACT_FLAG_SEQUENTIAL))
2491         {
2492                 if (extract_flags & WIMLIB_EXTRACT_FLAG_FROM_PIPE) {
2493                         WARNING("Setting UNIX file/owner group may "
2494                                 "be impossible on some\n"
2495                                 "          symbolic links "
2496                                 "when applying from a pipe.");
2497                 } else {
2498                         extract_flags &= ~WIMLIB_EXTRACT_FLAG_SEQUENTIAL;
2499                         WARNING("Disabling sequential extraction for "
2500                                 "UNIX data mode");
2501                 }
2502         }
2503
2504         cmd->extract_flags = extract_flags;
2505         return 0;
2506 }
2507
2508
2509 /* Internal function to execute extraction commands for a WIM image.  The paths
2510  * in the extract commands are expected to be already "canonicalized".  */
2511 static int
2512 do_wimlib_extract_files(WIMStruct *wim,
2513                         int image,
2514                         struct wimlib_extract_command *cmds,
2515                         size_t num_cmds,
2516                         wimlib_progress_func_t progress_func)
2517 {
2518         int ret;
2519         bool found_link_cmd = false;
2520         bool found_nolink_cmd = false;
2521
2522         /* Select the image from which we are extracting files */
2523         ret = select_wim_image(wim, image);
2524         if (ret)
2525                 return ret;
2526
2527         /* Make sure there are no streams in the WIM that have not been
2528          * checksummed yet.  */
2529         ret = wim_checksum_unhashed_streams(wim);
2530         if (ret)
2531                 return ret;
2532
2533         /* Check for problems with the extraction commands */
2534         for (size_t i = 0; i < num_cmds; i++) {
2535                 ret = check_extract_command(&cmds[i], wim->hdr.flags);
2536                 if (ret)
2537                         return ret;
2538                 if (cmds[i].extract_flags & (WIMLIB_EXTRACT_FLAG_SYMLINK |
2539                                              WIMLIB_EXTRACT_FLAG_HARDLINK)) {
2540                         found_link_cmd = true;
2541                 } else {
2542                         found_nolink_cmd = true;
2543                 }
2544                 if (found_link_cmd && found_nolink_cmd) {
2545                         ERROR("Symlink or hardlink extraction mode must "
2546                               "be set on all extraction commands");
2547                         return WIMLIB_ERR_INVALID_PARAM;
2548                 }
2549         }
2550
2551         /* Execute the extraction commands */
2552         for (size_t i = 0; i < num_cmds; i++) {
2553                 ret = extract_tree(wim,
2554                                    cmds[i].wim_source_path,
2555                                    cmds[i].fs_dest_path,
2556                                    cmds[i].extract_flags,
2557                                    progress_func);
2558                 if (ret)
2559                         return ret;
2560         }
2561         return 0;
2562 }
2563
2564 /* API function documented in wimlib.h  */
2565 WIMLIBAPI int
2566 wimlib_extract_files(WIMStruct *wim,
2567                      int image,
2568                      const struct wimlib_extract_command *cmds,
2569                      size_t num_cmds,
2570                      int default_extract_flags,
2571                      WIMStruct **additional_swms,
2572                      unsigned num_additional_swms,
2573                      wimlib_progress_func_t progress_func)
2574 {
2575         int ret;
2576         struct wimlib_extract_command *cmds_copy;
2577         int all_flags = 0;
2578
2579         default_extract_flags &= WIMLIB_EXTRACT_MASK_PUBLIC;
2580
2581         ret = verify_swm_set(wim, additional_swms, num_additional_swms);
2582         if (ret)
2583                 goto out;
2584
2585         if (num_cmds == 0)
2586                 goto out;
2587
2588         if (num_additional_swms)
2589                 merge_lookup_tables(wim, additional_swms, num_additional_swms);
2590
2591         cmds_copy = CALLOC(num_cmds, sizeof(cmds[0]));
2592         if (!cmds_copy) {
2593                 ret = WIMLIB_ERR_NOMEM;
2594                 goto out_restore_lookup_table;
2595         }
2596
2597         for (size_t i = 0; i < num_cmds; i++) {
2598                 cmds_copy[i].extract_flags = (default_extract_flags |
2599                                                  cmds[i].extract_flags)
2600                                                 & WIMLIB_EXTRACT_MASK_PUBLIC;
2601                 all_flags |= cmds_copy[i].extract_flags;
2602
2603                 cmds_copy[i].wim_source_path = canonicalize_wim_path(cmds[i].wim_source_path);
2604                 if (!cmds_copy[i].wim_source_path) {
2605                         ret = WIMLIB_ERR_NOMEM;
2606                         goto out_free_cmds_copy;
2607                 }
2608
2609                 cmds_copy[i].fs_dest_path = canonicalize_fs_path(cmds[i].fs_dest_path);
2610                 if (!cmds_copy[i].fs_dest_path) {
2611                         ret = WIMLIB_ERR_NOMEM;
2612                         goto out_free_cmds_copy;
2613                 }
2614
2615         }
2616         ret = do_wimlib_extract_files(wim, image,
2617                                       cmds_copy, num_cmds,
2618                                       progress_func);
2619
2620         if (all_flags & (WIMLIB_EXTRACT_FLAG_SYMLINK |
2621                          WIMLIB_EXTRACT_FLAG_HARDLINK))
2622         {
2623                 for_lookup_table_entry(wim->lookup_table,
2624                                        lte_free_extracted_file, NULL);
2625         }
2626 out_free_cmds_copy:
2627         for (size_t i = 0; i < num_cmds; i++) {
2628                 FREE(cmds_copy[i].wim_source_path);
2629                 FREE(cmds_copy[i].fs_dest_path);
2630         }
2631         FREE(cmds_copy);
2632 out_restore_lookup_table:
2633         if (num_additional_swms)
2634                 unmerge_lookup_table(wim);
2635 out:
2636         return ret;
2637 }
2638
2639 /*
2640  * Extracts an image from a WIM file.
2641  *
2642  * @wim:                WIMStruct for the WIM file.
2643  *
2644  * @image:              Number of the single image to extract.
2645  *
2646  * @target:             Directory or NTFS volume to extract the image to.
2647  *
2648  * @extract_flags:      Bitwise or of WIMLIB_EXTRACT_FLAG_*.
2649  *
2650  * @progress_func:      If non-NULL, a progress function to be called
2651  *                      periodically.
2652  *
2653  * Returns 0 on success; nonzero on failure.
2654  */
2655 static int
2656 extract_single_image(WIMStruct *wim, int image,
2657                      const tchar *target, int extract_flags,
2658                      wimlib_progress_func_t progress_func)
2659 {
2660         int ret;
2661         tchar *target_copy = canonicalize_fs_path(target);
2662         if (!target_copy)
2663                 return WIMLIB_ERR_NOMEM;
2664         struct wimlib_extract_command cmd = {
2665                 .wim_source_path = T(""),
2666                 .fs_dest_path = target_copy,
2667                 .extract_flags = extract_flags,
2668         };
2669         ret = do_wimlib_extract_files(wim, image, &cmd, 1, progress_func);
2670         FREE(target_copy);
2671         return ret;
2672 }
2673
2674 static const tchar * const filename_forbidden_chars =
2675 T(
2676 #ifdef __WIN32__
2677 "<>:\"/\\|?*"
2678 #else
2679 "/"
2680 #endif
2681 );
2682
2683 /* This function checks if it is okay to use a WIM image's name as a directory
2684  * name.  */
2685 static bool
2686 image_name_ok_as_dir(const tchar *image_name)
2687 {
2688         return image_name && *image_name &&
2689                 !tstrpbrk(image_name, filename_forbidden_chars) &&
2690                 tstrcmp(image_name, T(".")) &&
2691                 tstrcmp(image_name, T(".."));
2692 }
2693
2694 /* Extracts all images from the WIM to the directory @target, with the images
2695  * placed in subdirectories named by their image names. */
2696 static int
2697 extract_all_images(WIMStruct *wim,
2698                    const tchar *target,
2699                    int extract_flags,
2700                    wimlib_progress_func_t progress_func)
2701 {
2702         size_t image_name_max_len = max(xml_get_max_image_name_len(wim), 20);
2703         size_t output_path_len = tstrlen(target);
2704         tchar buf[output_path_len + 1 + image_name_max_len + 1];
2705         int ret;
2706         int image;
2707         const tchar *image_name;
2708         struct stat stbuf;
2709
2710         extract_flags |= WIMLIB_EXTRACT_FLAG_MULTI_IMAGE;
2711
2712         if (extract_flags & WIMLIB_EXTRACT_FLAG_NTFS) {
2713                 ERROR("Cannot extract multiple images in NTFS extraction mode.");
2714                 return WIMLIB_ERR_INVALID_PARAM;
2715         }
2716
2717         if (tstat(target, &stbuf)) {
2718                 if (errno == ENOENT) {
2719                         if (tmkdir(target, 0755)) {
2720                                 ERROR_WITH_ERRNO("Failed to create directory \"%"TS"\"", target);
2721                                 return WIMLIB_ERR_MKDIR;
2722                         }
2723                 } else {
2724                         ERROR_WITH_ERRNO("Failed to stat \"%"TS"\"", target);
2725                         return WIMLIB_ERR_STAT;
2726                 }
2727         } else if (!S_ISDIR(stbuf.st_mode)) {
2728                 ERROR("\"%"TS"\" is not a directory", target);
2729                 return WIMLIB_ERR_NOTDIR;
2730         }
2731
2732         tmemcpy(buf, target, output_path_len);
2733         buf[output_path_len] = OS_PREFERRED_PATH_SEPARATOR;
2734         for (image = 1; image <= wim->hdr.image_count; image++) {
2735                 image_name = wimlib_get_image_name(wim, image);
2736                 if (image_name_ok_as_dir(image_name)) {
2737                         tstrcpy(buf + output_path_len + 1, image_name);
2738                 } else {
2739                         /* Image name is empty or contains forbidden characters.
2740                          * Use image number instead. */
2741                         tsprintf(buf + output_path_len + 1, T("%d"), image);
2742                 }
2743                 ret = extract_single_image(wim, image, buf, extract_flags,
2744                                            progress_func);
2745                 if (ret)
2746                         return ret;
2747         }
2748         return 0;
2749 }
2750
2751 static int
2752 do_wimlib_extract_image(WIMStruct *wim,
2753                         int image,
2754                         const tchar *target,
2755                         int extract_flags,
2756                         WIMStruct **additional_swms,
2757                         unsigned num_additional_swms,
2758                         wimlib_progress_func_t progress_func)
2759 {
2760         int ret;
2761
2762         if (extract_flags & WIMLIB_EXTRACT_FLAG_FROM_PIPE) {
2763                 wimlib_assert(wim->hdr.part_number == 1);
2764                 wimlib_assert(num_additional_swms == 0);
2765         } else {
2766                 ret = verify_swm_set(wim, additional_swms, num_additional_swms);
2767                 if (ret)
2768                         return ret;
2769
2770                 if (num_additional_swms)
2771                         merge_lookup_tables(wim, additional_swms, num_additional_swms);
2772         }
2773
2774         if (image == WIMLIB_ALL_IMAGES) {
2775                 ret = extract_all_images(wim, target, extract_flags,
2776                                          progress_func);
2777         } else {
2778                 ret = extract_single_image(wim, image, target, extract_flags,
2779                                            progress_func);
2780         }
2781
2782         if (extract_flags & (WIMLIB_EXTRACT_FLAG_SYMLINK |
2783                              WIMLIB_EXTRACT_FLAG_HARDLINK))
2784         {
2785                 for_lookup_table_entry(wim->lookup_table,
2786                                        lte_free_extracted_file,
2787                                        NULL);
2788         }
2789         if (num_additional_swms)
2790                 unmerge_lookup_table(wim);
2791         return ret;
2792 }
2793
2794 /* API function documented in wimlib.h  */
2795 WIMLIBAPI int
2796 wimlib_extract_image_from_pipe(int pipe_fd, const tchar *image_num_or_name,
2797                                const tchar *target, int extract_flags,
2798                                wimlib_progress_func_t progress_func)
2799 {
2800         int ret;
2801         WIMStruct *pwm;
2802         struct filedes *in_fd;
2803         int image;
2804         unsigned i;
2805
2806         extract_flags &= WIMLIB_EXTRACT_MASK_PUBLIC;
2807
2808         if (extract_flags & WIMLIB_EXTRACT_FLAG_TO_STDOUT)
2809                 return WIMLIB_ERR_INVALID_PARAM;
2810
2811         extract_flags |= WIMLIB_EXTRACT_FLAG_SEQUENTIAL;
2812
2813         /* Read the WIM header from the pipe and get a WIMStruct to represent
2814          * the pipable WIM.  Caveats:  Unlike getting a WIMStruct with
2815          * wimlib_open_wim(), getting a WIMStruct in this way will result in
2816          * an empty lookup table, no XML data read, and no filename set.  */
2817         ret = open_wim_as_WIMStruct(&pipe_fd,
2818                                     WIMLIB_OPEN_FLAG_FROM_PIPE |
2819                                                 WIMLIB_OPEN_FLAG_SPLIT_OK,
2820                                     &pwm, progress_func);
2821         if (ret)
2822                 return ret;
2823
2824         /* Sanity check to make sure this is a pipable WIM.  */
2825         if (pwm->hdr.magic != PWM_MAGIC) {
2826                 ERROR("The WIM being read from file descriptor %d "
2827                       "is not pipable!", pipe_fd);
2828                 ret = WIMLIB_ERR_NOT_PIPABLE;
2829                 goto out_wimlib_free;
2830         }
2831
2832         /* Sanity check to make sure the first part of a pipable split WIM is
2833          * sent over the pipe first.  */
2834         if (pwm->hdr.part_number != 1) {
2835                 ERROR("The first part of the split WIM must be "
2836                       "sent over the pipe first.");
2837                 ret = WIMLIB_ERR_INVALID_PIPABLE_WIM;
2838                 goto out_wimlib_free;
2839         }
2840
2841         in_fd = &pwm->in_fd;
2842         wimlib_assert(in_fd->offset == WIM_HEADER_DISK_SIZE);
2843
2844         /* As mentioned, the WIMStruct we created from the pipe does not have
2845          * XML data yet.  Fix this by reading the extra copy of the XML data
2846          * that directly follows the header in pipable WIMs.  (Note: see
2847          * write_pipable_wim() for more details about the format of pipable
2848          * WIMs.)  */
2849         {
2850                 struct wim_lookup_table_entry xml_lte;
2851                 ret = read_pwm_stream_header(pwm, &xml_lte, 0, NULL);
2852                 if (ret)
2853                         goto out_wimlib_free;
2854
2855                 if (!(xml_lte.resource_entry.flags & WIM_RESHDR_FLAG_METADATA))
2856                 {
2857                         ERROR("Expected XML data, but found non-metadata "
2858                               "stream.");
2859                         ret = WIMLIB_ERR_INVALID_PIPABLE_WIM;
2860                         goto out_wimlib_free;
2861                 }
2862
2863                 copy_resource_entry(&pwm->hdr.xml_res_entry,
2864                                     &xml_lte.resource_entry);
2865
2866                 ret = read_wim_xml_data(pwm);
2867                 if (ret)
2868                         goto out_wimlib_free;
2869                 if (wim_info_get_num_images(pwm->wim_info) != pwm->hdr.image_count) {
2870                         ERROR("Image count in XML data is not the same as in WIM header.");
2871                         ret = WIMLIB_ERR_XML;
2872                         goto out_wimlib_free;
2873                 }
2874         }
2875
2876         /* Get image index (this may use the XML data that was just read to
2877          * resolve an image name).  */
2878         if (image_num_or_name) {
2879                 image = wimlib_resolve_image(pwm, image_num_or_name);
2880                 if (image == WIMLIB_NO_IMAGE) {
2881                         ERROR("\"%"TS"\" is not a valid image in the pipable WIM!",
2882                               image_num_or_name);
2883                         ret = WIMLIB_ERR_INVALID_IMAGE;
2884                         goto out_wimlib_free;
2885                 } else if (image == WIMLIB_ALL_IMAGES) {
2886                         ERROR("Applying all images from a pipe is not supported.");
2887                         ret = WIMLIB_ERR_INVALID_IMAGE;
2888                         goto out_wimlib_free;
2889                 }
2890         } else {
2891                 if (pwm->hdr.image_count != 1) {
2892                         ERROR("No image was specified, but the pipable WIM "
2893                               "did not contain exactly 1 image");
2894                         ret = WIMLIB_ERR_INVALID_IMAGE;
2895                         goto out_wimlib_free;
2896                 }
2897                 image = 1;
2898         }
2899
2900         /* Load the needed metadata resource.  */
2901         for (i = 1; i <= pwm->hdr.image_count; i++) {
2902                 struct wim_lookup_table_entry *metadata_lte;
2903                 struct wim_image_metadata *imd;
2904
2905                 metadata_lte = new_lookup_table_entry();
2906                 if (!metadata_lte) {
2907                         ret = WIMLIB_ERR_NOMEM;
2908                         goto out_wimlib_free;
2909                 }
2910
2911                 ret = read_pwm_stream_header(pwm, metadata_lte, 0, NULL);
2912                 imd = pwm->image_metadata[i - 1];
2913                 imd->metadata_lte = metadata_lte;
2914                 if (ret)
2915                         goto out_wimlib_free;
2916
2917                 if (!(metadata_lte->resource_entry.flags &
2918                       WIM_RESHDR_FLAG_METADATA))
2919                 {
2920                         ERROR("Expected metadata resource, but found "
2921                               "non-metadata stream.");
2922                         ret = WIMLIB_ERR_INVALID_PIPABLE_WIM;
2923                         goto out_wimlib_free;
2924                 }
2925
2926                 if (i == image) {
2927                         /* Metadata resource is for the images being extracted.
2928                          * Parse it and save the metadata in memory.  */
2929                         ret = read_metadata_resource(pwm, imd);
2930                         if (ret)
2931                                 goto out_wimlib_free;
2932                         imd->modified = 1;
2933                 } else {
2934                         /* Metadata resource is not for the image being
2935                          * extracted.  Skip over it.  */
2936                         ret = skip_pwm_stream(metadata_lte);
2937                         if (ret)
2938                                 goto out_wimlib_free;
2939                 }
2940         }
2941         /* Extract the image.  */
2942         extract_flags |= WIMLIB_EXTRACT_FLAG_FROM_PIPE;
2943         ret = do_wimlib_extract_image(pwm, image, target,
2944                                       extract_flags, NULL, 0, progress_func);
2945         /* Clean up and return.  */
2946 out_wimlib_free:
2947         wimlib_free(pwm);
2948         return ret;
2949 }
2950
2951 /* API function documented in wimlib.h  */
2952 WIMLIBAPI int
2953 wimlib_extract_image(WIMStruct *wim,
2954                      int image,
2955                      const tchar *target,
2956                      int extract_flags,
2957                      WIMStruct **additional_swms,
2958                      unsigned num_additional_swms,
2959                      wimlib_progress_func_t progress_func)
2960 {
2961         extract_flags &= WIMLIB_EXTRACT_MASK_PUBLIC;
2962         return do_wimlib_extract_image(wim, image, target, extract_flags,
2963                                        additional_swms, num_additional_swms,
2964                                        progress_func);
2965 }