]> wimlib.net Git - wimlib/blob - src/dentry.c
Move wim_pathname_to_stream() to mount_image.c
[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 += file_name_nbytes + 2;
201         if (short_name_nbytes)
202                 length += 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 += 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  * any alternate data stream entries.  Also includes all alignment bytes between
301  * 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
434         if (dentry_is_directory(dentry)) {
435                 u64 *subdir_offset_p = _subdir_offset_p;
436                 struct wim_dentry *child;
437
438                 /* Set offset of directory's child dentries  */
439                 dentry->subdir_offset = *subdir_offset_p;
440
441                 /* Account for child dentries  */
442                 for_dentry_child(child, dentry)
443                         *subdir_offset_p += dentry_out_total_length(child);
444
445                 /* Account for end-of-directory entry  */
446                 *subdir_offset_p += 8;
447         } else {
448                 /* Not a directory; set subdir_offset to 0  */
449                 dentry->subdir_offset = 0;
450         }
451         return 0;
452 }
453
454 /*
455  * Calculates the subdir offsets for a directory tree.
456  */
457 void
458 calculate_subdir_offsets(struct wim_dentry *root, u64 *subdir_offset_p)
459 {
460         for_dentry_in_tree(root, dentry_calculate_subdir_offset, subdir_offset_p);
461 }
462
463 /* Compare the UTF-16LE long filenames of two dentries case insensitively.  */
464 static int
465 dentry_compare_names_case_insensitive(const struct wim_dentry *d1,
466                                       const struct wim_dentry *d2)
467 {
468         return cmp_utf16le_strings(d1->file_name,
469                                    d1->file_name_nbytes / 2,
470                                    d2->file_name,
471                                    d2->file_name_nbytes / 2,
472                                    true);
473 }
474
475 /* Compare the UTF-16LE long filenames of two dentries case sensitively.  */
476 static int
477 dentry_compare_names_case_sensitive(const struct wim_dentry *d1,
478                                     const struct wim_dentry *d2)
479 {
480         return cmp_utf16le_strings(d1->file_name,
481                                    d1->file_name_nbytes / 2,
482                                    d2->file_name,
483                                    d2->file_name_nbytes / 2,
484                                    false);
485 }
486
487 static int
488 _avl_dentry_compare_names_ci(const struct avl_tree_node *n1,
489                              const struct avl_tree_node *n2)
490 {
491         const struct wim_dentry *d1, *d2;
492
493         d1 = avl_tree_entry(n1, struct wim_dentry, d_index_node_ci);
494         d2 = avl_tree_entry(n2, struct wim_dentry, d_index_node_ci);
495         return dentry_compare_names_case_insensitive(d1, d2);
496 }
497
498 static int
499 _avl_dentry_compare_names(const struct avl_tree_node *n1,
500                           const struct avl_tree_node *n2)
501 {
502         const struct wim_dentry *d1, *d2;
503
504         d1 = avl_tree_entry(n1, struct wim_dentry, d_index_node);
505         d2 = avl_tree_entry(n2, struct wim_dentry, d_index_node);
506         return dentry_compare_names_case_sensitive(d1, d2);
507 }
508
509 /* Default case sensitivity behavior for searches with
510  * WIMLIB_CASE_PLATFORM_DEFAULT specified.  This can be modified by
511  * wimlib_global_init().  */
512 bool default_ignore_case =
513 #ifdef __WIN32__
514         true
515 #else
516         false
517 #endif
518 ;
519
520 /* Case-sensitive dentry lookup.  Only @file_name and @file_name_nbytes of
521  * @dummy must be valid.  */
522 static struct wim_dentry *
523 dir_lookup(const struct wim_inode *dir, const struct wim_dentry *dummy)
524 {
525         struct avl_tree_node *node;
526
527         node = avl_tree_lookup_node(dir->i_children,
528                                     &dummy->d_index_node,
529                                     _avl_dentry_compare_names);
530         if (!node)
531                 return NULL;
532         return avl_tree_entry(node, struct wim_dentry, d_index_node);
533 }
534
535 /* Case-insensitive dentry lookup.  Only @file_name and @file_name_nbytes of
536  * @dummy must be valid.  */
537 static struct wim_dentry *
538 dir_lookup_ci(const struct wim_inode *dir, const struct wim_dentry *dummy)
539 {
540         struct avl_tree_node *node;
541
542         node = avl_tree_lookup_node(dir->i_children_ci,
543                                     &dummy->d_index_node_ci,
544                                     _avl_dentry_compare_names_ci);
545         if (!node)
546                 return NULL;
547         return avl_tree_entry(node, struct wim_dentry, d_index_node_ci);
548 }
549
550 /* Given a UTF-16LE filename and a directory, look up the dentry for the file.
551  * Return it if found, otherwise NULL.  This has configurable case sensitivity,
552  * and @name need not be null-terminated.  */
553 struct wim_dentry *
554 get_dentry_child_with_utf16le_name(const struct wim_dentry *dentry,
555                                    const utf16lechar *name,
556                                    size_t name_nbytes,
557                                    CASE_SENSITIVITY_TYPE case_ctype)
558 {
559         const struct wim_inode *dir = dentry->d_inode;
560         bool ignore_case = will_ignore_case(case_ctype);
561         struct wim_dentry dummy;
562         struct wim_dentry *child;
563
564         dummy.file_name = (utf16lechar*)name;
565         dummy.file_name_nbytes = name_nbytes;
566
567         if (!ignore_case)
568                 /* Case-sensitive lookup.  */
569                 return dir_lookup(dir, &dummy);
570
571         /* Case-insensitive lookup.  */
572
573         child = dir_lookup_ci(dir, &dummy);
574         if (!child)
575                 return NULL;
576
577         if (likely(list_empty(&child->d_ci_conflict_list)))
578                 /* Only one dentry has this case-insensitive name; return it */
579                 return child;
580
581         /* Multiple dentries have the same case-insensitive name.  Choose the
582          * dentry with the same case-sensitive name, if one exists; otherwise
583          * print a warning and choose one of the possible dentries arbitrarily.
584          */
585         struct wim_dentry *alt = child;
586         size_t num_alts = 0;
587
588         do {
589                 num_alts++;
590                 if (!dentry_compare_names_case_sensitive(&dummy, alt))
591                         return alt;
592                 alt = list_entry(alt->d_ci_conflict_list.next,
593                                  struct wim_dentry, d_ci_conflict_list);
594         } while (alt != child);
595
596         WARNING("Result of case-insensitive lookup is ambiguous\n"
597                 "          (returning \"%"TS"\" of %zu "
598                 "possible files, including \"%"TS"\")",
599                 dentry_full_path(child),
600                 num_alts,
601                 dentry_full_path(list_entry(child->d_ci_conflict_list.next,
602                                             struct wim_dentry,
603                                             d_ci_conflict_list)));
604         return child;
605 }
606
607 /* Returns the child of @dentry that has the file name @name.  Returns NULL if
608  * no child has the name. */
609 struct wim_dentry *
610 get_dentry_child_with_name(const struct wim_dentry *dentry, const tchar *name,
611                            CASE_SENSITIVITY_TYPE case_type)
612 {
613         int ret;
614         const utf16lechar *name_utf16le;
615         size_t name_utf16le_nbytes;
616         struct wim_dentry *child;
617
618         ret = tstr_get_utf16le_and_len(name, &name_utf16le,
619                                        &name_utf16le_nbytes);
620         if (ret)
621                 return NULL;
622
623         child = get_dentry_child_with_utf16le_name(dentry,
624                                                    name_utf16le,
625                                                    name_utf16le_nbytes,
626                                                    case_type);
627         tstr_put_utf16le(name_utf16le);
628         return child;
629 }
630
631 static struct wim_dentry *
632 get_dentry_utf16le(WIMStruct *wim, const utf16lechar *path,
633                    CASE_SENSITIVITY_TYPE case_type)
634 {
635         struct wim_dentry *cur_dentry;
636         const utf16lechar *name_start, *name_end;
637
638         /* Start with the root directory of the image.  Note: this will be NULL
639          * if an image has been added directly with wimlib_add_empty_image() but
640          * no files have been added yet; in that case we fail with ENOENT.  */
641         cur_dentry = wim_get_current_root_dentry(wim);
642
643         name_start = path;
644         for (;;) {
645                 if (cur_dentry == NULL) {
646                         errno = ENOENT;
647                         return NULL;
648                 }
649
650                 if (*name_start && !dentry_is_directory(cur_dentry)) {
651                         errno = ENOTDIR;
652                         return NULL;
653                 }
654
655                 while (*name_start == cpu_to_le16(WIM_PATH_SEPARATOR))
656                         name_start++;
657
658                 if (!*name_start)
659                         return cur_dentry;
660
661                 name_end = name_start;
662                 do {
663                         ++name_end;
664                 } while (*name_end != cpu_to_le16(WIM_PATH_SEPARATOR) && *name_end);
665
666                 cur_dentry = get_dentry_child_with_utf16le_name(cur_dentry,
667                                                                 name_start,
668                                                                 (u8*)name_end - (u8*)name_start,
669                                                                 case_type);
670                 name_start = name_end;
671         }
672 }
673
674 /*
675  * WIM path lookup: translate a path in the currently selected WIM image to the
676  * corresponding dentry, if it exists.
677  *
678  * @wim
679  *      The WIMStruct for the WIM.  The search takes place in the currently
680  *      selected image.
681  *
682  * @path
683  *      The path to look up, given relative to the root of the WIM image.
684  *      Characters with value WIM_PATH_SEPARATOR are taken to be path
685  *      separators.  Leading path separators are ignored, whereas one or more
686  *      trailing path separators cause the path to only match a directory.
687  *
688  * @case_type
689  *      The case-sensitivity behavior of this function, as one of the following
690  *      constants:
691  *
692  *    - WIMLIB_CASE_SENSITIVE:  Perform the search case sensitively.  This means
693  *      that names must match exactly.
694  *
695  *    - WIMLIB_CASE_INSENSITIVE:  Perform the search case insensitively.  This
696  *      means that names are considered to match if they are equal when
697  *      transformed to upper case.  If a path component matches multiple names
698  *      case-insensitively, the name that matches the path component
699  *      case-sensitively is chosen, if existent; otherwise one
700  *      case-insensitively matching name is chosen arbitrarily.
701  *
702  *    - WIMLIB_CASE_PLATFORM_DEFAULT:  Perform either case-sensitive or
703  *      case-insensitive search, depending on the value of the global variable
704  *      default_ignore_case.
705  *
706  *    In any case, no Unicode normalization is done before comparing strings.
707  *
708  * Returns a pointer to the dentry that is the result of the lookup, or NULL if
709  * no such dentry exists.  If NULL is returned, errno is set to one of the
710  * following values:
711  *
712  *      ENOTDIR if one of the path components used as a directory existed but
713  *      was not, in fact, a directory.
714  *
715  *      ENOENT otherwise.
716  *
717  * Additional notes:
718  *
719  *    - This function does not consider a reparse point to be a directory, even
720  *      if it has FILE_ATTRIBUTE_DIRECTORY set.
721  *
722  *    - This function does not dereference symbolic links or junction points
723  *      when performing the search.
724  *
725  *    - Since this function ignores leading slashes, the empty path is valid and
726  *      names the root directory of the WIM image.
727  *
728  *    - An image added with wimlib_add_empty_image() does not have a root
729  *      directory yet, and this function will fail with ENOENT for any path on
730  *      such an image.
731  */
732 struct wim_dentry *
733 get_dentry(WIMStruct *wim, const tchar *path, CASE_SENSITIVITY_TYPE case_type)
734 {
735         int ret;
736         const utf16lechar *path_utf16le;
737         struct wim_dentry *dentry;
738
739         ret = tstr_get_utf16le(path, &path_utf16le);
740         if (ret)
741                 return NULL;
742         dentry = get_dentry_utf16le(wim, path_utf16le, case_type);
743         tstr_put_utf16le(path_utf16le);
744         return dentry;
745 }
746
747 /* Takes in a path of length @len in @buf, and transforms it into a string for
748  * the path of its parent directory. */
749 static void
750 to_parent_name(tchar *buf, size_t len)
751 {
752         ssize_t i = (ssize_t)len - 1;
753         while (i >= 0 && buf[i] == WIM_PATH_SEPARATOR)
754                 i--;
755         while (i >= 0 && buf[i] != WIM_PATH_SEPARATOR)
756                 i--;
757         while (i >= 0 && buf[i] == WIM_PATH_SEPARATOR)
758                 i--;
759         buf[i + 1] = T('\0');
760 }
761
762 /* Similar to get_dentry(), but returns the dentry named by @path with the last
763  * component stripped off.
764  *
765  * Note: The returned dentry is NOT guaranteed to be a directory.  */
766 struct wim_dentry *
767 get_parent_dentry(WIMStruct *wim, const tchar *path,
768                   CASE_SENSITIVITY_TYPE case_type)
769 {
770         size_t path_len = tstrlen(path);
771         tchar buf[path_len + 1];
772
773         tmemcpy(buf, path, path_len + 1);
774         to_parent_name(buf, path_len);
775         return get_dentry(wim, buf, case_type);
776 }
777
778 /* Creates an unlinked directory entry. */
779 int
780 new_dentry(const tchar *name, struct wim_dentry **dentry_ret)
781 {
782         struct wim_dentry *dentry;
783         int ret;
784
785         dentry = CALLOC(1, sizeof(struct wim_dentry));
786         if (!dentry)
787                 return WIMLIB_ERR_NOMEM;
788
789         if (*name) {
790                 ret = dentry_set_name(dentry, name);
791                 if (ret) {
792                         FREE(dentry);
793                         ERROR("Failed to set name on new dentry with name \"%"TS"\"",
794                               name);
795                         return ret;
796                 }
797         }
798         dentry->d_parent = dentry;
799         *dentry_ret = dentry;
800         return 0;
801 }
802
803 static int
804 _new_dentry_with_inode(const tchar *name, struct wim_dentry **dentry_ret,
805                         bool timeless)
806 {
807         struct wim_dentry *dentry;
808         int ret;
809
810         ret = new_dentry(name, &dentry);
811         if (ret)
812                 return ret;
813
814         if (timeless)
815                 dentry->d_inode = new_timeless_inode();
816         else
817                 dentry->d_inode = new_inode();
818         if (dentry->d_inode == NULL) {
819                 free_dentry(dentry);
820                 return WIMLIB_ERR_NOMEM;
821         }
822
823         inode_add_dentry(dentry, dentry->d_inode);
824         *dentry_ret = dentry;
825         return 0;
826 }
827
828 int
829 new_dentry_with_timeless_inode(const tchar *name, struct wim_dentry **dentry_ret)
830 {
831         return _new_dentry_with_inode(name, dentry_ret, true);
832 }
833
834 int
835 new_dentry_with_inode(const tchar *name, struct wim_dentry **dentry_ret)
836 {
837         return _new_dentry_with_inode(name, dentry_ret, false);
838 }
839
840 int
841 new_filler_directory(struct wim_dentry **dentry_ret)
842 {
843         int ret;
844         struct wim_dentry *dentry;
845
846         ret = new_dentry_with_inode(T(""), &dentry);
847         if (ret)
848                 return ret;
849         /* Leave the inode number as 0; this is allowed for non
850          * hard-linked files. */
851         dentry->d_inode->i_resolved = 1;
852         dentry->d_inode->i_attributes = FILE_ATTRIBUTE_DIRECTORY;
853         *dentry_ret = dentry;
854         return 0;
855 }
856
857 static int
858 dentry_clear_inode_visited(struct wim_dentry *dentry, void *_ignore)
859 {
860         dentry->d_inode->i_visited = 0;
861         return 0;
862 }
863
864 void
865 dentry_tree_clear_inode_visited(struct wim_dentry *root)
866 {
867         for_dentry_in_tree(root, dentry_clear_inode_visited, NULL);
868 }
869
870 /*
871  * Free a WIM dentry.
872  *
873  * In addition to freeing the dentry itself, this decrements the link count of
874  * the corresponding inode (if any).  If the inode's link count reaches 0, the
875  * inode is freed as well.
876  */
877 void
878 free_dentry(struct wim_dentry *dentry)
879 {
880         if (dentry) {
881                 FREE(dentry->file_name);
882                 FREE(dentry->short_name);
883                 FREE(dentry->_full_path);
884                 if (dentry->d_inode)
885                         put_inode(dentry->d_inode);
886                 FREE(dentry);
887         }
888 }
889
890 static int
891 do_free_dentry(struct wim_dentry *dentry, void *_ignore)
892 {
893         free_dentry(dentry);
894         return 0;
895 }
896
897 static int
898 do_free_dentry_and_unref_streams(struct wim_dentry *dentry, void *lookup_table)
899 {
900         inode_unref_streams(dentry->d_inode, lookup_table);
901         free_dentry(dentry);
902         return 0;
903 }
904
905 /*
906  * Recursively frees all directory entries in the specified tree.
907  *
908  * @root:
909  *      The root of the tree.
910  *
911  * @lookup_table:
912  *      The lookup table for dentries.  If non-NULL, the reference counts in the
913  *      lookup table for the lookup table entries corresponding to the dentries
914  *      will be decremented.
915  *
916  * This also puts references to the corresponding inodes.
917  *
918  * This does *not* unlink @root from its parent directory (if it has one).
919  */
920 void
921 free_dentry_tree(struct wim_dentry *root, struct wim_lookup_table *lookup_table)
922 {
923         int (*f)(struct wim_dentry *, void *);
924
925         if (lookup_table)
926                 f = do_free_dentry_and_unref_streams;
927         else
928                 f = do_free_dentry;
929
930         for_dentry_in_tree_depth(root, f, lookup_table);
931 }
932
933 /* Insert the @child dentry into the case sensitive index of the @dir directory.
934  * Return NULL if successfully inserted, otherwise a pointer to the
935  * already-inserted duplicate.  */
936 static struct wim_dentry *
937 dir_index_child(struct wim_inode *dir, struct wim_dentry *child)
938 {
939         struct avl_tree_node *duplicate;
940
941         duplicate = avl_tree_insert(&dir->i_children,
942                                     &child->d_index_node,
943                                     _avl_dentry_compare_names);
944         if (!duplicate)
945                 return NULL;
946         return avl_tree_entry(duplicate, struct wim_dentry, d_index_node);
947 }
948
949 /* Insert the @child dentry into the case insensitive index of the @dir
950  * directory.  Return NULL if successfully inserted, otherwise a pointer to the
951  * already-inserted duplicate.  */
952 static struct wim_dentry *
953 dir_index_child_ci(struct wim_inode *dir, struct wim_dentry *child)
954 {
955         struct avl_tree_node *duplicate;
956
957         duplicate = avl_tree_insert(&dir->i_children_ci,
958                                     &child->d_index_node_ci,
959                                     _avl_dentry_compare_names_ci);
960         if (!duplicate)
961                 return NULL;
962         return avl_tree_entry(duplicate, struct wim_dentry, d_index_node_ci);
963 }
964
965 /* Removes the specified dentry from its directory's case-sensitive index.  */
966 static void
967 dir_unindex_child(struct wim_inode *dir, struct wim_dentry *child)
968 {
969         avl_tree_remove(&dir->i_children, &child->d_index_node);
970 }
971
972 /* Removes the specified dentry from its directory's case-insensitive index.  */
973 static void
974 dir_unindex_child_ci(struct wim_inode *dir, struct wim_dentry *child)
975 {
976         avl_tree_remove(&dir->i_children_ci, &child->d_index_node_ci);
977 }
978
979 /* Returns true iff the specified dentry is in its parent directory's
980  * case-insensitive index.  */
981 static bool
982 dentry_in_ci_index(const struct wim_dentry *dentry)
983 {
984         return !avl_tree_node_is_unlinked(&dentry->d_index_node_ci);
985 }
986
987 /*
988  * Links a dentry into the directory tree.
989  *
990  * @parent: The dentry that will be the parent of @child.
991  * @child: The dentry to link.
992  *
993  * Returns NULL if successful.  If @parent already contains a dentry with the
994  * same case-sensitive name as @child, returns a pointer to this duplicate
995  * dentry.
996  */
997 struct wim_dentry *
998 dentry_add_child(struct wim_dentry *parent, struct wim_dentry *child)
999 {
1000         struct wim_dentry *duplicate;
1001         struct wim_inode *dir;
1002
1003         wimlib_assert(parent != child);
1004
1005         dir = parent->d_inode;
1006
1007         wimlib_assert(inode_is_directory(dir));
1008
1009         duplicate = dir_index_child(dir, child);
1010         if (duplicate)
1011                 return duplicate;
1012
1013         duplicate = dir_index_child_ci(dir, child);
1014         if (duplicate) {
1015                 list_add(&child->d_ci_conflict_list, &duplicate->d_ci_conflict_list);
1016                 avl_tree_node_set_unlinked(&child->d_index_node_ci);
1017         } else {
1018                 INIT_LIST_HEAD(&child->d_ci_conflict_list);
1019         }
1020         child->d_parent = parent;
1021         return NULL;
1022 }
1023
1024 /* Unlink a WIM dentry from the directory entry tree.  */
1025 void
1026 unlink_dentry(struct wim_dentry *dentry)
1027 {
1028         struct wim_inode *dir;
1029
1030         if (dentry_is_root(dentry))
1031                 return;
1032
1033         dir = dentry->d_parent->d_inode;
1034
1035         dir_unindex_child(dir, dentry);
1036
1037         if (dentry_in_ci_index(dentry)) {
1038
1039                 dir_unindex_child_ci(dir, dentry);
1040
1041                 if (!list_empty(&dentry->d_ci_conflict_list)) {
1042                         /* Make a different case-insensitively-the-same dentry
1043                          * be the "representative" in the search index. */
1044                         struct list_head *next;
1045                         struct wim_dentry *other;
1046                         struct wim_dentry *existing;
1047
1048                         next = dentry->d_ci_conflict_list.next;
1049                         other = list_entry(next, struct wim_dentry, d_ci_conflict_list);
1050                         existing = dir_index_child_ci(dir, other);
1051                         wimlib_assert(existing == NULL);
1052                 }
1053         }
1054         list_del(&dentry->d_ci_conflict_list);
1055 }
1056
1057 static int
1058 read_extra_data(const u8 *p, const u8 *end, struct wim_inode *inode)
1059 {
1060         while (((uintptr_t)p & 7) && p < end)
1061                 p++;
1062
1063         if (unlikely(p < end)) {
1064                 inode->i_extra = memdup(p, end - p);
1065                 if (!inode->i_extra)
1066                         return WIMLIB_ERR_NOMEM;
1067                 inode->i_extra_size = end - p;
1068         }
1069         return 0;
1070 }
1071
1072 /* Reads a WIM directory entry, including all alternate data stream entries that
1073  * follow it, from the WIM image's metadata resource.  */
1074 static int
1075 read_dentry(const u8 * restrict buf, size_t buf_len,
1076             u64 *offset_p, struct wim_dentry **dentry_ret)
1077 {
1078         u64 offset = *offset_p;
1079         u64 length;
1080         const u8 *p;
1081         const struct wim_dentry_on_disk *disk_dentry;
1082         struct wim_dentry *dentry;
1083         struct wim_inode *inode;
1084         u16 short_name_nbytes;
1085         u16 file_name_nbytes;
1086         u64 calculated_size;
1087         int ret;
1088
1089         BUILD_BUG_ON(sizeof(struct wim_dentry_on_disk) != WIM_DENTRY_DISK_SIZE);
1090
1091         /* Before reading the whole dentry, we need to read just the length.
1092          * This is because a dentry of length 8 (that is, just the length field)
1093          * terminates the list of sibling directory entries. */
1094
1095         /* Check for buffer overrun.  */
1096         if (unlikely(offset + sizeof(u64) > buf_len ||
1097                      offset + sizeof(u64) < offset))
1098         {
1099                 ERROR("Directory entry starting at %"PRIu64" ends past the "
1100                       "end of the metadata resource (size %zu)",
1101                       offset, buf_len);
1102                 return WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1103         }
1104
1105         /* Get pointer to the dentry data.  */
1106         p = &buf[offset];
1107         disk_dentry = (const struct wim_dentry_on_disk*)p;
1108
1109         /* Get dentry length.  */
1110         length = le64_to_cpu(disk_dentry->length);
1111
1112         /* Check for end-of-directory.  */
1113         if (length <= 8) {
1114                 *dentry_ret = NULL;
1115                 return 0;
1116         }
1117
1118         /* Validate dentry length.  */
1119         if (unlikely(length < sizeof(struct wim_dentry_on_disk))) {
1120                 ERROR("Directory entry has invalid length of %"PRIu64" bytes",
1121                       length);
1122                 return WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1123         }
1124
1125         /* Check for buffer overrun.  */
1126         if (unlikely(offset + length > buf_len ||
1127                      offset + length < offset))
1128         {
1129                 ERROR("Directory entry at offset %"PRIu64" and with size "
1130                       "%"PRIu64" ends past the end of the metadata resource "
1131                       "(size %zu)", offset, length, buf_len);
1132                 return WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1133         }
1134
1135         /* Allocate new dentry structure, along with a preliminary inode.  */
1136         ret = new_dentry_with_timeless_inode(T(""), &dentry);
1137         if (ret)
1138                 return ret;
1139
1140         inode = dentry->d_inode;
1141
1142         /* Read more fields: some into the dentry, and some into the inode.  */
1143         inode->i_attributes = le32_to_cpu(disk_dentry->attributes);
1144         inode->i_security_id = le32_to_cpu(disk_dentry->security_id);
1145         dentry->subdir_offset = le64_to_cpu(disk_dentry->subdir_offset);
1146         inode->i_creation_time = le64_to_cpu(disk_dentry->creation_time);
1147         inode->i_last_access_time = le64_to_cpu(disk_dentry->last_access_time);
1148         inode->i_last_write_time = le64_to_cpu(disk_dentry->last_write_time);
1149         copy_hash(inode->i_hash, disk_dentry->unnamed_stream_hash);
1150
1151         /* I don't know what's going on here.  It seems like M$ screwed up the
1152          * reparse points, then put the fields in the same place and didn't
1153          * document it.  So we have some fields we read for reparse points, and
1154          * some fields in the same place for non-reparse-points.  */
1155         if (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT) {
1156                 inode->i_rp_unknown_1 = le32_to_cpu(disk_dentry->reparse.rp_unknown_1);
1157                 inode->i_reparse_tag = le32_to_cpu(disk_dentry->reparse.reparse_tag);
1158                 inode->i_rp_unknown_2 = le16_to_cpu(disk_dentry->reparse.rp_unknown_2);
1159                 inode->i_not_rpfixed = le16_to_cpu(disk_dentry->reparse.not_rpfixed);
1160                 /* Leave inode->i_ino at 0.  Note that this means the WIM file
1161                  * cannot archive hard-linked reparse points.  Such a thing
1162                  * doesn't really make sense anyway, although I believe it's
1163                  * theoretically possible to have them on NTFS.  */
1164         } else {
1165                 inode->i_rp_unknown_1 = le32_to_cpu(disk_dentry->nonreparse.rp_unknown_1);
1166                 inode->i_ino = le64_to_cpu(disk_dentry->nonreparse.hard_link_group_id);
1167         }
1168         inode->i_num_ads = le16_to_cpu(disk_dentry->num_alternate_data_streams);
1169
1170         /* Now onto reading the names.  There are two of them: the (long) file
1171          * name, and the short name.  */
1172
1173         short_name_nbytes = le16_to_cpu(disk_dentry->short_name_nbytes);
1174         file_name_nbytes = le16_to_cpu(disk_dentry->file_name_nbytes);
1175
1176         if (unlikely((short_name_nbytes & 1) | (file_name_nbytes & 1))) {
1177                 ERROR("Dentry name is not valid UTF-16 (odd number of bytes)!");
1178                 ret = WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1179                 goto err_free_dentry;
1180         }
1181
1182         /* We now know the length of the file name and short name.  Make sure
1183          * the length of the dentry is large enough to actually hold them.
1184          *
1185          * The calculated length here is unaligned to allow for the possibility
1186          * that the dentry's length is unaligned, although this would be
1187          * unexpected.  */
1188         calculated_size = dentry_min_len_with_names(file_name_nbytes,
1189                                                     short_name_nbytes);
1190
1191         if (unlikely(length < calculated_size)) {
1192                 ERROR("Unexpected end of directory entry! (Expected "
1193                       "at least %"PRIu64" bytes, got %"PRIu64" bytes.)",
1194                       calculated_size, length);
1195                 ret = WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1196                 goto err_free_dentry;
1197         }
1198
1199         /* Advance p to point past the base dentry, to the first name.  */
1200         p += sizeof(struct wim_dentry_on_disk);
1201
1202         /* Read the filename if present.  Note: if the filename is empty, there
1203          * is no null terminator following it.  */
1204         if (file_name_nbytes) {
1205                 dentry->file_name = utf16le_dupz((const utf16lechar *)p,
1206                                                  file_name_nbytes);
1207                 if (dentry->file_name == NULL) {
1208                         ret = WIMLIB_ERR_NOMEM;
1209                         goto err_free_dentry;
1210                 }
1211                 dentry->file_name_nbytes = file_name_nbytes;
1212                 p += file_name_nbytes + 2;
1213         }
1214
1215         /* Read the short filename if present.  Note: if there is no short
1216          * filename, there is no null terminator following it. */
1217         if (short_name_nbytes) {
1218                 dentry->short_name = utf16le_dupz((const utf16lechar *)p,
1219                                                   short_name_nbytes);
1220                 if (dentry->short_name == NULL) {
1221                         ret = WIMLIB_ERR_NOMEM;
1222                         goto err_free_dentry;
1223                 }
1224                 dentry->short_name_nbytes = short_name_nbytes;
1225                 p += short_name_nbytes + 2;
1226         }
1227
1228         /* Read extra data at end of dentry (but before alternate data stream
1229          * entries).  This may contain tagged items.  */
1230         ret = read_extra_data(p, &buf[offset + length], inode);
1231         if (ret)
1232                 goto err_free_dentry;
1233
1234         /* Align the dentry length.  */
1235         length = (length + 7) & ~7;
1236
1237         offset += length;
1238
1239         /* Read the alternate data streams, if present.  inode->i_num_ads tells
1240          * us how many they are, and they will directly follow the dentry in the
1241          * metadata resource buffer.
1242          *
1243          * Note that each alternate data stream entry begins on an 8-byte
1244          * aligned boundary, and the alternate data stream entries seem to NOT
1245          * be included in the dentry->length field for some reason.  */
1246         if (unlikely(inode->i_num_ads != 0)) {
1247                 size_t orig_bytes_remaining;
1248                 size_t bytes_remaining;
1249
1250                 if (offset > buf_len) {
1251                         ret = WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1252                         goto err_free_dentry;
1253                 }
1254                 bytes_remaining = buf_len - offset;
1255                 orig_bytes_remaining = bytes_remaining;
1256                 ret = read_ads_entries(&buf[offset], inode, &bytes_remaining);
1257                 if (ret)
1258                         goto err_free_dentry;
1259                 offset += (orig_bytes_remaining - bytes_remaining);
1260         }
1261
1262         *offset_p = offset;  /* Sets offset of next dentry in directory  */
1263         *dentry_ret = dentry;
1264         return 0;
1265
1266 err_free_dentry:
1267         free_dentry(dentry);
1268         return ret;
1269 }
1270
1271 static bool
1272 dentry_is_dot_or_dotdot(const struct wim_dentry *dentry)
1273 {
1274         if (dentry->file_name_nbytes <= 4) {
1275                 if (dentry->file_name_nbytes == 4) {
1276                         if (dentry->file_name[0] == cpu_to_le16('.') &&
1277                             dentry->file_name[1] == cpu_to_le16('.'))
1278                                 return true;
1279                 } else if (dentry->file_name_nbytes == 2) {
1280                         if (dentry->file_name[0] == cpu_to_le16('.'))
1281                                 return true;
1282                 }
1283         }
1284         return false;
1285 }
1286
1287 static int
1288 read_dentry_tree_recursive(const u8 * restrict buf, size_t buf_len,
1289                            struct wim_dentry * restrict dir)
1290 {
1291         u64 cur_offset = dir->subdir_offset;
1292
1293         /* Check for cyclic directory structure, which would cause infinite
1294          * recursion if not handled.  */
1295         for (struct wim_dentry *d = dir->d_parent;
1296              !dentry_is_root(d); d = d->d_parent)
1297         {
1298                 if (unlikely(d->subdir_offset == cur_offset)) {
1299                         ERROR("Cyclic directory structure detected: children "
1300                               "of \"%"TS"\" coincide with children of \"%"TS"\"",
1301                               dentry_full_path(dir), dentry_full_path(d));
1302                         return WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1303                 }
1304         }
1305
1306         for (;;) {
1307                 struct wim_dentry *child;
1308                 struct wim_dentry *duplicate;
1309                 int ret;
1310
1311                 /* Read next child of @dir.  */
1312                 ret = read_dentry(buf, buf_len, &cur_offset, &child);
1313                 if (ret)
1314                         return ret;
1315
1316                 /* Check for end of directory.  */
1317                 if (child == NULL)
1318                         return 0;
1319
1320                 /* All dentries except the root should be named.  */
1321                 if (unlikely(!dentry_has_long_name(child))) {
1322                         WARNING("Ignoring unnamed dentry in "
1323                                 "directory \"%"TS"\"", dentry_full_path(dir));
1324                         free_dentry(child);
1325                         continue;
1326                 }
1327
1328                 /* Don't allow files named "." or "..".  */
1329                 if (unlikely(dentry_is_dot_or_dotdot(child))) {
1330                         WARNING("Ignoring file named \".\" or \"..\"; "
1331                                 "potentially malicious archive!!!");
1332                         free_dentry(child);
1333                         continue;
1334                 }
1335
1336                 /* Link the child into the directory.  */
1337                 duplicate = dentry_add_child(dir, child);
1338                 if (unlikely(duplicate)) {
1339                         /* We already found a dentry with this same
1340                          * case-sensitive long name.  Only keep the first one.
1341                          */
1342                         WARNING("Ignoring duplicate file \"%"TS"\" "
1343                                 "(the WIM image already contains a file "
1344                                 "at that path with the exact same name)",
1345                                 dentry_full_path(duplicate));
1346                         free_dentry(child);
1347                         continue;
1348                 }
1349
1350                 /* If this child is a directory that itself has children, call
1351                  * this procedure recursively.  */
1352                 if (child->subdir_offset != 0) {
1353                         if (likely(dentry_is_directory(child))) {
1354                                 ret = read_dentry_tree_recursive(buf,
1355                                                                  buf_len,
1356                                                                  child);
1357                                 if (ret)
1358                                         return ret;
1359                         } else {
1360                                 WARNING("Ignoring children of "
1361                                         "non-directory file \"%"TS"\"",
1362                                         dentry_full_path(child));
1363                         }
1364                 }
1365         }
1366 }
1367
1368 /*
1369  * Read a tree of dentries (directory entries) from a WIM metadata resource.
1370  *
1371  * @buf:
1372  *      Buffer containing an uncompressed WIM metadata resource.
1373  *
1374  * @buf_len:
1375  *      Length of the uncompressed metadata resource, in bytes.
1376  *
1377  * @root_offset
1378  *      Offset in the metadata resource of the root of the dentry tree.
1379  *
1380  * @root_ret:
1381  *      On success, either NULL or a pointer to the root dentry is written to
1382  *      this location.  The former case only occurs in the unexpected case that
1383  *      the tree began with an end-of-directory entry.
1384  *
1385  * Return values:
1386  *      WIMLIB_ERR_SUCCESS (0)
1387  *      WIMLIB_ERR_INVALID_METADATA_RESOURCE
1388  *      WIMLIB_ERR_NOMEM
1389  */
1390 int
1391 read_dentry_tree(const u8 *buf, size_t buf_len,
1392                  u64 root_offset, struct wim_dentry **root_ret)
1393 {
1394         int ret;
1395         struct wim_dentry *root;
1396
1397         DEBUG("Reading dentry tree (root_offset=%"PRIu64")", root_offset);
1398
1399         ret = read_dentry(buf, buf_len, &root_offset, &root);
1400         if (ret)
1401                 return ret;
1402
1403         if (likely(root != NULL)) {
1404                 if (unlikely(dentry_has_long_name(root) ||
1405                              dentry_has_short_name(root)))
1406                 {
1407                         WARNING("The root directory has a nonempty name; "
1408                                 "removing it.");
1409                         FREE(root->file_name);
1410                         FREE(root->short_name);
1411                         root->file_name = NULL;
1412                         root->short_name = NULL;
1413                         root->file_name_nbytes = 0;
1414                         root->short_name_nbytes = 0;
1415                 }
1416
1417                 if (unlikely(!dentry_is_directory(root))) {
1418                         ERROR("The root of the WIM image is not a directory!");
1419                         ret = WIMLIB_ERR_INVALID_METADATA_RESOURCE;
1420                         goto err_free_dentry_tree;
1421                 }
1422
1423                 if (likely(root->subdir_offset != 0)) {
1424                         ret = read_dentry_tree_recursive(buf, buf_len, root);
1425                         if (ret)
1426                                 goto err_free_dentry_tree;
1427                 }
1428         } else {
1429                 WARNING("The metadata resource has no directory entries; "
1430                         "treating as an empty image.");
1431         }
1432         *root_ret = root;
1433         return 0;
1434
1435 err_free_dentry_tree:
1436         free_dentry_tree(root, NULL);
1437         return ret;
1438 }
1439
1440 /*
1441  * Writes a WIM alternate data stream (ADS) entry to an output buffer.
1442  *
1443  * @ads_entry:  The ADS entry structure.
1444  * @hash:       The hash field to use (instead of the one in the ADS entry).
1445  * @p:          The memory location to write the data to.
1446  *
1447  * Returns a pointer to the byte after the last byte written.
1448  */
1449 static u8 *
1450 write_ads_entry(const struct wim_ads_entry *ads_entry,
1451                 const u8 *hash, u8 * restrict p)
1452 {
1453         struct wim_ads_entry_on_disk *disk_ads_entry =
1454                         (struct wim_ads_entry_on_disk*)p;
1455         u8 *orig_p = p;
1456
1457         disk_ads_entry->reserved = cpu_to_le64(ads_entry->reserved);
1458         copy_hash(disk_ads_entry->hash, hash);
1459         disk_ads_entry->stream_name_nbytes = cpu_to_le16(ads_entry->stream_name_nbytes);
1460         p += sizeof(struct wim_ads_entry_on_disk);
1461         if (ads_entry->stream_name_nbytes) {
1462                 p = mempcpy(p, ads_entry->stream_name,
1463                             ads_entry->stream_name_nbytes + 2);
1464         }
1465         /* Align to 8-byte boundary */
1466         while ((uintptr_t)p & 7)
1467                 *p++ = 0;
1468         disk_ads_entry->length = cpu_to_le64(p - orig_p);
1469         return p;
1470 }
1471
1472 /*
1473  * Writes a WIM dentry to an output buffer.
1474  *
1475  * @dentry:  The dentry structure.
1476  * @p:       The memory location to write the data to.
1477  *
1478  * Returns the pointer to the byte after the last byte we wrote as part of the
1479  * dentry, including any alternate data stream entries.
1480  */
1481 static u8 *
1482 write_dentry(const struct wim_dentry * restrict dentry, u8 * restrict p)
1483 {
1484         const struct wim_inode *inode;
1485         struct wim_dentry_on_disk *disk_dentry;
1486         const u8 *orig_p;
1487         const u8 *hash;
1488         bool use_dummy_stream;
1489         u16 num_ads;
1490
1491         wimlib_assert(((uintptr_t)p & 7) == 0); /* 8 byte aligned */
1492         orig_p = p;
1493
1494         inode = dentry->d_inode;
1495         use_dummy_stream = inode_needs_dummy_stream(inode);
1496         disk_dentry = (struct wim_dentry_on_disk*)p;
1497
1498         disk_dentry->attributes = cpu_to_le32(inode->i_attributes);
1499         disk_dentry->security_id = cpu_to_le32(inode->i_security_id);
1500         disk_dentry->subdir_offset = cpu_to_le64(dentry->subdir_offset);
1501
1502         /* UNIX data uses the two 8-byte reserved fields.  So if no UNIX data
1503          * exists, they get set to 0, just as we would do anyway.  */
1504         disk_dentry->unused_1 = cpu_to_le64(0);
1505         disk_dentry->unused_2 = cpu_to_le64(0);
1506
1507         disk_dentry->creation_time = cpu_to_le64(inode->i_creation_time);
1508         disk_dentry->last_access_time = cpu_to_le64(inode->i_last_access_time);
1509         disk_dentry->last_write_time = cpu_to_le64(inode->i_last_write_time);
1510         if (use_dummy_stream)
1511                 hash = zero_hash;
1512         else
1513                 hash = inode_stream_hash(inode, 0);
1514         copy_hash(disk_dentry->unnamed_stream_hash, hash);
1515         if (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT) {
1516                 disk_dentry->reparse.rp_unknown_1 = cpu_to_le32(inode->i_rp_unknown_1);
1517                 disk_dentry->reparse.reparse_tag = cpu_to_le32(inode->i_reparse_tag);
1518                 disk_dentry->reparse.rp_unknown_2 = cpu_to_le16(inode->i_rp_unknown_2);
1519                 disk_dentry->reparse.not_rpfixed = cpu_to_le16(inode->i_not_rpfixed);
1520         } else {
1521                 disk_dentry->nonreparse.rp_unknown_1 = cpu_to_le32(inode->i_rp_unknown_1);
1522                 disk_dentry->nonreparse.hard_link_group_id =
1523                         cpu_to_le64((inode->i_nlink == 1) ? 0 : inode->i_ino);
1524         }
1525         num_ads = inode->i_num_ads;
1526         if (use_dummy_stream)
1527                 num_ads++;
1528         disk_dentry->num_alternate_data_streams = cpu_to_le16(num_ads);
1529         disk_dentry->short_name_nbytes = cpu_to_le16(dentry->short_name_nbytes);
1530         disk_dentry->file_name_nbytes = cpu_to_le16(dentry->file_name_nbytes);
1531         p += sizeof(struct wim_dentry_on_disk);
1532
1533         wimlib_assert(dentry_is_root(dentry) != dentry_has_long_name(dentry));
1534
1535         if (dentry_has_long_name(dentry))
1536                 p = mempcpy(p, dentry->file_name, dentry->file_name_nbytes + 2);
1537
1538         if (dentry_has_short_name(dentry))
1539                 p = mempcpy(p, dentry->short_name, dentry->short_name_nbytes + 2);
1540
1541         /* Align to 8-byte boundary */
1542         while ((uintptr_t)p & 7)
1543                 *p++ = 0;
1544
1545         if (inode->i_extra_size) {
1546                 /* Extra tagged items --- not usually present.  */
1547                 p = mempcpy(p, inode->i_extra, inode->i_extra_size);
1548                 while ((uintptr_t)p & 7)
1549                         *p++ = 0;
1550         }
1551
1552         disk_dentry->length = cpu_to_le64(p - orig_p);
1553
1554         if (use_dummy_stream) {
1555                 hash = inode_unnamed_stream_hash(inode);
1556                 p = write_ads_entry(&(struct wim_ads_entry){}, hash, p);
1557         }
1558
1559         /* Write the alternate data streams entries, if any. */
1560         for (u16 i = 0; i < inode->i_num_ads; i++) {
1561                 hash = inode_stream_hash(inode, i + 1);
1562                 p = write_ads_entry(&inode->i_ads_entries[i], hash, p);
1563         }
1564
1565         return p;
1566 }
1567
1568 static int
1569 write_dir_dentries(struct wim_dentry *dir, void *_pp)
1570 {
1571         if (dir->subdir_offset != 0) {
1572                 u8 **pp = _pp;
1573                 u8 *p = *pp;
1574                 struct wim_dentry *child;
1575
1576                 /* write child dentries */
1577                 for_dentry_child(child, dir)
1578                         p = write_dentry(child, p);
1579
1580                 /* write end of directory entry */
1581                 *(u64*)p = 0;
1582                 p += 8;
1583                 *pp = p;
1584         }
1585         return 0;
1586 }
1587
1588 /* Writes a directory tree to the metadata resource.
1589  *
1590  * @root:       Root of the dentry tree.
1591  * @p:          Pointer to a buffer with enough space for the dentry tree.
1592  *
1593  * Returns pointer to the byte after the last byte we wrote.
1594  */
1595 u8 *
1596 write_dentry_tree(struct wim_dentry *root, u8 *p)
1597 {
1598         DEBUG("Writing dentry tree.");
1599         wimlib_assert(dentry_is_root(root));
1600
1601         /* write root dentry and end-of-directory entry following it */
1602         p = write_dentry(root, p);
1603         *(u64*)p = 0;
1604         p += 8;
1605
1606         /* write the rest of the dentry tree */
1607         for_dentry_in_tree(root, write_dir_dentries, &p);
1608
1609         return p;
1610 }