]> wimlib.net Git - wimlib/blob - src/win32_apply.c
1f68b69f18d732c2dc4c894a81cad2d2b9fa46f5
[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, 2014 Eric Biggers
7  *
8  * This file is part of wimlib, a library for working with WIM files.
9  *
10  * wimlib is free software; you can redistribute it and/or modify it under the
11  * terms of the GNU General Public License as published by the Free
12  * Software Foundation; either version 3 of the License, or (at your option)
13  * any later version.
14  *
15  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
16  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17  * A PARTICULAR PURPOSE. See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with wimlib; if not, see http://www.gnu.org/licenses/.
22  */
23
24 #ifdef __WIN32__
25
26 #ifdef HAVE_CONFIG_H
27 #  include "config.h"
28 #endif
29
30 #include "wimlib/win32_common.h"
31
32 #include "wimlib/apply.h"
33 #include "wimlib/capture.h" /* for mangle_pat() and match_pattern_list()  */
34 #include "wimlib/dentry.h"
35 #include "wimlib/error.h"
36 #include "wimlib/lookup_table.h"
37 #include "wimlib/metadata.h"
38 #include "wimlib/reparse.h"
39 #include "wimlib/textfile.h"
40 #include "wimlib/xml.h"
41 #include "wimlib/wimboot.h"
42
43 struct win32_apply_ctx {
44
45         /* Extract flags, the pointer to the WIMStruct, etc.  */
46         struct apply_ctx common;
47
48         /* WIMBoot information, only filled in if WIMLIB_EXTRACT_FLAG_WIMBOOT
49          * was provided  */
50         struct {
51                 u64 data_source_id;
52                 struct string_set *prepopulate_pats;
53                 void *mem_prepopulate_pats;
54                 u8 wim_lookup_table_hash[SHA1_HASH_SIZE];
55                 bool wof_running;
56         } wimboot;
57
58         /* Open handle to the target directory  */
59         HANDLE h_target;
60
61         /* NT namespace path to the target directory (buffer allocated)  */
62         UNICODE_STRING target_ntpath;
63
64         /* Temporary buffer for building paths (buffer allocated)  */
65         UNICODE_STRING pathbuf;
66
67         /* Object attributes to reuse for opening files in the target directory.
68          * (attr.ObjectName == &pathbuf) and (attr.RootDirectory == h_target).
69          */
70         OBJECT_ATTRIBUTES attr;
71
72         /* Temporary I/O status block for system calls  */
73         IO_STATUS_BLOCK iosb;
74
75         /* Allocated buffer for creating "printable" paths from our
76          * target-relative NT paths  */
77         wchar_t *print_buffer;
78
79         /* Allocated buffer for reading stream data when it cannot be extracted
80          * directly  */
81         u8 *data_buffer;
82
83         /* Pointer to the next byte in @data_buffer to fill  */
84         u8 *data_buffer_ptr;
85
86         /* Size allocated in @data_buffer  */
87         size_t data_buffer_size;
88
89         /* Current offset in the raw encrypted file being written  */
90         size_t encrypted_offset;
91
92         /* Current size of the raw encrypted file being written  */
93         size_t encrypted_size;
94
95         /* Temporary buffer for reparse data  */
96         struct reparse_buffer_disk rpbuf;
97
98         /* Temporary buffer for reparse data of "fixed" absolute symbolic links
99          * and junctions  */
100         struct reparse_buffer_disk rpfixbuf;
101
102         /* Array of open handles to filesystem streams currently being written
103          */
104         HANDLE open_handles[MAX_OPEN_STREAMS];
105
106         /* Number of handles in @open_handles currently open (filled in from the
107          * beginning of the array)  */
108         unsigned num_open_handles;
109
110         /* List of dentries, joined by @tmp_list, that need to have reparse data
111          * extracted as soon as the whole stream has been read into
112          * @data_buffer.  */
113         struct list_head reparse_dentries;
114
115         /* List of dentries, joined by @tmp_list, that need to have raw
116          * encrypted data extracted as soon as the whole stream has been read
117          * into @data_buffer.  */
118         struct list_head encrypted_dentries;
119
120         /* Number of files for which we didn't have permission to set the full
121          * security descriptor.  */
122         unsigned long partial_security_descriptors;
123
124         /* Number of files for which we didn't have permission to set any part
125          * of the security descriptor.  */
126         unsigned long no_security_descriptors;
127
128         /* Number of files for which we couldn't set the short name.  */
129         unsigned long num_short_name_failures;
130
131         /* Have we tried to enable short name support on the target volume yet?
132          */
133         bool tried_to_enable_short_names;
134 };
135
136 /* Get the drive letter from a Windows path, or return the null character if the
137  * path is relative.  */
138 static wchar_t
139 get_drive_letter(const wchar_t *path)
140 {
141         /* Skip \\?\ prefix  */
142         if (!wcsncmp(path, L"\\\\?\\", 4))
143                 path += 4;
144
145         /* Return drive letter if valid  */
146         if (((path[0] >= L'a' && path[0] <= L'z') ||
147              (path[0] >= L'A' && path[0] <= L'Z')) && path[1] == L':')
148                 return path[0];
149
150         return L'\0';
151 }
152
153 static void
154 get_vol_flags(const wchar_t *target, DWORD *vol_flags_ret,
155               bool *short_names_supported_ret)
156 {
157         wchar_t filesystem_name[MAX_PATH + 1];
158         wchar_t drive[4];
159         wchar_t *volume = NULL;
160
161         *vol_flags_ret = 0;
162         *short_names_supported_ret = false;
163
164         drive[0] = get_drive_letter(target);
165         if (drive[0]) {
166                 drive[1] = L':';
167                 drive[2] = L'\\';
168                 drive[3] = L'\0';
169                 volume = drive;
170         }
171
172         if (!GetVolumeInformation(volume, NULL, 0, NULL, NULL,
173                                   vol_flags_ret, filesystem_name,
174                                   ARRAY_LEN(filesystem_name)))
175         {
176                 DWORD err = GetLastError();
177                 set_errno_from_win32_error(err);
178                 WARNING_WITH_ERRNO("Failed to get volume information for "
179                                    "\"%ls\" (err=%"PRIu32")",
180                                    target, (u32)err);
181                 return;
182         }
183
184         if (wcsstr(filesystem_name, L"NTFS")) {
185                 /* FILE_SUPPORTS_HARD_LINKS is only supported on Windows 7 and
186                  * later.  Force it on anyway if filesystem is NTFS.  */
187                 *vol_flags_ret |= FILE_SUPPORTS_HARD_LINKS;
188
189                 /* There's no volume flag for short names, but according to the
190                  * MS documentation they are only user-settable on NTFS.  */
191                 *short_names_supported_ret = true;
192         }
193 }
194
195 static int
196 win32_get_supported_features(const wchar_t *target,
197                              struct wim_features *supported_features)
198 {
199         DWORD vol_flags;
200         bool short_names_supported;
201
202         /* Query the features of the target volume.  */
203
204         get_vol_flags(target, &vol_flags, &short_names_supported);
205
206         supported_features->archive_files = 1;
207         supported_features->hidden_files = 1;
208         supported_features->system_files = 1;
209
210         if (vol_flags & FILE_FILE_COMPRESSION)
211                 supported_features->compressed_files = 1;
212
213         if (vol_flags & FILE_SUPPORTS_ENCRYPTION) {
214                 supported_features->encrypted_files = 1;
215                 supported_features->encrypted_directories = 1;
216         }
217
218         supported_features->not_context_indexed_files = 1;
219
220         /* Don't do anything with FILE_SUPPORTS_SPARSE_FILES.  */
221
222         if (vol_flags & FILE_NAMED_STREAMS)
223                 supported_features->named_data_streams = 1;
224
225         if (vol_flags & FILE_SUPPORTS_HARD_LINKS)
226                 supported_features->hard_links = 1;
227
228         if (vol_flags & FILE_SUPPORTS_REPARSE_POINTS)
229                 supported_features->reparse_points = 1;
230
231         if (vol_flags & FILE_PERSISTENT_ACLS)
232                 supported_features->security_descriptors = 1;
233
234         if (short_names_supported)
235                 supported_features->short_names = 1;
236
237         supported_features->timestamps = 1;
238
239         /* Note: Windows does not support case sensitive filenames!  At least
240          * not without changing the registry and rebooting...  */
241
242         return 0;
243 }
244
245 /* Load the patterns from [PrepopulateList] of WimBootCompress.ini in the WIM
246  * image being extracted.  */
247 static int
248 load_prepopulate_pats(struct win32_apply_ctx *ctx)
249 {
250         const wchar_t *path = L"\\Windows\\System32\\WimBootCompress.ini";
251         struct wim_dentry *dentry;
252         struct wim_lookup_table_entry *lte;
253         int ret;
254         void *buf;
255         struct string_set *s;
256         void *mem;
257         struct text_file_section sec;
258
259         dentry = get_dentry(ctx->common.wim, path, WIMLIB_CASE_INSENSITIVE);
260         if (!dentry ||
261             (dentry->d_inode->i_attributes & (FILE_ATTRIBUTE_DIRECTORY |
262                                               FILE_ATTRIBUTE_REPARSE_POINT |
263                                               FILE_ATTRIBUTE_ENCRYPTED)) ||
264             !(lte = inode_unnamed_lte(dentry->d_inode, ctx->common.wim->lookup_table)))
265         {
266                 WARNING("%ls does not exist in WIM image!", path);
267                 return WIMLIB_ERR_PATH_DOES_NOT_EXIST;
268         }
269
270         ret = read_full_stream_into_alloc_buf(lte, &buf);
271         if (ret)
272                 return ret;
273
274         s = CALLOC(1, sizeof(struct string_set));
275         if (!s) {
276                 FREE(buf);
277                 return WIMLIB_ERR_NOMEM;
278         }
279
280         sec.name = T("PrepopulateList");
281         sec.strings = s;
282
283         ret = do_load_text_file(path, buf, lte->size, &mem, &sec, 1,
284                                 LOAD_TEXT_FILE_REMOVE_QUOTES |
285                                         LOAD_TEXT_FILE_NO_WARNINGS,
286                                 mangle_pat);
287         BUILD_BUG_ON(OS_PREFERRED_PATH_SEPARATOR != WIM_PATH_SEPARATOR);
288         FREE(buf);
289         if (ret) {
290                 FREE(s);
291                 return ret;
292         }
293         ctx->wimboot.prepopulate_pats = s;
294         ctx->wimboot.mem_prepopulate_pats = mem;
295         return 0;
296 }
297
298 /* Returns %true if the path to @dentry matches a pattern in [PrepopulateList]
299  * of WimBootCompress.ini.  Otherwise returns %false.
300  *
301  * @dentry must have had its full path calculated.  */
302 static bool
303 in_prepopulate_list(struct wim_dentry *dentry,
304                     const struct win32_apply_ctx *ctx)
305 {
306         const struct string_set *pats = ctx->wimboot.prepopulate_pats;
307
308         if (!pats || !pats->num_strings)
309                 return false;
310
311         return match_pattern_list(dentry->_full_path,
312                                   wcslen(dentry->_full_path), pats);
313 }
314
315 /* Calculates the SHA-1 message digest of the WIM's lookup table.  */
316 static int
317 hash_lookup_table(WIMStruct *wim, u8 hash[SHA1_HASH_SIZE])
318 {
319         return wim_reshdr_to_hash(&wim->hdr.lookup_table_reshdr, wim, hash);
320 }
321
322 /* Prepare for doing a "WIMBoot" extraction by loading patterns from
323  * [PrepopulateList] of WimBootCompress.ini and allocating a WOF data source ID
324  * on the target volume.  */
325 static int
326 start_wimboot_extraction(struct win32_apply_ctx *ctx)
327 {
328         int ret;
329         WIMStruct *wim = ctx->common.wim;
330
331         ret = load_prepopulate_pats(ctx);
332         if (ret == WIMLIB_ERR_NOMEM)
333                 return ret;
334
335         if (!wim_info_get_wimboot(wim->wim_info, wim->current_image))
336                 WARNING("Image is not marked as WIMBoot compatible!");
337
338         ret = hash_lookup_table(ctx->common.wim,
339                                 ctx->wimboot.wim_lookup_table_hash);
340         if (ret)
341                 return ret;
342
343         return wimboot_alloc_data_source_id(wim->filename,
344                                             wim->hdr.guid,
345                                             wim->current_image,
346                                             ctx->common.target,
347                                             &ctx->wimboot.data_source_id,
348                                             &ctx->wimboot.wof_running);
349 }
350
351 static void
352 build_win32_extraction_path(const struct wim_dentry *dentry,
353                             struct win32_apply_ctx *ctx);
354
355 /* Sets WimBoot=1 in the extracted SYSTEM registry hive.
356  *
357  * WIMGAPI does this, and it's possible that it's important.
358  * But I don't know exactly what this value means to Windows.  */
359 static int
360 end_wimboot_extraction(struct win32_apply_ctx *ctx)
361 {
362         struct wim_dentry *dentry;
363         wchar_t subkeyname[32];
364         LONG res;
365         LONG res2;
366         HKEY key;
367         DWORD value;
368
369         dentry = get_dentry(ctx->common.wim, L"\\Windows\\System32\\config\\SYSTEM",
370                             WIMLIB_CASE_INSENSITIVE);
371
372         if (!dentry || !will_extract_dentry(dentry))
373                 goto out;
374
375         if (!will_extract_dentry(wim_get_current_root_dentry(ctx->common.wim)))
376                 goto out;
377
378         /* Not bothering to use the native routines (e.g. NtLoadKey()) for this.
379          * If this doesn't work, you probably also have many other problems.  */
380
381         build_win32_extraction_path(dentry, ctx);
382
383         randomize_char_array_with_alnum(subkeyname, 20);
384         subkeyname[20] = L'\0';
385
386         res = RegLoadKey(HKEY_LOCAL_MACHINE, subkeyname, ctx->pathbuf.Buffer);
387         if (res)
388                 goto out_check_res;
389
390         wcscpy(&subkeyname[20], L"\\Setup");
391
392         res = RegCreateKeyEx(HKEY_LOCAL_MACHINE, subkeyname, 0, NULL,
393                              REG_OPTION_BACKUP_RESTORE, 0, NULL, &key, NULL);
394         if (res)
395                 goto out_unload_key;
396
397         value = 1;
398
399         res = RegSetValueEx(key, L"WimBoot", 0, REG_DWORD,
400                             (const BYTE *)&value, sizeof(DWORD));
401         if (res)
402                 goto out_close_key;
403
404         res = RegFlushKey(key);
405
406 out_close_key:
407         res2 = RegCloseKey(key);
408         if (!res)
409                 res = res2;
410 out_unload_key:
411         subkeyname[20] = L'\0';
412         RegUnLoadKey(HKEY_LOCAL_MACHINE, subkeyname);
413 out_check_res:
414         if (res) {
415                 /* Warning only.  */
416                 set_errno_from_win32_error(res);
417                 WARNING_WITH_ERRNO("Failed to set \\Setup: dword \"WimBoot\"=1 value "
418                                    "in registry hive \"%ls\" (err=%"PRIu32")",
419                                    ctx->pathbuf.Buffer, (u32)res);
420         }
421 out:
422         return 0;
423 }
424
425 /* Returns the number of wide characters needed to represent the path to the
426  * specified @dentry, relative to the target directory, when extracted.
427  *
428  * Does not include null terminator (not needed for NtCreateFile).  */
429 static size_t
430 dentry_extraction_path_length(const struct wim_dentry *dentry)
431 {
432         size_t len = 0;
433         const struct wim_dentry *d;
434
435         d = dentry;
436         do {
437                 len += d->d_extraction_name_nchars + 1;
438                 d = d->d_parent;
439         } while (!dentry_is_root(d) && will_extract_dentry(d));
440
441         return --len;  /* No leading slash  */
442 }
443
444 /* Returns the length of the longest string that might need to be appended to
445  * the path to an alias of an inode to open or create a named data stream.
446  *
447  * If the inode has no named data streams, this will be 0.  Otherwise, this will
448  * be 1 plus the length of the longest-named data stream, since the data stream
449  * name must be separated from the path by the ':' character.  */
450 static size_t
451 inode_longest_named_data_stream_spec(const struct wim_inode *inode)
452 {
453         size_t max = 0;
454         for (u16 i = 0; i < inode->i_num_ads; i++) {
455                 size_t len = inode->i_ads_entries[i].stream_name_nbytes;
456                 if (len > max)
457                         max = len;
458         }
459         if (max)
460                 max = 1 + (max / sizeof(wchar_t));
461         return max;
462 }
463
464 /* Find the length, in wide characters, of the longest path needed for
465  * extraction of any file in @dentry_list relative to the target directory.
466  *
467  * Accounts for named data streams, but does not include null terminator (not
468  * needed for NtCreateFile).  */
469 static size_t
470 compute_path_max(struct list_head *dentry_list)
471 {
472         size_t max = 0;
473         const struct wim_dentry *dentry;
474
475         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
476                 size_t len;
477
478                 len = dentry_extraction_path_length(dentry);
479
480                 /* Account for named data streams  */
481                 len += inode_longest_named_data_stream_spec(dentry->d_inode);
482
483                 if (len > max)
484                         max = len;
485         }
486
487         return max;
488 }
489
490 /* Build the path at which to extract the @dentry, relative to the target
491  * directory.
492  *
493  * The path is saved in ctx->pathbuf.  */
494 static void
495 build_extraction_path(const struct wim_dentry *dentry,
496                       struct win32_apply_ctx *ctx)
497 {
498         size_t len;
499         wchar_t *p;
500         const struct wim_dentry *d;
501
502         len = dentry_extraction_path_length(dentry);
503
504         ctx->pathbuf.Length = len * sizeof(wchar_t);
505         p = ctx->pathbuf.Buffer + len;
506         for (d = dentry;
507              !dentry_is_root(d->d_parent) && will_extract_dentry(d->d_parent);
508              d = d->d_parent)
509         {
510                 p -= d->d_extraction_name_nchars;
511                 wmemcpy(p, d->d_extraction_name, d->d_extraction_name_nchars);
512                 *--p = '\\';
513         }
514         /* No leading slash  */
515         p -= d->d_extraction_name_nchars;
516         wmemcpy(p, d->d_extraction_name, d->d_extraction_name_nchars);
517 }
518
519 /* Build the path at which to extract the @dentry, relative to the target
520  * directory, adding the suffix for a named data stream.
521  *
522  * The path is saved in ctx->pathbuf.  */
523 static void
524 build_extraction_path_with_ads(const struct wim_dentry *dentry,
525                                struct win32_apply_ctx *ctx,
526                                const wchar_t *stream_name,
527                                size_t stream_name_nchars)
528 {
529         wchar_t *p;
530
531         build_extraction_path(dentry, ctx);
532
533         /* Add :NAME for named data stream  */
534         p = ctx->pathbuf.Buffer + (ctx->pathbuf.Length / sizeof(wchar_t));
535         *p++ = L':';
536         wmemcpy(p, stream_name, stream_name_nchars);
537         ctx->pathbuf.Length += (1 + stream_name_nchars) * sizeof(wchar_t);
538 }
539
540 /* Build the Win32 namespace path to the specified @dentry when extracted.
541  *
542  * The path is saved in ctx->pathbuf and will be null terminated.
543  *
544  * XXX: We could get rid of this if it wasn't needed for the file encryption
545  * APIs, and the registry manipulation in WIMBoot mode.  */
546 static void
547 build_win32_extraction_path(const struct wim_dentry *dentry,
548                             struct win32_apply_ctx *ctx)
549 {
550         build_extraction_path(dentry, ctx);
551
552         /* Prepend target_ntpath to our relative path, then change \??\ into \\?\  */
553
554         memmove(ctx->pathbuf.Buffer +
555                         (ctx->target_ntpath.Length / sizeof(wchar_t)) + 1,
556                 ctx->pathbuf.Buffer, ctx->pathbuf.Length);
557         memcpy(ctx->pathbuf.Buffer, ctx->target_ntpath.Buffer,
558                 ctx->target_ntpath.Length);
559         ctx->pathbuf.Buffer[ctx->target_ntpath.Length / sizeof(wchar_t)] = L'\\';
560         ctx->pathbuf.Length += ctx->target_ntpath.Length + sizeof(wchar_t);
561         ctx->pathbuf.Buffer[ctx->pathbuf.Length / sizeof(wchar_t)] = L'\0';
562
563         wimlib_assert(ctx->pathbuf.Length >= 4 * sizeof(wchar_t) &&
564                       !wmemcmp(ctx->pathbuf.Buffer, L"\\??\\", 4));
565
566         ctx->pathbuf.Buffer[1] = L'\\';
567
568 }
569
570 /* Returns a "printable" representation of the last relative NT path that was
571  * constructed with build_extraction_path() or build_extraction_path_with_ads().
572  *
573  * This will be overwritten by the next call to this function.  */
574 static const wchar_t *
575 current_path(struct win32_apply_ctx *ctx)
576 {
577         wchar_t *p = ctx->print_buffer;
578
579         p = wmempcpy(p, ctx->common.target, ctx->common.target_nchars);
580         *p++ = L'\\';
581         p = wmempcpy(p, ctx->pathbuf.Buffer, ctx->pathbuf.Length / sizeof(wchar_t));
582         *p = L'\0';
583         return ctx->print_buffer;
584 }
585
586 /*
587  * Ensures the target directory exists and opens a handle to it, in preparation
588  * of using paths relative to it.
589  */
590 static int
591 prepare_target(struct list_head *dentry_list, struct win32_apply_ctx *ctx)
592 {
593         int ret;
594         NTSTATUS status;
595         size_t path_max;
596
597         /* Open handle to the target directory (possibly creating it).  */
598
599         ret = win32_path_to_nt_path(ctx->common.target, &ctx->target_ntpath);
600         if (ret)
601                 return ret;
602
603         ctx->attr.Length = sizeof(ctx->attr);
604         ctx->attr.ObjectName = &ctx->target_ntpath;
605
606         status = (*func_NtCreateFile)(&ctx->h_target,
607                                       FILE_TRAVERSE,
608                                       &ctx->attr,
609                                       &ctx->iosb,
610                                       NULL,
611                                       0,
612                                       FILE_SHARE_VALID_FLAGS,
613                                       FILE_OPEN_IF,
614                                       FILE_DIRECTORY_FILE |
615                                               FILE_OPEN_REPARSE_POINT |
616                                               FILE_OPEN_FOR_BACKUP_INTENT,
617                                       NULL,
618                                       0);
619
620         if (!NT_SUCCESS(status)) {
621                 set_errno_from_nt_status(status);
622                 ERROR_WITH_ERRNO("Can't open or create directory \"%ls\" "
623                                  "(status=0x%08"PRIx32")",
624                                  ctx->common.target, (u32)status);
625                 return WIMLIB_ERR_OPENDIR;
626         }
627
628         path_max = compute_path_max(dentry_list);
629
630         /* Add some extra for building Win32 paths for the file encryption APIs
631          * ...  */
632         path_max += 2 + (ctx->target_ntpath.Length / sizeof(wchar_t));
633
634         ctx->pathbuf.MaximumLength = path_max * sizeof(wchar_t);
635         ctx->pathbuf.Buffer = MALLOC(ctx->pathbuf.MaximumLength);
636         if (!ctx->pathbuf.Buffer)
637                 return WIMLIB_ERR_NOMEM;
638
639         ctx->attr.RootDirectory = ctx->h_target;
640         ctx->attr.ObjectName = &ctx->pathbuf;
641
642         ctx->print_buffer = MALLOC((ctx->common.target_nchars + 1 + path_max + 1) *
643                                    sizeof(wchar_t));
644         if (!ctx->print_buffer)
645                 return WIMLIB_ERR_NOMEM;
646
647         return 0;
648 }
649
650 /* When creating an inode that will have a short (DOS) name, we create it using
651  * the long name associated with the short name.  This ensures that the short
652  * name gets associated with the correct long name.  */
653 static const struct wim_dentry *
654 first_extraction_alias(const struct wim_inode *inode)
655 {
656         const struct list_head *next = inode->i_extraction_aliases.next;
657         const struct wim_dentry *dentry;
658
659         do {
660                 dentry = list_entry(next, struct wim_dentry,
661                                     d_extraction_alias_node);
662                 if (dentry_has_short_name(dentry))
663                         break;
664                 next = next->next;
665         } while (next != &inode->i_extraction_aliases);
666         return dentry;
667 }
668
669 /*
670  * Set or clear FILE_ATTRIBUTE_COMPRESSED if the inherited value is different
671  * from the desired value.
672  *
673  * Note that you can NOT override the inherited value of
674  * FILE_ATTRIBUTE_COMPRESSED directly with NtCreateFile().
675  */
676 static int
677 adjust_compression_attribute(HANDLE h, const struct wim_dentry *dentry,
678                              struct win32_apply_ctx *ctx)
679 {
680         const bool compressed = (dentry->d_inode->i_attributes &
681                                  FILE_ATTRIBUTE_COMPRESSED);
682
683         if (ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_NO_ATTRIBUTES)
684                 return 0;
685
686         if (!ctx->common.supported_features.compressed_files)
687                 return 0;
688
689         FILE_BASIC_INFORMATION info;
690         NTSTATUS status;
691         USHORT compression_state;
692
693         /* Get current attributes  */
694         status = (*func_NtQueryInformationFile)(h, &ctx->iosb,
695                                                 &info, sizeof(info),
696                                                 FileBasicInformation);
697         if (NT_SUCCESS(status) &&
698             compressed == !!(info.FileAttributes & FILE_ATTRIBUTE_COMPRESSED))
699         {
700                 /* Nothing needs to be done.  */
701                 return 0;
702         }
703
704         /* Set the new compression state  */
705
706         if (compressed)
707                 compression_state = COMPRESSION_FORMAT_DEFAULT;
708         else
709                 compression_state = COMPRESSION_FORMAT_NONE;
710
711         status = (*func_NtFsControlFile)(h,
712                                          NULL,
713                                          NULL,
714                                          NULL,
715                                          &ctx->iosb,
716                                          FSCTL_SET_COMPRESSION,
717                                          &compression_state,
718                                          sizeof(USHORT),
719                                          NULL,
720                                          0);
721         if (NT_SUCCESS(status))
722                 return 0;
723
724         set_errno_from_nt_status(status);
725         ERROR_WITH_ERRNO("Can't %s compression attribute on \"%ls\" "
726                          "(status=0x%08"PRIx32")",
727                          (compressed ? "set" : "clear"),
728                          current_path(ctx), status);
729         return WIMLIB_ERR_SET_ATTRIBUTES;
730 }
731
732 /*
733  * Clear FILE_ATTRIBUTE_ENCRYPTED if the file or directory is not supposed to be
734  * encrypted.
735  *
736  * You can provide FILE_ATTRIBUTE_ENCRYPTED to NtCreateFile() to set it on the
737  * created file.  However, the file or directory will otherwise default to the
738  * encryption state of the parent directory.  This function works around this
739  * limitation by using DecryptFile() to remove FILE_ATTRIBUTE_ENCRYPTED on files
740  * (and directories) that are not supposed to have it set.
741  *
742  * Regardless of whether it succeeds or fails, this function may close the
743  * handle to the file.  If it does, it sets it to NULL.
744  */
745 static int
746 maybe_clear_encryption_attribute(HANDLE *h_ptr, const struct wim_dentry *dentry,
747                                  struct win32_apply_ctx *ctx)
748 {
749         if (dentry->d_inode->i_attributes & FILE_ATTRIBUTE_ENCRYPTED)
750                 return 0;
751
752         if (ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_NO_ATTRIBUTES)
753                 return 0;
754
755         if (!ctx->common.supported_features.encrypted_files)
756                 return 0;
757
758         FILE_BASIC_INFORMATION info;
759         NTSTATUS status;
760         BOOL bret;
761
762         /* Get current attributes  */
763         status = (*func_NtQueryInformationFile)(*h_ptr, &ctx->iosb,
764                                                 &info, sizeof(info),
765                                                 FileBasicInformation);
766         if (NT_SUCCESS(status) &&
767             !(info.FileAttributes & FILE_ATTRIBUTE_ENCRYPTED))
768         {
769                 /* Nothing needs to be done.  */
770                 return 0;
771         }
772
773         /* Set the new encryption state  */
774
775         /* Due to Windows' crappy file encryption APIs, we need to close the
776          * handle to the file so we don't get ERROR_SHARING_VIOLATION.  We also
777          * hack together a Win32 path, although we will use the \\?\ prefix so
778          * it will actually be a NT path in disguise...  */
779         (*func_NtClose)(*h_ptr);
780         *h_ptr = NULL;
781
782         build_win32_extraction_path(dentry, ctx);
783
784         bret = DecryptFile(ctx->pathbuf.Buffer, 0);
785
786         /* Restore the NT namespace path  */
787         build_extraction_path(dentry, ctx);
788
789         if (!bret) {
790                 DWORD err = GetLastError();
791                 set_errno_from_win32_error(err);
792                 ERROR_WITH_ERRNO("Can't decrypt file \"%ls\" (err=%"PRIu32")",
793                                   current_path(ctx), (u32)err);
794                 return WIMLIB_ERR_SET_ATTRIBUTES;
795         }
796         return 0;
797 }
798
799 /* Try to enable short name support on the target volume.  If successful, return
800  * true.  If unsuccessful, issue a warning and return false.  */
801 static bool
802 try_to_enable_short_names(const wchar_t *volume)
803 {
804         HANDLE h;
805         FILE_FS_PERSISTENT_VOLUME_INFORMATION info;
806         BOOL bret;
807         DWORD bytesReturned;
808
809         h = CreateFile(volume, GENERIC_WRITE,
810                        FILE_SHARE_VALID_FLAGS, NULL, OPEN_EXISTING,
811                        FILE_FLAG_BACKUP_SEMANTICS, NULL);
812         if (h == INVALID_HANDLE_VALUE)
813                 goto fail;
814
815         info.VolumeFlags = 0;
816         info.FlagMask = PERSISTENT_VOLUME_STATE_SHORT_NAME_CREATION_DISABLED;
817         info.Version = 1;
818         info.Reserved = 0;
819
820         bret = DeviceIoControl(h, FSCTL_SET_PERSISTENT_VOLUME_STATE,
821                                &info, sizeof(info), NULL, 0,
822                                &bytesReturned, NULL);
823
824         CloseHandle(h);
825
826         if (!bret)
827                 goto fail;
828         return true;
829
830 fail:
831         WARNING("Failed to enable short name support on %ls "
832                 "(err=%"PRIu32")", volume + 4, (u32)GetLastError());
833         return false;
834 }
835
836 /* Set the short name on the open file @h which has been created at the location
837  * indicated by @dentry.
838  *
839  * Note that this may add, change, or remove the short name.
840  *
841  * @h must be opened with DELETE access.
842  *
843  * Returns 0 or WIMLIB_ERR_SET_SHORT_NAME.  The latter only happens in
844  * STRICT_SHORT_NAMES mode.
845  */
846 static int
847 set_short_name(HANDLE h, const struct wim_dentry *dentry,
848                struct win32_apply_ctx *ctx)
849 {
850
851         if (!ctx->common.supported_features.short_names)
852                 return 0;
853
854         size_t bufsize = offsetof(FILE_NAME_INFORMATION, FileName) +
855                          dentry->short_name_nbytes;
856         u8 buf[bufsize] _aligned_attribute(8);
857         FILE_NAME_INFORMATION *info = (FILE_NAME_INFORMATION *)buf;
858         NTSTATUS status;
859
860         info->FileNameLength = dentry->short_name_nbytes;
861         memcpy(info->FileName, dentry->short_name, dentry->short_name_nbytes);
862
863
864 retry:
865         status = (*func_NtSetInformationFile)(h, &ctx->iosb, info, bufsize,
866                                               FileShortNameInformation);
867         if (NT_SUCCESS(status))
868                 return 0;
869
870         if (status == STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME) {
871                 if (dentry->short_name_nbytes == 0)
872                         return 0;
873                 if (!ctx->tried_to_enable_short_names) {
874                         wchar_t volume[7];
875                         int ret;
876
877                         ctx->tried_to_enable_short_names = true;
878
879                         ret = win32_get_drive_path(ctx->common.target,
880                                                    volume);
881                         if (ret)
882                                 return ret;
883                         if (try_to_enable_short_names(volume))
884                                 goto retry;
885                 }
886         }
887
888         /* By default, failure to set short names is not an error (since short
889          * names aren't too important anymore...).  */
890         if (!(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_SHORT_NAMES)) {
891                 ctx->num_short_name_failures++;
892                 return 0;
893         }
894
895         if (status == STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME) {
896                 ERROR("Can't set short name when short "
897                       "names are not enabled on the volume!");
898         } else {
899                 ERROR("Can't set short name on \"%ls\" (status=0x%08"PRIx32")",
900                       current_path(ctx), (u32)status);
901         }
902         return WIMLIB_ERR_SET_SHORT_NAME;
903 }
904
905 /*
906  * A wrapper around NtCreateFile() to make it slightly more usable...
907  * This uses the path currently constructed in ctx->pathbuf.
908  *
909  * Also, we always specify FILE_OPEN_FOR_BACKUP_INTENT and
910  * FILE_OPEN_REPARSE_POINT.
911  */
912 static NTSTATUS
913 do_create_file(PHANDLE FileHandle,
914                ACCESS_MASK DesiredAccess,
915                PLARGE_INTEGER AllocationSize,
916                ULONG FileAttributes,
917                ULONG CreateDisposition,
918                ULONG CreateOptions,
919                struct win32_apply_ctx *ctx)
920 {
921         return (*func_NtCreateFile)(FileHandle,
922                                     DesiredAccess,
923                                     &ctx->attr,
924                                     &ctx->iosb,
925                                     AllocationSize,
926                                     FileAttributes,
927                                     FILE_SHARE_VALID_FLAGS,
928                                     CreateDisposition,
929                                     CreateOptions |
930                                         FILE_OPEN_FOR_BACKUP_INTENT |
931                                         FILE_OPEN_REPARSE_POINT,
932                                     NULL,
933                                     0);
934 }
935
936 /* Like do_create_file(), but builds the extraction path of the @dentry first.
937  */
938 static NTSTATUS
939 create_file(PHANDLE FileHandle,
940             ACCESS_MASK DesiredAccess,
941             PLARGE_INTEGER AllocationSize,
942             ULONG FileAttributes,
943             ULONG CreateDisposition,
944             ULONG CreateOptions,
945             const struct wim_dentry *dentry,
946             struct win32_apply_ctx *ctx)
947 {
948         build_extraction_path(dentry, ctx);
949         return do_create_file(FileHandle,
950                               DesiredAccess,
951                               AllocationSize,
952                               FileAttributes,
953                               CreateDisposition,
954                               CreateOptions,
955                               ctx);
956 }
957
958 /* Create empty named data streams.
959  *
960  * Since these won't have 'struct wim_lookup_table_entry's, they won't show up
961  * in the call to extract_stream_list().  Hence the need for the special case.
962  */
963 static int
964 create_any_empty_ads(const struct wim_dentry *dentry,
965                      struct win32_apply_ctx *ctx)
966 {
967         const struct wim_inode *inode = dentry->d_inode;
968         LARGE_INTEGER allocation_size;
969         bool path_modified = false;
970         int ret = 0;
971
972         if (!ctx->common.supported_features.named_data_streams)
973                 return 0;
974
975         for (u16 i = 0; i < inode->i_num_ads; i++) {
976                 const struct wim_ads_entry *entry;
977                 NTSTATUS status;
978                 HANDLE h;
979
980                 entry = &inode->i_ads_entries[i];
981
982                 /* Not named?  */
983                 if (!entry->stream_name_nbytes)
984                         continue;
985
986                 /* Not empty?  */
987                 if (entry->lte)
988                         continue;
989
990                 /* Probably setting the allocation size to 0 has no effect, but
991                  * we might as well try.  */
992                 allocation_size.QuadPart = 0;
993
994                 build_extraction_path_with_ads(dentry, ctx,
995                                                entry->stream_name,
996                                                entry->stream_name_nbytes /
997                                                         sizeof(wchar_t));
998                 path_modified = true;
999                 status = do_create_file(&h, FILE_WRITE_DATA, &allocation_size,
1000                                         0, FILE_SUPERSEDE, 0, ctx);
1001                 if (!NT_SUCCESS(status)) {
1002                         set_errno_from_nt_status(status);
1003                         ERROR_WITH_ERRNO("Can't create \"%ls\" "
1004                                          "(status=0x%08"PRIx32")",
1005                                          current_path(ctx), (u32)status);
1006                         ret = WIMLIB_ERR_OPEN;
1007                         break;
1008                 }
1009                 (*func_NtClose)(h);
1010         }
1011         /* Restore the path to the dentry itself  */
1012         if (path_modified)
1013                 build_extraction_path(dentry, ctx);
1014         return ret;
1015 }
1016
1017 /*
1018  * Creates the directory named by @dentry, or uses an existing directory at that
1019  * location.  If necessary, sets the short name and/or fixes compression and
1020  * encryption attributes.
1021  *
1022  * Returns 0, WIMLIB_ERR_MKDIR, or WIMLIB_ERR_SET_SHORT_NAME.
1023  */
1024 static int
1025 create_directory(const struct wim_dentry *dentry,
1026                  struct win32_apply_ctx *ctx)
1027 {
1028         HANDLE h;
1029         NTSTATUS status;
1030         int ret;
1031         ULONG attrib;
1032
1033         /* Special attributes:
1034          *
1035          * Use FILE_ATTRIBUTE_ENCRYPTED if the directory needs to have it set.
1036          * This doesn't work for FILE_ATTRIBUTE_COMPRESSED (unfortunately).
1037          *
1038          * Don't specify FILE_ATTRIBUTE_DIRECTORY; it gets set anyway as a
1039          * result of the FILE_DIRECTORY_FILE option.  */
1040         attrib = (dentry->d_inode->i_attributes & FILE_ATTRIBUTE_ENCRYPTED);
1041
1042         /* DELETE is needed for set_short_name().
1043          * GENERIC_READ and GENERIC_WRITE are needed for
1044          * adjust_compression_attribute().  */
1045         status = create_file(&h, GENERIC_READ | GENERIC_WRITE | DELETE, NULL,
1046                              attrib, FILE_OPEN_IF, FILE_DIRECTORY_FILE,
1047                              dentry, ctx);
1048         if (!NT_SUCCESS(status)) {
1049                 set_errno_from_nt_status(status);
1050                 ERROR_WITH_ERRNO("Can't create directory \"%ls\" "
1051                                  "(status=0x%08"PRIx32")",
1052                                  current_path(ctx), (u32)status);
1053                 return WIMLIB_ERR_MKDIR;
1054         }
1055
1056         ret = set_short_name(h, dentry, ctx);
1057
1058         if (!ret)
1059                 ret = adjust_compression_attribute(h, dentry, ctx);
1060
1061         if (!ret)
1062                 ret = maybe_clear_encryption_attribute(&h, dentry, ctx);
1063                 /* May close the handle!!! */
1064
1065         if (h)
1066                 (*func_NtClose)(h);
1067         return ret;
1068 }
1069
1070 /*
1071  * Create all the directories being extracted, other than the target directory
1072  * itself.
1073  *
1074  * Note: we don't honor directory hard links.  However, we don't allow them to
1075  * exist in WIM images anyway (see inode_fixup.c).
1076  */
1077 static int
1078 create_directories(struct list_head *dentry_list,
1079                    struct win32_apply_ctx *ctx)
1080 {
1081         const struct wim_dentry *dentry;
1082         int ret;
1083
1084         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
1085
1086                 if (!(dentry->d_inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY))
1087                         continue;
1088
1089                 /* Note: Here we include files with
1090                  * FILE_ATTRIBUTE_DIRECTORY|FILE_ATTRIBUTE_REPARSE_POINT, but we
1091                  * wait until later to actually set the reparse data.  */
1092
1093                 /* If the root dentry is being extracted, it was already done so
1094                  * in prepare_target().  */
1095                 if (dentry_is_root(dentry))
1096                         continue;
1097
1098                 ret = create_directory(dentry, ctx);
1099                 if (ret)
1100                         return ret;
1101
1102                 ret = create_any_empty_ads(dentry, ctx);
1103                 if (ret)
1104                         return ret;
1105
1106                 ret = report_file_created(&ctx->common);
1107                 if (ret)
1108                         return ret;
1109         }
1110         return 0;
1111 }
1112
1113 /*
1114  * Creates the nondirectory file named by @dentry.
1115  *
1116  * On success, returns an open handle to the file in @h_ret, with GENERIC_READ,
1117  * GENERIC_WRITE, and DELETE access.  Also, the path to the file will be saved
1118  * in ctx->pathbuf.  On failure, returns WIMLIB_ERR_OPEN.
1119  */
1120 static int
1121 create_nondirectory_inode(HANDLE *h_ret, const struct wim_dentry *dentry,
1122                           struct win32_apply_ctx *ctx)
1123 {
1124         const struct wim_inode *inode;
1125         ULONG attrib;
1126         NTSTATUS status;
1127         bool retried = false;
1128
1129         inode = dentry->d_inode;
1130
1131         /* If the file already exists and has FILE_ATTRIBUTE_SYSTEM and/or
1132          * FILE_ATTRIBUTE_HIDDEN, these must be specified in order to supersede
1133          * the file.
1134          *
1135          * Normally the user shouldn't be trying to overwrite such files anyway,
1136          * but we at least provide FILE_ATTRIBUTE_SYSTEM and
1137          * FILE_ATTRIBUTE_HIDDEN if the WIM inode has those attributes so that
1138          * we catch the case where the user extracts the same files to the same
1139          * location more than one time.
1140          *
1141          * Also specify FILE_ATTRIBUTE_ENCRYPTED if the file needs to be
1142          * encrypted.
1143          *
1144          * In NO_ATTRIBUTES mode just don't specify any attributes at all.
1145          */
1146         if (ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_NO_ATTRIBUTES) {
1147                 attrib = 0;
1148         } else {
1149                 attrib = (inode->i_attributes & (FILE_ATTRIBUTE_SYSTEM |
1150                                                  FILE_ATTRIBUTE_HIDDEN |
1151                                                  FILE_ATTRIBUTE_ENCRYPTED));
1152         }
1153         build_extraction_path(dentry, ctx);
1154 retry:
1155         status = do_create_file(h_ret, GENERIC_READ | GENERIC_WRITE | DELETE,
1156                                 NULL, attrib, FILE_SUPERSEDE,
1157                                 FILE_NON_DIRECTORY_FILE, ctx);
1158         if (NT_SUCCESS(status)) {
1159                 int ret;
1160
1161                 ret = adjust_compression_attribute(*h_ret, dentry, ctx);
1162                 if (ret) {
1163                         (*func_NtClose)(*h_ret);
1164                         return ret;
1165                 }
1166
1167                 ret = maybe_clear_encryption_attribute(h_ret, dentry, ctx);
1168                 /* May close the handle!!! */
1169
1170                 if (ret) {
1171                         if (*h_ret)
1172                                 (*func_NtClose)(*h_ret);
1173                         return ret;
1174                 }
1175
1176                 if (!*h_ret) {
1177                         /* Re-open the handle so that we can return it on
1178                          * success.  */
1179                         status = do_create_file(h_ret,
1180                                                 GENERIC_READ |
1181                                                         GENERIC_WRITE | DELETE,
1182                                                 NULL, 0, FILE_OPEN,
1183                                                 FILE_NON_DIRECTORY_FILE, ctx);
1184                         if (!NT_SUCCESS(status))
1185                                 goto fail;
1186                 }
1187
1188                 ret = create_any_empty_ads(dentry, ctx);
1189                 if (ret) {
1190                         (*func_NtClose)(*h_ret);
1191                         return ret;
1192                 }
1193                 return 0;
1194         }
1195
1196         if (status == STATUS_ACCESS_DENIED && !retried) {
1197                 /* We also can't supersede an existing file that has
1198                  * FILE_ATTRIBUTE_READONLY set; doing so causes NtCreateFile()
1199                  * to return STATUS_ACCESS_DENIED .  The only workaround seems
1200                  * to be to explicitly remove FILE_ATTRIBUTE_READONLY on the
1201                  * existing file, then try again.  */
1202
1203                 FILE_BASIC_INFORMATION info;
1204                 HANDLE h;
1205
1206                 status = do_create_file(&h, FILE_WRITE_ATTRIBUTES, NULL, 0,
1207                                         FILE_OPEN, FILE_NON_DIRECTORY_FILE, ctx);
1208                 if (!NT_SUCCESS(status))
1209                         goto fail;
1210
1211                 memset(&info, 0, sizeof(info));
1212                 info.FileAttributes = FILE_ATTRIBUTE_NORMAL;
1213
1214                 status = (*func_NtSetInformationFile)(h, &ctx->iosb,
1215                                                       &info, sizeof(info),
1216                                                       FileBasicInformation);
1217                 (*func_NtClose)(h);
1218                 if (!NT_SUCCESS(status))
1219                         goto fail;
1220                 retried = true;
1221                 goto retry;
1222         }
1223 fail:
1224         set_errno_from_nt_status(status);
1225         ERROR_WITH_ERRNO("Can't create file \"%ls\" (status=0x%08"PRIx32")",
1226                          current_path(ctx), (u32)status);
1227         return WIMLIB_ERR_OPEN;
1228 }
1229
1230 /* Creates a hard link at the location named by @dentry to the file represented
1231  * by the open handle @h.  Or, if the target volume does not support hard links,
1232  * create a separate file instead.  */
1233 static int
1234 create_link(HANDLE h, const struct wim_dentry *dentry,
1235             struct win32_apply_ctx *ctx)
1236 {
1237         if (ctx->common.supported_features.hard_links) {
1238
1239                 build_extraction_path(dentry, ctx);
1240
1241                 size_t bufsize = offsetof(FILE_LINK_INFORMATION, FileName) +
1242                                  ctx->pathbuf.Length + sizeof(wchar_t);
1243                 u8 buf[bufsize] _aligned_attribute(8);
1244                 FILE_LINK_INFORMATION *info = (FILE_LINK_INFORMATION *)buf;
1245                 NTSTATUS status;
1246
1247                 info->ReplaceIfExists = TRUE;
1248                 info->RootDirectory = ctx->attr.RootDirectory;
1249                 info->FileNameLength = ctx->pathbuf.Length;
1250                 memcpy(info->FileName, ctx->pathbuf.Buffer, ctx->pathbuf.Length);
1251                 info->FileName[info->FileNameLength / 2] = L'\0';
1252
1253                 /* Note: the null terminator isn't actually necessary,
1254                  * but if you don't add the extra character, you get
1255                  * STATUS_INFO_LENGTH_MISMATCH when FileNameLength
1256                  * happens to be 2  */
1257
1258                 status = (*func_NtSetInformationFile)(h, &ctx->iosb,
1259                                                       info, bufsize,
1260                                                       FileLinkInformation);
1261                 if (NT_SUCCESS(status))
1262                         return 0;
1263                 ERROR("Failed to create link \"%ls\" (status=0x%08"PRIx32")",
1264                       current_path(ctx), (u32)status);
1265                 return WIMLIB_ERR_LINK;
1266         } else {
1267                 HANDLE h2;
1268                 int ret;
1269
1270                 ret = create_nondirectory_inode(&h2, dentry, ctx);
1271                 if (ret)
1272                         return ret;
1273
1274                 (*func_NtClose)(h2);
1275                 return 0;
1276         }
1277 }
1278
1279 /* Given an inode (represented by the open handle @h) for which one link has
1280  * been created (named by @first_dentry), create the other links.
1281  *
1282  * Or, if the target volume does not support hard links, create separate files.
1283  *
1284  * Note: This uses ctx->pathbuf and does not reset it.
1285  */
1286 static int
1287 create_links(HANDLE h, const struct wim_dentry *first_dentry,
1288              struct win32_apply_ctx *ctx)
1289 {
1290         const struct wim_inode *inode;
1291         const struct list_head *next;
1292         const struct wim_dentry *dentry;
1293         int ret;
1294
1295         inode = first_dentry->d_inode;
1296         next = inode->i_extraction_aliases.next;
1297         do {
1298                 dentry = list_entry(next, struct wim_dentry,
1299                                     d_extraction_alias_node);
1300                 if (dentry != first_dentry) {
1301                         ret = create_link(h, dentry, ctx);
1302                         if (ret)
1303                                 return ret;
1304                 }
1305                 next = next->next;
1306         } while (next != &inode->i_extraction_aliases);
1307         return 0;
1308 }
1309
1310 /* Create a nondirectory file, including all links.  */
1311 static int
1312 create_nondirectory(const struct wim_inode *inode, struct win32_apply_ctx *ctx)
1313 {
1314         const struct wim_dentry *first_dentry;
1315         HANDLE h;
1316         int ret;
1317
1318         first_dentry = first_extraction_alias(inode);
1319
1320         /* Create first link.  */
1321         ret = create_nondirectory_inode(&h, first_dentry, ctx);
1322         if (ret)
1323                 return ret;
1324
1325         /* Set short name.  */
1326         ret = set_short_name(h, first_dentry, ctx);
1327
1328         /* Create additional links, OR if hard links are not supported just
1329          * create more files.  */
1330         if (!ret)
1331                 ret = create_links(h, first_dentry, ctx);
1332
1333         (*func_NtClose)(h);
1334         return ret;
1335 }
1336
1337 /* Create all the nondirectory files being extracted, including all aliases
1338  * (hard links).  */
1339 static int
1340 create_nondirectories(struct list_head *dentry_list, struct win32_apply_ctx *ctx)
1341 {
1342         const struct wim_dentry *dentry;
1343         const struct wim_inode *inode;
1344         int ret;
1345
1346         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
1347                 inode = dentry->d_inode;
1348                 if (inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY)
1349                         continue;
1350                 /* Call create_nondirectory() only once per inode  */
1351                 if (dentry != inode_first_extraction_dentry(inode))
1352                         continue;
1353                 ret = create_nondirectory(inode, ctx);
1354                 if (ret)
1355                         return ret;
1356                 ret = report_file_created(&ctx->common);
1357                 if (ret)
1358                         return ret;
1359         }
1360         return 0;
1361 }
1362
1363 static void
1364 close_handles(struct win32_apply_ctx *ctx)
1365 {
1366         for (unsigned i = 0; i < ctx->num_open_handles; i++)
1367                 (*func_NtClose)(ctx->open_handles[i]);
1368 }
1369
1370 /* Prepare to read the next stream, which has size @stream_size, into an
1371  * in-memory buffer.  */
1372 static int
1373 prepare_data_buffer(struct win32_apply_ctx *ctx, u64 stream_size)
1374 {
1375         if (stream_size > ctx->data_buffer_size) {
1376                 /* Larger buffer needed.  */
1377                 void *new_buffer;
1378                 if ((size_t)stream_size != stream_size)
1379                         return WIMLIB_ERR_NOMEM;
1380                 new_buffer = REALLOC(ctx->data_buffer, stream_size);
1381                 if (!new_buffer)
1382                         return WIMLIB_ERR_NOMEM;
1383                 ctx->data_buffer = new_buffer;
1384                 ctx->data_buffer_size = stream_size;
1385         }
1386         /* On the first call this changes data_buffer_ptr from NULL, which tells
1387          * extract_chunk() that the data buffer needs to be filled while reading
1388          * the stream data.  */
1389         ctx->data_buffer_ptr = ctx->data_buffer;
1390         return 0;
1391 }
1392
1393 static int
1394 begin_extract_stream_instance(const struct wim_lookup_table_entry *stream,
1395                               struct wim_dentry *dentry,
1396                               const wchar_t *stream_name,
1397                               struct win32_apply_ctx *ctx)
1398 {
1399         const struct wim_inode *inode = dentry->d_inode;
1400         size_t stream_name_nchars = 0;
1401         FILE_ALLOCATION_INFORMATION alloc_info;
1402         HANDLE h;
1403         NTSTATUS status;
1404
1405         if (unlikely(stream_name))
1406                 stream_name_nchars = wcslen(stream_name);
1407
1408         if (unlikely(stream_name_nchars)) {
1409                 build_extraction_path_with_ads(dentry, ctx,
1410                                                stream_name, stream_name_nchars);
1411         } else {
1412                 build_extraction_path(dentry, ctx);
1413         }
1414
1415         /* Reparse point?  */
1416         if (unlikely(inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT)
1417             && (stream_name_nchars == 0))
1418         {
1419                 if (!ctx->common.supported_features.reparse_points)
1420                         return 0;
1421
1422                 /* We can't write the reparse stream directly; we must set it
1423                  * with FSCTL_SET_REPARSE_POINT, which requires that all the
1424                  * data be available.  So, stage the data in a buffer.  */
1425
1426                 list_add_tail(&dentry->tmp_list, &ctx->reparse_dentries);
1427                 return prepare_data_buffer(ctx, stream->size);
1428         }
1429
1430         /* Encrypted file?  */
1431         if (unlikely(inode->i_attributes & FILE_ATTRIBUTE_ENCRYPTED)
1432             && (stream_name_nchars == 0))
1433         {
1434                 if (!ctx->common.supported_features.encrypted_files)
1435                         return 0;
1436
1437                 /* We can't write encrypted file streams directly; we must use
1438                  * WriteEncryptedFileRaw(), which requires providing the data
1439                  * through a callback function.  This can't easily be combined
1440                  * with our own callback-based approach.
1441                  *
1442                  * The current workaround is to simply read the stream into
1443                  * memory and write the encrypted file from that.
1444                  *
1445                  * TODO: This isn't sufficient for extremely large encrypted
1446                  * files.  Perhaps we should create an extra thread to write
1447                  * such files...  */
1448                 list_add_tail(&dentry->tmp_list, &ctx->encrypted_dentries);
1449                 return prepare_data_buffer(ctx, stream->size);
1450         }
1451
1452         /* Extracting unnamed data stream in WIMBoot mode?  */
1453         if (unlikely(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_WIMBOOT)
1454             && (stream_name_nchars == 0)
1455             && (stream->resource_location == RESOURCE_IN_WIM)
1456             && (stream->rspec->wim == ctx->common.wim)
1457             && (stream->size == stream->rspec->uncompressed_size))
1458         {
1459                 int ret = calculate_dentry_full_path(dentry);
1460                 if (ret)
1461                         return ret;
1462                 if (in_prepopulate_list(dentry, ctx)) {
1463                         union wimlib_progress_info info;
1464
1465                         info.wimboot_exclude.path_in_wim = dentry->_full_path;
1466                         info.wimboot_exclude.extraction_path = current_path(ctx);
1467
1468                         ret = call_progress(ctx->common.progfunc,
1469                                             WIMLIB_PROGRESS_MSG_WIMBOOT_EXCLUDE,
1470                                             &info, ctx->common.progctx);
1471                         FREE(dentry->_full_path);
1472                         dentry->_full_path = NULL;
1473                         if (ret)
1474                                 return ret;
1475                         /* Go on and open the file for normal extraction.  */
1476                 } else {
1477                         FREE(dentry->_full_path);
1478                         dentry->_full_path = NULL;
1479                         return wimboot_set_pointer(&ctx->attr,
1480                                                    current_path(ctx),
1481                                                    stream,
1482                                                    ctx->wimboot.data_source_id,
1483                                                    ctx->wimboot.wim_lookup_table_hash,
1484                                                    ctx->wimboot.wof_running);
1485                 }
1486         }
1487
1488         if (ctx->num_open_handles == MAX_OPEN_STREAMS) {
1489                 /* XXX: Fix this.  But because of the checks in
1490                  * extract_stream_list(), this can now only happen on a
1491                  * filesystem that does not support hard links.  */
1492                 ERROR("Can't extract data: too many open files!");
1493                 return WIMLIB_ERR_UNSUPPORTED;
1494         }
1495
1496         /* Open a new handle  */
1497         status = do_create_file(&h,
1498                                 FILE_WRITE_DATA | SYNCHRONIZE,
1499                                 NULL, 0, FILE_OPEN_IF,
1500                                 FILE_SEQUENTIAL_ONLY |
1501                                         FILE_SYNCHRONOUS_IO_NONALERT,
1502                                 ctx);
1503         if (!NT_SUCCESS(status)) {
1504                 set_errno_from_nt_status(status);
1505                 ERROR_WITH_ERRNO("Can't open \"%ls\" for writing "
1506                                  "(status=0x%08"PRIx32")",
1507                                  current_path(ctx), (u32)status);
1508                 return WIMLIB_ERR_OPEN;
1509         }
1510
1511         ctx->open_handles[ctx->num_open_handles++] = h;
1512
1513         /* Allocate space for the data.  */
1514         alloc_info.AllocationSize.QuadPart = stream->size;
1515         (*func_NtSetInformationFile)(h, &ctx->iosb,
1516                                      &alloc_info, sizeof(alloc_info),
1517                                      FileAllocationInformation);
1518         return 0;
1519 }
1520
1521 /* Set the reparse data @rpbuf of length @rpbuflen on the extracted file
1522  * corresponding to the WIM dentry @dentry.  */
1523 static int
1524 do_set_reparse_data(const struct wim_dentry *dentry,
1525                     const void *rpbuf, u16 rpbuflen,
1526                     struct win32_apply_ctx *ctx)
1527 {
1528         NTSTATUS status;
1529         HANDLE h;
1530
1531         status = create_file(&h, GENERIC_WRITE, NULL,
1532                              0, FILE_OPEN, 0, dentry, ctx);
1533         if (!NT_SUCCESS(status))
1534                 goto fail;
1535
1536         status = (*func_NtFsControlFile)(h, NULL, NULL, NULL,
1537                                          &ctx->iosb, FSCTL_SET_REPARSE_POINT,
1538                                          (void *)rpbuf, rpbuflen,
1539                                          NULL, 0);
1540         (*func_NtClose)(h);
1541
1542         if (NT_SUCCESS(status))
1543                 return 0;
1544
1545         /* On Windows, by default only the Administrator can create symbolic
1546          * links for some reason.  By default we just issue a warning if this
1547          * appears to be the problem.  Use WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS
1548          * to get a hard error.  */
1549         if (!(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS)
1550             && (status == STATUS_PRIVILEGE_NOT_HELD ||
1551                 status == STATUS_ACCESS_DENIED)
1552             && (dentry->d_inode->i_reparse_tag == WIM_IO_REPARSE_TAG_SYMLINK ||
1553                 dentry->d_inode->i_reparse_tag == WIM_IO_REPARSE_TAG_MOUNT_POINT))
1554         {
1555                 WARNING("Can't create symbolic link \"%ls\"!              \n"
1556                         "          (Need Administrator rights, or at least "
1557                         "the\n"
1558                         "          SeCreateSymbolicLink privilege.)",
1559                         current_path(ctx));
1560                 return 0;
1561         }
1562
1563 fail:
1564         set_errno_from_nt_status(status);
1565         ERROR_WITH_ERRNO("Can't set reparse data on \"%ls\" "
1566                          "(status=0x%08"PRIx32")",
1567                          current_path(ctx), (u32)status);
1568         return WIMLIB_ERR_SET_REPARSE_DATA;
1569 }
1570
1571 /* Given a Windows NT namespace path, such as \??\e:\Windows\System32, return a
1572  * pointer to the suffix of the path that begins with the device directly, such
1573  * as e:\Windows\System32.  */
1574 static const wchar_t *
1575 skip_nt_toplevel_component(const wchar_t *path, size_t path_nchars)
1576 {
1577         static const wchar_t * const dirs[] = {
1578                 L"\\??\\",
1579                 L"\\DosDevices\\",
1580                 L"\\Device\\",
1581         };
1582         size_t first_dir_len = 0;
1583         const wchar_t * const end = path + path_nchars;
1584
1585         for (size_t i = 0; i < ARRAY_LEN(dirs); i++) {
1586                 size_t len = wcslen(dirs[i]);
1587                 if (len <= (end - path) && !wcsnicmp(path, dirs[i], len)) {
1588                         first_dir_len = len;
1589                         break;
1590                 }
1591         }
1592         if (first_dir_len == 0)
1593                 return path;
1594         path += first_dir_len;
1595         while (path != end && *path == L'\\')
1596                 path++;
1597         return path;
1598 }
1599
1600 /* Given a Windows NT namespace path, such as \??\e:\Windows\System32, return a
1601  * pointer to the suffix of the path that is device-relative, such as
1602  * Windows\System32.
1603  *
1604  * The path has an explicit length and is not necessarily null terminated.
1605  *
1606  * If the path just something like \??\e: then the returned pointer will point
1607  * just past the colon.  In this case the length of the result will be 0
1608  * characters.  */
1609 static const wchar_t *
1610 get_device_relative_path(const wchar_t *path, size_t path_nchars)
1611 {
1612         const wchar_t * const orig_path = path;
1613         const wchar_t * const end = path + path_nchars;
1614
1615         path = skip_nt_toplevel_component(path, path_nchars);
1616         if (path == orig_path)
1617                 return orig_path;
1618
1619         path = wmemchr(path, L'\\', (end - path));
1620         if (!path)
1621                 return end;
1622         do {
1623                 path++;
1624         } while (path != end && *path == L'\\');
1625         return path;
1626 }
1627
1628 /*
1629  * Given a reparse point buffer for a symbolic link or junction, adjust its
1630  * contents so that the target of the link is consistent with the new location
1631  * of the files.
1632  */
1633 static void
1634 try_rpfix(u8 *rpbuf, u16 *rpbuflen_p, struct win32_apply_ctx *ctx)
1635 {
1636         struct reparse_data rpdata;
1637         size_t orig_subst_name_nchars;
1638         const wchar_t *relpath;
1639         size_t relpath_nchars;
1640         size_t target_ntpath_nchars;
1641         size_t fixed_subst_name_nchars;
1642         const wchar_t *fixed_print_name;
1643         size_t fixed_print_name_nchars;
1644
1645         if (parse_reparse_data(rpbuf, *rpbuflen_p, &rpdata)) {
1646                 /* Do nothing if the reparse data is invalid.  */
1647                 return;
1648         }
1649
1650         if (rpdata.rptag == WIM_IO_REPARSE_TAG_SYMLINK &&
1651             (rpdata.rpflags & SYMBOLIC_LINK_RELATIVE))
1652         {
1653                 /* Do nothing if it's a relative symbolic link.  */
1654                 return;
1655         }
1656
1657         /* Build the new substitute name from the NT namespace path to the
1658          * target directory, then a path separator, then the "device relative"
1659          * part of the old substitute name.  */
1660
1661         orig_subst_name_nchars = rpdata.substitute_name_nbytes / sizeof(wchar_t);
1662
1663         relpath = get_device_relative_path(rpdata.substitute_name,
1664                                            orig_subst_name_nchars);
1665         relpath_nchars = orig_subst_name_nchars -
1666                          (relpath - rpdata.substitute_name);
1667
1668         target_ntpath_nchars = ctx->target_ntpath.Length / sizeof(wchar_t);
1669
1670         fixed_subst_name_nchars = target_ntpath_nchars;
1671         if (relpath_nchars)
1672                 fixed_subst_name_nchars += 1 + relpath_nchars;
1673         wchar_t fixed_subst_name[fixed_subst_name_nchars];
1674
1675         wmemcpy(fixed_subst_name, ctx->target_ntpath.Buffer,
1676                 target_ntpath_nchars);
1677         if (relpath_nchars) {
1678                 fixed_subst_name[target_ntpath_nchars] = L'\\';
1679                 wmemcpy(&fixed_subst_name[target_ntpath_nchars + 1],
1680                         relpath, relpath_nchars);
1681         }
1682         /* Doesn't need to be null-terminated.  */
1683
1684         /* Print name should be Win32, but not all NT names can even be
1685          * translated to Win32 names.  But we can at least delete the top-level
1686          * directory, such as \??\, and this will have the expected result in
1687          * the usual case.  */
1688         fixed_print_name = skip_nt_toplevel_component(fixed_subst_name,
1689                                                       fixed_subst_name_nchars);
1690         fixed_print_name_nchars = fixed_subst_name_nchars - (fixed_print_name -
1691                                                              fixed_subst_name);
1692
1693         rpdata.substitute_name = fixed_subst_name;
1694         rpdata.substitute_name_nbytes = fixed_subst_name_nchars * sizeof(wchar_t);
1695         rpdata.print_name = (wchar_t *)fixed_print_name;
1696         rpdata.print_name_nbytes = fixed_print_name_nchars * sizeof(wchar_t);
1697         make_reparse_buffer(&rpdata, rpbuf, rpbuflen_p);
1698 }
1699
1700 /* Sets reparse data on the specified file.  This handles "fixing" the targets
1701  * of absolute symbolic links and junctions if WIMLIB_EXTRACT_FLAG_RPFIX was
1702  * specified.  */
1703 static int
1704 set_reparse_data(const struct wim_dentry *dentry,
1705                  const void *_rpbuf, u16 rpbuflen, struct win32_apply_ctx *ctx)
1706 {
1707         const struct wim_inode *inode = dentry->d_inode;
1708         const void *rpbuf = _rpbuf;
1709
1710         if ((ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_RPFIX)
1711             && !inode->i_not_rpfixed
1712             && (inode->i_reparse_tag == WIM_IO_REPARSE_TAG_SYMLINK ||
1713                 inode->i_reparse_tag == WIM_IO_REPARSE_TAG_MOUNT_POINT))
1714         {
1715                 memcpy(&ctx->rpfixbuf, _rpbuf, rpbuflen);
1716                 try_rpfix((u8 *)&ctx->rpfixbuf, &rpbuflen, ctx);
1717                 rpbuf = &ctx->rpfixbuf;
1718         }
1719         return do_set_reparse_data(dentry, rpbuf, rpbuflen, ctx);
1720
1721 }
1722
1723 /* Import the next block of raw encrypted data  */
1724 static DWORD WINAPI
1725 import_encrypted_data(PBYTE pbData, PVOID pvCallbackContext, PULONG Length)
1726 {
1727         struct win32_apply_ctx *ctx = pvCallbackContext;
1728         ULONG copy_len;
1729
1730         copy_len = min(ctx->encrypted_size - ctx->encrypted_offset, *Length);
1731         memcpy(pbData, &ctx->data_buffer[ctx->encrypted_offset], copy_len);
1732         ctx->encrypted_offset += copy_len;
1733         *Length = copy_len;
1734         return ERROR_SUCCESS;
1735 }
1736
1737 /* Write the raw encrypted data to the already-created file corresponding to
1738  * @dentry.
1739  *
1740  * The raw encrypted data is provided in ctx->data_buffer, and its size is
1741  * ctx->encrypted_size.  */
1742 static int
1743 extract_encrypted_file(const struct wim_dentry *dentry,
1744                        struct win32_apply_ctx *ctx)
1745 {
1746         void *rawctx;
1747         DWORD err;
1748
1749         /* Temporarily build a Win32 path for OpenEncryptedFileRaw()  */
1750         build_win32_extraction_path(dentry, ctx);
1751
1752         err = OpenEncryptedFileRaw(ctx->pathbuf.Buffer,
1753                                    CREATE_FOR_IMPORT, &rawctx);
1754
1755         /* Restore the NT namespace path  */
1756         build_extraction_path(dentry, ctx);
1757
1758         if (err != ERROR_SUCCESS) {
1759                 set_errno_from_win32_error(err);
1760                 ERROR_WITH_ERRNO("Can't open \"%ls\" for encrypted import "
1761                                  "(err=%"PRIu32")", current_path(ctx), (u32)err);
1762                 return WIMLIB_ERR_OPEN;
1763         }
1764
1765         ctx->encrypted_offset = 0;
1766
1767         err = WriteEncryptedFileRaw(import_encrypted_data, ctx, rawctx);
1768
1769         CloseEncryptedFileRaw(rawctx);
1770
1771         if (err != ERROR_SUCCESS) {
1772                 set_errno_from_win32_error(err);
1773                 ERROR_WITH_ERRNO("Can't import encrypted file \"%ls\" "
1774                                  "(err=%"PRIu32")", current_path(ctx), (u32)err);
1775                 return WIMLIB_ERR_WRITE;
1776         }
1777
1778         return 0;
1779 }
1780
1781 /* Called when starting to read a stream for extraction on Windows  */
1782 static int
1783 begin_extract_stream(struct wim_lookup_table_entry *stream, void *_ctx)
1784 {
1785         struct win32_apply_ctx *ctx = _ctx;
1786         const struct stream_owner *owners = stream_owners(stream);
1787         int ret;
1788
1789         ctx->num_open_handles = 0;
1790         ctx->data_buffer_ptr = NULL;
1791         INIT_LIST_HEAD(&ctx->reparse_dentries);
1792         INIT_LIST_HEAD(&ctx->encrypted_dentries);
1793
1794         for (u32 i = 0; i < stream->out_refcnt; i++) {
1795                 const struct wim_inode *inode = owners[i].inode;
1796                 const wchar_t *stream_name = owners[i].stream_name;
1797                 struct wim_dentry *dentry;
1798
1799                 /* A copy of the stream needs to be extracted to @inode.  */
1800
1801                 if (ctx->common.supported_features.hard_links) {
1802                         dentry = inode_first_extraction_dentry(inode);
1803                         ret = begin_extract_stream_instance(stream, dentry,
1804                                                             stream_name, ctx);
1805                         if (ret)
1806                                 goto fail;
1807                 } else {
1808                         /* Hard links not supported.  Extract the stream
1809                          * separately to each alias of the inode.  */
1810                         struct list_head *next;
1811
1812                         next = inode->i_extraction_aliases.next;
1813                         do {
1814                                 dentry = list_entry(next, struct wim_dentry,
1815                                                     d_extraction_alias_node);
1816                                 ret = begin_extract_stream_instance(stream,
1817                                                                     dentry,
1818                                                                     stream_name,
1819                                                                     ctx);
1820                                 if (ret)
1821                                         goto fail;
1822                                 next = next->next;
1823                         } while (next != &inode->i_extraction_aliases);
1824                 }
1825         }
1826
1827         return 0;
1828
1829 fail:
1830         close_handles(ctx);
1831         return ret;
1832 }
1833
1834 /* Called when the next chunk of a stream has been read for extraction on
1835  * Windows  */
1836 static int
1837 extract_chunk(const void *chunk, size_t size, void *_ctx)
1838 {
1839         struct win32_apply_ctx *ctx = _ctx;
1840
1841         /* Write the data chunk to each open handle  */
1842         for (unsigned i = 0; i < ctx->num_open_handles; i++) {
1843                 u8 *bufptr = (u8 *)chunk;
1844                 size_t bytes_remaining = size;
1845                 NTSTATUS status;
1846                 while (bytes_remaining) {
1847                         ULONG count = min(0xFFFFFFFF, bytes_remaining);
1848
1849                         status = (*func_NtWriteFile)(ctx->open_handles[i],
1850                                                      NULL, NULL, NULL,
1851                                                      &ctx->iosb, bufptr, count,
1852                                                      NULL, NULL);
1853                         if (!NT_SUCCESS(status)) {
1854                                 set_errno_from_nt_status(status);
1855                                 ERROR_WITH_ERRNO("Error writing data to target "
1856                                                  "volume (status=0x%08"PRIx32")",
1857                                                  (u32)status);
1858                                 return WIMLIB_ERR_WRITE;
1859                         }
1860                         bufptr += ctx->iosb.Information;
1861                         bytes_remaining -= ctx->iosb.Information;
1862                 }
1863         }
1864
1865         /* Copy the data chunk into the buffer (if needed)  */
1866         if (ctx->data_buffer_ptr)
1867                 ctx->data_buffer_ptr = mempcpy(ctx->data_buffer_ptr,
1868                                                chunk, size);
1869         return 0;
1870 }
1871
1872 /* Called when a stream has been fully read for extraction on Windows  */
1873 static int
1874 end_extract_stream(struct wim_lookup_table_entry *stream, int status, void *_ctx)
1875 {
1876         struct win32_apply_ctx *ctx = _ctx;
1877         int ret;
1878         const struct wim_dentry *dentry;
1879
1880         close_handles(ctx);
1881
1882         if (status)
1883                 return status;
1884
1885         if (likely(!ctx->data_buffer_ptr))
1886                 return 0;
1887
1888         if (!list_empty(&ctx->reparse_dentries)) {
1889                 if (stream->size > REPARSE_DATA_MAX_SIZE) {
1890                         dentry = list_first_entry(&ctx->reparse_dentries,
1891                                                   struct wim_dentry, tmp_list);
1892                         build_extraction_path(dentry, ctx);
1893                         ERROR("Reparse data of \"%ls\" has size "
1894                               "%"PRIu64" bytes (exceeds %u bytes)",
1895                               current_path(ctx), stream->size,
1896                               REPARSE_DATA_MAX_SIZE);
1897                         return WIMLIB_ERR_INVALID_REPARSE_DATA;
1898                 }
1899                 /* In the WIM format, reparse streams are just the reparse data
1900                  * and omit the header.  But we can reconstruct the header.  */
1901                 memcpy(ctx->rpbuf.rpdata, ctx->data_buffer, stream->size);
1902                 ctx->rpbuf.rpdatalen = stream->size;
1903                 ctx->rpbuf.rpreserved = 0;
1904                 list_for_each_entry(dentry, &ctx->reparse_dentries, tmp_list) {
1905                         ctx->rpbuf.rptag = dentry->d_inode->i_reparse_tag;
1906                         ret = set_reparse_data(dentry, &ctx->rpbuf,
1907                                                stream->size + REPARSE_DATA_OFFSET,
1908                                                ctx);
1909                         if (ret)
1910                                 return ret;
1911                 }
1912         }
1913
1914         if (!list_empty(&ctx->encrypted_dentries)) {
1915                 ctx->encrypted_size = stream->size;
1916                 list_for_each_entry(dentry, &ctx->encrypted_dentries, tmp_list) {
1917                         ret = extract_encrypted_file(dentry, ctx);
1918                         if (ret)
1919                                 return ret;
1920                 }
1921         }
1922
1923         return 0;
1924 }
1925
1926 /* Attributes that can't be set directly  */
1927 #define SPECIAL_ATTRIBUTES                      \
1928         (FILE_ATTRIBUTE_REPARSE_POINT   |       \
1929          FILE_ATTRIBUTE_DIRECTORY       |       \
1930          FILE_ATTRIBUTE_ENCRYPTED       |       \
1931          FILE_ATTRIBUTE_SPARSE_FILE     |       \
1932          FILE_ATTRIBUTE_COMPRESSED)
1933
1934 /* Set the security descriptor @desc, of @desc_size bytes, on the file with open
1935  * handle @h.  */
1936 static NTSTATUS
1937 set_security_descriptor(HANDLE h, const void *desc,
1938                         size_t desc_size, struct win32_apply_ctx *ctx)
1939 {
1940         SECURITY_INFORMATION info;
1941         NTSTATUS status;
1942
1943         /* We really just want to set entire the security descriptor as-is, but
1944          * all available APIs require specifying the specific parts of the
1945          * descriptor being set.  Start out by requesting all parts be set.  If
1946          * permissions problems are encountered, fall back to omitting some
1947          * parts (first the SACL, then the DACL, then the owner), unless the
1948          * WIMLIB_EXTRACT_FLAG_STRICT_ACLS flag has been enabled.  */
1949         info = OWNER_SECURITY_INFORMATION | GROUP_SECURITY_INFORMATION |
1950                DACL_SECURITY_INFORMATION | SACL_SECURITY_INFORMATION;
1951
1952         /* Prefer NtSetSecurityObject() to SetFileSecurity().  SetFileSecurity()
1953          * itself necessarily uses NtSetSecurityObject() as the latter is the
1954          * underlying system call for setting security information, but
1955          * SetFileSecurity() opens the handle with NtCreateFile() without
1956          * FILE_OPEN_FILE_BACKUP_INTENT.  Hence, access checks are done and due
1957          * to the Windows security model, even a process running as the
1958          * Administrator can have access denied.  (Of course, this not mentioned
1959          * in the MS "documentation".)  */
1960 retry:
1961         status = (*func_NtSetSecurityObject)(h, info, (PSECURITY_DESCRIPTOR)desc);
1962         if (NT_SUCCESS(status))
1963                 return status;
1964         /* Failed to set the requested parts of the security descriptor.  If the
1965          * error was permissions-related, try to set fewer parts of the security
1966          * descriptor, unless WIMLIB_EXTRACT_FLAG_STRICT_ACLS is enabled.  */
1967         if ((status == STATUS_PRIVILEGE_NOT_HELD ||
1968              status == STATUS_ACCESS_DENIED) &&
1969             !(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_ACLS))
1970         {
1971                 if (info & SACL_SECURITY_INFORMATION) {
1972                         info &= ~SACL_SECURITY_INFORMATION;
1973                         ctx->partial_security_descriptors++;
1974                         goto retry;
1975                 }
1976                 if (info & DACL_SECURITY_INFORMATION) {
1977                         info &= ~DACL_SECURITY_INFORMATION;
1978                         goto retry;
1979                 }
1980                 if (info & OWNER_SECURITY_INFORMATION) {
1981                         info &= ~OWNER_SECURITY_INFORMATION;
1982                         goto retry;
1983                 }
1984                 /* Nothing left except GROUP, and if we removed it we
1985                  * wouldn't have anything at all.  */
1986         }
1987
1988         /* No part of the security descriptor could be set, or
1989          * WIMLIB_EXTRACT_FLAG_STRICT_ACLS is enabled and the full security
1990          * descriptor could not be set.  */
1991         if (!(info & SACL_SECURITY_INFORMATION))
1992                 ctx->partial_security_descriptors--;
1993         ctx->no_security_descriptors++;
1994         return status;
1995 }
1996
1997 /* Set metadata on the open file @h from the WIM inode @inode.  */
1998 static int
1999 do_apply_metadata_to_file(HANDLE h, const struct wim_inode *inode,
2000                           struct win32_apply_ctx *ctx)
2001 {
2002         FILE_BASIC_INFORMATION info;
2003         NTSTATUS status;
2004
2005         /* Set security descriptor if present and not in NO_ACLS mode  */
2006         if (inode->i_security_id >= 0 &&
2007             !(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_NO_ACLS))
2008         {
2009                 const struct wim_security_data *sd;
2010                 const void *desc;
2011                 size_t desc_size;
2012
2013                 sd = wim_get_current_security_data(ctx->common.wim);
2014                 desc = sd->descriptors[inode->i_security_id];
2015                 desc_size = sd->sizes[inode->i_security_id];
2016
2017                 status = set_security_descriptor(h, desc, desc_size, ctx);
2018                 if (!NT_SUCCESS(status) &&
2019                     (ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_STRICT_ACLS))
2020                 {
2021                         set_errno_from_nt_status(status);
2022                         ERROR_WITH_ERRNO("Can't set security descriptor "
2023                                          "on \"%ls\" (status=0x%08"PRIx32")",
2024                                          current_path(ctx), (u32)status);
2025                         return WIMLIB_ERR_SET_SECURITY;
2026                 }
2027         }
2028
2029         /* Set attributes and timestamps  */
2030         info.CreationTime.QuadPart = inode->i_creation_time;
2031         info.LastAccessTime.QuadPart = inode->i_last_access_time;
2032         info.LastWriteTime.QuadPart = inode->i_last_write_time;
2033         info.ChangeTime.QuadPart = 0;
2034         if (ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_NO_ATTRIBUTES)
2035                 info.FileAttributes = 0;
2036         else
2037                 info.FileAttributes = inode->i_attributes & ~SPECIAL_ATTRIBUTES;
2038
2039         status = (*func_NtSetInformationFile)(h, &ctx->iosb,
2040                                               &info, sizeof(info),
2041                                               FileBasicInformation);
2042         /* On FAT volumes we get STATUS_INVALID_PARAMETER if we try to set
2043          * attributes on the root directory.  (Apparently because FAT doesn't
2044          * actually have a place to store those attributes!)  */
2045         if (!NT_SUCCESS(status)
2046             && !(status == STATUS_INVALID_PARAMETER &&
2047                  dentry_is_root(inode_first_extraction_dentry(inode))))
2048         {
2049                 set_errno_from_nt_status(status);
2050                 ERROR_WITH_ERRNO("Can't set basic metadata on \"%ls\" "
2051                                  "(status=0x%08"PRIx32")",
2052                                  current_path(ctx), (u32)status);
2053                 return WIMLIB_ERR_SET_ATTRIBUTES;
2054         }
2055
2056         return 0;
2057 }
2058
2059 static int
2060 apply_metadata_to_file(const struct wim_dentry *dentry,
2061                        struct win32_apply_ctx *ctx)
2062 {
2063         const struct wim_inode *inode = dentry->d_inode;
2064         DWORD perms;
2065         HANDLE h;
2066         NTSTATUS status;
2067         int ret;
2068
2069         perms = FILE_WRITE_ATTRIBUTES | WRITE_DAC |
2070                 WRITE_OWNER | ACCESS_SYSTEM_SECURITY;
2071
2072         build_extraction_path(dentry, ctx);
2073
2074         /* Open a handle with as many relevant permissions as possible.  */
2075         while (!NT_SUCCESS(status = do_create_file(&h, perms, NULL,
2076                                                    0, FILE_OPEN, 0, ctx)))
2077         {
2078                 if (status == STATUS_PRIVILEGE_NOT_HELD ||
2079                     status == STATUS_ACCESS_DENIED)
2080                 {
2081                         if (perms & ACCESS_SYSTEM_SECURITY) {
2082                                 perms &= ~ACCESS_SYSTEM_SECURITY;
2083                                 continue;
2084                         }
2085                         if (perms & WRITE_DAC) {
2086                                 perms &= ~WRITE_DAC;
2087                                 continue;
2088                         }
2089                         if (perms & WRITE_OWNER) {
2090                                 perms &= ~WRITE_OWNER;
2091                                 continue;
2092                         }
2093                 }
2094                 set_errno_from_nt_status(status);
2095                 ERROR_WITH_ERRNO("Can't open \"%ls\" to set metadata "
2096                                  "(status=0x%08"PRIx32")",
2097                                  current_path(ctx), (u32)status);
2098                 return WIMLIB_ERR_OPEN;
2099         }
2100
2101         ret = do_apply_metadata_to_file(h, inode, ctx);
2102
2103         (*func_NtClose)(h);
2104
2105         return ret;
2106 }
2107
2108 static int
2109 apply_metadata(struct list_head *dentry_list, struct win32_apply_ctx *ctx)
2110 {
2111         const struct wim_dentry *dentry;
2112         int ret;
2113
2114         /* We go in reverse so that metadata is set on all a directory's
2115          * children before the directory itself.  This avoids any potential
2116          * problems with attributes, timestamps, or security descriptors.  */
2117         list_for_each_entry_reverse(dentry, dentry_list, d_extraction_list_node)
2118         {
2119                 ret = apply_metadata_to_file(dentry, ctx);
2120                 if (ret)
2121                         return ret;
2122                 ret = report_file_metadata_applied(&ctx->common);
2123                 if (ret)
2124                         return ret;
2125         }
2126         return 0;
2127 }
2128
2129 /* Issue warnings about problems during the extraction for which warnings were
2130  * not already issued (due to the high number of potential warnings if we issued
2131  * them per-file).  */
2132 static void
2133 do_warnings(const struct win32_apply_ctx *ctx)
2134 {
2135         if (ctx->partial_security_descriptors == 0 &&
2136             ctx->no_security_descriptors == 0 &&
2137             ctx->num_short_name_failures == 0)
2138                 return;
2139
2140         WARNING("Extraction to \"%ls\" complete, but with one or more warnings:",
2141                 ctx->common.target);
2142         if (ctx->num_short_name_failures) {
2143                 WARNING("- Could not set short names on %lu files or directories",
2144                         ctx->num_short_name_failures);
2145         }
2146         if (ctx->partial_security_descriptors) {
2147                 WARNING("- Could only partially set the security descriptor\n"
2148                         "            on %lu files or directories.",
2149                         ctx->partial_security_descriptors);
2150         }
2151         if (ctx->no_security_descriptors) {
2152                 WARNING("- Could not set security descriptor at all\n"
2153                         "            on %lu files or directories.",
2154                         ctx->no_security_descriptors);
2155         }
2156         if (ctx->partial_security_descriptors || ctx->no_security_descriptors) {
2157                 WARNING("To fully restore all security descriptors, run the program\n"
2158                         "          with Administrator rights.");
2159         }
2160 }
2161
2162 /* Extract files from a WIM image to a directory on Windows  */
2163 static int
2164 win32_extract(struct list_head *dentry_list, struct apply_ctx *_ctx)
2165 {
2166         int ret;
2167         struct win32_apply_ctx *ctx = (struct win32_apply_ctx *)_ctx;
2168
2169         ret = prepare_target(dentry_list, ctx);
2170         if (ret)
2171                 goto out;
2172
2173         if (unlikely(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_WIMBOOT)) {
2174                 ret = start_wimboot_extraction(ctx);
2175                 if (ret)
2176                         goto out;
2177         }
2178
2179         reset_file_progress(&ctx->common);
2180
2181         ret = create_directories(dentry_list, ctx);
2182         if (ret)
2183                 goto out;
2184
2185         ret = create_nondirectories(dentry_list, ctx);
2186         if (ret)
2187                 goto out;
2188
2189         struct read_stream_list_callbacks cbs = {
2190                 .begin_stream      = begin_extract_stream,
2191                 .begin_stream_ctx  = ctx,
2192                 .consume_chunk     = extract_chunk,
2193                 .consume_chunk_ctx = ctx,
2194                 .end_stream        = end_extract_stream,
2195                 .end_stream_ctx    = ctx,
2196         };
2197         ret = extract_stream_list(&ctx->common, &cbs);
2198         if (ret)
2199                 goto out;
2200
2201         reset_file_progress(&ctx->common);
2202
2203         ret = apply_metadata(dentry_list, ctx);
2204         if (ret)
2205                 goto out;
2206
2207         if (unlikely(ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_WIMBOOT)) {
2208                 ret = end_wimboot_extraction(ctx);
2209                 if (ret)
2210                         goto out;
2211         }
2212
2213         do_warnings(ctx);
2214 out:
2215         if (ctx->h_target)
2216                 (*func_NtClose)(ctx->h_target);
2217         if (ctx->target_ntpath.Buffer)
2218                 HeapFree(GetProcessHeap(), 0, ctx->target_ntpath.Buffer);
2219         FREE(ctx->pathbuf.Buffer);
2220         FREE(ctx->print_buffer);
2221         if (ctx->wimboot.prepopulate_pats) {
2222                 FREE(ctx->wimboot.prepopulate_pats->strings);
2223                 FREE(ctx->wimboot.prepopulate_pats);
2224         }
2225         FREE(ctx->wimboot.mem_prepopulate_pats);
2226         FREE(ctx->data_buffer);
2227         return ret;
2228 }
2229
2230 const struct apply_operations win32_apply_ops = {
2231         .name                   = "Windows",
2232         .get_supported_features = win32_get_supported_features,
2233         .extract                = win32_extract,
2234         .context_size           = sizeof(struct win32_apply_ctx),
2235 };
2236
2237 #endif /* __WIN32__ */