]> wimlib.net Git - wimlib/blob - src/win32_apply.c
win32_apply.c: WRITE_DAC is no longer needed when creating directory
[wimlib] / src / win32_apply.c
1 /*
2  * win32_apply.c - Windows-specific code for applying files from a WIM image.
3  */
4
5 /*
6  * Copyright (C) 2013-2016 Eric Biggers
7  *
8  * This file is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU Lesser General Public License as published by the Free
10  * Software Foundation; either version 3 of the License, or (at your option) any
11  * later version.
12  *
13  * This file is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this file; if not, see http://www.gnu.org/licenses/.
20  */
21
22 #ifdef __WIN32__
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include "wimlib/win32_common.h"
29
30 #include "wimlib/apply.h"
31 #include "wimlib/assert.h"
32 #include "wimlib/blob_table.h"
33 #include "wimlib/dentry.h"
34 #include "wimlib/encoding.h"
35 #include "wimlib/error.h"
36 #include "wimlib/metadata.h"
37 #include "wimlib/object_id.h"
38 #include "wimlib/paths.h"
39 #include "wimlib/pattern.h"
40 #include "wimlib/reparse.h"
41 #include "wimlib/scan.h" /* for mangle_pat() and match_pattern_list()  */
42 #include "wimlib/textfile.h"
43 #include "wimlib/xml.h"
44 #include "wimlib/wimboot.h"
45 #include "wimlib/wof.h"
46
47 struct win32_apply_ctx {
48
49         /* Extract flags, the pointer to the WIMStruct, etc.  */
50         struct apply_ctx common;
51
52         /* WIMBoot information, only filled in if WIMLIB_EXTRACT_FLAG_WIMBOOT
53          * was provided  */
54         struct {
55                 /* This array contains the WIM files registered with WOF on the
56                  * target volume for this extraction operation.  All WIMStructs
57                  * in this array are distinct and have ->filename != NULL.  */
58                 struct wimboot_wim {
59                         WIMStruct *wim;
60                         u64 data_source_id;
61                         u8 blob_table_hash[SHA1_HASH_SIZE];
62                 } *wims;
63                 size_t num_wims;
64                 bool wof_running;
65                 bool have_wrong_version_wims;
66                 bool have_uncompressed_wims;
67                 bool have_unsupported_compressed_resources;
68                 bool have_huge_resources;
69         } wimboot;
70
71         /* External backing information  */
72         struct string_list *prepopulate_pats;
73         void *mem_prepopulate_pats;
74         bool tried_to_load_prepopulate_list;
75
76         /* Open handle to the target directory  */
77         HANDLE h_target;
78
79         /* NT namespace path to the target directory (buffer allocated)  */
80         UNICODE_STRING target_ntpath;
81
82         /* Temporary buffer for building paths (buffer allocated)  */
83         UNICODE_STRING pathbuf;
84
85         /* Object attributes to reuse for opening files in the target directory.
86          * (attr.ObjectName == &pathbuf) and (attr.RootDirectory == h_target).
87          */
88         OBJECT_ATTRIBUTES attr;
89
90         /* Temporary I/O status block for system calls  */
91         IO_STATUS_BLOCK iosb;
92
93         /* Allocated buffer for creating "printable" paths from our
94          * target-relative NT paths  */
95         wchar_t *print_buffer;
96
97         /* Allocated buffer for reading blob data when it cannot be extracted
98          * directly  */
99         u8 *data_buffer;
100
101         /* Pointer to the next byte in @data_buffer to fill  */
102         u8 *data_buffer_ptr;
103
104         /* Size allocated in @data_buffer  */
105         size_t data_buffer_size;
106
107         /* Current offset in the raw encrypted file being written  */
108         size_t encrypted_offset;
109
110         /* Current size of the raw encrypted file being written  */
111         size_t encrypted_size;
112
113         /* Temporary buffer for reparse data  */
114         struct reparse_buffer_disk rpbuf;
115
116         /* Temporary buffer for reparse data of "fixed" absolute symbolic links
117          * and junctions  */
118         struct reparse_buffer_disk rpfixbuf;
119
120         /* Array of open handles to filesystem streams currently being written
121          */
122         HANDLE open_handles[MAX_OPEN_FILES];
123
124         /* Number of handles in @open_handles currently open (filled in from the
125          * beginning of the array)  */
126         unsigned num_open_handles;
127
128         /* List of dentries, joined by @d_tmp_list, that need to have reparse
129          * data extracted as soon as the whole blob has been read into
130          * @data_buffer.  */
131         struct list_head reparse_dentries;
132
133         /* List of dentries, joined by @d_tmp_list, that need to have raw
134          * encrypted data extracted as soon as the whole blob has been read into
135          * @data_buffer.  */
136         struct list_head encrypted_dentries;
137
138         /* Number of files for which we didn't have permission to set the full
139          * security descriptor.  */
140         unsigned long partial_security_descriptors;
141
142         /* Number of files for which we didn't have permission to set any part
143          * of the security descriptor.  */
144         unsigned long no_security_descriptors;
145
146         /* Number of files for which we couldn't set the short name.  */
147         unsigned long num_set_short_name_failures;
148
149         /* Number of files for which we couldn't remove the short name.  */
150         unsigned long num_remove_short_name_failures;
151
152         /* Number of files on which we couldn't set System Compression.  */
153         unsigned long num_system_compression_failures;
154
155         /* The number of files which, for compatibility with the Windows
156          * bootloader, were not compressed using the requested system
157          * compression format.  This includes matches with the hardcoded pattern
158          * list only; it does not include matches with patterns in
159          * [PrepopulateList].  */
160         unsigned long num_system_compression_exclusions;
161
162         /* Number of files for which we couldn't set the object ID.  */
163         unsigned long num_object_id_failures;
164
165         /* The Windows build number of the image being applied, or 0 if unknown.
166          */
167         u64 windows_build_number;
168
169         /* Have we tried to enable short name support on the target volume yet?
170          */
171         bool tried_to_enable_short_names;
172 };
173
174 /* Get the drive letter from a Windows path, or return the null character if the
175  * path is relative.  */
176 static wchar_t
177 get_drive_letter(const wchar_t *path)
178 {
179         /* Skip \\?\ prefix  */
180         if (!wcsncmp(path, L"\\\\?\\", 4))
181                 path += 4;
182
183         /* Return drive letter if valid  */
184         if (((path[0] >= L'a' && path[0] <= L'z') ||
185              (path[0] >= L'A' && path[0] <= L'Z')) && path[1] == L':')
186                 return path[0];
187
188         return L'\0';
189 }
190
191 static void
192 get_vol_flags(const wchar_t *target, DWORD *vol_flags_ret,
193               bool *short_names_supported_ret)
194 {
195         wchar_t filesystem_name[MAX_PATH + 1];
196         wchar_t drive[4];
197         wchar_t *volume = NULL;
198
199         *vol_flags_ret = 0;
200         *short_names_supported_ret = false;
201
202         drive[0] = get_drive_letter(target);
203         if (drive[0]) {
204                 drive[1] = L':';
205                 drive[2] = L'\\';
206                 drive[3] = L'\0';
207                 volume = drive;
208         }
209
210         if (!GetVolumeInformation(volume, NULL, 0, NULL, NULL,
211                                   vol_flags_ret, filesystem_name,
212                                   ARRAY_LEN(filesystem_name)))
213         {
214                 win32_warning(GetLastError(),
215                               L"Failed to get volume information for \"%ls\"",
216                               target);
217                 return;
218         }
219
220         if (wcsstr(filesystem_name, L"NTFS")) {
221                 /* FILE_SUPPORTS_HARD_LINKS is only supported on Windows 7 and
222                  * later.  Force it on anyway if filesystem is NTFS.  */
223                 *vol_flags_ret |= FILE_SUPPORTS_HARD_LINKS;
224
225                 /* There's no volume flag for short names, but according to the
226                  * MS documentation they are only user-settable on NTFS.  */
227                 *short_names_supported_ret = true;
228         }
229 }
230
231 /* Is the image being extracted an OS image for Windows 10 or later?  */
232 static bool
233 is_image_windows_10_or_later(struct win32_apply_ctx *ctx)
234 {
235         /* Note: if no build number is available, this returns false.  */
236         return ctx->windows_build_number >= 10240;
237 }
238
239 static const wchar_t *
240 current_path(struct win32_apply_ctx *ctx);
241
242 static void
243 build_extraction_path(const struct wim_dentry *dentry,
244                       struct win32_apply_ctx *ctx);
245
246 static int
247 report_dentry_apply_error(const struct wim_dentry *dentry,
248                           struct win32_apply_ctx *ctx, int ret)
249 {
250         build_extraction_path(dentry, ctx);
251         return report_apply_error(&ctx->common, ret, current_path(ctx));
252 }
253
254 static inline int
255 check_apply_error(const struct wim_dentry *dentry,
256                   struct win32_apply_ctx *ctx, int ret)
257 {
258         if (unlikely(ret))
259                 ret = report_dentry_apply_error(dentry, ctx, ret);
260         return ret;
261 }
262
263 static int
264 win32_get_supported_features(const wchar_t *target,
265                              struct wim_features *supported_features)
266 {
267         DWORD vol_flags;
268         bool short_names_supported;
269
270         /* Query the features of the target volume.  */
271
272         get_vol_flags(target, &vol_flags, &short_names_supported);
273
274         supported_features->readonly_files = 1;
275         supported_features->hidden_files = 1;
276         supported_features->system_files = 1;
277         supported_features->archive_files = 1;
278
279         if (vol_flags & FILE_FILE_COMPRESSION)
280                 supported_features->compressed_files = 1;
281
282         if (vol_flags & FILE_SUPPORTS_ENCRYPTION) {
283                 supported_features->encrypted_files = 1;
284                 supported_features->encrypted_directories = 1;
285         }
286
287         supported_features->not_context_indexed_files = 1;
288
289         /* Don't do anything with FILE_SUPPORTS_SPARSE_FILES.  */
290
291         if (vol_flags & FILE_NAMED_STREAMS)
292                 supported_features->named_data_streams = 1;
293
294         if (vol_flags & FILE_SUPPORTS_HARD_LINKS)
295                 supported_features->hard_links = 1;
296
297         if (vol_flags & FILE_SUPPORTS_REPARSE_POINTS)
298                 supported_features->reparse_points = 1;
299
300         if (vol_flags & FILE_PERSISTENT_ACLS)
301                 supported_features->security_descriptors = 1;
302
303         if (short_names_supported)
304                 supported_features->short_names = 1;
305
306         if (vol_flags & FILE_SUPPORTS_OBJECT_IDS)
307                 supported_features->object_ids = 1;
308
309         supported_features->timestamps = 1;
310
311         /* Note: Windows does not support case sensitive filenames!  At least
312          * not without changing the registry and rebooting...  */
313
314         return 0;
315 }
316
317 #define COMPACT_FLAGS   (WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K |         \
318                          WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS8K |         \
319                          WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS16K |        \
320                          WIMLIB_EXTRACT_FLAG_COMPACT_LZX)
321
322
323
324 /*
325  * If not done already, load the patterns from the [PrepopulateList] section of
326  * WimBootCompress.ini in the WIM image being extracted.
327  *
328  * Note: WimBootCompress.ini applies to both types of "external backing":
329  *
330  *      - WIM backing ("WIMBoot" - Windows 8.1 and later)
331  *      - File backing ("System Compression" - Windows 10 and later)
332  */
333 static int
334 load_prepopulate_pats(struct win32_apply_ctx *ctx)
335 {
336         const wchar_t *path = L"\\Windows\\System32\\WimBootCompress.ini";
337         struct wim_dentry *dentry;
338         const struct blob_descriptor *blob;
339         int ret;
340         void *buf;
341         struct string_list *strings;
342         void *mem;
343         struct text_file_section sec;
344
345         if (ctx->tried_to_load_prepopulate_list)
346                 return 0;
347
348         ctx->tried_to_load_prepopulate_list = true;
349
350         dentry = get_dentry(ctx->common.wim, path, WIMLIB_CASE_INSENSITIVE);
351         if (!dentry ||
352             (dentry->d_inode->i_attributes & (FILE_ATTRIBUTE_DIRECTORY |
353                                               FILE_ATTRIBUTE_REPARSE_POINT |
354                                               FILE_ATTRIBUTE_ENCRYPTED)) ||
355             !(blob = inode_get_blob_for_unnamed_data_stream(dentry->d_inode,
356                                                             ctx->common.wim->blob_table)))
357         {
358                 WARNING("%ls does not exist in the WIM image.\n"
359                         "          The default configuration will be used instead; it assumes that all\n"
360                         "          files are valid for external backing regardless of path, equivalent\n"
361                         "          to an empty [PrepopulateList] section.", path);
362                 return WIMLIB_ERR_PATH_DOES_NOT_EXIST;
363         }
364
365         ret = read_blob_into_alloc_buf(blob, &buf);
366         if (ret)
367                 return ret;
368
369         strings = CALLOC(1, sizeof(struct string_list));
370         if (!strings) {
371                 FREE(buf);
372                 return WIMLIB_ERR_NOMEM;
373         }
374
375         sec.name = T("PrepopulateList");
376         sec.strings = strings;
377
378         ret = do_load_text_file(path, buf, blob->size, &mem, &sec, 1,
379                                 LOAD_TEXT_FILE_REMOVE_QUOTES |
380                                         LOAD_TEXT_FILE_NO_WARNINGS,
381                                 mangle_pat);
382         STATIC_ASSERT(OS_PREFERRED_PATH_SEPARATOR == WIM_PATH_SEPARATOR);
383         FREE(buf);
384         if (ret) {
385                 FREE(strings);
386                 return ret;
387         }
388         ctx->prepopulate_pats = strings;
389         ctx->mem_prepopulate_pats = mem;
390         return 0;
391 }
392
393 /* Returns %true if the specified absolute path to a file in the WIM image can
394  * be subject to external backing when extracted.  Otherwise returns %false.  */
395 static bool
396 can_externally_back_path(const wchar_t *path, const struct win32_apply_ctx *ctx)
397 {
398         /* Does the path match a pattern given in the [PrepopulateList] section
399          * of WimBootCompress.ini?  */
400         if (ctx->prepopulate_pats && match_pattern_list(path, ctx->prepopulate_pats))
401                 return false;
402
403         /* Since we attempt to modify the SYSTEM registry after it's extracted
404          * (see end_wimboot_extraction()), it can't be extracted as externally
405          * backed.  This extends to associated files such as SYSTEM.LOG that
406          * also must be writable in order to write to the registry.  Normally,
407          * SYSTEM is in [PrepopulateList], and the SYSTEM.* files match patterns
408          * in [ExclusionList] and therefore are not captured in the WIM at all.
409          * However, a WIM that wasn't specifically captured in "WIMBoot mode"
410          * may contain SYSTEM.* files.  So to make things "just work", hard-code
411          * the pattern.  */
412         if (match_path(path, L"\\Windows\\System32\\config\\SYSTEM*", false))
413                 return false;
414
415         return true;
416 }
417
418 /* Can the specified WIM resource be used as the source of an external backing
419  * for the wof.sys WIM provider?  */
420 static bool
421 is_resource_valid_for_external_backing(const struct wim_resource_descriptor *rdesc,
422                                        struct win32_apply_ctx *ctx)
423 {
424         /* Must be the original WIM file format.  This check excludes pipable
425          * resources and solid resources.  It also excludes other resources
426          * contained in such files even if they would be otherwise compatible.
427          */
428         if (rdesc->wim->hdr.magic != WIM_MAGIC ||
429             rdesc->wim->hdr.wim_version != WIM_VERSION_DEFAULT)
430         {
431                 ctx->wimboot.have_wrong_version_wims = true;
432                 return false;
433         }
434
435         /*
436          * Whitelist of compression types and chunk sizes supported by
437          * Microsoft's WOF driver.
438          *
439          * Notes:
440          *    - Uncompressed WIMs result in BSOD.  However, this only applies to
441          *      the WIM file itself, not to uncompressed resources in a WIM file
442          *      that is otherwise compressed.
443          *    - XPRESS 64K sometimes appears to work, but sometimes it causes
444          *      reads to fail with STATUS_UNSUCCESSFUL.
445          */
446         switch (rdesc->compression_type) {
447         case WIMLIB_COMPRESSION_TYPE_NONE:
448                 if (rdesc->wim->compression_type == WIMLIB_COMPRESSION_TYPE_NONE) {
449                         ctx->wimboot.have_uncompressed_wims = true;
450                         return false;
451                 }
452                 break;
453         case WIMLIB_COMPRESSION_TYPE_XPRESS:
454                 switch (rdesc->chunk_size) {
455                 case 4096:
456                 case 8192:
457                 case 16384:
458                 case 32768:
459                         break;
460                 default:
461                         ctx->wimboot.have_unsupported_compressed_resources = true;
462                         return false;
463                 }
464                 break;
465         case WIMLIB_COMPRESSION_TYPE_LZX:
466                 switch (rdesc->chunk_size) {
467                 case 32768:
468                         break;
469                 default:
470                         ctx->wimboot.have_unsupported_compressed_resources = true;
471                         return false;
472                 }
473                 break;
474         default:
475                 ctx->wimboot.have_unsupported_compressed_resources = true;
476                 return false;
477         }
478
479         /* Microsoft's WoF driver errors out if it tries to satisfy a read with
480          * ending offset >= 4 GiB from an externally backed file.  */
481         if (rdesc->uncompressed_size > 4200000000) {
482                 ctx->wimboot.have_huge_resources = true;
483                 return false;
484         }
485
486         return true;
487 }
488
489 #define EXTERNAL_BACKING_NOT_ENABLED            -1
490 #define EXTERNAL_BACKING_NOT_POSSIBLE           -2
491 #define EXTERNAL_BACKING_EXCLUDED               -3
492
493 /*
494  * Determines whether the specified file will be externally backed.  Returns a
495  * negative status code if no, 0 if yes, or a positive wimlib error code on
496  * error.  If the file is excluded from external backing based on its path, then
497  * *excluded_dentry_ret is set to the dentry for the path that matched the
498  * exclusion rule.
499  *
500  * Note that this logic applies to both types of "external backing":
501  *
502  *      - WIM backing ("WIMBoot" - Windows 8.1 and later)
503  *      - File backing ("System Compression" - Windows 10 and later)
504  *
505  * However, in the case of WIM backing we also need to validate that the WIM
506  * resource that would be the source of the backing is supported by the wof.sys
507  * WIM provider.
508  */
509 static int
510 will_externally_back_inode(struct wim_inode *inode, struct win32_apply_ctx *ctx,
511                            const struct wim_dentry **excluded_dentry_ret,
512                            bool wimboot_mode)
513 {
514         struct wim_dentry *dentry;
515         struct blob_descriptor *blob;
516         int ret;
517
518         if (load_prepopulate_pats(ctx) == WIMLIB_ERR_NOMEM)
519                 return WIMLIB_ERR_NOMEM;
520
521         if (inode->i_can_externally_back)
522                 return 0;
523
524         /* This may do redundant checks because the cached value
525          * i_can_externally_back is 2-state (as opposed to 3-state:
526          * unknown/no/yes).  But most files can be externally backed, so this
527          * way is fine.  */
528
529         if (inode->i_attributes & (FILE_ATTRIBUTE_DIRECTORY |
530                                    FILE_ATTRIBUTE_REPARSE_POINT |
531                                    FILE_ATTRIBUTE_ENCRYPTED))
532                 return EXTERNAL_BACKING_NOT_POSSIBLE;
533
534         blob = inode_get_blob_for_unnamed_data_stream_resolved(inode);
535
536         if (!blob)
537                 return EXTERNAL_BACKING_NOT_POSSIBLE;
538
539         if (wimboot_mode &&
540             (blob->blob_location != BLOB_IN_WIM ||
541              !is_resource_valid_for_external_backing(blob->rdesc, ctx)))
542                 return EXTERNAL_BACKING_NOT_POSSIBLE;
543
544         /*
545          * We need to check the patterns in [PrepopulateList] against every name
546          * of the inode, in case any of them match.
547          */
548
549         inode_for_each_extraction_alias(dentry, inode) {
550
551                 ret = calculate_dentry_full_path(dentry);
552                 if (ret)
553                         return ret;
554
555                 if (!can_externally_back_path(dentry->d_full_path, ctx)) {
556                         if (excluded_dentry_ret)
557                                 *excluded_dentry_ret = dentry;
558                         return EXTERNAL_BACKING_EXCLUDED;
559                 }
560         }
561
562         inode->i_can_externally_back = 1;
563         return 0;
564 }
565
566 /*
567  * Determines if the unnamed data stream of a file will be created as a WIM
568  * external backing (a "WIMBoot pointer file"), as opposed to a standard
569  * extraction.
570  */
571 static int
572 win32_will_back_from_wim(struct wim_dentry *dentry, struct apply_ctx *_ctx)
573 {
574         struct win32_apply_ctx *ctx = (struct win32_apply_ctx *)_ctx;
575
576         if (!(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_WIMBOOT))
577                 return EXTERNAL_BACKING_NOT_ENABLED;
578
579         return will_externally_back_inode(dentry->d_inode, ctx, NULL, true);
580 }
581
582 /* Find the WOF registration information for the specified WIM file.  */
583 static struct wimboot_wim *
584 find_wimboot_wim(WIMStruct *wim_to_find, struct win32_apply_ctx *ctx)
585 {
586         for (size_t i = 0; i < ctx->wimboot.num_wims; i++)
587                 if (wim_to_find == ctx->wimboot.wims[i].wim)
588                         return &ctx->wimboot.wims[i];
589
590         wimlib_assert(0);
591         return NULL;
592 }
593
594 static int
595 set_backed_from_wim(HANDLE h, struct wim_inode *inode, struct win32_apply_ctx *ctx)
596 {
597         int ret;
598         const struct wim_dentry *excluded_dentry;
599         const struct blob_descriptor *blob;
600         const struct wimboot_wim *wimboot_wim;
601
602         ret = will_externally_back_inode(inode, ctx, &excluded_dentry, true);
603         if (ret > 0) /* Error.  */
604                 return ret;
605
606         if (ret < 0 && ret != EXTERNAL_BACKING_EXCLUDED)
607                 return 0; /* Not externally backing, other than due to exclusion.  */
608
609         if (unlikely(ret == EXTERNAL_BACKING_EXCLUDED)) {
610                 /* Not externally backing due to exclusion.  */
611                 union wimlib_progress_info info;
612
613                 build_extraction_path(excluded_dentry, ctx);
614
615                 info.wimboot_exclude.path_in_wim = excluded_dentry->d_full_path;
616                 info.wimboot_exclude.extraction_path = current_path(ctx);
617
618                 return call_progress(ctx->common.progfunc,
619                                      WIMLIB_PROGRESS_MSG_WIMBOOT_EXCLUDE,
620                                      &info, ctx->common.progctx);
621         }
622
623         /* Externally backing.  */
624
625         blob = inode_get_blob_for_unnamed_data_stream_resolved(inode);
626         wimboot_wim = find_wimboot_wim(blob->rdesc->wim, ctx);
627
628         if (unlikely(!wimboot_set_pointer(h,
629                                           blob,
630                                           wimboot_wim->data_source_id,
631                                           wimboot_wim->blob_table_hash,
632                                           ctx->wimboot.wof_running)))
633         {
634                 const DWORD err = GetLastError();
635
636                 build_extraction_path(inode_first_extraction_dentry(inode), ctx);
637                 win32_error(err, L"\"%ls\": Couldn't set WIMBoot pointer data",
638                             current_path(ctx));
639                 return WIMLIB_ERR_WIMBOOT;
640         }
641         return 0;
642 }
643
644 /* Calculates the SHA-1 message digest of the WIM's blob table.  */
645 static int
646 hash_blob_table(WIMStruct *wim, u8 hash[SHA1_HASH_SIZE])
647 {
648         return wim_reshdr_to_hash(&wim->hdr.blob_table_reshdr, wim, hash);
649 }
650
651 static int
652 register_wim_with_wof(WIMStruct *wim, struct win32_apply_ctx *ctx)
653 {
654         struct wimboot_wim *p;
655         int ret;
656
657         /* Check if already registered  */
658         for (size_t i = 0; i < ctx->wimboot.num_wims; i++)
659                 if (wim == ctx->wimboot.wims[i].wim)
660                         return 0;
661
662         /* Not yet registered  */
663
664         p = REALLOC(ctx->wimboot.wims,
665                     (ctx->wimboot.num_wims + 1) * sizeof(ctx->wimboot.wims[0]));
666         if (!p)
667                 return WIMLIB_ERR_NOMEM;
668         ctx->wimboot.wims = p;
669
670         ctx->wimboot.wims[ctx->wimboot.num_wims].wim = wim;
671
672         ret = hash_blob_table(wim, ctx->wimboot.wims[ctx->wimboot.num_wims].blob_table_hash);
673         if (ret)
674                 return ret;
675
676         ret = wimboot_alloc_data_source_id(wim->filename,
677                                            wim->hdr.guid,
678                                            ctx->common.wim->current_image,
679                                            ctx->common.target,
680                                            &ctx->wimboot.wims[ctx->wimboot.num_wims].data_source_id,
681                                            &ctx->wimboot.wof_running);
682         if (ret)
683                 return ret;
684
685         ctx->wimboot.num_wims++;
686         return 0;
687 }
688
689 /* Prepare for doing a "WIMBoot" extraction by registering each source WIM file
690  * with WOF on the target volume.  */
691 static int
692 start_wimboot_extraction(struct list_head *dentry_list, struct win32_apply_ctx *ctx)
693 {
694         int ret;
695         struct wim_dentry *dentry;
696
697         if (!xml_get_wimboot(ctx->common.wim->xml_info,
698                              ctx->common.wim->current_image))
699                 WARNING("The WIM image is not marked as WIMBoot compatible.  This usually\n"
700                         "          means it is not intended to be used to back a Windows operating\n"
701                         "          system.  Proceeding anyway.");
702
703         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
704                 struct blob_descriptor *blob;
705
706                 ret = win32_will_back_from_wim(dentry, &ctx->common);
707                 if (ret > 0) /* Error */
708                         return ret;
709                 if (ret < 0) /* Won't externally back */
710                         continue;
711
712                 blob = inode_get_blob_for_unnamed_data_stream_resolved(dentry->d_inode);
713                 ret = register_wim_with_wof(blob->rdesc->wim, ctx);
714                 if (ret)
715                         return ret;
716         }
717
718         if (ctx->wimboot.have_wrong_version_wims) {
719   WARNING("At least one of the source WIM files uses a version of the WIM\n"
720 "          file format that not supported by Microsoft's wof.sys driver.\n"
721 "          Files whose data is contained in one of these WIM files will be\n"
722 "          extracted as full files rather than externally backed.");
723         }
724
725         if (ctx->wimboot.have_uncompressed_wims) {
726   WARNING("At least one of the source WIM files is uncompressed.  Files whose\n"
727 "          data is contained in an uncompressed WIM file will be extracted as\n"
728 "          full files rather than externally backed, since uncompressed WIM\n"
729 "          files are not supported by Microsoft's wof.sys driver.");
730         }
731
732         if (ctx->wimboot.have_unsupported_compressed_resources) {
733   WARNING("At least one of the source WIM files uses a compression format that\n"
734 "          is not supported by Microsoft's wof.sys driver.  Files whose data is\n"
735 "          contained in a compressed resource in one of these WIM files will be\n"
736 "          extracted as full files rather than externally backed.  (The\n"
737 "          compression formats supported by wof.sys are: XPRESS 4K, XPRESS 8K,\n"
738 "          XPRESS 16K, XPRESS 32K, and LZX 32K.)");
739         }
740
741         if (ctx->wimboot.have_huge_resources) {
742   WARNING("Some files exceeded 4.2 GB in size.  Such files will be extracted\n"
743 "          as full files rather than externally backed, since very large files\n"
744 "          are not supported by Microsoft's wof.sys driver.");
745         }
746
747         return 0;
748 }
749
750 static void
751 build_win32_extraction_path(const struct wim_dentry *dentry,
752                             struct win32_apply_ctx *ctx);
753
754 /* Sets WimBoot=1 in the extracted SYSTEM registry hive.
755  *
756  * WIMGAPI does this, and it's possible that it's important.
757  * But I don't know exactly what this value means to Windows.  */
758 static int
759 end_wimboot_extraction(struct win32_apply_ctx *ctx)
760 {
761         struct wim_dentry *dentry;
762         wchar_t subkeyname[32];
763         LONG res;
764         LONG res2;
765         HKEY key;
766         DWORD value;
767
768         dentry = get_dentry(ctx->common.wim, L"\\Windows\\System32\\config\\SYSTEM",
769                             WIMLIB_CASE_INSENSITIVE);
770
771         if (!dentry || !will_extract_dentry(dentry))
772                 goto out;
773
774         if (!will_extract_dentry(wim_get_current_root_dentry(ctx->common.wim)))
775                 goto out;
776
777         /* Not bothering to use the native routines (e.g. NtLoadKey()) for this.
778          * If this doesn't work, you probably also have many other problems.  */
779
780         build_win32_extraction_path(dentry, ctx);
781
782         randomize_char_array_with_alnum(subkeyname, 20);
783         subkeyname[20] = L'\0';
784
785         res = RegLoadKey(HKEY_LOCAL_MACHINE, subkeyname, ctx->pathbuf.Buffer);
786         if (res)
787                 goto out_check_res;
788
789         wcscpy(&subkeyname[20], L"\\Setup");
790
791         res = RegCreateKeyEx(HKEY_LOCAL_MACHINE, subkeyname, 0, NULL,
792                              REG_OPTION_BACKUP_RESTORE, 0, NULL, &key, NULL);
793         if (res)
794                 goto out_unload_key;
795
796         value = 1;
797
798         res = RegSetValueEx(key, L"WimBoot", 0, REG_DWORD,
799                             (const BYTE *)&value, sizeof(DWORD));
800         if (res)
801                 goto out_close_key;
802
803         res = RegFlushKey(key);
804
805 out_close_key:
806         res2 = RegCloseKey(key);
807         if (!res)
808                 res = res2;
809 out_unload_key:
810         subkeyname[20] = L'\0';
811         RegUnLoadKey(HKEY_LOCAL_MACHINE, subkeyname);
812 out_check_res:
813         if (res) {
814                 /* Warning only.  */
815                 win32_warning(res, L"Failed to set \\Setup: dword \"WimBoot\"=1 "
816                               "value in registry hive \"%ls\"",
817                               ctx->pathbuf.Buffer);
818         }
819 out:
820         return 0;
821 }
822
823 /* Returns the number of wide characters needed to represent the path to the
824  * specified @dentry, relative to the target directory, when extracted.
825  *
826  * Does not include null terminator (not needed for NtCreateFile).  */
827 static size_t
828 dentry_extraction_path_length(const struct wim_dentry *dentry)
829 {
830         size_t len = 0;
831         const struct wim_dentry *d;
832
833         d = dentry;
834         do {
835                 len += d->d_extraction_name_nchars + 1;
836                 d = d->d_parent;
837         } while (!dentry_is_root(d) && will_extract_dentry(d));
838
839         return --len;  /* No leading slash  */
840 }
841
842 /* Returns the length of the longest string that might need to be appended to
843  * the path to an alias of an inode to open or create a named data stream.
844  *
845  * If the inode has no named data streams, this will be 0.  Otherwise, this will
846  * be 1 plus the length of the longest-named data stream, since the data stream
847  * name must be separated from the path by the ':' character.  */
848 static size_t
849 inode_longest_named_data_stream_spec(const struct wim_inode *inode)
850 {
851         size_t max = 0;
852         for (unsigned i = 0; i < inode->i_num_streams; i++) {
853                 const struct wim_inode_stream *strm = &inode->i_streams[i];
854                 if (!stream_is_named_data_stream(strm))
855                         continue;
856                 size_t len = utf16le_len_chars(strm->stream_name);
857                 if (len > max)
858                         max = len;
859         }
860         if (max)
861                 max += 1;
862         return max;
863 }
864
865 /* Find the length, in wide characters, of the longest path needed for
866  * extraction of any file in @dentry_list relative to the target directory.
867  *
868  * Accounts for named data streams, but does not include null terminator (not
869  * needed for NtCreateFile).  */
870 static size_t
871 compute_path_max(struct list_head *dentry_list)
872 {
873         size_t max = 0;
874         const struct wim_dentry *dentry;
875
876         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
877                 size_t len;
878
879                 len = dentry_extraction_path_length(dentry);
880
881                 /* Account for named data streams  */
882                 len += inode_longest_named_data_stream_spec(dentry->d_inode);
883
884                 if (len > max)
885                         max = len;
886         }
887
888         return max;
889 }
890
891 /* Build the path at which to extract the @dentry, relative to the target
892  * directory.
893  *
894  * The path is saved in ctx->pathbuf.  */
895 static void
896 build_extraction_path(const struct wim_dentry *dentry,
897                       struct win32_apply_ctx *ctx)
898 {
899         size_t len;
900         wchar_t *p;
901         const struct wim_dentry *d;
902
903         len = dentry_extraction_path_length(dentry);
904
905         ctx->pathbuf.Length = len * sizeof(wchar_t);
906         p = ctx->pathbuf.Buffer + len;
907         for (d = dentry;
908              !dentry_is_root(d->d_parent) && will_extract_dentry(d->d_parent);
909              d = d->d_parent)
910         {
911                 p -= d->d_extraction_name_nchars;
912                 if (d->d_extraction_name_nchars)
913                         wmemcpy(p, d->d_extraction_name,
914                                 d->d_extraction_name_nchars);
915                 *--p = '\\';
916         }
917         /* No leading slash  */
918         p -= d->d_extraction_name_nchars;
919         wmemcpy(p, d->d_extraction_name, d->d_extraction_name_nchars);
920 }
921
922 /* Build the path at which to extract the @dentry, relative to the target
923  * directory, adding the suffix for a named data stream.
924  *
925  * The path is saved in ctx->pathbuf.  */
926 static void
927 build_extraction_path_with_ads(const struct wim_dentry *dentry,
928                                struct win32_apply_ctx *ctx,
929                                const wchar_t *stream_name,
930                                size_t stream_name_nchars)
931 {
932         wchar_t *p;
933
934         build_extraction_path(dentry, ctx);
935
936         /* Add :NAME for named data stream  */
937         p = ctx->pathbuf.Buffer + (ctx->pathbuf.Length / sizeof(wchar_t));
938         *p++ = L':';
939         wmemcpy(p, stream_name, stream_name_nchars);
940         ctx->pathbuf.Length += (1 + stream_name_nchars) * sizeof(wchar_t);
941 }
942
943 /* Build the Win32 namespace path to the specified @dentry when extracted.
944  *
945  * The path is saved in ctx->pathbuf and will be null terminated.
946  *
947  * XXX: We could get rid of this if it wasn't needed for the file encryption
948  * APIs, and the registry manipulation in WIMBoot mode.  */
949 static void
950 build_win32_extraction_path(const struct wim_dentry *dentry,
951                             struct win32_apply_ctx *ctx)
952 {
953         build_extraction_path(dentry, ctx);
954
955         /* Prepend target_ntpath to our relative path, then change \??\ into \\?\  */
956
957         memmove(ctx->pathbuf.Buffer +
958                         (ctx->target_ntpath.Length / sizeof(wchar_t)) + 1,
959                 ctx->pathbuf.Buffer, ctx->pathbuf.Length);
960         memcpy(ctx->pathbuf.Buffer, ctx->target_ntpath.Buffer,
961                 ctx->target_ntpath.Length);
962         ctx->pathbuf.Buffer[ctx->target_ntpath.Length / sizeof(wchar_t)] = L'\\';
963         ctx->pathbuf.Length += ctx->target_ntpath.Length + sizeof(wchar_t);
964         ctx->pathbuf.Buffer[ctx->pathbuf.Length / sizeof(wchar_t)] = L'\0';
965
966         wimlib_assert(ctx->pathbuf.Length >= 4 * sizeof(wchar_t) &&
967                       !wmemcmp(ctx->pathbuf.Buffer, L"\\??\\", 4));
968
969         ctx->pathbuf.Buffer[1] = L'\\';
970
971 }
972
973 /* Returns a "printable" representation of the last relative NT path that was
974  * constructed with build_extraction_path() or build_extraction_path_with_ads().
975  *
976  * This will be overwritten by the next call to this function.  */
977 static const wchar_t *
978 current_path(struct win32_apply_ctx *ctx)
979 {
980         wchar_t *p = ctx->print_buffer;
981
982         p = wmempcpy(p, ctx->common.target, ctx->common.target_nchars);
983         *p++ = L'\\';
984         p = wmempcpy(p, ctx->pathbuf.Buffer, ctx->pathbuf.Length / sizeof(wchar_t));
985         *p = L'\0';
986         return ctx->print_buffer;
987 }
988
989 /* Open handle to the target directory if it is not already open.  If the target
990  * directory does not exist, this creates it.  */
991 static int
992 open_target_directory(struct win32_apply_ctx *ctx)
993 {
994         NTSTATUS status;
995
996         if (ctx->h_target)
997                 return 0;
998
999         ctx->attr.Length = sizeof(ctx->attr);
1000         ctx->attr.RootDirectory = NULL;
1001         ctx->attr.ObjectName = &ctx->target_ntpath;
1002
1003         /* Don't use FILE_OPEN_REPARSE_POINT here; we want the extraction to
1004          * happen at the directory "pointed to" by the reparse point. */
1005         status = NtCreateFile(&ctx->h_target,
1006                               FILE_TRAVERSE,
1007                               &ctx->attr,
1008                               &ctx->iosb,
1009                               NULL,
1010                               0,
1011                               FILE_SHARE_VALID_FLAGS,
1012                               FILE_OPEN_IF,
1013                               FILE_DIRECTORY_FILE | FILE_OPEN_FOR_BACKUP_INTENT,
1014                               NULL,
1015                               0);
1016         if (!NT_SUCCESS(status)) {
1017                 winnt_error(status, L"Can't open or create directory \"%ls\"",
1018                             ctx->common.target);
1019                 return WIMLIB_ERR_OPENDIR;
1020         }
1021         ctx->attr.RootDirectory = ctx->h_target;
1022         ctx->attr.ObjectName = &ctx->pathbuf;
1023         return 0;
1024 }
1025
1026 static void
1027 close_target_directory(struct win32_apply_ctx *ctx)
1028 {
1029         if (ctx->h_target) {
1030                 NtClose(ctx->h_target);
1031                 ctx->h_target = NULL;
1032                 ctx->attr.RootDirectory = NULL;
1033         }
1034 }
1035
1036 /*
1037  * Ensures the target directory exists and opens a handle to it, in preparation
1038  * of using paths relative to it.
1039  */
1040 static int
1041 prepare_target(struct list_head *dentry_list, struct win32_apply_ctx *ctx)
1042 {
1043         int ret;
1044         size_t path_max;
1045
1046         ret = win32_path_to_nt_path(ctx->common.target, &ctx->target_ntpath);
1047         if (ret)
1048                 return ret;
1049
1050         ret = open_target_directory(ctx);
1051         if (ret)
1052                 return ret;
1053
1054         path_max = compute_path_max(dentry_list);
1055         /* Add some extra for building Win32 paths for the file encryption APIs,
1056          * and ensure we have at least enough to potentially use a 8.3 name for
1057          * the last component.  */
1058         path_max += max(2 + (ctx->target_ntpath.Length / sizeof(wchar_t)),
1059                         8 + 1 + 3);
1060
1061         ctx->pathbuf.MaximumLength = path_max * sizeof(wchar_t);
1062         ctx->pathbuf.Buffer = MALLOC(ctx->pathbuf.MaximumLength);
1063         if (!ctx->pathbuf.Buffer)
1064                 return WIMLIB_ERR_NOMEM;
1065
1066         ctx->print_buffer = MALLOC((ctx->common.target_nchars + 1 + path_max + 1) *
1067                                    sizeof(wchar_t));
1068         if (!ctx->print_buffer)
1069                 return WIMLIB_ERR_NOMEM;
1070
1071         return 0;
1072 }
1073
1074 /* When creating an inode that will have a short (DOS) name, we create it using
1075  * the long name associated with the short name.  This ensures that the short
1076  * name gets associated with the correct long name.  */
1077 static struct wim_dentry *
1078 first_extraction_alias(const struct wim_inode *inode)
1079 {
1080         struct wim_dentry *dentry;
1081
1082         inode_for_each_extraction_alias(dentry, inode)
1083                 if (dentry_has_short_name(dentry))
1084                         return dentry;
1085         return inode_first_extraction_dentry(inode);
1086 }
1087
1088 /*
1089  * Set or clear FILE_ATTRIBUTE_COMPRESSED if the inherited value is different
1090  * from the desired value.
1091  *
1092  * Note that you can NOT override the inherited value of
1093  * FILE_ATTRIBUTE_COMPRESSED directly with NtCreateFile().
1094  */
1095 static int
1096 adjust_compression_attribute(HANDLE h, const struct wim_dentry *dentry,
1097                              struct win32_apply_ctx *ctx)
1098 {
1099         const bool compressed = (dentry->d_inode->i_attributes &
1100                                  FILE_ATTRIBUTE_COMPRESSED);
1101         FILE_BASIC_INFORMATION info;
1102         USHORT compression_state;
1103         NTSTATUS status;
1104
1105         if (ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_NO_ATTRIBUTES)
1106                 return 0;
1107
1108         if (!ctx->common.supported_features.compressed_files)
1109                 return 0;
1110
1111
1112         /* Get current attributes  */
1113         status = NtQueryInformationFile(h, &ctx->iosb, &info, sizeof(info),
1114                                         FileBasicInformation);
1115         if (NT_SUCCESS(status) &&
1116             compressed == !!(info.FileAttributes & FILE_ATTRIBUTE_COMPRESSED))
1117         {
1118                 /* Nothing needs to be done.  */
1119                 return 0;
1120         }
1121
1122         /* Set the new compression state  */
1123
1124         if (compressed)
1125                 compression_state = COMPRESSION_FORMAT_DEFAULT;
1126         else
1127                 compression_state = COMPRESSION_FORMAT_NONE;
1128
1129         status = winnt_fsctl(h, FSCTL_SET_COMPRESSION,
1130                              &compression_state, sizeof(USHORT), NULL, 0, NULL);
1131         if (NT_SUCCESS(status))
1132                 return 0;
1133
1134         winnt_error(status, L"Can't %s compression attribute on \"%ls\"",
1135                     (compressed ? "set" : "clear"), current_path(ctx));
1136         return WIMLIB_ERR_SET_ATTRIBUTES;
1137 }
1138
1139 /* Try to enable short name support on the target volume.  If successful, return
1140  * true.  If unsuccessful, issue a warning and return false.  */
1141 static bool
1142 try_to_enable_short_names(const wchar_t *volume)
1143 {
1144         HANDLE h;
1145         FILE_FS_PERSISTENT_VOLUME_INFORMATION info;
1146         BOOL bret;
1147         DWORD bytesReturned;
1148
1149         h = CreateFile(volume, GENERIC_WRITE,
1150                        FILE_SHARE_VALID_FLAGS, NULL, OPEN_EXISTING,
1151                        FILE_FLAG_BACKUP_SEMANTICS, NULL);
1152         if (h == INVALID_HANDLE_VALUE)
1153                 goto fail;
1154
1155         info.VolumeFlags = 0;
1156         info.FlagMask = PERSISTENT_VOLUME_STATE_SHORT_NAME_CREATION_DISABLED;
1157         info.Version = 1;
1158         info.Reserved = 0;
1159
1160         bret = DeviceIoControl(h, FSCTL_SET_PERSISTENT_VOLUME_STATE,
1161                                &info, sizeof(info), NULL, 0,
1162                                &bytesReturned, NULL);
1163
1164         CloseHandle(h);
1165
1166         if (!bret)
1167                 goto fail;
1168         return true;
1169
1170 fail:
1171         win32_warning(GetLastError(),
1172                       L"Failed to enable short name support on %ls",
1173                       volume + 4);
1174         return false;
1175 }
1176
1177 static NTSTATUS
1178 remove_conflicting_short_name(const struct wim_dentry *dentry, struct win32_apply_ctx *ctx)
1179 {
1180         wchar_t *name;
1181         wchar_t *end;
1182         NTSTATUS status;
1183         HANDLE h;
1184         size_t bufsize = offsetof(FILE_NAME_INFORMATION, FileName) +
1185                          (13 * sizeof(wchar_t));
1186         u8 buf[bufsize] _aligned_attribute(8);
1187         bool retried = false;
1188         FILE_NAME_INFORMATION *info = (FILE_NAME_INFORMATION *)buf;
1189
1190         memset(buf, 0, bufsize);
1191
1192         /* Build the path with the short name.  */
1193         name = &ctx->pathbuf.Buffer[ctx->pathbuf.Length / sizeof(wchar_t)];
1194         while (name != ctx->pathbuf.Buffer && *(name - 1) != L'\\')
1195                 name--;
1196         end = mempcpy(name, dentry->d_short_name, dentry->d_short_name_nbytes);
1197         ctx->pathbuf.Length = ((u8 *)end - (u8 *)ctx->pathbuf.Buffer);
1198
1199         /* Open the conflicting file (by short name).  */
1200         status = NtOpenFile(&h, GENERIC_WRITE | DELETE,
1201                             &ctx->attr, &ctx->iosb,
1202                             FILE_SHARE_VALID_FLAGS,
1203                             FILE_OPEN_REPARSE_POINT | FILE_OPEN_FOR_BACKUP_INTENT);
1204         if (!NT_SUCCESS(status)) {
1205                 winnt_warning(status, L"Can't open \"%ls\"", current_path(ctx));
1206                 goto out;
1207         }
1208
1209 #if 0
1210         WARNING("Overriding conflicting short name; path=\"%ls\"",
1211                 current_path(ctx));
1212 #endif
1213
1214         /* Try to remove the short name on the conflicting file.  */
1215
1216 retry:
1217         status = NtSetInformationFile(h, &ctx->iosb, info, bufsize,
1218                                       FileShortNameInformation);
1219
1220         if (status == STATUS_INVALID_PARAMETER && !retried) {
1221
1222                 /* Microsoft forgot to make it possible to remove short names
1223                  * until Windows 7.  Oops.  Use a random short name instead.  */
1224
1225                 info->FileNameLength = 12 * sizeof(wchar_t);
1226                 for (int i = 0; i < 8; i++)
1227                         info->FileName[i] = 'A' + (rand() % 26);
1228                 info->FileName[8] = L'.';
1229                 info->FileName[9] = L'W';
1230                 info->FileName[10] = L'L';
1231                 info->FileName[11] = L'B';
1232                 info->FileName[12] = L'\0';
1233                 retried = true;
1234                 goto retry;
1235         }
1236         NtClose(h);
1237 out:
1238         build_extraction_path(dentry, ctx);
1239         return status;
1240 }
1241
1242 /* Set the short name on the open file @h which has been created at the location
1243  * indicated by @dentry.
1244  *
1245  * Note that this may add, change, or remove the short name.
1246  *
1247  * @h must be opened with DELETE access.
1248  *
1249  * Returns 0 or WIMLIB_ERR_SET_SHORT_NAME.  The latter only happens in
1250  * STRICT_SHORT_NAMES mode.
1251  */
1252 static int
1253 set_short_name(HANDLE h, const struct wim_dentry *dentry,
1254                struct win32_apply_ctx *ctx)
1255 {
1256
1257         if (!ctx->common.supported_features.short_names)
1258                 return 0;
1259
1260         /*
1261          * Note: The size of the FILE_NAME_INFORMATION buffer must be such that
1262          * FileName contains at least 2 wide characters (4 bytes).  Otherwise,
1263          * NtSetInformationFile() will return STATUS_INFO_LENGTH_MISMATCH.  This
1264          * is despite the fact that FileNameLength can validly be 0 or 2 bytes,
1265          * with the former case being removing the existing short name if
1266          * present, rather than setting one.
1267          *
1268          * The null terminator is seemingly optional, but to be safe we include
1269          * space for it and zero all unused space.
1270          */
1271
1272         size_t bufsize = offsetof(FILE_NAME_INFORMATION, FileName) +
1273                          max(dentry->d_short_name_nbytes, sizeof(wchar_t)) +
1274                          sizeof(wchar_t);
1275         u8 buf[bufsize] _aligned_attribute(8);
1276         FILE_NAME_INFORMATION *info = (FILE_NAME_INFORMATION *)buf;
1277         NTSTATUS status;
1278         bool tried_to_remove_existing = false;
1279
1280         memset(buf, 0, bufsize);
1281
1282         info->FileNameLength = dentry->d_short_name_nbytes;
1283         memcpy(info->FileName, dentry->d_short_name, dentry->d_short_name_nbytes);
1284
1285 retry:
1286         status = NtSetInformationFile(h, &ctx->iosb, info, bufsize,
1287                                       FileShortNameInformation);
1288         if (NT_SUCCESS(status))
1289                 return 0;
1290
1291         if (status == STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME) {
1292                 if (dentry->d_short_name_nbytes == 0)
1293                         return 0;
1294                 if (!ctx->tried_to_enable_short_names) {
1295                         wchar_t volume[7];
1296                         int ret;
1297
1298                         ctx->tried_to_enable_short_names = true;
1299
1300                         ret = win32_get_drive_path(ctx->common.target,
1301                                                    volume);
1302                         if (ret)
1303                                 return ret;
1304                         if (try_to_enable_short_names(volume))
1305                                 goto retry;
1306                 }
1307         }
1308
1309         /*
1310          * Short names can conflict in several cases:
1311          *
1312          * - a file being extracted has a short name conflicting with an
1313          *   existing file
1314          *
1315          * - a file being extracted has a short name conflicting with another
1316          *   file being extracted (possible, but shouldn't happen)
1317          *
1318          * - a file being extracted has a short name that conflicts with the
1319          *   automatically generated short name of a file we previously
1320          *   extracted, but failed to set the short name for.  Sounds unlikely,
1321          *   but this actually does happen fairly often on versions of Windows
1322          *   prior to Windows 7 because they do not support removing short names
1323          *   from files.
1324          */
1325         if (unlikely(status == STATUS_OBJECT_NAME_COLLISION) &&
1326             dentry->d_short_name_nbytes && !tried_to_remove_existing)
1327         {
1328                 tried_to_remove_existing = true;
1329                 status = remove_conflicting_short_name(dentry, ctx);
1330                 if (NT_SUCCESS(status))
1331                         goto retry;
1332         }
1333
1334         /* By default, failure to set short names is not an error (since short
1335          * names aren't too important anymore...).  */
1336         if (!(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_SHORT_NAMES)) {
1337                 if (dentry->d_short_name_nbytes)
1338                         ctx->num_set_short_name_failures++;
1339                 else
1340                         ctx->num_remove_short_name_failures++;
1341                 return 0;
1342         }
1343
1344         winnt_error(status, L"Can't set short name on \"%ls\"", current_path(ctx));
1345         return WIMLIB_ERR_SET_SHORT_NAME;
1346 }
1347
1348 /*
1349  * A wrapper around NtCreateFile() to make it slightly more usable...
1350  * This uses the path currently constructed in ctx->pathbuf.
1351  *
1352  * Also, we always specify SYNCHRONIZE access, FILE_OPEN_FOR_BACKUP_INTENT, and
1353  * FILE_OPEN_REPARSE_POINT.
1354  */
1355 static NTSTATUS
1356 do_create_file(PHANDLE FileHandle,
1357                ACCESS_MASK DesiredAccess,
1358                PLARGE_INTEGER AllocationSize,
1359                ULONG FileAttributes,
1360                ULONG CreateDisposition,
1361                ULONG CreateOptions,
1362                struct win32_apply_ctx *ctx)
1363 {
1364         return NtCreateFile(FileHandle,
1365                             DesiredAccess | SYNCHRONIZE,
1366                             &ctx->attr,
1367                             &ctx->iosb,
1368                             AllocationSize,
1369                             FileAttributes,
1370                             FILE_SHARE_VALID_FLAGS,
1371                             CreateDisposition,
1372                             CreateOptions |
1373                                 FILE_OPEN_FOR_BACKUP_INTENT |
1374                                 FILE_OPEN_REPARSE_POINT,
1375                             NULL,
1376                             0);
1377 }
1378
1379 /* Like do_create_file(), but builds the extraction path of the @dentry first.
1380  */
1381 static NTSTATUS
1382 create_file(PHANDLE FileHandle,
1383             ACCESS_MASK DesiredAccess,
1384             PLARGE_INTEGER AllocationSize,
1385             ULONG FileAttributes,
1386             ULONG CreateDisposition,
1387             ULONG CreateOptions,
1388             const struct wim_dentry *dentry,
1389             struct win32_apply_ctx *ctx)
1390 {
1391         build_extraction_path(dentry, ctx);
1392         return do_create_file(FileHandle,
1393                               DesiredAccess,
1394                               AllocationSize,
1395                               FileAttributes,
1396                               CreateDisposition,
1397                               CreateOptions,
1398                               ctx);
1399 }
1400
1401 static int
1402 delete_file_or_stream(struct win32_apply_ctx *ctx)
1403 {
1404         NTSTATUS status;
1405         HANDLE h;
1406         ULONG perms = DELETE;
1407         ULONG flags = FILE_NON_DIRECTORY_FILE | FILE_DELETE_ON_CLOSE;
1408
1409         /* First try opening the file with FILE_DELETE_ON_CLOSE.  In most cases,
1410          * all we have to do is that plus close the file handle.  */
1411 retry:
1412         status = do_create_file(&h, perms, NULL, 0, FILE_OPEN, flags, ctx);
1413
1414         if (unlikely(status == STATUS_CANNOT_DELETE)) {
1415                 /* This error occurs for files with FILE_ATTRIBUTE_READONLY set.
1416                  * Try an alternate approach: first open the file without
1417                  * FILE_DELETE_ON_CLOSE, then reset the file attributes, then
1418                  * set the "delete" disposition on the handle.  */
1419                 if (flags & FILE_DELETE_ON_CLOSE) {
1420                         flags &= ~FILE_DELETE_ON_CLOSE;
1421                         perms |= FILE_WRITE_ATTRIBUTES;
1422                         goto retry;
1423                 }
1424         }
1425
1426         if (unlikely(!NT_SUCCESS(status))) {
1427                 winnt_error(status, L"Can't open \"%ls\" for deletion "
1428                             "(perms=%x, flags=%x)",
1429                             current_path(ctx), perms, flags);
1430                 return WIMLIB_ERR_OPEN;
1431         }
1432
1433         if (unlikely(!(flags & FILE_DELETE_ON_CLOSE))) {
1434
1435                 FILE_BASIC_INFORMATION basic_info =
1436                         { .FileAttributes = FILE_ATTRIBUTE_NORMAL };
1437                 status = NtSetInformationFile(h, &ctx->iosb, &basic_info,
1438                                               sizeof(basic_info),
1439                                               FileBasicInformation);
1440
1441                 if (!NT_SUCCESS(status)) {
1442                         winnt_error(status, L"Can't reset attributes of \"%ls\" "
1443                                     "to prepare for deletion", current_path(ctx));
1444                         NtClose(h);
1445                         return WIMLIB_ERR_SET_ATTRIBUTES;
1446                 }
1447
1448                 FILE_DISPOSITION_INFORMATION disp_info =
1449                         { .DoDeleteFile = TRUE };
1450                 status = NtSetInformationFile(h, &ctx->iosb, &disp_info,
1451                                               sizeof(disp_info),
1452                                               FileDispositionInformation);
1453                 if (!NT_SUCCESS(status)) {
1454                         winnt_error(status, L"Can't set delete-on-close "
1455                                     "disposition on \"%ls\"", current_path(ctx));
1456                         NtClose(h);
1457                         return WIMLIB_ERR_SET_ATTRIBUTES;
1458                 }
1459         }
1460
1461         status = NtClose(h);
1462         if (unlikely(!NT_SUCCESS(status))) {
1463                 winnt_error(status, L"Error closing \"%ls\" after setting "
1464                             "delete-on-close disposition", current_path(ctx));
1465                 return WIMLIB_ERR_OPEN;
1466         }
1467
1468         return 0;
1469 }
1470
1471 /*
1472  * Create a nondirectory file or named data stream at the current path,
1473  * superseding any that already exists at that path.  If successful, return an
1474  * open handle to the file or named data stream with the requested permissions.
1475  */
1476 static int
1477 supersede_file_or_stream(struct win32_apply_ctx *ctx, DWORD perms,
1478                          HANDLE *h_ret)
1479 {
1480         NTSTATUS status;
1481         bool retried = false;
1482
1483         /* FILE_ATTRIBUTE_SYSTEM is needed to ensure that
1484          * FILE_ATTRIBUTE_ENCRYPTED doesn't get set before we want it to be.  */
1485 retry:
1486         status = do_create_file(h_ret,
1487                                 perms,
1488                                 NULL,
1489                                 FILE_ATTRIBUTE_SYSTEM,
1490                                 FILE_CREATE,
1491                                 FILE_NON_DIRECTORY_FILE,
1492                                 ctx);
1493         if (likely(NT_SUCCESS(status)))
1494                 return 0;
1495
1496         /* STATUS_OBJECT_NAME_COLLISION means that the file or stream already
1497          * exists.  Delete the existing file or stream, then try again.
1498          *
1499          * Note: we don't use FILE_OVERWRITE_IF or FILE_SUPERSEDE because of
1500          * problems with certain file attributes, especially
1501          * FILE_ATTRIBUTE_ENCRYPTED.  FILE_SUPERSEDE is also broken in the
1502          * Windows PE ramdisk.  */
1503         if (status == STATUS_OBJECT_NAME_COLLISION && !retried) {
1504                 int ret = delete_file_or_stream(ctx);
1505                 if (ret)
1506                         return ret;
1507                 retried = true;
1508                 goto retry;
1509         }
1510         winnt_error(status, L"Can't create \"%ls\"", current_path(ctx));
1511         return WIMLIB_ERR_OPEN;
1512 }
1513
1514 /* Set the reparse point @rpbuf of length @rpbuflen on the extracted file
1515  * corresponding to the WIM dentry @dentry.  */
1516 static int
1517 do_set_reparse_point(const struct wim_dentry *dentry,
1518                      const struct reparse_buffer_disk *rpbuf, u16 rpbuflen,
1519                      struct win32_apply_ctx *ctx)
1520 {
1521         NTSTATUS status;
1522         HANDLE h;
1523
1524         status = create_file(&h, GENERIC_WRITE, NULL,
1525                              0, FILE_OPEN, 0, dentry, ctx);
1526         if (!NT_SUCCESS(status))
1527                 goto fail;
1528
1529         status = winnt_fsctl(h, FSCTL_SET_REPARSE_POINT,
1530                              rpbuf, rpbuflen, NULL, 0, NULL);
1531         NtClose(h);
1532
1533         if (NT_SUCCESS(status))
1534                 return 0;
1535
1536         /* On Windows, by default only the Administrator can create symbolic
1537          * links for some reason.  By default we just issue a warning if this
1538          * appears to be the problem.  Use WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS
1539          * to get a hard error.  */
1540         if (!(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS)
1541             && (status == STATUS_PRIVILEGE_NOT_HELD ||
1542                 status == STATUS_ACCESS_DENIED)
1543             && (dentry->d_inode->i_reparse_tag == WIM_IO_REPARSE_TAG_SYMLINK ||
1544                 dentry->d_inode->i_reparse_tag == WIM_IO_REPARSE_TAG_MOUNT_POINT))
1545         {
1546                 WARNING("Can't create symbolic link \"%ls\"!              \n"
1547                         "          (Need Administrator rights, or at least "
1548                         "the\n"
1549                         "          SeCreateSymbolicLink privilege.)",
1550                         current_path(ctx));
1551                 return 0;
1552         }
1553
1554 fail:
1555         winnt_error(status, L"Can't set reparse data on \"%ls\"",
1556                     current_path(ctx));
1557         return WIMLIB_ERR_SET_REPARSE_DATA;
1558 }
1559
1560 /*
1561  * Create empty named data streams and potentially a reparse point for the
1562  * specified file, if any.
1563  *
1564  * Since these won't have blob descriptors, they won't show up in the call to
1565  * extract_blob_list().  Hence the need for the special case.
1566  */
1567 static int
1568 create_empty_streams(const struct wim_dentry *dentry,
1569                      struct win32_apply_ctx *ctx)
1570 {
1571         const struct wim_inode *inode = dentry->d_inode;
1572         int ret;
1573
1574         for (unsigned i = 0; i < inode->i_num_streams; i++) {
1575                 const struct wim_inode_stream *strm = &inode->i_streams[i];
1576
1577                 if (stream_blob_resolved(strm) != NULL)
1578                         continue;
1579
1580                 if (strm->stream_type == STREAM_TYPE_REPARSE_POINT &&
1581                     ctx->common.supported_features.reparse_points)
1582                 {
1583                         u8 buf[REPARSE_DATA_OFFSET] _aligned_attribute(8);
1584                         struct reparse_buffer_disk *rpbuf =
1585                                 (struct reparse_buffer_disk *)buf;
1586                         complete_reparse_point(rpbuf, inode, 0);
1587                         ret = do_set_reparse_point(dentry, rpbuf,
1588                                                    REPARSE_DATA_OFFSET, ctx);
1589                         if (ret)
1590                                 return ret;
1591                 } else if (stream_is_named_data_stream(strm) &&
1592                            ctx->common.supported_features.named_data_streams)
1593                 {
1594                         HANDLE h;
1595
1596                         build_extraction_path_with_ads(dentry, ctx,
1597                                                        strm->stream_name,
1598                                                        utf16le_len_chars(strm->stream_name));
1599                         /*
1600                          * Note: do not request any permissions on the handle.
1601                          * Otherwise, we may encounter a Windows bug where the
1602                          * parent directory DACL denies read access to the new
1603                          * named data stream, even when using backup semantics!
1604                          */
1605                         ret = supersede_file_or_stream(ctx, 0, &h);
1606
1607                         build_extraction_path(dentry, ctx);
1608
1609                         if (ret)
1610                                 return ret;
1611                         NtClose(h);
1612                 }
1613         }
1614
1615         return 0;
1616 }
1617
1618 /*
1619  * Creates the directory named by @dentry, or uses an existing directory at that
1620  * location.  If necessary, sets the short name and/or fixes compression and
1621  * encryption attributes.
1622  *
1623  * Returns 0, WIMLIB_ERR_MKDIR, or WIMLIB_ERR_SET_SHORT_NAME.
1624  */
1625 static int
1626 create_directory(const struct wim_dentry *dentry, struct win32_apply_ctx *ctx)
1627 {
1628         DWORD perms;
1629         NTSTATUS status;
1630         HANDLE h;
1631         int ret;
1632
1633         /* DELETE is needed for set_short_name(); GENERIC_READ and GENERIC_WRITE
1634          * are needed for adjust_compression_attribute().  */
1635         perms = GENERIC_READ | GENERIC_WRITE;
1636         if (!dentry_is_root(dentry))
1637                 perms |= DELETE;
1638
1639         /* FILE_ATTRIBUTE_SYSTEM is needed to ensure that
1640          * FILE_ATTRIBUTE_ENCRYPTED doesn't get set before we want it to be.  */
1641         status = create_file(&h, perms, NULL, FILE_ATTRIBUTE_SYSTEM,
1642                              FILE_OPEN_IF, FILE_DIRECTORY_FILE, dentry, ctx);
1643         if (unlikely(!NT_SUCCESS(status))) {
1644                 const wchar_t *path = current_path(ctx);
1645                 winnt_error(status, L"Can't create directory \"%ls\"", path);
1646
1647                 /* Check for known issue with WindowsApps directory.  */
1648                 if (status == STATUS_ACCESS_DENIED &&
1649                     (wcsstr(path, L"\\WindowsApps\\") ||
1650                      wcsstr(path, L"\\InfusedApps\\"))) {
1651                         ERROR(
1652 "You seem to be trying to extract files to the WindowsApps directory.\n"
1653 "        Windows 8.1 and later use new file permissions in this directory that\n"
1654 "        cannot be overridden, even by backup/restore programs.  To extract your\n"
1655 "        files anyway, you need to choose a different target directory, delete\n"
1656 "        the WindowsApps directory entirely, reformat the volume, do the\n"
1657 "        extraction from a non-broken operating system such as Windows 7 or\n"
1658 "        Linux, or wait for Microsoft to fix the design flaw in their operating\n"
1659 "        system.  This is *not* a bug in wimlib.  See this thread for more\n"
1660 "        information: https://wimlib.net/forums/viewtopic.php?f=1&t=261");
1661                 }
1662                 return WIMLIB_ERR_MKDIR;
1663         }
1664
1665         if (ctx->iosb.Information == FILE_OPENED) {
1666                 /* If we opened an existing directory, try to clear its file
1667                  * attributes.  As far as I know, this only actually makes a
1668                  * difference in the case where a FILE_ATTRIBUTE_READONLY
1669                  * directory has a named data stream which needs to be
1670                  * extracted.  You cannot create a named data stream of such a
1671                  * directory, even though this contradicts Microsoft's
1672                  * documentation for FILE_ATTRIBUTE_READONLY which states it is
1673                  * not honored for directories!  */
1674                 if (!(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_NO_ATTRIBUTES)) {
1675                         FILE_BASIC_INFORMATION basic_info =
1676                                 { .FileAttributes = FILE_ATTRIBUTE_NORMAL };
1677                         NtSetInformationFile(h, &ctx->iosb, &basic_info,
1678                                              sizeof(basic_info),
1679                                              FileBasicInformation);
1680                 }
1681         }
1682
1683         if (!dentry_is_root(dentry)) {
1684                 ret = set_short_name(h, dentry, ctx);
1685                 if (ret)
1686                         goto out;
1687         }
1688
1689         ret = adjust_compression_attribute(h, dentry, ctx);
1690 out:
1691         NtClose(h);
1692         return ret;
1693 }
1694
1695 /*
1696  * Create all the directories being extracted, other than the target directory
1697  * itself.
1698  *
1699  * Note: we don't honor directory hard links.  However, we don't allow them to
1700  * exist in WIM images anyway (see inode_fixup.c).
1701  */
1702 static int
1703 create_directories(struct list_head *dentry_list,
1704                    struct win32_apply_ctx *ctx)
1705 {
1706         const struct wim_dentry *dentry;
1707         int ret;
1708
1709         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
1710
1711                 if (!(dentry->d_inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY))
1712                         continue;
1713
1714                 /* Note: Here we include files with
1715                  * FILE_ATTRIBUTE_DIRECTORY|FILE_ATTRIBUTE_REPARSE_POINT, but we
1716                  * wait until later to actually set the reparse data.  */
1717
1718                 ret = create_directory(dentry, ctx);
1719
1720                 if (!ret)
1721                         ret = create_empty_streams(dentry, ctx);
1722
1723                 ret = check_apply_error(dentry, ctx, ret);
1724                 if (ret)
1725                         return ret;
1726
1727                 ret = report_file_created(&ctx->common);
1728                 if (ret)
1729                         return ret;
1730         }
1731         return 0;
1732 }
1733
1734 /*
1735  * Creates the nondirectory file named by @dentry.
1736  *
1737  * On success, returns an open handle to the file in @h_ret, with GENERIC_READ,
1738  * GENERIC_WRITE, and DELETE access.  Also, the path to the file will be saved
1739  * in ctx->pathbuf.  On failure, returns an error code.
1740  */
1741 static int
1742 create_nondirectory_inode(HANDLE *h_ret, const struct wim_dentry *dentry,
1743                           struct win32_apply_ctx *ctx)
1744 {
1745         int ret;
1746         HANDLE h;
1747
1748         build_extraction_path(dentry, ctx);
1749
1750         ret = supersede_file_or_stream(ctx,
1751                                        GENERIC_READ | GENERIC_WRITE | DELETE,
1752                                        &h);
1753         if (ret)
1754                 goto out;
1755
1756         ret = adjust_compression_attribute(h, dentry, ctx);
1757         if (ret)
1758                 goto out_close;
1759
1760         ret = create_empty_streams(dentry, ctx);
1761         if (ret)
1762                 goto out_close;
1763
1764         *h_ret = h;
1765         return 0;
1766
1767 out_close:
1768         NtClose(h);
1769 out:
1770         return ret;
1771 }
1772
1773 /* Creates a hard link at the location named by @dentry to the file represented
1774  * by the open handle @h.  Or, if the target volume does not support hard links,
1775  * create a separate file instead.  */
1776 static int
1777 create_link(HANDLE h, const struct wim_dentry *dentry,
1778             struct win32_apply_ctx *ctx)
1779 {
1780         if (ctx->common.supported_features.hard_links) {
1781
1782                 build_extraction_path(dentry, ctx);
1783
1784                 size_t bufsize = offsetof(FILE_LINK_INFORMATION, FileName) +
1785                                  ctx->pathbuf.Length + sizeof(wchar_t);
1786                 u8 buf[bufsize] _aligned_attribute(8);
1787                 FILE_LINK_INFORMATION *info = (FILE_LINK_INFORMATION *)buf;
1788                 NTSTATUS status;
1789
1790                 info->ReplaceIfExists = TRUE;
1791                 info->RootDirectory = ctx->attr.RootDirectory;
1792                 info->FileNameLength = ctx->pathbuf.Length;
1793                 memcpy(info->FileName, ctx->pathbuf.Buffer, ctx->pathbuf.Length);
1794                 info->FileName[info->FileNameLength / 2] = L'\0';
1795
1796                 /* Note: the null terminator isn't actually necessary,
1797                  * but if you don't add the extra character, you get
1798                  * STATUS_INFO_LENGTH_MISMATCH when FileNameLength
1799                  * happens to be 2  */
1800
1801                 status = NtSetInformationFile(h, &ctx->iosb, info, bufsize,
1802                                               FileLinkInformation);
1803                 if (NT_SUCCESS(status))
1804                         return 0;
1805                 winnt_error(status, L"Failed to create link \"%ls\"",
1806                             current_path(ctx));
1807                 return WIMLIB_ERR_LINK;
1808         } else {
1809                 HANDLE h2;
1810                 int ret;
1811
1812                 ret = create_nondirectory_inode(&h2, dentry, ctx);
1813                 if (ret)
1814                         return ret;
1815
1816                 NtClose(h2);
1817                 return 0;
1818         }
1819 }
1820
1821 /* Given an inode (represented by the open handle @h) for which one link has
1822  * been created (named by @first_dentry), create the other links.
1823  *
1824  * Or, if the target volume does not support hard links, create separate files.
1825  *
1826  * Note: This uses ctx->pathbuf and does not reset it.
1827  */
1828 static int
1829 create_links(HANDLE h, const struct wim_dentry *first_dentry,
1830              struct win32_apply_ctx *ctx)
1831 {
1832         const struct wim_inode *inode = first_dentry->d_inode;
1833         const struct wim_dentry *dentry;
1834         int ret;
1835
1836         inode_for_each_extraction_alias(dentry, inode) {
1837                 if (dentry != first_dentry) {
1838                         ret = create_link(h, dentry, ctx);
1839                         if (ret)
1840                                 return ret;
1841                 }
1842         }
1843         return 0;
1844 }
1845
1846 /* Create a nondirectory file, including all links.  */
1847 static int
1848 create_nondirectory(struct wim_inode *inode, struct win32_apply_ctx *ctx)
1849 {
1850         struct wim_dentry *first_dentry;
1851         HANDLE h;
1852         int ret;
1853
1854         first_dentry = first_extraction_alias(inode);
1855
1856         /* Create first link.  */
1857         ret = create_nondirectory_inode(&h, first_dentry, ctx);
1858         if (ret)
1859                 return ret;
1860
1861         /* Set short name.  */
1862         ret = set_short_name(h, first_dentry, ctx);
1863
1864         /* Create additional links, OR if hard links are not supported just
1865          * create more files.  */
1866         if (!ret)
1867                 ret = create_links(h, first_dentry, ctx);
1868
1869         /* "WIMBoot" extraction: set external backing by the WIM file if needed.  */
1870         if (!ret && unlikely(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_WIMBOOT))
1871                 ret = set_backed_from_wim(h, inode, ctx);
1872
1873         NtClose(h);
1874         return ret;
1875 }
1876
1877 /* Create all the nondirectory files being extracted, including all aliases
1878  * (hard links).  */
1879 static int
1880 create_nondirectories(struct list_head *dentry_list, struct win32_apply_ctx *ctx)
1881 {
1882         struct wim_dentry *dentry;
1883         struct wim_inode *inode;
1884         int ret;
1885
1886         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
1887                 inode = dentry->d_inode;
1888                 if (inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY)
1889                         continue;
1890                 /* Call create_nondirectory() only once per inode  */
1891                 if (dentry == inode_first_extraction_dentry(inode)) {
1892                         ret = create_nondirectory(inode, ctx);
1893                         ret = check_apply_error(dentry, ctx, ret);
1894                         if (ret)
1895                                 return ret;
1896                 }
1897                 ret = report_file_created(&ctx->common);
1898                 if (ret)
1899                         return ret;
1900         }
1901         return 0;
1902 }
1903
1904 static void
1905 close_handles(struct win32_apply_ctx *ctx)
1906 {
1907         for (unsigned i = 0; i < ctx->num_open_handles; i++)
1908                 NtClose(ctx->open_handles[i]);
1909 }
1910
1911 /* Prepare to read the next blob, which has size @blob_size, into an in-memory
1912  * buffer.  */
1913 static bool
1914 prepare_data_buffer(struct win32_apply_ctx *ctx, u64 blob_size)
1915 {
1916         if (blob_size > ctx->data_buffer_size) {
1917                 /* Larger buffer needed.  */
1918                 void *new_buffer;
1919                 if ((size_t)blob_size != blob_size)
1920                         return false;
1921                 new_buffer = REALLOC(ctx->data_buffer, blob_size);
1922                 if (!new_buffer)
1923                         return false;
1924                 ctx->data_buffer = new_buffer;
1925                 ctx->data_buffer_size = blob_size;
1926         }
1927         /* On the first call this changes data_buffer_ptr from NULL, which tells
1928          * extract_chunk() that the data buffer needs to be filled while reading
1929          * the stream data.  */
1930         ctx->data_buffer_ptr = ctx->data_buffer;
1931         return true;
1932 }
1933
1934 static int
1935 begin_extract_blob_instance(const struct blob_descriptor *blob,
1936                             struct wim_dentry *dentry,
1937                             const struct wim_inode_stream *strm,
1938                             struct win32_apply_ctx *ctx)
1939 {
1940         FILE_ALLOCATION_INFORMATION alloc_info;
1941         HANDLE h;
1942         NTSTATUS status;
1943
1944         if (unlikely(strm->stream_type == STREAM_TYPE_REPARSE_POINT)) {
1945                 /* We can't write the reparse point stream directly; we must set
1946                  * it with FSCTL_SET_REPARSE_POINT, which requires that all the
1947                  * data be available.  So, stage the data in a buffer.  */
1948                 if (!prepare_data_buffer(ctx, blob->size))
1949                         return WIMLIB_ERR_NOMEM;
1950                 list_add_tail(&dentry->d_tmp_list, &ctx->reparse_dentries);
1951                 return 0;
1952         }
1953
1954         if (unlikely(strm->stream_type == STREAM_TYPE_EFSRPC_RAW_DATA)) {
1955                 /* We can't write encrypted files directly; we must use
1956                  * WriteEncryptedFileRaw(), which requires providing the data
1957                  * through a callback function.  This can't easily be combined
1958                  * with our own callback-based approach.
1959                  *
1960                  * The current workaround is to simply read the blob into memory
1961                  * and write the encrypted file from that.
1962                  *
1963                  * TODO: This isn't sufficient for extremely large encrypted
1964                  * files.  Perhaps we should create an extra thread to write
1965                  * such files...  */
1966                 if (!prepare_data_buffer(ctx, blob->size))
1967                         return WIMLIB_ERR_NOMEM;
1968                 list_add_tail(&dentry->d_tmp_list, &ctx->encrypted_dentries);
1969                 return 0;
1970         }
1971
1972         /* It's a data stream (may be unnamed or named).  */
1973         wimlib_assert(strm->stream_type == STREAM_TYPE_DATA);
1974
1975         if (ctx->num_open_handles == MAX_OPEN_FILES) {
1976                 /* XXX: Fix this.  But because of the checks in
1977                  * extract_blob_list(), this can now only happen on a filesystem
1978                  * that does not support hard links.  */
1979                 ERROR("Can't extract data: too many open files!");
1980                 return WIMLIB_ERR_UNSUPPORTED;
1981         }
1982
1983
1984         if (unlikely(stream_is_named(strm))) {
1985                 build_extraction_path_with_ads(dentry, ctx,
1986                                                strm->stream_name,
1987                                                utf16le_len_chars(strm->stream_name));
1988         } else {
1989                 build_extraction_path(dentry, ctx);
1990         }
1991
1992
1993         /* Open a new handle  */
1994         status = do_create_file(&h,
1995                                 FILE_WRITE_DATA | SYNCHRONIZE,
1996                                 NULL, 0, FILE_OPEN_IF,
1997                                 FILE_SEQUENTIAL_ONLY |
1998                                         FILE_SYNCHRONOUS_IO_NONALERT,
1999                                 ctx);
2000         if (!NT_SUCCESS(status)) {
2001                 winnt_error(status, L"Can't open \"%ls\" for writing",
2002                             current_path(ctx));
2003                 return WIMLIB_ERR_OPEN;
2004         }
2005
2006         ctx->open_handles[ctx->num_open_handles++] = h;
2007
2008         /* Allocate space for the data.  */
2009         alloc_info.AllocationSize.QuadPart = blob->size;
2010         NtSetInformationFile(h, &ctx->iosb, &alloc_info, sizeof(alloc_info),
2011                              FileAllocationInformation);
2012         return 0;
2013 }
2014
2015 /* Given a Windows NT namespace path, such as \??\e:\Windows\System32, return a
2016  * pointer to the suffix of the path that begins with the device directly, such
2017  * as e:\Windows\System32.  */
2018 static const wchar_t *
2019 skip_nt_toplevel_component(const wchar_t *path, size_t path_nchars)
2020 {
2021         static const wchar_t * const dirs[] = {
2022                 L"\\??\\",
2023                 L"\\DosDevices\\",
2024                 L"\\Device\\",
2025         };
2026         const wchar_t * const end = path + path_nchars;
2027
2028         for (size_t i = 0; i < ARRAY_LEN(dirs); i++) {
2029                 size_t len = wcslen(dirs[i]);
2030                 if (len <= (end - path) && !wmemcmp(path, dirs[i], len)) {
2031                         path += len;
2032                         while (path != end && *path == L'\\')
2033                                 path++;
2034                         return path;
2035                 }
2036         }
2037         return path;
2038 }
2039
2040 /*
2041  * Given a Windows NT namespace path, such as \??\e:\Windows\System32, return a
2042  * pointer to the suffix of the path that is device-relative but possibly with
2043  * leading slashes, such as \Windows\System32.
2044  *
2045  * The path has an explicit length and is not necessarily null terminated.
2046  */
2047 static const wchar_t *
2048 get_device_relative_path(const wchar_t *path, size_t path_nchars)
2049 {
2050         const wchar_t * const orig_path = path;
2051         const wchar_t * const end = path + path_nchars;
2052
2053         path = skip_nt_toplevel_component(path, path_nchars);
2054         if (path == orig_path)
2055                 return orig_path;
2056
2057         while (path != end && *path != L'\\')
2058                 path++;
2059
2060         return path;
2061 }
2062
2063 /*
2064  * Given a reparse point buffer for an inode for which the absolute link target
2065  * was relativized when it was archived, de-relative the link target to be
2066  * consistent with the actual extraction location.
2067  */
2068 static void
2069 try_rpfix(struct reparse_buffer_disk *rpbuf, u16 *rpbuflen_p,
2070           struct win32_apply_ctx *ctx)
2071 {
2072         struct link_reparse_point link;
2073         size_t orig_subst_name_nchars;
2074         const wchar_t *relpath;
2075         size_t relpath_nchars;
2076         size_t target_ntpath_nchars;
2077         size_t fixed_subst_name_nchars;
2078         const wchar_t *fixed_print_name;
2079         size_t fixed_print_name_nchars;
2080
2081         /* Do nothing if the reparse data is invalid.  */
2082         if (parse_link_reparse_point(rpbuf, *rpbuflen_p, &link))
2083                 return;
2084
2085         /* Do nothing if the reparse point is a relative symbolic link.  */
2086         if (link_is_relative_symlink(&link))
2087                 return;
2088
2089         /* Build the new substitute name from the NT namespace path to the
2090          * target directory, then a path separator, then the "device relative"
2091          * part of the old substitute name.  */
2092
2093         orig_subst_name_nchars = link.substitute_name_nbytes / sizeof(wchar_t);
2094
2095         relpath = get_device_relative_path(link.substitute_name,
2096                                            orig_subst_name_nchars);
2097         relpath_nchars = orig_subst_name_nchars -
2098                          (relpath - link.substitute_name);
2099
2100         target_ntpath_nchars = ctx->target_ntpath.Length / sizeof(wchar_t);
2101
2102         /* If the target directory is a filesystem root, such as \??\C:\, then
2103          * it already will have a trailing slash.  Don't include this slash if
2104          * we are already adding slashes via 'relpath'.  This prevents an extra
2105          * slash from being generated each time the link is extracted.  And
2106          * unlike on UNIX, the number of slashes in paths on Windows can be
2107          * significant; Windows won't understand the link target if it contains
2108          * too many slashes.  */
2109         if (target_ntpath_nchars > 0 && relpath_nchars > 0 &&
2110             ctx->target_ntpath.Buffer[target_ntpath_nchars - 1] == L'\\')
2111                 target_ntpath_nchars--;
2112
2113         /* Also remove extra slashes from the beginning of 'relpath'.  Normally
2114          * this isn't needed, but this is here to make the extra slash(es) added
2115          * by wimlib pre-v1.9.1 get removed automatically.  */
2116         while (relpath_nchars >= 2 &&
2117                relpath[0] == L'\\' && relpath[1] == L'\\') {
2118                 relpath++;
2119                 relpath_nchars--;
2120         }
2121
2122         fixed_subst_name_nchars = target_ntpath_nchars + relpath_nchars;
2123
2124         wchar_t fixed_subst_name[fixed_subst_name_nchars];
2125
2126         wmemcpy(fixed_subst_name, ctx->target_ntpath.Buffer, target_ntpath_nchars);
2127         wmemcpy(&fixed_subst_name[target_ntpath_nchars], relpath, relpath_nchars);
2128         /* Doesn't need to be null-terminated.  */
2129
2130         /* Print name should be Win32, but not all NT names can even be
2131          * translated to Win32 names.  But we can at least delete the top-level
2132          * directory, such as \??\, and this will have the expected result in
2133          * the usual case.  */
2134         fixed_print_name = skip_nt_toplevel_component(fixed_subst_name,
2135                                                       fixed_subst_name_nchars);
2136         fixed_print_name_nchars = fixed_subst_name_nchars - (fixed_print_name -
2137                                                              fixed_subst_name);
2138
2139         link.substitute_name = fixed_subst_name;
2140         link.substitute_name_nbytes = fixed_subst_name_nchars * sizeof(wchar_t);
2141         link.print_name = (wchar_t *)fixed_print_name;
2142         link.print_name_nbytes = fixed_print_name_nchars * sizeof(wchar_t);
2143         make_link_reparse_point(&link, rpbuf, rpbuflen_p);
2144 }
2145
2146 /* Sets the reparse point on the specified file.  This handles "fixing" the
2147  * targets of absolute symbolic links and junctions if WIMLIB_EXTRACT_FLAG_RPFIX
2148  * was specified.  */
2149 static int
2150 set_reparse_point(const struct wim_dentry *dentry,
2151                   const struct reparse_buffer_disk *rpbuf, u16 rpbuflen,
2152                   struct win32_apply_ctx *ctx)
2153 {
2154         if ((ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_RPFIX)
2155             && !(dentry->d_inode->i_rp_flags & WIM_RP_FLAG_NOT_FIXED))
2156         {
2157                 memcpy(&ctx->rpfixbuf, rpbuf, rpbuflen);
2158                 try_rpfix(&ctx->rpfixbuf, &rpbuflen, ctx);
2159                 rpbuf = &ctx->rpfixbuf;
2160         }
2161         return do_set_reparse_point(dentry, rpbuf, rpbuflen, ctx);
2162
2163 }
2164
2165 /* Import the next block of raw encrypted data  */
2166 static DWORD WINAPI
2167 import_encrypted_data(PBYTE pbData, PVOID pvCallbackContext, PULONG Length)
2168 {
2169         struct win32_apply_ctx *ctx = pvCallbackContext;
2170         ULONG copy_len;
2171
2172         copy_len = min(ctx->encrypted_size - ctx->encrypted_offset, *Length);
2173         memcpy(pbData, &ctx->data_buffer[ctx->encrypted_offset], copy_len);
2174         ctx->encrypted_offset += copy_len;
2175         *Length = copy_len;
2176         return ERROR_SUCCESS;
2177 }
2178
2179 /*
2180  * Write the raw encrypted data to the already-created file (or directory)
2181  * corresponding to @dentry.
2182  *
2183  * The raw encrypted data is provided in ctx->data_buffer, and its size is
2184  * ctx->encrypted_size.
2185  *
2186  * This function may close the target directory, in which case the caller needs
2187  * to re-open it if needed.
2188  */
2189 static int
2190 extract_encrypted_file(const struct wim_dentry *dentry,
2191                        struct win32_apply_ctx *ctx)
2192 {
2193         void *rawctx;
2194         DWORD err;
2195         ULONG flags;
2196         bool retried;
2197
2198         /* Temporarily build a Win32 path for OpenEncryptedFileRaw()  */
2199         build_win32_extraction_path(dentry, ctx);
2200
2201         flags = CREATE_FOR_IMPORT | OVERWRITE_HIDDEN;
2202         if (dentry->d_inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY)
2203                 flags |= CREATE_FOR_DIR;
2204
2205         retried = false;
2206 retry:
2207         err = OpenEncryptedFileRaw(ctx->pathbuf.Buffer, flags, &rawctx);
2208         if (err == ERROR_SHARING_VIOLATION && !retried) {
2209                 /* This can be caused by the handle we have open to the target
2210                  * directory.  Try closing it temporarily.  */
2211                 close_target_directory(ctx);
2212                 retried = true;
2213                 goto retry;
2214         }
2215
2216         /* Restore the NT namespace path  */
2217         build_extraction_path(dentry, ctx);
2218
2219         if (err != ERROR_SUCCESS) {
2220                 win32_error(err, L"Can't open \"%ls\" for encrypted import",
2221                             current_path(ctx));
2222                 return WIMLIB_ERR_OPEN;
2223         }
2224
2225         ctx->encrypted_offset = 0;
2226
2227         err = WriteEncryptedFileRaw(import_encrypted_data, ctx, rawctx);
2228
2229         CloseEncryptedFileRaw(rawctx);
2230
2231         if (err != ERROR_SUCCESS) {
2232                 win32_error(err, L"Can't import encrypted file \"%ls\"",
2233                             current_path(ctx));
2234                 return WIMLIB_ERR_WRITE;
2235         }
2236
2237         return 0;
2238 }
2239
2240 /* Called when starting to read a blob for extraction on Windows  */
2241 static int
2242 begin_extract_blob(struct blob_descriptor *blob, void *_ctx)
2243 {
2244         struct win32_apply_ctx *ctx = _ctx;
2245         const struct blob_extraction_target *targets = blob_extraction_targets(blob);
2246         int ret;
2247
2248         ctx->num_open_handles = 0;
2249         ctx->data_buffer_ptr = NULL;
2250         INIT_LIST_HEAD(&ctx->reparse_dentries);
2251         INIT_LIST_HEAD(&ctx->encrypted_dentries);
2252
2253         for (u32 i = 0; i < blob->out_refcnt; i++) {
2254                 const struct wim_inode *inode = targets[i].inode;
2255                 const struct wim_inode_stream *strm = targets[i].stream;
2256                 struct wim_dentry *dentry;
2257
2258                 /* A copy of the blob needs to be extracted to @inode.  */
2259
2260                 if (ctx->common.supported_features.hard_links) {
2261                         dentry = inode_first_extraction_dentry(inode);
2262                         ret = begin_extract_blob_instance(blob, dentry, strm, ctx);
2263                         ret = check_apply_error(dentry, ctx, ret);
2264                         if (ret)
2265                                 goto fail;
2266                 } else {
2267                         /* Hard links not supported.  Extract the blob
2268                          * separately to each alias of the inode.  */
2269                         inode_for_each_extraction_alias(dentry, inode) {
2270                                 ret = begin_extract_blob_instance(blob, dentry, strm, ctx);
2271                                 ret = check_apply_error(dentry, ctx, ret);
2272                                 if (ret)
2273                                         goto fail;
2274                         }
2275                 }
2276         }
2277
2278         return 0;
2279
2280 fail:
2281         close_handles(ctx);
2282         return ret;
2283 }
2284
2285 /* Called when the next chunk of a blob has been read for extraction on Windows
2286  */
2287 static int
2288 extract_chunk(const void *chunk, size_t size, void *_ctx)
2289 {
2290         struct win32_apply_ctx *ctx = _ctx;
2291
2292         /* Write the data chunk to each open handle  */
2293         for (unsigned i = 0; i < ctx->num_open_handles; i++) {
2294                 u8 *bufptr = (u8 *)chunk;
2295                 size_t bytes_remaining = size;
2296                 NTSTATUS status;
2297                 while (bytes_remaining) {
2298                         ULONG count = min(0xFFFFFFFF, bytes_remaining);
2299
2300                         status = NtWriteFile(ctx->open_handles[i],
2301                                              NULL, NULL, NULL,
2302                                              &ctx->iosb, bufptr, count,
2303                                              NULL, NULL);
2304                         if (!NT_SUCCESS(status)) {
2305                                 winnt_error(status, L"Error writing data to target volume");
2306                                 return WIMLIB_ERR_WRITE;
2307                         }
2308                         bufptr += ctx->iosb.Information;
2309                         bytes_remaining -= ctx->iosb.Information;
2310                 }
2311         }
2312
2313         /* Copy the data chunk into the buffer (if needed)  */
2314         if (ctx->data_buffer_ptr)
2315                 ctx->data_buffer_ptr = mempcpy(ctx->data_buffer_ptr,
2316                                                chunk, size);
2317         return 0;
2318 }
2319
2320 static int
2321 get_system_compression_format(int extract_flags)
2322 {
2323         if (extract_flags & WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K)
2324                 return FILE_PROVIDER_COMPRESSION_FORMAT_XPRESS4K;
2325
2326         if (extract_flags & WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS8K)
2327                 return FILE_PROVIDER_COMPRESSION_FORMAT_XPRESS8K;
2328
2329         if (extract_flags & WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS16K)
2330                 return FILE_PROVIDER_COMPRESSION_FORMAT_XPRESS16K;
2331
2332         return FILE_PROVIDER_COMPRESSION_FORMAT_LZX;
2333 }
2334
2335
2336 static const wchar_t *
2337 get_system_compression_format_string(int format)
2338 {
2339         switch (format) {
2340         case FILE_PROVIDER_COMPRESSION_FORMAT_XPRESS4K:
2341                 return L"XPRESS4K";
2342         case FILE_PROVIDER_COMPRESSION_FORMAT_XPRESS8K:
2343                 return L"XPRESS8K";
2344         case FILE_PROVIDER_COMPRESSION_FORMAT_XPRESS16K:
2345                 return L"XPRESS16K";
2346         default:
2347                 return L"LZX";
2348         }
2349 }
2350
2351 static NTSTATUS
2352 set_system_compression(HANDLE h, int format)
2353 {
2354         NTSTATUS status;
2355         struct {
2356                 struct wof_external_info wof_info;
2357                 struct file_provider_external_info file_info;
2358         } in = {
2359                 .wof_info = {
2360                         .version = WOF_CURRENT_VERSION,
2361                         .provider = WOF_PROVIDER_FILE,
2362                 },
2363                 .file_info = {
2364                         .version = FILE_PROVIDER_CURRENT_VERSION,
2365                         .compression_format = format,
2366                 },
2367         };
2368
2369         /* We intentionally use NtFsControlFile() rather than DeviceIoControl()
2370          * here because the "compressing this object would not save space"
2371          * status code does not map to a valid Win32 error code on older
2372          * versions of Windows (before Windows 10?).  This can be a problem if
2373          * the WOFADK driver is being used rather than the regular WOF, since
2374          * WOFADK can be used on older versions of Windows.  */
2375         status = winnt_fsctl(h, FSCTL_SET_EXTERNAL_BACKING,
2376                              &in, sizeof(in), NULL, 0, NULL);
2377
2378         if (status == 0xC000046F) /* "Compressing this object would not save space."  */
2379                 return STATUS_SUCCESS;
2380
2381         return status;
2382 }
2383
2384 /* Hard-coded list of files which the Windows bootloader may need to access
2385  * before the WOF driver has been loaded.  */
2386 static wchar_t *bootloader_pattern_strings[] = {
2387         L"*winload.*",
2388         L"*winresume.*",
2389         L"\\Windows\\AppPatch\\drvmain.sdb",
2390         L"\\Windows\\Boot\\DVD\\*",
2391         L"\\Windows\\Boot\\EFI\\*",
2392         L"\\Windows\\bootstat.dat",
2393         L"\\Windows\\Fonts\\vgaoem.fon",
2394         L"\\Windows\\Fonts\\vgasys.fon",
2395         L"\\Windows\\INF\\errata.inf",
2396         L"\\Windows\\System32\\config\\*",
2397         L"\\Windows\\System32\\ntkrnlpa.exe",
2398         L"\\Windows\\System32\\ntoskrnl.exe",
2399         L"\\Windows\\System32\\bootvid.dll",
2400         L"\\Windows\\System32\\ci.dll",
2401         L"\\Windows\\System32\\hal*.dll",
2402         L"\\Windows\\System32\\mcupdate_AuthenticAMD.dll",
2403         L"\\Windows\\System32\\mcupdate_GenuineIntel.dll",
2404         L"\\Windows\\System32\\pshed.dll",
2405         L"\\Windows\\System32\\apisetschema.dll",
2406         L"\\Windows\\System32\\api-ms-win*.dll",
2407         L"\\Windows\\System32\\ext-ms-win*.dll",
2408         L"\\Windows\\System32\\KernelBase.dll",
2409         L"\\Windows\\System32\\drivers\\*.sys",
2410         L"\\Windows\\System32\\*.nls",
2411         L"\\Windows\\System32\\kbd*.dll",
2412         L"\\Windows\\System32\\kd*.dll",
2413         L"\\Windows\\System32\\clfs.sys",
2414         L"\\Windows\\System32\\CodeIntegrity\\driver.stl",
2415 };
2416
2417 static const struct string_list bootloader_patterns = {
2418         .strings = bootloader_pattern_strings,
2419         .num_strings = ARRAY_LEN(bootloader_pattern_strings),
2420 };
2421
2422 static NTSTATUS
2423 set_system_compression_on_inode(struct wim_inode *inode, int format,
2424                                 struct win32_apply_ctx *ctx)
2425 {
2426         bool retried = false;
2427         NTSTATUS status;
2428         HANDLE h;
2429
2430         /* If it may be needed for compatibility with the Windows bootloader,
2431          * force this file to XPRESS4K or uncompressed format.  The bootloader
2432          * of Windows 10 supports XPRESS4K only; older versions don't support
2433          * system compression at all.  */
2434         if (!is_image_windows_10_or_later(ctx) ||
2435             format != FILE_PROVIDER_COMPRESSION_FORMAT_XPRESS4K)
2436         {
2437                 /* We need to check the patterns against every name of the
2438                  * inode, in case any of them match.  */
2439                 struct wim_dentry *dentry;
2440                 inode_for_each_extraction_alias(dentry, inode) {
2441                         bool incompatible;
2442                         bool warned;
2443
2444                         if (calculate_dentry_full_path(dentry)) {
2445                                 ERROR("Unable to compute file path!");
2446                                 return STATUS_NO_MEMORY;
2447                         }
2448
2449                         incompatible = match_pattern_list(dentry->d_full_path,
2450                                                           &bootloader_patterns);
2451                         FREE(dentry->d_full_path);
2452                         dentry->d_full_path = NULL;
2453
2454                         if (!incompatible)
2455                                 continue;
2456
2457                         warned = (ctx->num_system_compression_exclusions++ > 0);
2458
2459                         if (is_image_windows_10_or_later(ctx)) {
2460                                 /* Force to XPRESS4K  */
2461                                 if (!warned) {
2462                                         WARNING("For compatibility with the "
2463                                                 "Windows bootloader, some "
2464                                                 "files are being\n"
2465                                                 "          compacted "
2466                                                 "using the XPRESS4K format "
2467                                                 "instead of the %"TS" format\n"
2468                                                 "          you requested.",
2469                                                 get_system_compression_format_string(format));
2470                                 }
2471                                 format = FILE_PROVIDER_COMPRESSION_FORMAT_XPRESS4K;
2472                                 break;
2473                         } else {
2474                                 /* Force to uncompressed  */
2475                                 if (!warned) {
2476                                         WARNING("For compatibility with the "
2477                                                 "Windows bootloader, some "
2478                                                 "files will not\n"
2479                                                 "          be compressed with"
2480                                                 " system compression "
2481                                                 "(\"compacted\").");
2482                                 }
2483                                 return STATUS_SUCCESS;
2484                         }
2485
2486                 }
2487         }
2488
2489         /* Open the extracted file.  */
2490         status = create_file(&h, GENERIC_READ | GENERIC_WRITE, NULL,
2491                              0, FILE_OPEN, 0,
2492                              inode_first_extraction_dentry(inode), ctx);
2493
2494         if (!NT_SUCCESS(status))
2495                 return status;
2496 retry:
2497         /* Compress the file.  If the attempt fails with "invalid device
2498          * request", then attach wof.sys (or wofadk.sys) and retry.  */
2499         status = set_system_compression(h, format);
2500         if (unlikely(status == STATUS_INVALID_DEVICE_REQUEST && !retried)) {
2501                 wchar_t drive_path[7];
2502                 if (!win32_get_drive_path(ctx->common.target, drive_path) &&
2503                     win32_try_to_attach_wof(drive_path + 4)) {
2504                         retried = true;
2505                         goto retry;
2506                 }
2507         }
2508
2509         NtClose(h);
2510         return status;
2511 }
2512
2513 /*
2514  * This function is called when doing a "compact-mode" extraction and we just
2515  * finished extracting a blob to one or more locations.  For each location that
2516  * was the unnamed data stream of a file, this function compresses the
2517  * corresponding file using System Compression, if allowed.
2518  *
2519  * Note: we're doing the compression immediately after extracting the data
2520  * rather than during a separate compression pass.  This way should be faster
2521  * since the operating system should still have the file's data cached.
2522  *
2523  * Note: we're having the operating system do the compression, which is not
2524  * ideal because wimlib could create the compressed data faster and more
2525  * efficiently (the compressed data format is identical to a WIM resource).  But
2526  * we seemingly don't have a choice because WOF prevents applications from
2527  * creating its reparse points.
2528  */
2529 static void
2530 handle_system_compression(struct blob_descriptor *blob, struct win32_apply_ctx *ctx)
2531 {
2532         const struct blob_extraction_target *targets = blob_extraction_targets(blob);
2533
2534         const int format = get_system_compression_format(ctx->common.extract_flags);
2535
2536         for (u32 i = 0; i < blob->out_refcnt; i++) {
2537                 struct wim_inode *inode = targets[i].inode;
2538                 struct wim_inode_stream *strm = targets[i].stream;
2539                 NTSTATUS status;
2540
2541                 if (!stream_is_unnamed_data_stream(strm))
2542                         continue;
2543
2544                 if (will_externally_back_inode(inode, ctx, NULL, false) != 0)
2545                         continue;
2546
2547                 status = set_system_compression_on_inode(inode, format, ctx);
2548                 if (likely(NT_SUCCESS(status)))
2549                         continue;
2550
2551                 if (status == STATUS_INVALID_DEVICE_REQUEST) {
2552                         WARNING(
2553           "The request to compress the extracted files using System Compression\n"
2554 "          will not be honored because the operating system or target volume\n"
2555 "          does not support it.  System Compression is only supported on\n"
2556 "          Windows 10 and later, and only on NTFS volumes.");
2557                         ctx->common.extract_flags &= ~COMPACT_FLAGS;
2558                         return;
2559                 }
2560
2561                 ctx->num_system_compression_failures++;
2562                 if (ctx->num_system_compression_failures < 10) {
2563                         winnt_warning(status, L"\"%ls\": Failed to compress "
2564                                       "extracted file using System Compression",
2565                                       current_path(ctx));
2566                 } else if (ctx->num_system_compression_failures == 10) {
2567                         WARNING("Suppressing further warnings about "
2568                                 "System Compression failures.");
2569                 }
2570         }
2571 }
2572
2573 /* Called when a blob has been fully read for extraction on Windows  */
2574 static int
2575 end_extract_blob(struct blob_descriptor *blob, int status, void *_ctx)
2576 {
2577         struct win32_apply_ctx *ctx = _ctx;
2578         int ret;
2579         const struct wim_dentry *dentry;
2580
2581         close_handles(ctx);
2582
2583         if (status)
2584                 return status;
2585
2586         if (unlikely(ctx->common.extract_flags & COMPACT_FLAGS))
2587                 handle_system_compression(blob, ctx);
2588
2589         if (likely(!ctx->data_buffer_ptr))
2590                 return 0;
2591
2592         if (!list_empty(&ctx->reparse_dentries)) {
2593                 if (blob->size > REPARSE_DATA_MAX_SIZE) {
2594                         dentry = list_first_entry(&ctx->reparse_dentries,
2595                                                   struct wim_dentry, d_tmp_list);
2596                         build_extraction_path(dentry, ctx);
2597                         ERROR("Reparse data of \"%ls\" has size "
2598                               "%"PRIu64" bytes (exceeds %u bytes)",
2599                               current_path(ctx), blob->size,
2600                               REPARSE_DATA_MAX_SIZE);
2601                         ret = WIMLIB_ERR_INVALID_REPARSE_DATA;
2602                         return check_apply_error(dentry, ctx, ret);
2603                 }
2604                 /* Reparse data  */
2605                 memcpy(ctx->rpbuf.rpdata, ctx->data_buffer, blob->size);
2606
2607                 list_for_each_entry(dentry, &ctx->reparse_dentries, d_tmp_list) {
2608
2609                         /* Reparse point header  */
2610                         complete_reparse_point(&ctx->rpbuf, dentry->d_inode,
2611                                                blob->size);
2612
2613                         ret = set_reparse_point(dentry, &ctx->rpbuf,
2614                                                 REPARSE_DATA_OFFSET + blob->size,
2615                                                 ctx);
2616                         ret = check_apply_error(dentry, ctx, ret);
2617                         if (ret)
2618                                 return ret;
2619                 }
2620         }
2621
2622         if (!list_empty(&ctx->encrypted_dentries)) {
2623                 ctx->encrypted_size = blob->size;
2624                 list_for_each_entry(dentry, &ctx->encrypted_dentries, d_tmp_list) {
2625                         ret = extract_encrypted_file(dentry, ctx);
2626                         ret = check_apply_error(dentry, ctx, ret);
2627                         if (ret)
2628                                 return ret;
2629                         /* Re-open the target directory if needed.  */
2630                         ret = open_target_directory(ctx);
2631                         if (ret)
2632                                 return ret;
2633                 }
2634         }
2635
2636         return 0;
2637 }
2638
2639 /* Attributes that can't be set directly  */
2640 #define SPECIAL_ATTRIBUTES                      \
2641         (FILE_ATTRIBUTE_REPARSE_POINT   |       \
2642          FILE_ATTRIBUTE_DIRECTORY       |       \
2643          FILE_ATTRIBUTE_ENCRYPTED       |       \
2644          FILE_ATTRIBUTE_SPARSE_FILE     |       \
2645          FILE_ATTRIBUTE_COMPRESSED)
2646
2647 static void
2648 set_object_id(HANDLE h, const struct wim_inode *inode,
2649               struct win32_apply_ctx *ctx)
2650 {
2651         const void *object_id;
2652         u32 len;
2653         NTSTATUS status;
2654
2655         if (!ctx->common.supported_features.object_ids)
2656                 return;
2657
2658         object_id = inode_get_object_id(inode, &len);
2659         if (likely(object_id == NULL))  /* No object ID?  */
2660                 return;
2661
2662         status = winnt_fsctl(h, FSCTL_SET_OBJECT_ID,
2663                              object_id, len, NULL, 0, NULL);
2664         if (NT_SUCCESS(status))
2665                 return;
2666
2667         /* Object IDs must be unique within the filesystem.  A duplicate might
2668          * occur if an image containing object IDs is applied twice to the same
2669          * filesystem.  Arguably, the user should be warned in this case; but
2670          * the reality seems to be that nothing important cares about object IDs
2671          * except the Distributed Link Tracking Service... so for now these
2672          * failures are just ignored.  */
2673         if (status == STATUS_DUPLICATE_NAME ||
2674             status == STATUS_OBJECT_NAME_COLLISION)
2675                 return;
2676
2677         ctx->num_object_id_failures++;
2678         if (ctx->num_object_id_failures < 10) {
2679                 winnt_warning(status, L"Can't set object ID on \"%ls\"",
2680                               current_path(ctx));
2681         } else if (ctx->num_object_id_failures == 10) {
2682                 WARNING("Suppressing further warnings about failure to set "
2683                         "object IDs.");
2684         }
2685 }
2686
2687 /* Set the security descriptor @desc, of @desc_size bytes, on the file with open
2688  * handle @h.  */
2689 static NTSTATUS
2690 set_security_descriptor(HANDLE h, const void *_desc,
2691                         size_t desc_size, struct win32_apply_ctx *ctx)
2692 {
2693         SECURITY_INFORMATION info;
2694         NTSTATUS status;
2695         SECURITY_DESCRIPTOR_RELATIVE *desc;
2696
2697         /*
2698          * Ideally, we would just pass in the security descriptor buffer as-is.
2699          * But it turns out that Windows can mess up the security descriptor
2700          * even when using the low-level NtSetSecurityObject() function:
2701          *
2702          * - Windows will clear SE_DACL_AUTO_INHERITED if it is set in the
2703          *   passed buffer.  To actually get Windows to set
2704          *   SE_DACL_AUTO_INHERITED, the application must set the non-persistent
2705          *   flag SE_DACL_AUTO_INHERIT_REQ.  As usual, Microsoft didn't bother
2706          *   to properly document either of these flags.  It's unclear how
2707          *   important SE_DACL_AUTO_INHERITED actually is, but to be safe we use
2708          *   the SE_DACL_AUTO_INHERIT_REQ workaround to set it if needed.
2709          *
2710          * - The above also applies to the equivalent SACL flags,
2711          *   SE_SACL_AUTO_INHERITED and SE_SACL_AUTO_INHERIT_REQ.
2712          *
2713          * - If the application says that it's setting
2714          *   DACL_SECURITY_INFORMATION, then Windows sets SE_DACL_PRESENT in the
2715          *   resulting security descriptor, even if the security descriptor the
2716          *   application provided did not have a DACL.  This seems to be
2717          *   unavoidable, since omitting DACL_SECURITY_INFORMATION would cause a
2718          *   default DACL to remain.  Fortunately, this behavior seems harmless,
2719          *   since the resulting DACL will still be "null" --- but it will be
2720          *   "the other representation of null".
2721          *
2722          * - The above also applies to SACL_SECURITY_INFORMATION and
2723          *   SE_SACL_PRESENT.  Again, it's seemingly unavoidable but "harmless"
2724          *   that Windows changes the representation of a "null SACL".
2725          */
2726         if (likely(desc_size <= STACK_MAX)) {
2727                 desc = alloca(desc_size);
2728         } else {
2729                 desc = MALLOC(desc_size);
2730                 if (!desc)
2731                         return STATUS_NO_MEMORY;
2732         }
2733
2734         memcpy(desc, _desc, desc_size);
2735
2736         if (likely(desc_size >= 4)) {
2737
2738                 if (desc->Control & SE_DACL_AUTO_INHERITED)
2739                         desc->Control |= SE_DACL_AUTO_INHERIT_REQ;
2740
2741                 if (desc->Control & SE_SACL_AUTO_INHERITED)
2742                         desc->Control |= SE_SACL_AUTO_INHERIT_REQ;
2743         }
2744
2745         /*
2746          * More API insanity.  We want to set the entire security descriptor
2747          * as-is.  But all available APIs require specifying the specific parts
2748          * of the security descriptor being set.  Especially annoying is that
2749          * mandatory integrity labels are part of the SACL, but they aren't set
2750          * with SACL_SECURITY_INFORMATION.  Instead, applications must also
2751          * specify LABEL_SECURITY_INFORMATION (Windows Vista, Windows 7) or
2752          * BACKUP_SECURITY_INFORMATION (Windows 8).  But at least older versions
2753          * of Windows don't error out if you provide these newer flags...
2754          *
2755          * Also, if the process isn't running as Administrator, then it probably
2756          * doesn't have SE_RESTORE_PRIVILEGE.  In this case, it will always get
2757          * the STATUS_PRIVILEGE_NOT_HELD error by trying to set the SACL, even
2758          * if the security descriptor it provided did not have a SACL.  By
2759          * default, in this case we try to recover and set as much of the
2760          * security descriptor as possible --- potentially excluding the DACL, and
2761          * even the owner, as well as the SACL.
2762          */
2763
2764         info = OWNER_SECURITY_INFORMATION | GROUP_SECURITY_INFORMATION |
2765                DACL_SECURITY_INFORMATION | SACL_SECURITY_INFORMATION |
2766                LABEL_SECURITY_INFORMATION | BACKUP_SECURITY_INFORMATION;
2767
2768
2769         /*
2770          * It's also worth noting that SetFileSecurity() is unusable because it
2771          * doesn't request "backup semantics" when it opens the file internally.
2772          * NtSetSecurityObject() seems to be the best function to use in backup
2773          * applications.  (SetSecurityInfo() should also work, but it's harder
2774          * to use and must call NtSetSecurityObject() internally anyway.
2775          * BackupWrite() is theoretically usable as well, but it's inflexible
2776          * and poorly documented.)
2777          */
2778
2779 retry:
2780         status = NtSetSecurityObject(h, info, desc);
2781         if (NT_SUCCESS(status))
2782                 goto out_maybe_free_desc;
2783
2784         /* Failed to set the requested parts of the security descriptor.  If the
2785          * error was permissions-related, try to set fewer parts of the security
2786          * descriptor, unless WIMLIB_EXTRACT_FLAG_STRICT_ACLS is enabled.  */
2787         if ((status == STATUS_PRIVILEGE_NOT_HELD ||
2788              status == STATUS_ACCESS_DENIED) &&
2789             !(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_ACLS))
2790         {
2791                 if (info & SACL_SECURITY_INFORMATION) {
2792                         info &= ~(SACL_SECURITY_INFORMATION |
2793                                   LABEL_SECURITY_INFORMATION |
2794                                   BACKUP_SECURITY_INFORMATION);
2795                         ctx->partial_security_descriptors++;
2796                         goto retry;
2797                 }
2798                 if (info & DACL_SECURITY_INFORMATION) {
2799                         info &= ~DACL_SECURITY_INFORMATION;
2800                         goto retry;
2801                 }
2802                 if (info & OWNER_SECURITY_INFORMATION) {
2803                         info &= ~OWNER_SECURITY_INFORMATION;
2804                         goto retry;
2805                 }
2806                 /* Nothing left except GROUP, and if we removed it we
2807                  * wouldn't have anything at all.  */
2808         }
2809
2810         /* No part of the security descriptor could be set, or
2811          * WIMLIB_EXTRACT_FLAG_STRICT_ACLS is enabled and the full security
2812          * descriptor could not be set.  */
2813         if (!(info & SACL_SECURITY_INFORMATION))
2814                 ctx->partial_security_descriptors--;
2815         ctx->no_security_descriptors++;
2816
2817 out_maybe_free_desc:
2818         if (unlikely(desc_size > STACK_MAX))
2819                 FREE(desc);
2820         return status;
2821 }
2822
2823 /* Set metadata on the open file @h from the WIM inode @inode.  */
2824 static int
2825 do_apply_metadata_to_file(HANDLE h, const struct wim_inode *inode,
2826                           struct win32_apply_ctx *ctx)
2827 {
2828         FILE_BASIC_INFORMATION info;
2829         NTSTATUS status;
2830
2831         /* Set the file's object ID if present and object IDs are supported by
2832          * the filesystem.  */
2833         set_object_id(h, inode, ctx);
2834
2835         /* Set the file's security descriptor if present and we're not in
2836          * NO_ACLS mode  */
2837         if (inode_has_security_descriptor(inode) &&
2838             !(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_NO_ACLS))
2839         {
2840                 const struct wim_security_data *sd;
2841                 const void *desc;
2842                 size_t desc_size;
2843
2844                 sd = wim_get_current_security_data(ctx->common.wim);
2845                 desc = sd->descriptors[inode->i_security_id];
2846                 desc_size = sd->sizes[inode->i_security_id];
2847
2848                 status = set_security_descriptor(h, desc, desc_size, ctx);
2849                 if (!NT_SUCCESS(status) &&
2850                     (ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_ACLS))
2851                 {
2852                         winnt_error(status,
2853                                     L"Can't set security descriptor on \"%ls\"",
2854                                     current_path(ctx));
2855                         return WIMLIB_ERR_SET_SECURITY;
2856                 }
2857         }
2858
2859         /* Set attributes and timestamps  */
2860         info.CreationTime.QuadPart = inode->i_creation_time;
2861         info.LastAccessTime.QuadPart = inode->i_last_access_time;
2862         info.LastWriteTime.QuadPart = inode->i_last_write_time;
2863         info.ChangeTime.QuadPart = 0;
2864         if (ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_NO_ATTRIBUTES) {
2865                 info.FileAttributes = FILE_ATTRIBUTE_NORMAL;
2866         } else {
2867                 info.FileAttributes = inode->i_attributes & ~SPECIAL_ATTRIBUTES;
2868                 if (info.FileAttributes == 0)
2869                         info.FileAttributes = FILE_ATTRIBUTE_NORMAL;
2870         }
2871
2872         status = NtSetInformationFile(h, &ctx->iosb, &info, sizeof(info),
2873                                       FileBasicInformation);
2874         /* On FAT volumes we get STATUS_INVALID_PARAMETER if we try to set
2875          * attributes on the root directory.  (Apparently because FAT doesn't
2876          * actually have a place to store those attributes!)  */
2877         if (!NT_SUCCESS(status)
2878             && !(status == STATUS_INVALID_PARAMETER &&
2879                  dentry_is_root(inode_first_extraction_dentry(inode))))
2880         {
2881                 winnt_error(status, L"Can't set basic metadata on \"%ls\"",
2882                             current_path(ctx));
2883                 return WIMLIB_ERR_SET_ATTRIBUTES;
2884         }
2885
2886         return 0;
2887 }
2888
2889 static int
2890 apply_metadata_to_file(const struct wim_dentry *dentry,
2891                        struct win32_apply_ctx *ctx)
2892 {
2893         const struct wim_inode *inode = dentry->d_inode;
2894         DWORD perms;
2895         HANDLE h;
2896         NTSTATUS status;
2897         int ret;
2898
2899         perms = FILE_WRITE_ATTRIBUTES | WRITE_DAC |
2900                 WRITE_OWNER | ACCESS_SYSTEM_SECURITY;
2901
2902         build_extraction_path(dentry, ctx);
2903
2904         /* Open a handle with as many relevant permissions as possible.  */
2905         while (!NT_SUCCESS(status = do_create_file(&h, perms, NULL,
2906                                                    0, FILE_OPEN, 0, ctx)))
2907         {
2908                 if (status == STATUS_PRIVILEGE_NOT_HELD ||
2909                     status == STATUS_ACCESS_DENIED)
2910                 {
2911                         if (perms & ACCESS_SYSTEM_SECURITY) {
2912                                 perms &= ~ACCESS_SYSTEM_SECURITY;
2913                                 continue;
2914                         }
2915                         if (perms & WRITE_DAC) {
2916                                 perms &= ~WRITE_DAC;
2917                                 continue;
2918                         }
2919                         if (perms & WRITE_OWNER) {
2920                                 perms &= ~WRITE_OWNER;
2921                                 continue;
2922                         }
2923                 }
2924                 winnt_error(status, L"Can't open \"%ls\" to set metadata",
2925                             current_path(ctx));
2926                 return WIMLIB_ERR_OPEN;
2927         }
2928
2929         ret = do_apply_metadata_to_file(h, inode, ctx);
2930
2931         NtClose(h);
2932
2933         return ret;
2934 }
2935
2936 static int
2937 apply_metadata(struct list_head *dentry_list, struct win32_apply_ctx *ctx)
2938 {
2939         const struct wim_dentry *dentry;
2940         int ret;
2941
2942         /* We go in reverse so that metadata is set on all a directory's
2943          * children before the directory itself.  This avoids any potential
2944          * problems with attributes, timestamps, or security descriptors.  */
2945         list_for_each_entry_reverse(dentry, dentry_list, d_extraction_list_node)
2946         {
2947                 ret = apply_metadata_to_file(dentry, ctx);
2948                 ret = check_apply_error(dentry, ctx, ret);
2949                 if (ret)
2950                         return ret;
2951                 ret = report_file_metadata_applied(&ctx->common);
2952                 if (ret)
2953                         return ret;
2954         }
2955         return 0;
2956 }
2957
2958 /* Issue warnings about problems during the extraction for which warnings were
2959  * not already issued (due to the high number of potential warnings if we issued
2960  * them per-file).  */
2961 static void
2962 do_warnings(const struct win32_apply_ctx *ctx)
2963 {
2964         if (ctx->partial_security_descriptors == 0
2965             && ctx->no_security_descriptors == 0
2966             && ctx->num_set_short_name_failures == 0
2967         #if 0
2968             && ctx->num_remove_short_name_failures == 0
2969         #endif
2970             )
2971                 return;
2972
2973         WARNING("Extraction to \"%ls\" complete, but with one or more warnings:",
2974                 ctx->common.target);
2975         if (ctx->num_set_short_name_failures) {
2976                 WARNING("- Could not set short names on %lu files or directories",
2977                         ctx->num_set_short_name_failures);
2978         }
2979 #if 0
2980         if (ctx->num_remove_short_name_failures) {
2981                 WARNING("- Could not remove short names on %lu files or directories"
2982                         "          (This is expected on Vista and earlier)",
2983                         ctx->num_remove_short_name_failures);
2984         }
2985 #endif
2986         if (ctx->partial_security_descriptors) {
2987                 WARNING("- Could only partially set the security descriptor\n"
2988                         "            on %lu files or directories.",
2989                         ctx->partial_security_descriptors);
2990         }
2991         if (ctx->no_security_descriptors) {
2992                 WARNING("- Could not set security descriptor at all\n"
2993                         "            on %lu files or directories.",
2994                         ctx->no_security_descriptors);
2995         }
2996         if (ctx->partial_security_descriptors || ctx->no_security_descriptors) {
2997                 WARNING("To fully restore all security descriptors, run the program\n"
2998                         "          with Administrator rights.");
2999         }
3000 }
3001
3002 static u64
3003 count_dentries(const struct list_head *dentry_list)
3004 {
3005         const struct list_head *cur;
3006         u64 count = 0;
3007
3008         list_for_each(cur, dentry_list)
3009                 count++;
3010
3011         return count;
3012 }
3013
3014 /* Extract files from a WIM image to a directory on Windows  */
3015 static int
3016 win32_extract(struct list_head *dentry_list, struct apply_ctx *_ctx)
3017 {
3018         int ret;
3019         struct win32_apply_ctx *ctx = (struct win32_apply_ctx *)_ctx;
3020         u64 dentry_count;
3021
3022         ret = prepare_target(dentry_list, ctx);
3023         if (ret)
3024                 goto out;
3025
3026         if (unlikely(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_WIMBOOT)) {
3027                 ret = start_wimboot_extraction(dentry_list, ctx);
3028                 if (ret)
3029                         goto out;
3030         }
3031
3032         ctx->windows_build_number = xml_get_windows_build_number(ctx->common.wim->xml_info,
3033                                                                  ctx->common.wim->current_image);
3034
3035         dentry_count = count_dentries(dentry_list);
3036
3037         ret = start_file_structure_phase(&ctx->common, dentry_count);
3038         if (ret)
3039                 goto out;
3040
3041         ret = create_directories(dentry_list, ctx);
3042         if (ret)
3043                 goto out;
3044
3045         ret = create_nondirectories(dentry_list, ctx);
3046         if (ret)
3047                 goto out;
3048
3049         ret = end_file_structure_phase(&ctx->common);
3050         if (ret)
3051                 goto out;
3052
3053         struct read_blob_callbacks cbs = {
3054                 .begin_blob     = begin_extract_blob,
3055                 .consume_chunk  = extract_chunk,
3056                 .end_blob       = end_extract_blob,
3057                 .ctx            = ctx,
3058         };
3059         ret = extract_blob_list(&ctx->common, &cbs);
3060         if (ret)
3061                 goto out;
3062
3063         ret = start_file_metadata_phase(&ctx->common, dentry_count);
3064         if (ret)
3065                 goto out;
3066
3067         ret = apply_metadata(dentry_list, ctx);
3068         if (ret)
3069                 goto out;
3070
3071         ret = end_file_metadata_phase(&ctx->common);
3072         if (ret)
3073                 goto out;
3074
3075         if (unlikely(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_WIMBOOT)) {
3076                 ret = end_wimboot_extraction(ctx);
3077                 if (ret)
3078                         goto out;
3079         }
3080
3081         do_warnings(ctx);
3082 out:
3083         close_target_directory(ctx);
3084         if (ctx->target_ntpath.Buffer)
3085                 HeapFree(GetProcessHeap(), 0, ctx->target_ntpath.Buffer);
3086         FREE(ctx->pathbuf.Buffer);
3087         FREE(ctx->print_buffer);
3088         FREE(ctx->wimboot.wims);
3089         if (ctx->prepopulate_pats) {
3090                 FREE(ctx->prepopulate_pats->strings);
3091                 FREE(ctx->prepopulate_pats);
3092         }
3093         FREE(ctx->mem_prepopulate_pats);
3094         FREE(ctx->data_buffer);
3095         return ret;
3096 }
3097
3098 const struct apply_operations win32_apply_ops = {
3099         .name                   = "Windows",
3100         .get_supported_features = win32_get_supported_features,
3101         .extract                = win32_extract,
3102         .will_back_from_wim     = win32_will_back_from_wim,
3103         .context_size           = sizeof(struct win32_apply_ctx),
3104 };
3105
3106 #endif /* __WIN32__ */