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