]> wimlib.net Git - wimlib/blob - src/dentry.c
dentry.c: Cast name length u16 => u32 whenever adding 2
[wimlib] / src / dentry.c
1 /*
2  * dentry.c
3  *
4  * In the WIM file format, the dentries are stored in the "metadata resource"
5  * section right after the security data.  Each image in the WIM file has its
6  * own metadata resource with its own security data and dentry tree.  Dentries
7  * in different images may share file resources by referring to the same lookup
8  * table entries.
9  */
10
11 /*
12  * Copyright (C) 2012, 2013, 2014 Eric Biggers
13  *
14  * This file is part of wimlib, a library for working with WIM files.
15  *
16  * wimlib is free software; you can redistribute it and/or modify it under the
17  * terms of the GNU General Public License as published by the Free Software
18  * Foundation; either version 3 of the License, or (at your option) any later
19  * version.
20  *
21  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
22  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
23  * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License along with
26  * wimlib; if not, see http://www.gnu.org/licenses/.
27  */
28
29 #ifdef HAVE_CONFIG_H
30 #  include "config.h"
31 #endif
32
33 #include "wimlib.h"
34 #include "wimlib/case.h"
35 #include "wimlib/dentry.h"
36 #include "wimlib/encoding.h"
37 #include "wimlib/endianness.h"
38 #include "wimlib/error.h"
39 #include "wimlib/lookup_table.h"
40 #include "wimlib/metadata.h"
41 #include "wimlib/paths.h"
42 #include "wimlib/resource.h"
43 #include "wimlib/security.h"
44 #include "wimlib/sha1.h"
45 #include "wimlib/timestamp.h"
46
47 #include <errno.h>
48
49 /* On-disk format of a WIM dentry (directory entry), located in the metadata
50  * resource for a WIM image.  */
51 struct wim_dentry_on_disk {
52
53         /* Length of this directory entry in bytes, not including any alternate
54          * data stream entries.  Should be a multiple of 8 so that the following
55          * dentry or alternate data stream entry is aligned on an 8-byte
56          * boundary.  (If not, wimlib will round it up.)  It must be at least as
57          * long as the fixed-length fields of the dentry (WIM_DENTRY_DISK_SIZE),
58          * plus the lengths of the file name and/or short name if present.
59          *
60          * It is also possible for this field to be 0.  This situation, which is
61          * undocumented, indicates the end of a list of sibling nodes in a
62          * directory.  It also means the real length is 8, because the dentry
63          * included only the length field, but that takes up 8 bytes.  */
64         le64 length;
65
66         /* Attributes of the file or directory.  This is a bitwise OR of the
67          * FILE_ATTRIBUTE_* constants and should correspond to the value
68          * retrieved by GetFileAttributes() on Windows. */
69         le32 attributes;
70
71         /* A value that specifies the security descriptor for this file or
72          * directory.  If -1, the file or directory has no security descriptor.
73          * Otherwise, it is a 0-based index into the WIM image's table of
74          * security descriptors (see: `struct wim_security_data') */
75         sle32 security_id;
76
77         /* Offset, in bytes, from the start of the uncompressed metadata
78          * resource of this directory's child directory entries, or 0 if this
79          * directory entry does not correspond to a directory or otherwise does
80          * not have any children. */
81         le64 subdir_offset;
82
83         /* Reserved fields */
84         le64 unused_1;
85         le64 unused_2;
86
87         /* Creation time, last access time, and last write time, in
88          * 100-nanosecond intervals since 12:00 a.m UTC January 1, 1601.  They
89          * should correspond to the times gotten by calling GetFileTime() on
90          * Windows. */
91         le64 creation_time;
92         le64 last_access_time;
93         le64 last_write_time;
94
95         /* Vaguely, the SHA-1 message digest ("hash") of the file's contents.
96          * More specifically, this is for the "unnamed data stream" rather than
97          * any "alternate data streams".  This hash value is used to look up the
98          * corresponding entry in the WIM's stream lookup table to actually find
99          * the file contents within the WIM.
100          *
101          * If the file has no unnamed data stream (e.g. is a directory), then
102          * this field will be all zeroes.  If the unnamed data stream is empty
103          * (i.e. an "empty file"), then this field is also expected to be all
104          * zeroes.  (It will be if wimlib created the WIM image, at least;
105          * otherwise it can't be ruled out that the SHA-1 message digest of 0
106          * bytes of data is given explicitly.)
107          *
108          * If the file has reparse data, then this field will instead specify
109          * the SHA-1 message digest of the reparse data.  If it is somehow
110          * possible for a file to have both an unnamed data stream and reparse
111          * data, then this is not handled by wimlib.
112          *
113          * As a further special case, if this field is all zeroes but there is
114          * an alternate data stream entry with no name and a nonzero SHA-1
115          * message digest field, then that hash must be used instead of this
116          * one.  In fact, when named data streams are present, some versions of
117          * Windows PE contain a bug where they only look in the alternate data
118          * stream entries for the unnamed data stream, not here.
119          */
120         u8 unnamed_stream_hash[SHA1_HASH_SIZE];
121
122         /* The format of the following data is not yet completely known and they
123          * do not correspond to Microsoft's documentation.
124          *
125          * If this directory entry is for a reparse point (has
126          * FILE_ATTRIBUTE_REPARSE_POINT set in the attributes field), then the
127          * version of the following fields containing the reparse tag is valid.
128          * Furthermore, the field notated as not_rpfixed, as far as I can tell,
129          * is supposed to be set to 1 if reparse point fixups (a.k.a. fixing the
130          * targets of absolute symbolic links) were *not* done, and otherwise 0.
131          *
132          * If this directory entry is not for a reparse point, then the version
133          * of the following fields containing the hard_link_group_id is valid.
134          * All MS says about this field is that "If this file is part of a hard
135          * link set, all the directory entries in the set will share the same
136          * value in this field.".  However, more specifically I have observed
137          * the following:
138          *    - If the file is part of a hard link set of size 1, then the
139          *    hard_link_group_id should be set to either 0, which is treated
140          *    specially as indicating "not hardlinked", or any unique value.
141          *    - The specific nonzero values used to identity hard link sets do
142          *    not matter, as long as they are unique.
143          *    - However, due to bugs in Microsoft's software, it is actually NOT
144          *    guaranteed that directory entries that share the same hard link
145          *    group ID are actually hard linked to each either.  We have to
146          *    handle this by using special code to use distinguishing features
147          *    (which is possible because some information about the underlying
148          *    inode is repeated in each dentry) to split up these fake hard link
149          *    groups into what they actually are supposed to be.
150          */
151         union {
152                 struct {
153                         le32 rp_unknown_1;
154                         le32 reparse_tag;
155                         le16 rp_unknown_2;
156                         le16 not_rpfixed;
157                 } _packed_attribute reparse;
158                 struct {
159                         le32 rp_unknown_1;
160                         le64 hard_link_group_id;
161                 } _packed_attribute nonreparse;
162         };
163
164         /* Number of alternate data stream entries that directly follow this
165          * dentry on-disk. */
166         le16 num_alternate_data_streams;
167
168         /* Length of this file's UTF-16LE encoded short name (8.3 DOS-compatible
169          * name), if present, in bytes, excluding the null terminator.  If this
170          * file has no short name, then this field should be 0.  */
171         le16 short_name_nbytes;
172
173         /* Length of this file's UTF-16LE encoded "long" name, excluding the
174          * null terminator.  If this file has no short name, then this field
175          * should be 0.  It's expected that only the root dentry has this field
176          * set to 0.  */
177         le16 file_name_nbytes;
178
179         /* Followed by variable length file name, in UTF16-LE, if
180          * file_name_nbytes != 0.  Includes null terminator. */
181         /*utf16lechar file_name[];*/
182
183         /* Followed by variable length short name, in UTF16-LE, if
184          * short_name_nbytes != 0.  Includes null terminator. */
185         /*utf16lechar short_name[];*/
186
187         /* And optionally followed by a variable-length series of tagged items;
188          * see tagged_items.c.  */
189 } _packed_attribute;
190
191 /* Calculates the unaligned length, in bytes, of an on-disk WIM dentry that has
192  * a file name and short name that take the specified numbers of bytes.  This
193  * excludes tagged items as well as any alternate data stream entries that may
194  * follow the dentry.  */
195 static u64
196 dentry_min_len_with_names(u16 file_name_nbytes, u16 short_name_nbytes)
197 {
198         u64 length = sizeof(struct wim_dentry_on_disk);
199         if (file_name_nbytes)
200                 length += (u32)file_name_nbytes + 2;
201         if (short_name_nbytes)
202                 length += (u32)short_name_nbytes + 2;
203         return length;
204 }
205
206 static void
207 do_dentry_set_name(struct wim_dentry *dentry, utf16lechar *file_name,
208                    size_t file_name_nbytes)
209 {
210         FREE(dentry->file_name);
211         dentry->file_name = file_name;
212         dentry->file_name_nbytes = file_name_nbytes;
213
214         if (dentry_has_short_name(dentry)) {
215                 FREE(dentry->short_name);
216                 dentry->short_name = NULL;
217                 dentry->short_name_nbytes = 0;
218         }
219 }
220
221 /* Sets the name of a WIM dentry from a UTF-16LE string.
222  * Only use this on dentries not inserted into the tree.  Use rename_wim_path()
223  * to do a real rename.  */
224 int
225 dentry_set_name_utf16le(struct wim_dentry *dentry, const utf16lechar *name,
226                         size_t name_nbytes)
227 {
228         utf16lechar *dup = NULL;
229
230         if (name_nbytes) {
231                 dup = utf16le_dupz(name, name_nbytes);
232                 if (!dup)
233                         return WIMLIB_ERR_NOMEM;
234         }
235         do_dentry_set_name(dentry, dup, name_nbytes);
236         return 0;
237 }
238
239
240 /* Sets the name of a WIM dentry from a multibyte string.
241  * Only use this on dentries not inserted into the tree.  Use rename_wim_path()
242  * to do a real rename.  */
243 int
244 dentry_set_name(struct wim_dentry *dentry, const tchar *name)
245 {
246         utf16lechar *name_utf16le = NULL;
247         size_t name_utf16le_nbytes = 0;
248         int ret;
249
250         if (name && *name) {
251                 ret = tstr_to_utf16le(name, tstrlen(name) * sizeof(tchar),
252                                       &name_utf16le, &name_utf16le_nbytes);
253                 if (ret)
254                         return ret;
255         }
256
257         do_dentry_set_name(dentry, name_utf16le, name_utf16le_nbytes);
258         return 0;
259 }
260
261 /* Returns the total length of a WIM alternate data stream entry on-disk,
262  * including the stream name, the null terminator, AND the padding after the
263  * entry to align the next ADS entry or dentry on an 8-byte boundary. */
264 static u64
265 ads_entry_total_length(const struct wim_ads_entry *entry)
266 {
267         u64 len = sizeof(struct wim_ads_entry_on_disk);
268         if (entry->stream_name_nbytes)
269                 len += (u32)entry->stream_name_nbytes + 2;
270         return (len + 7) & ~7;
271 }
272
273 /*
274  * Determine whether to include a "dummy" stream when writing a WIM dentry:
275  *
276  * Some versions of Microsoft's WIM software (the boot driver(s) in WinPE 3.0,
277  * for example) contain a bug where they assume the first alternate data stream
278  * (ADS) entry of a dentry with a nonzero ADS count specifies the unnamed
279  * stream, even if it has a name and the unnamed stream is already specified in
280  * the hash field of the dentry itself.
281  *
282  * wimlib has to work around this behavior by carefully emulating the behavior
283  * of (most versions of) ImageX/WIMGAPI, which move the unnamed stream reference
284  * into the alternate stream entries whenever there are named data streams, even
285  * though there is already a field in the dentry itself for the unnamed stream
286  * reference, which then goes to waste.
287  */
288 static inline bool
289 inode_needs_dummy_stream(const struct wim_inode *inode)
290 {
291         return (inode->i_num_ads > 0 &&
292                 inode->i_num_ads < 0xffff && /* overflow check */
293                 inode->i_canonical_streams); /* assume the dentry is okay if it
294                                                 already had an unnamed ADS entry
295                                                 when it was read in  */
296 }
297
298 /* Calculate the total number of bytes that will be consumed when a WIM dentry
299  * is written.  This includes the base dentry, the name fields, any tagged items,
300  * and any alternate data stream entries.  Also includes all alignment bytes
301  * between these parts.  */
302 u64
303 dentry_out_total_length(const struct wim_dentry *dentry)
304 {
305         const struct wim_inode *inode = dentry->d_inode;
306         u64 len;
307
308         len = dentry_min_len_with_names(dentry->file_name_nbytes,
309                                         dentry->short_name_nbytes);
310         len = (len + 7) & ~7;
311
312         if (inode->i_extra_size) {
313                 len += inode->i_extra_size;
314                 len = (len + 7) & ~7;
315         }
316
317         if (unlikely(inode->i_num_ads)) {
318                 if (inode_needs_dummy_stream(inode))
319                         len += ads_entry_total_length(&(struct wim_ads_entry){});
320
321                 for (u16 i = 0; i < inode->i_num_ads; i++)
322                         len += ads_entry_total_length(&inode->i_ads_entries[i]);
323         }
324
325         return len;
326 }
327
328 static int
329 do_for_dentry_in_tree(struct wim_dentry *dentry,
330                       int (*visitor)(struct wim_dentry *, void *), void *arg)
331 {
332         int ret;
333         struct wim_dentry *child;
334
335         ret = (*visitor)(dentry, arg);
336         if (unlikely(ret))
337                 return ret;
338
339         for_dentry_child(child, dentry) {
340                 ret = do_for_dentry_in_tree(child, visitor, arg);
341                 if (unlikely(ret))
342                         return ret;
343         }
344         return 0;
345 }
346
347
348 static int
349 do_for_dentry_in_tree_depth(struct wim_dentry *dentry,
350                             int (*visitor)(struct wim_dentry *, void *), void *arg)
351 {
352         int ret;
353         struct wim_dentry *child;
354
355         for_dentry_child_postorder(child, dentry) {
356                 ret = do_for_dentry_in_tree_depth(child, visitor, arg);
357                 if (unlikely(ret))
358                         return ret;
359         }
360         return unlikely((*visitor)(dentry, arg));
361 }
362
363 /* Calls a function on all directory entries in a WIM dentry tree.  Logically,
364  * this is a pre-order traversal (the function is called on a parent dentry
365  * before its children), but sibling dentries will be visited in order as well.
366  * */
367 int
368 for_dentry_in_tree(struct wim_dentry *root,
369                    int (*visitor)(struct wim_dentry *, void *), void *arg)
370 {
371         if (unlikely(!root))
372                 return 0;
373         return do_for_dentry_in_tree(root, visitor, arg);
374 }
375
376 /* Like for_dentry_in_tree(), but the visitor function is always called on a
377  * dentry's children before on itself. */
378 int
379 for_dentry_in_tree_depth(struct wim_dentry *root,
380                          int (*visitor)(struct wim_dentry *, void *), void *arg)
381 {
382         if (unlikely(!root))
383                 return 0;
384         return do_for_dentry_in_tree_depth(root, visitor, arg);
385 }
386
387 /* Calculate the full path of @dentry.  */
388 int
389 calculate_dentry_full_path(struct wim_dentry *dentry)
390 {
391         size_t ulen;
392         size_t dummy;
393         const struct wim_dentry *d;
394
395         if (dentry->_full_path)
396                 return 0;
397
398         ulen = 0;
399         d = dentry;
400         do {
401                 ulen += d->file_name_nbytes / sizeof(utf16lechar);
402                 ulen++;
403                 d = d->d_parent;  /* assumes d == d->d_parent for root  */
404         } while (!dentry_is_root(d));
405
406         utf16lechar ubuf[ulen];
407         utf16lechar *p = &ubuf[ulen];
408
409         d = dentry;
410         do {
411                 p -= d->file_name_nbytes / sizeof(utf16lechar);
412                 memcpy(p, d->file_name, d->file_name_nbytes);
413                 *--p = cpu_to_le16(WIM_PATH_SEPARATOR);
414                 d = d->d_parent;  /* assumes d == d->d_parent for root  */
415         } while (!dentry_is_root(d));
416
417         wimlib_assert(p == ubuf);
418
419         return utf16le_to_tstr(ubuf, ulen * sizeof(utf16lechar),
420                                &dentry->_full_path, &dummy);
421 }
422
423 tchar *
424 dentry_full_path(struct wim_dentry *dentry)
425 {
426         calculate_dentry_full_path(dentry);
427         return dentry->_full_path;
428 }
429
430 static int
431 dentry_calculate_subdir_offset(struct wim_dentry *dentry, void *_subdir_offset_p)
432 {
433         if (dentry_is_directory(dentry)) {
434                 u64 *subdir_offset_p = _subdir_offset_p;
435                 struct wim_dentry *child;
436
437                 /* Set offset of directory's child dentries  */
438                 dentry->subdir_offset = *subdir_offset_p;
439
440                 /* Account for child dentries  */
441                 for_dentry_child(child, dentry)
442                         *subdir_offset_p += dentry_out_total_length(child);
443
444                 /* Account for end-of-directory entry  */
445                 *subdir_offset_p += 8;
446         } else {
447                 /* Not a directory; set subdir_offset to 0  */
448                 dentry->subdir_offset = 0;
449         }
450         return 0;
451 }
452
453 /*
454  * Calculates the subdir offsets for a directory tree.
455  */
456 void
457 calculate_subdir_offsets(struct wim_dentry *root, u64 *subdir_offset_p)
458 {
459         for_dentry_in_tree(root, dentry_calculate_subdir_offset, subdir_offset_p);
460 }
461
462 /* Compare the UTF-16LE long filenames of two dentries case insensitively.  */
463 static int
464 dentry_compare_names_case_insensitive(const struct wim_dentry *d1,
465                                       const struct wim_dentry *d2)
466 {
467         return cmp_utf16le_strings(d1->file_name,
468                                    d1->file_name_nbytes / 2,
469                                    d2->file_name,
470                                    d2->file_name_nbytes / 2,
471                                    true);
472 }
473
474 /* Compare the UTF-16LE long filenames of two dentries case sensitively.  */
475 static int
476 dentry_compare_names_case_sensitive(const struct wim_dentry *d1,
477                                     const struct wim_dentry *d2)
478 {
479         return cmp_utf16le_strings(d1->file_name,
480                                    d1->file_name_nbytes / 2,
481                                    d2->file_name,
482                                    d2->file_name_nbytes / 2,
483                                    false);
484 }
485
486 static int
487 _avl_dentry_compare_names_ci(const struct avl_tree_node *n1,
488                              const struct avl_tree_node *n2)
489 {
490         const struct wim_dentry *d1, *d2;
491
492         d1 = avl_tree_entry(n1, struct wim_dentry, d_index_node_ci);
493         d2 = avl_tree_entry(n2, struct wim_dentry, d_index_node_ci);
494         return dentry_compare_names_case_insensitive(d1, d2);
495 }
496
497 static int
498 _avl_dentry_compare_names(const struct avl_tree_node *n1,
499                           const struct avl_tree_node *n2)
500 {
501         const struct wim_dentry *d1, *d2;
502
503         d1 = avl_tree_entry(n1, struct wim_dentry, d_index_node);
504         d2 = avl_tree_entry(n2, struct wim_dentry, d_index_node);
505         return dentry_compare_names_case_sensitive(d1, d2);
506 }
507
508 /* Default case sensitivity behavior for searches with
509  * WIMLIB_CASE_PLATFORM_DEFAULT specified.  This can be modified by
510  * wimlib_global_init().  */
511 bool default_ignore_case =
512 #ifdef __WIN32__
513         true
514 #else
515         false
516 #endif
517 ;
518
519 /* Case-sensitive dentry lookup.  Only @file_name and @file_name_nbytes of
520  * @dummy must be valid.  */
521 static struct wim_dentry *
522 dir_lookup(const struct wim_inode *dir, const struct wim_dentry *dummy)
523 {
524         struct avl_tree_node *node;
525
526         node = avl_tree_lookup_node(dir->i_children,
527                                     &dummy->d_index_node,
528                                     _avl_dentry_compare_names);
529         if (!node)
530                 return NULL;
531         return avl_tree_entry(node, struct wim_dentry, d_index_node);
532 }
533
534 /* Case-insensitive dentry lookup.  Only @file_name and @file_name_nbytes of
535  * @dummy must be valid.  */
536 static struct wim_dentry *
537 dir_lookup_ci(const struct wim_inode *dir, const struct wim_dentry *dummy)
538 {
539         struct avl_tree_node *node;
540
541         node = avl_tree_lookup_node(dir->i_children_ci,
542                                     &dummy->d_index_node_ci,
543                                     _avl_dentry_compare_names_ci);
544         if (!node)
545                 return NULL;
546         return avl_tree_entry(node, struct wim_dentry, d_index_node_ci);
547 }
548
549 /* Given a UTF-16LE filename and a directory, look up the dentry for the file.
550  * Return it if found, otherwise NULL.  This has configurable case sensitivity,
551  * and @name need not be null-terminated.  */
552 struct wim_dentry *
553 get_dentry_child_with_utf16le_name(const struct wim_dentry *dentry,
554                                    const utf16lechar *name,
555                                    size_t name_nbytes,
556                                    CASE_SENSITIVITY_TYPE case_ctype)
557 {
558         const struct wim_inode *dir = dentry->d_inode;
559         bool ignore_case = will_ignore_case(case_ctype);
560         struct wim_dentry dummy;
561         struct wim_dentry *child;
562
563         dummy.file_name = (utf16lechar*)name;
564         dummy.file_name_nbytes = name_nbytes;
565
566         if (!ignore_case)
567                 /* Case-sensitive lookup.  */
568                 return dir_lookup(dir, &dummy);
569
570         /* Case-insensitive lookup.  */
571
572         child = dir_lookup_ci(dir, &dummy);
573         if (!child)
574                 return NULL;
575
576         if (likely(list_empty(&child->d_ci_conflict_list)))
577                 /* Only one dentry has this case-insensitive name; return it */
578                 return child;
579
580         /* Multiple dentries have the same case-insensitive name.  Choose the
581          * dentry with the same case-sensitive name, if one exists; otherwise
582          * print a warning and choose one of the possible dentries arbitrarily.
583          */
584         struct wim_dentry *alt = child;
585         size_t num_alts = 0;
586
587         do {
588                 num_alts++;
589                 if (!dentry_compare_names_case_sensitive(&dummy, alt))
590                         return alt;
591                 alt = list_entry(alt->d_ci_conflict_list.next,
592                                  struct wim_dentry, d_ci_conflict_list);
593         } while (alt != child);
594
595         WARNING("Result of case-insensitive lookup is ambiguous\n"
596                 "          (returning \"%"TS"\" of %zu "
597                 "possible files, including \"%"TS"\")",
598                 dentry_full_path(child),
599                 num_alts,
600                 dentry_full_path(list_entry(child->d_ci_conflict_list.next,
601                                             struct wim_dentry,
602                                             d_ci_conflict_list)));
603         return child;
604 }
605
606 /* Returns the child of @dentry that has the file name @name.  Returns NULL if
607  * no child has the name. */
608 struct wim_dentry *
609 get_dentry_child_with_name(const struct wim_dentry *dentry, const tchar *name,
610                            CASE_SENSITIVITY_TYPE case_type)
611 {
612         int ret;
613         const utf16lechar *name_utf16le;
614         size_t name_utf16le_nbytes;
615         struct wim_dentry *child;
616
617         ret = tstr_get_utf16le_and_len(name, &name_utf16le,
618                                        &name_utf16le_nbytes);
619         if (ret)
620                 return NULL;
621
622         child = get_dentry_child_with_utf16le_name(dentry,
623                                                    name_utf16le,
624                                                    name_utf16le_nbytes,
625                                                    case_type);
626         tstr_put_utf16le(name_utf16le);
627         return child;
628 }
629
630 static struct wim_dentry *
631 get_dentry_utf16le(WIMStruct *wim, const utf16lechar *path,
632                    CASE_SENSITIVITY_TYPE case_type)
633 {
634         struct wim_dentry *cur_dentry;
635         const utf16lechar *name_start, *name_end;
636
637         /* Start with the root directory of the image.  Note: this will be NULL
638          * if an image has been added directly with wimlib_add_empty_image() but
639          * no files have been added yet; in that case we fail with ENOENT.  */
640         cur_dentry = wim_get_current_root_dentry(wim);
641
642         name_start = path;
643         for (;;) {
644                 if (cur_dentry == NULL) {
645                         errno = ENOENT;
646                         return NULL;
647                 }
648
649                 if (*name_start && !dentry_is_directory(cur_dentry)) {
650                         errno = ENOTDIR;
651                         return NULL;
652                 }
653
654                 while (*name_start == cpu_to_le16(WIM_PATH_SEPARATOR))
655                         name_start++;
656
657                 if (!*name_start)
658                         return cur_dentry;
659
660                 name_end = name_start;
661                 do {
662                         ++name_end;
663                 } while (*name_end != cpu_to_le16(WIM_PATH_SEPARATOR) && *name_end);
664
665                 cur_dentry = get_dentry_child_with_utf16le_name(cur_dentry,
666                                                                 name_start,
667                                                                 (u8*)name_end - (u8*)name_start,
668                                                                 case_type);
669                 name_start = name_end;
670         }
671 }
672
673 /*
674  * WIM path lookup: translate a path in the currently selected WIM image to the
675  * corresponding dentry, if it exists.
676  *
677  * @wim
678  *      The WIMStruct for the WIM.  The search takes place in the currently
679  *      selected image.
680  *
681  * @path
682  *      The path to look up, given relative to the root of the WIM image.
683  *      Characters with value WIM_PATH_SEPARATOR are taken to be path
684  *      separators.  Leading path separators are ignored, whereas one or more
685  *      trailing path separators cause the path to only match a directory.
686  *
687  * @case_type
688  *      The case-sensitivity behavior of this function, as one of the following
689  *      constants:
690  *
691  *    - WIMLIB_CASE_SENSITIVE:  Perform the search case sensitively.  This means
692  *      that names must match exactly.
693  *
694  *    - WIMLIB_CASE_INSENSITIVE:  Perform the search case insensitively.  This
695  *      means that names are considered to match if they are equal when
696  *      transformed to upper case.  If a path component matches multiple names
697  *      case-insensitively, the name that matches the path component
698  *      case-sensitively is chosen, if existent; otherwise one
699  *      case-insensitively matching name is chosen arbitrarily.
700  *
701  *    - WIMLIB_CASE_PLATFORM_DEFAULT:  Perform either case-sensitive or
702  *      case-insensitive search, depending on the value of the global variable
703  *      default_ignore_case.
704  *
705  *    In any case, no Unicode normalization is done before comparing strings.
706  *
707  * Returns a pointer to the dentry that is the result of the lookup, or NULL if
708  * no such dentry exists.  If NULL is returned, errno is set to one of the
709  * following values:
710  *
711  *      ENOTDIR if one of the path components used as a directory existed but
712  *      was not, in fact, a directory.
713  *
714  *      ENOENT otherwise.
715  *
716  * Additional notes:
717  *
718  *    - This function does not consider a reparse point to be a directory, even
719  *      if it has FILE_ATTRIBUTE_DIRECTORY set.
720  *
721  *    - This function does not dereference symbolic links or junction points
722  *      when performing the search.
723  *
724  *    - Since this function ignores leading slashes, the empty path is valid and
725  *      names the root directory of the WIM image.
726  *
727  *    - An image added with wimlib_add_empty_image() does not have a root
728  *      directory yet, and this function will fail with ENOENT for any path on
729  *      such an image.
730  */
731 struct wim_dentry *
732 get_dentry(WIMStruct *wim, const tchar *path, CASE_SENSITIVITY_TYPE case_type)
733 {
734         int ret;
735         const utf16lechar *path_utf16le;
736         struct wim_dentry *dentry;
737
738         ret = tstr_get_utf16le(path, &path_utf16le);
739         if (ret)
740                 return NULL;
741         dentry = get_dentry_utf16le(wim, path_utf16le, case_type);
742         tstr_put_utf16le(path_utf16le);
743         return dentry;
744 }
745
746 /* Takes in a path of length @len in @buf, and transforms it into a string for
747  * the path of its parent directory. */
748 static void
749 to_parent_name(tchar *buf, size_t len)
750 {
751         ssize_t i = (ssize_t)len - 1;
752         while (i >= 0 && buf[i] == WIM_PATH_SEPARATOR)
753                 i--;
754         while (i >= 0 && buf[i] != WIM_PATH_SEPARATOR)
755                 i--;
756         while (i >= 0 && buf[i] == WIM_PATH_SEPARATOR)
757                 i--;
758         buf[i + 1] = T('\0');
759 }
760
761 /* Similar to get_dentry(), but returns the dentry named by @path with the last
762  * component stripped off.
763  *
764  * Note: The returned dentry is NOT guaranteed to be a directory.  */
765 struct wim_dentry *
766 get_parent_dentry(WIMStruct *wim, const tchar *path,
767                   CASE_SENSITIVITY_TYPE case_type)
768 {
769         size_t path_len = tstrlen(path);
770         tchar buf[path_len + 1];
771
772         tmemcpy(buf, path, path_len + 1);
773         to_parent_name(buf, path_len);
774         return get_dentry(wim, buf, case_type);
775 }
776
777 /* Creates an unlinked directory entry. */
778 int
779 new_dentry(const tchar *name, struct wim_dentry **dentry_ret)
780 {
781         struct wim_dentry *dentry;
782         int ret;
783
784         dentry = CALLOC(1, sizeof(struct wim_dentry));
785         if (!dentry)
786                 return WIMLIB_ERR_NOMEM;
787
788         if (*name) {
789                 ret = dentry_set_name(dentry, name);
790                 if (ret) {
791                         FREE(dentry);
792                         ERROR("Failed to set name on new dentry with name \"%"TS"\"",
793                               name);
794                         return ret;
795                 }
796         }
797         dentry->d_parent = dentry;
798         *dentry_ret = dentry;
799         return 0;
800 }
801
802 static int
803 _new_dentry_with_inode(const tchar *name, struct wim_dentry **dentry_ret,
804                         bool timeless)
805 {
806         struct wim_dentry *dentry;
807         int ret;
808
809         ret = new_dentry(name, &dentry);
810         if (ret)
811                 return ret;
812
813         if (timeless)
814                 dentry->d_inode = new_timeless_inode();
815         else
816                 dentry->d_inode = new_inode();
817         if (dentry->d_inode == NULL) {
818                 free_dentry(dentry);
819                 return WIMLIB_ERR_NOMEM;
820         }
821
822         inode_add_dentry(dentry, dentry->d_inode);
823         *dentry_ret = dentry;
824         return 0;
825 }
826
827 int
828 new_dentry_with_timeless_inode(const tchar *name, struct wim_dentry **dentry_ret)
829 {
830         return _new_dentry_with_inode(name, dentry_ret, true);
831 }
832
833 int
834 new_dentry_with_inode(const tchar *name, struct wim_dentry **dentry_ret)
835 {
836         return _new_dentry_with_inode(name, dentry_ret, false);
837 }
838
839 int
840 new_filler_directory(struct wim_dentry **dentry_ret)
841 {
842         int ret;
843         struct wim_dentry *dentry;
844
845         ret = new_dentry_with_inode(T(""), &dentry);
846         if (ret)
847                 return ret;
848         /* Leave the inode number as 0; this is allowed for non
849          * hard-linked files. */
850         dentry->d_inode->i_resolved = 1;
851         dentry->d_inode->i_attributes = FILE_ATTRIBUTE_DIRECTORY;
852         *dentry_ret = dentry;
853         return 0;
854 }
855
856 static int
857 dentry_clear_inode_visited(struct wim_dentry *dentry, void *_ignore)
858 {
859         dentry->d_inode->i_visited = 0;
860         return 0;
861 }
862
863 void
864 dentry_tree_clear_inode_visited(struct wim_dentry *root)
865 {
866         for_dentry_in_tree(root, dentry_clear_inode_visited, NULL);
867 }
868
869 /*
870  * Free a WIM dentry.
871  *
872  * In addition to freeing the dentry itself, this decrements the link count of
873  * the corresponding inode (if any).  If the inode's link count reaches 0, the
874  * inode is freed as well.
875  */
876 void
877 free_dentry(struct wim_dentry *dentry)
878 {
879         if (dentry) {
880                 FREE(dentry->file_name);
881                 FREE(dentry->short_name);
882                 FREE(dentry->_full_path);
883                 if (dentry->d_inode)
884                         put_inode(dentry->d_inode);
885                 FREE(dentry);
886         }
887 }
888
889 static int
890 do_free_dentry(struct wim_dentry *dentry, void *_ignore)
891 {
892         free_dentry(dentry);
893         return 0;
894 }
895
896 static int
897 do_free_dentry_and_unref_streams(struct wim_dentry *dentry, void *lookup_table)
898 {
899         inode_unref_streams(dentry->d_inode, lookup_table);
900         free_dentry(dentry);
901         return 0;
902 }
903
904 /*
905  * Recursively frees all directory entries in the specified tree.
906  *
907  * @root:
908  *      The root of the tree.
909  *
910  * @lookup_table:
911  *      The lookup table for dentries.  If non-NULL, the reference counts in the
912  *      lookup table for the lookup table entries corresponding to the dentries
913  *      will be decremented.
914  *
915  * This also puts references to the corresponding inodes.
916  *
917  * This does *not* unlink @root from its parent directory (if it has one).
918  */
919 void
920 free_dentry_tree(struct wim_dentry *root, struct wim_lookup_table *lookup_table)
921 {
922         int (*f)(struct wim_dentry *, void *);
923
924         if (lookup_table)
925                 f = do_free_dentry_and_unref_streams;
926         else
927                 f = do_free_dentry;
928
929         for_dentry_in_tree_depth(root, f, lookup_table);
930 }
931
932 /* Insert the @child dentry into the case sensitive index of the @dir directory.
933  * Return NULL if successfully inserted, otherwise a pointer to the
934  * already-inserted duplicate.  */
935 static struct wim_dentry *
936 dir_index_child(struct wim_inode *dir, struct wim_dentry *child)
937 {
938         struct avl_tree_node *duplicate;
939
940         duplicate = avl_tree_insert(&dir->i_children,
941                                     &child->d_index_node,
942                                     _avl_dentry_compare_names);
943         if (!duplicate)
944                 return NULL;
945         return avl_tree_entry(duplicate, struct wim_dentry, d_index_node);
946 }
947
948 /* Insert the @child dentry into the case insensitive index of the @dir
949  * directory.  Return NULL if successfully inserted, otherwise a pointer to the
950  * already-inserted duplicate.  */
951 static struct wim_dentry *
952 dir_index_child_ci(struct wim_inode *dir, struct wim_dentry *child)
953 {
954         struct avl_tree_node *duplicate;
955
956         duplicate = avl_tree_insert(&dir->i_children_ci,
957                                     &child->d_index_node_ci,
958                                     _avl_dentry_compare_names_ci);
959         if (!duplicate)
960                 return NULL;
961         return avl_tree_entry(duplicate, struct wim_dentry, d_index_node_ci);
962 }
963
964 /* Removes the specified dentry from its directory's case-sensitive index.  */
965 static void
966 dir_unindex_child(struct wim_inode *dir, struct wim_dentry *child)
967 {
968         avl_tree_remove(&dir->i_children, &child->d_index_node);
969 }
970
971 /* Removes the specified dentry from its directory's case-insensitive index.  */
972 static void
973 dir_unindex_child_ci(struct wim_inode *dir, struct wim_dentry *child)
974 {
975         avl_tree_remove(&dir->i_children_ci, &child->d_index_node_ci);
976 }
977
978 /* Returns true iff the specified dentry is in its parent directory's
979  * case-insensitive index.  */
980 static bool
981 dentry_in_ci_index(const struct wim_dentry *dentry)
982 {
983         return !avl_tree_node_is_unlinked(&dentry->d_index_node_ci);
984 }
985
986 /*
987  * Links a dentry into the directory tree.
988  *
989  * @parent: The dentry that will be the parent of @child.
990  * @child: The dentry to link.
991  *
992  * Returns NULL if successful.  If @parent already contains a dentry with the
993  * same case-sensitive name as @child, returns a pointer to this duplicate
994  * dentry.
995  */
996 struct wim_dentry *
997 dentry_add_child(struct wim_dentry *parent, struct wim_dentry *child)
998 {
999         struct wim_dentry *duplicate;
1000         struct wim_inode *dir;
1001
1002         wimlib_assert(parent != child);
1003
1004         dir = parent->d_inode;
1005
1006         wimlib_assert(inode_is_directory(dir));
1007
1008         duplicate = dir_index_child(dir, child);
1009         if (duplicate)
1010                 return duplicate;
1011
1012         duplicate = dir_index_child_ci(dir, child);
1013         if (duplicate) {
1014                 list_add(&child->d_ci_conflict_list, &duplicate->d_ci_conflict_list);
1015                 avl_tree_node_set_unlinked(&child->d_index_node_ci);
1016         } else {
1017                 INIT_LIST_HEAD(&child->d_ci_conflict_list);
1018         }
1019         child->d_parent = parent;
1020         return NULL;
1021 }
1022
1023 /* Unlink a WIM dentry from the directory entry tree.  */
1024 void
1025 unlink_dentry(struct wim_dentry *dentry)
1026 {
1027         struct wim_inode *dir;
1028
1029         if (dentry_is_root(dentry))
1030                 return;
1031
1032         dir = dentry->d_parent->d_inode;
1033
1034         dir_unindex_child(dir, dentry);
1035
1036         if (dentry_in_ci_index(dentry)) {
1037
1038                 dir_unindex_child_ci(dir, dentry);
1039
1040                 if (!list_empty(&dentry->d_ci_conflict_list)) {
1041                         /* Make a different case-insensitively-the-same dentry
1042                          * be the "representative" in the search index. */
1043                         struct list_head *next;
1044                         struct wim_dentry *other;
1045                         struct wim_dentry *existing;
1046
1047                         next = dentry->d_ci_conflict_list.next;
1048                         other = list_entry(next, struct wim_dentry, d_ci_conflict_list);
1049                         existing = dir_index_child_ci(dir, other);
1050                         wimlib_assert(existing == NULL);
1051                 }
1052         }
1053         list_del(&dentry->d_ci_conflict_list);
1054 }
1055
1056 static int
1057 read_extra_data(const u8 *p, const u8 *end, struct wim_inode *inode)
1058 {
1059         while (((uintptr_t)p & 7) && p < end)
1060                 p++;
1061
1062         if (unlikely(p < end)) {
1063                 inode->i_extra = memdup(p, end - p);
1064                 if (!inode->i_extra)
1065                         return WIMLIB_ERR_NOMEM;
1066                 inode->i_extra_size = end - p;
1067         }
1068         return 0;
1069 }
1070
1071 /* Reads a WIM directory entry, including all alternate data stream entries that
1072  * follow it, from the WIM image's metadata resource.  */
1073 static int
1074 read_dentry(const u8 * restrict buf, size_t buf_len,
1075             u64 *offset_p, struct wim_dentry **dentry_ret)
1076 {
1077         u64 offset = *offset_p;
1078         u64 length;
1079         const u8 *p;
1080         const struct wim_dentry_on_disk *disk_dentry;
1081         struct wim_dentry *dentry;
1082         struct wim_inode *inode;
1083         u16 short_name_nbytes;
1084         u16 file_name_nbytes;
1085         u64 calculated_size;
1086         int ret;
1087
1088         BUILD_BUG_ON(sizeof(struct wim_dentry_on_disk) != WIM_DENTRY_DISK_SIZE);
1089
1090         /* Before reading the whole dentry, we need to read just the length.
1091          * This is because a dentry of length 8 (that is, just the length field)
1092          * terminates the list of sibling directory entries. */
1093
1094         /* Check for buffer overrun.  */
1095         if (unlikely(offset + sizeof(u64) > buf_len ||
1096                      offset + sizeof(u64) < offset))
1097         {
1098                 ERROR("Directory entry starting at %"PRIu64" ends past the "
1099                       "end of the metadata resource (size %zu)",
1100                       offset, buf_len);
1101                 return WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1102         }
1103
1104         /* Get pointer to the dentry data.  */
1105         p = &buf[offset];
1106         disk_dentry = (const struct wim_dentry_on_disk*)p;
1107
1108         /* Get dentry length.  */
1109         length = le64_to_cpu(disk_dentry->length);
1110
1111         /* Check for end-of-directory.  */
1112         if (length <= 8) {
1113                 *dentry_ret = NULL;
1114                 return 0;
1115         }
1116
1117         /* Validate dentry length.  */
1118         if (unlikely(length < sizeof(struct wim_dentry_on_disk))) {
1119                 ERROR("Directory entry has invalid length of %"PRIu64" bytes",
1120                       length);
1121                 return WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1122         }
1123
1124         /* Check for buffer overrun.  */
1125         if (unlikely(offset + length > buf_len ||
1126                      offset + length < offset))
1127         {
1128                 ERROR("Directory entry at offset %"PRIu64" and with size "
1129                       "%"PRIu64" ends past the end of the metadata resource "
1130                       "(size %zu)", offset, length, buf_len);
1131                 return WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1132         }
1133
1134         /* Allocate new dentry structure, along with a preliminary inode.  */
1135         ret = new_dentry_with_timeless_inode(T(""), &dentry);
1136         if (ret)
1137                 return ret;
1138
1139         inode = dentry->d_inode;
1140
1141         /* Read more fields: some into the dentry, and some into the inode.  */
1142         inode->i_attributes = le32_to_cpu(disk_dentry->attributes);
1143         inode->i_security_id = le32_to_cpu(disk_dentry->security_id);
1144         dentry->subdir_offset = le64_to_cpu(disk_dentry->subdir_offset);
1145         inode->i_creation_time = le64_to_cpu(disk_dentry->creation_time);
1146         inode->i_last_access_time = le64_to_cpu(disk_dentry->last_access_time);
1147         inode->i_last_write_time = le64_to_cpu(disk_dentry->last_write_time);
1148         copy_hash(inode->i_hash, disk_dentry->unnamed_stream_hash);
1149
1150         /* I don't know what's going on here.  It seems like M$ screwed up the
1151          * reparse points, then put the fields in the same place and didn't
1152          * document it.  So we have some fields we read for reparse points, and
1153          * some fields in the same place for non-reparse-points.  */
1154         if (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT) {
1155                 inode->i_rp_unknown_1 = le32_to_cpu(disk_dentry->reparse.rp_unknown_1);
1156                 inode->i_reparse_tag = le32_to_cpu(disk_dentry->reparse.reparse_tag);
1157                 inode->i_rp_unknown_2 = le16_to_cpu(disk_dentry->reparse.rp_unknown_2);
1158                 inode->i_not_rpfixed = le16_to_cpu(disk_dentry->reparse.not_rpfixed);
1159                 /* Leave inode->i_ino at 0.  Note that this means the WIM file
1160                  * cannot archive hard-linked reparse points.  Such a thing
1161                  * doesn't really make sense anyway, although I believe it's
1162                  * theoretically possible to have them on NTFS.  */
1163         } else {
1164                 inode->i_rp_unknown_1 = le32_to_cpu(disk_dentry->nonreparse.rp_unknown_1);
1165                 inode->i_ino = le64_to_cpu(disk_dentry->nonreparse.hard_link_group_id);
1166         }
1167         inode->i_num_ads = le16_to_cpu(disk_dentry->num_alternate_data_streams);
1168
1169         /* Now onto reading the names.  There are two of them: the (long) file
1170          * name, and the short name.  */
1171
1172         short_name_nbytes = le16_to_cpu(disk_dentry->short_name_nbytes);
1173         file_name_nbytes = le16_to_cpu(disk_dentry->file_name_nbytes);
1174
1175         if (unlikely((short_name_nbytes & 1) | (file_name_nbytes & 1))) {
1176                 ERROR("Dentry name is not valid UTF-16 (odd number of bytes)!");
1177                 ret = WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1178                 goto err_free_dentry;
1179         }
1180
1181         /* We now know the length of the file name and short name.  Make sure
1182          * the length of the dentry is large enough to actually hold them.
1183          *
1184          * The calculated length here is unaligned to allow for the possibility
1185          * that the dentry's length is unaligned, although this would be
1186          * unexpected.  */
1187         calculated_size = dentry_min_len_with_names(file_name_nbytes,
1188                                                     short_name_nbytes);
1189
1190         if (unlikely(length < calculated_size)) {
1191                 ERROR("Unexpected end of directory entry! (Expected "
1192                       "at least %"PRIu64" bytes, got %"PRIu64" bytes.)",
1193                       calculated_size, length);
1194                 ret = WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1195                 goto err_free_dentry;
1196         }
1197
1198         /* Advance p to point past the base dentry, to the first name.  */
1199         p += sizeof(struct wim_dentry_on_disk);
1200
1201         /* Read the filename if present.  Note: if the filename is empty, there
1202          * is no null terminator following it.  */
1203         if (file_name_nbytes) {
1204                 dentry->file_name = utf16le_dupz((const utf16lechar *)p,
1205                                                  file_name_nbytes);
1206                 if (dentry->file_name == NULL) {
1207                         ret = WIMLIB_ERR_NOMEM;
1208                         goto err_free_dentry;
1209                 }
1210                 dentry->file_name_nbytes = file_name_nbytes;
1211                 p += (u32)file_name_nbytes + 2;
1212         }
1213
1214         /* Read the short filename if present.  Note: if there is no short
1215          * filename, there is no null terminator following it. */
1216         if (short_name_nbytes) {
1217                 dentry->short_name = utf16le_dupz((const utf16lechar *)p,
1218                                                   short_name_nbytes);
1219                 if (dentry->short_name == NULL) {
1220                         ret = WIMLIB_ERR_NOMEM;
1221                         goto err_free_dentry;
1222                 }
1223                 dentry->short_name_nbytes = short_name_nbytes;
1224                 p += (u32)short_name_nbytes + 2;
1225         }
1226
1227         /* Read extra data at end of dentry (but before alternate data stream
1228          * entries).  This may contain tagged items.  */
1229         ret = read_extra_data(p, &buf[offset + length], inode);
1230         if (ret)
1231                 goto err_free_dentry;
1232
1233         /* Align the dentry length.  */
1234         length = (length + 7) & ~7;
1235
1236         offset += length;
1237
1238         /* Read the alternate data streams, if present.  inode->i_num_ads tells
1239          * us how many they are, and they will directly follow the dentry in the
1240          * metadata resource buffer.
1241          *
1242          * Note that each alternate data stream entry begins on an 8-byte
1243          * aligned boundary, and the alternate data stream entries seem to NOT
1244          * be included in the dentry->length field for some reason.  */
1245         if (unlikely(inode->i_num_ads != 0)) {
1246                 size_t orig_bytes_remaining;
1247                 size_t bytes_remaining;
1248
1249                 if (offset > buf_len) {
1250                         ret = WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1251                         goto err_free_dentry;
1252                 }
1253                 bytes_remaining = buf_len - offset;
1254                 orig_bytes_remaining = bytes_remaining;
1255                 ret = read_ads_entries(&buf[offset], inode, &bytes_remaining);
1256                 if (ret)
1257                         goto err_free_dentry;
1258                 offset += (orig_bytes_remaining - bytes_remaining);
1259         }
1260
1261         *offset_p = offset;  /* Sets offset of next dentry in directory  */
1262         *dentry_ret = dentry;
1263         return 0;
1264
1265 err_free_dentry:
1266         free_dentry(dentry);
1267         return ret;
1268 }
1269
1270 static bool
1271 dentry_is_dot_or_dotdot(const struct wim_dentry *dentry)
1272 {
1273         if (dentry->file_name_nbytes <= 4) {
1274                 if (dentry->file_name_nbytes == 4) {
1275                         if (dentry->file_name[0] == cpu_to_le16('.') &&
1276                             dentry->file_name[1] == cpu_to_le16('.'))
1277                                 return true;
1278                 } else if (dentry->file_name_nbytes == 2) {
1279                         if (dentry->file_name[0] == cpu_to_le16('.'))
1280                                 return true;
1281                 }
1282         }
1283         return false;
1284 }
1285
1286 static int
1287 read_dentry_tree_recursive(const u8 * restrict buf, size_t buf_len,
1288                            struct wim_dentry * restrict dir)
1289 {
1290         u64 cur_offset = dir->subdir_offset;
1291
1292         /* Check for cyclic directory structure, which would cause infinite
1293          * recursion if not handled.  */
1294         for (struct wim_dentry *d = dir->d_parent;
1295              !dentry_is_root(d); d = d->d_parent)
1296         {
1297                 if (unlikely(d->subdir_offset == cur_offset)) {
1298                         ERROR("Cyclic directory structure detected: children "
1299                               "of \"%"TS"\" coincide with children of \"%"TS"\"",
1300                               dentry_full_path(dir), dentry_full_path(d));
1301                         return WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1302                 }
1303         }
1304
1305         for (;;) {
1306                 struct wim_dentry *child;
1307                 struct wim_dentry *duplicate;
1308                 int ret;
1309
1310                 /* Read next child of @dir.  */
1311                 ret = read_dentry(buf, buf_len, &cur_offset, &child);
1312                 if (ret)
1313                         return ret;
1314
1315                 /* Check for end of directory.  */
1316                 if (child == NULL)
1317                         return 0;
1318
1319                 /* All dentries except the root should be named.  */
1320                 if (unlikely(!dentry_has_long_name(child))) {
1321                         WARNING("Ignoring unnamed dentry in "
1322                                 "directory \"%"TS"\"", dentry_full_path(dir));
1323                         free_dentry(child);
1324                         continue;
1325                 }
1326
1327                 /* Don't allow files named "." or "..".  */
1328                 if (unlikely(dentry_is_dot_or_dotdot(child))) {
1329                         WARNING("Ignoring file named \".\" or \"..\"; "
1330                                 "potentially malicious archive!!!");
1331                         free_dentry(child);
1332                         continue;
1333                 }
1334
1335                 /* Link the child into the directory.  */
1336                 duplicate = dentry_add_child(dir, child);
1337                 if (unlikely(duplicate)) {
1338                         /* We already found a dentry with this same
1339                          * case-sensitive long name.  Only keep the first one.
1340                          */
1341                         WARNING("Ignoring duplicate file \"%"TS"\" "
1342                                 "(the WIM image already contains a file "
1343                                 "at that path with the exact same name)",
1344                                 dentry_full_path(duplicate));
1345                         free_dentry(child);
1346                         continue;
1347                 }
1348
1349                 /* If this child is a directory that itself has children, call
1350                  * this procedure recursively.  */
1351                 if (child->subdir_offset != 0) {
1352                         if (likely(dentry_is_directory(child))) {
1353                                 ret = read_dentry_tree_recursive(buf,
1354                                                                  buf_len,
1355                                                                  child);
1356                                 if (ret)
1357                                         return ret;
1358                         } else {
1359                                 WARNING("Ignoring children of "
1360                                         "non-directory file \"%"TS"\"",
1361                                         dentry_full_path(child));
1362                         }
1363                 }
1364         }
1365 }
1366
1367 /*
1368  * Read a tree of dentries (directory entries) from a WIM metadata resource.
1369  *
1370  * @buf:
1371  *      Buffer containing an uncompressed WIM metadata resource.
1372  *
1373  * @buf_len:
1374  *      Length of the uncompressed metadata resource, in bytes.
1375  *
1376  * @root_offset
1377  *      Offset in the metadata resource of the root of the dentry tree.
1378  *
1379  * @root_ret:
1380  *      On success, either NULL or a pointer to the root dentry is written to
1381  *      this location.  The former case only occurs in the unexpected case that
1382  *      the tree began with an end-of-directory entry.
1383  *
1384  * Return values:
1385  *      WIMLIB_ERR_SUCCESS (0)
1386  *      WIMLIB_ERR_INVALID_METADATA_RESOURCE
1387  *      WIMLIB_ERR_NOMEM
1388  */
1389 int
1390 read_dentry_tree(const u8 *buf, size_t buf_len,
1391                  u64 root_offset, struct wim_dentry **root_ret)
1392 {
1393         int ret;
1394         struct wim_dentry *root;
1395
1396         DEBUG("Reading dentry tree (root_offset=%"PRIu64")", root_offset);
1397
1398         ret = read_dentry(buf, buf_len, &root_offset, &root);
1399         if (ret)
1400                 return ret;
1401
1402         if (likely(root != NULL)) {
1403                 if (unlikely(dentry_has_long_name(root) ||
1404                              dentry_has_short_name(root)))
1405                 {
1406                         WARNING("The root directory has a nonempty name; "
1407                                 "removing it.");
1408                         dentry_set_name(root, NULL);
1409                 }
1410
1411                 if (unlikely(!dentry_is_directory(root))) {
1412                         ERROR("The root of the WIM image is not a directory!");
1413                         ret = WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1414                         goto err_free_dentry_tree;
1415                 }
1416
1417                 if (likely(root->subdir_offset != 0)) {
1418                         ret = read_dentry_tree_recursive(buf, buf_len, root);
1419                         if (ret)
1420                                 goto err_free_dentry_tree;
1421                 }
1422         } else {
1423                 WARNING("The metadata resource has no directory entries; "
1424                         "treating as an empty image.");
1425         }
1426         *root_ret = root;
1427         return 0;
1428
1429 err_free_dentry_tree:
1430         free_dentry_tree(root, NULL);
1431         return ret;
1432 }
1433
1434 /*
1435  * Writes a WIM alternate data stream (ADS) entry to an output buffer.
1436  *
1437  * @ads_entry:  The ADS entry structure.
1438  * @hash:       The hash field to use (instead of the one in the ADS entry).
1439  * @p:          The memory location to write the data to.
1440  *
1441  * Returns a pointer to the byte after the last byte written.
1442  */
1443 static u8 *
1444 write_ads_entry(const struct wim_ads_entry *ads_entry,
1445                 const u8 *hash, u8 * restrict p)
1446 {
1447         struct wim_ads_entry_on_disk *disk_ads_entry =
1448                         (struct wim_ads_entry_on_disk*)p;
1449         u8 *orig_p = p;
1450
1451         disk_ads_entry->reserved = cpu_to_le64(ads_entry->reserved);
1452         copy_hash(disk_ads_entry->hash, hash);
1453         disk_ads_entry->stream_name_nbytes = cpu_to_le16(ads_entry->stream_name_nbytes);
1454         p += sizeof(struct wim_ads_entry_on_disk);
1455         if (ads_entry->stream_name_nbytes) {
1456                 p = mempcpy(p, ads_entry->stream_name,
1457                             (u32)ads_entry->stream_name_nbytes + 2);
1458         }
1459         /* Align to 8-byte boundary */
1460         while ((uintptr_t)p & 7)
1461                 *p++ = 0;
1462         disk_ads_entry->length = cpu_to_le64(p - orig_p);
1463         return p;
1464 }
1465
1466 /*
1467  * Writes a WIM dentry to an output buffer.
1468  *
1469  * @dentry:  The dentry structure.
1470  * @p:       The memory location to write the data to.
1471  *
1472  * Returns the pointer to the byte after the last byte we wrote as part of the
1473  * dentry, including any alternate data stream entries.
1474  */
1475 static u8 *
1476 write_dentry(const struct wim_dentry * restrict dentry, u8 * restrict p)
1477 {
1478         const struct wim_inode *inode;
1479         struct wim_dentry_on_disk *disk_dentry;
1480         const u8 *orig_p;
1481         const u8 *hash;
1482         bool use_dummy_stream;
1483         u16 num_ads;
1484
1485         wimlib_assert(((uintptr_t)p & 7) == 0); /* 8 byte aligned */
1486         orig_p = p;
1487
1488         inode = dentry->d_inode;
1489         use_dummy_stream = inode_needs_dummy_stream(inode);
1490         disk_dentry = (struct wim_dentry_on_disk*)p;
1491
1492         disk_dentry->attributes = cpu_to_le32(inode->i_attributes);
1493         disk_dentry->security_id = cpu_to_le32(inode->i_security_id);
1494         disk_dentry->subdir_offset = cpu_to_le64(dentry->subdir_offset);
1495
1496         /* UNIX data uses the two 8-byte reserved fields.  So if no UNIX data
1497          * exists, they get set to 0, just as we would do anyway.  */
1498         disk_dentry->unused_1 = cpu_to_le64(0);
1499         disk_dentry->unused_2 = cpu_to_le64(0);
1500
1501         disk_dentry->creation_time = cpu_to_le64(inode->i_creation_time);
1502         disk_dentry->last_access_time = cpu_to_le64(inode->i_last_access_time);
1503         disk_dentry->last_write_time = cpu_to_le64(inode->i_last_write_time);
1504         if (use_dummy_stream)
1505                 hash = zero_hash;
1506         else
1507                 hash = inode_stream_hash(inode, 0);
1508         copy_hash(disk_dentry->unnamed_stream_hash, hash);
1509         if (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT) {
1510                 disk_dentry->reparse.rp_unknown_1 = cpu_to_le32(inode->i_rp_unknown_1);
1511                 disk_dentry->reparse.reparse_tag = cpu_to_le32(inode->i_reparse_tag);
1512                 disk_dentry->reparse.rp_unknown_2 = cpu_to_le16(inode->i_rp_unknown_2);
1513                 disk_dentry->reparse.not_rpfixed = cpu_to_le16(inode->i_not_rpfixed);
1514         } else {
1515                 disk_dentry->nonreparse.rp_unknown_1 = cpu_to_le32(inode->i_rp_unknown_1);
1516                 disk_dentry->nonreparse.hard_link_group_id =
1517                         cpu_to_le64((inode->i_nlink == 1) ? 0 : inode->i_ino);
1518         }
1519         num_ads = inode->i_num_ads;
1520         if (use_dummy_stream)
1521                 num_ads++;
1522         disk_dentry->num_alternate_data_streams = cpu_to_le16(num_ads);
1523         disk_dentry->short_name_nbytes = cpu_to_le16(dentry->short_name_nbytes);
1524         disk_dentry->file_name_nbytes = cpu_to_le16(dentry->file_name_nbytes);
1525         p += sizeof(struct wim_dentry_on_disk);
1526
1527         wimlib_assert(dentry_is_root(dentry) != dentry_has_long_name(dentry));
1528
1529         if (dentry_has_long_name(dentry))
1530                 p = mempcpy(p, dentry->file_name, (u32)dentry->file_name_nbytes + 2);
1531
1532         if (dentry_has_short_name(dentry))
1533                 p = mempcpy(p, dentry->short_name, (u32)dentry->short_name_nbytes + 2);
1534
1535         /* Align to 8-byte boundary */
1536         while ((uintptr_t)p & 7)
1537                 *p++ = 0;
1538
1539         if (inode->i_extra_size) {
1540                 /* Extra tagged items --- not usually present.  */
1541                 p = mempcpy(p, inode->i_extra, inode->i_extra_size);
1542                 while ((uintptr_t)p & 7)
1543                         *p++ = 0;
1544         }
1545
1546         disk_dentry->length = cpu_to_le64(p - orig_p);
1547
1548         if (use_dummy_stream) {
1549                 hash = inode_unnamed_stream_hash(inode);
1550                 p = write_ads_entry(&(struct wim_ads_entry){}, hash, p);
1551         }
1552
1553         /* Write the alternate data streams entries, if any. */
1554         for (u16 i = 0; i < inode->i_num_ads; i++) {
1555                 hash = inode_stream_hash(inode, i + 1);
1556                 p = write_ads_entry(&inode->i_ads_entries[i], hash, p);
1557         }
1558
1559         return p;
1560 }
1561
1562 static int
1563 write_dir_dentries(struct wim_dentry *dir, void *_pp)
1564 {
1565         if (dir->subdir_offset != 0) {
1566                 u8 **pp = _pp;
1567                 u8 *p = *pp;
1568                 struct wim_dentry *child;
1569
1570                 /* write child dentries */
1571                 for_dentry_child(child, dir)
1572                         p = write_dentry(child, p);
1573
1574                 /* write end of directory entry */
1575                 *(u64*)p = 0;
1576                 p += 8;
1577                 *pp = p;
1578         }
1579         return 0;
1580 }
1581
1582 /* Writes a directory tree to the metadata resource.
1583  *
1584  * @root:       Root of the dentry tree.
1585  * @p:          Pointer to a buffer with enough space for the dentry tree.
1586  *
1587  * Returns pointer to the byte after the last byte we wrote.
1588  */
1589 u8 *
1590 write_dentry_tree(struct wim_dentry *root, u8 *p)
1591 {
1592         DEBUG("Writing dentry tree.");
1593         wimlib_assert(dentry_is_root(root));
1594
1595         /* write root dentry and end-of-directory entry following it */
1596         p = write_dentry(root, p);
1597         *(u64*)p = 0;
1598         p += 8;
1599
1600         /* write the rest of the dentry tree */
1601         for_dentry_in_tree(root, write_dir_dentries, &p);
1602
1603         return p;
1604 }