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