]> wimlib.net Git - wimlib/blob - src/dentry.c
Fix up calculation of image XML statistics
[wimlib] / src / dentry.c
1 /*
2  * dentry.c
3  *
4  * A dentry (directory entry) contains the metadata for a file.  In the WIM file
5  * format, the dentries are stored in the "metadata resource" section right
6  * after the security data.  Each image in the WIM file has its own metadata
7  * resource with its own security data and dentry tree.  Dentries in different
8  * images may share file resources by referring to the same lookup table
9  * entries.
10  */
11
12 /*
13  * Copyright (C) 2012 Eric Biggers
14  *
15  * This file is part of wimlib, a library for working with WIM files.
16  *
17  * wimlib is free software; you can redistribute it and/or modify it under the
18  * terms of the GNU General Public License as published by the Free Software
19  * Foundation; either version 3 of the License, or (at your option) any later
20  * version.
21  *
22  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
23  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
24  * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License along with
27  * wimlib; if not, see http://www.gnu.org/licenses/.
28  */
29
30 #include <errno.h>
31 #include <sys/stat.h>
32 #include <time.h>
33 #include <unistd.h>
34
35 #include "dentry.h"
36 #include "io.h"
37 #include "lookup_table.h"
38 #include "sha1.h"
39 #include "timestamp.h"
40 #include "wimlib_internal.h"
41
42
43 static u64 __dentry_correct_length_unaligned(u16 file_name_len,
44                                              u16 short_name_len)
45 {
46         u64 length = WIM_DENTRY_DISK_SIZE;
47         if (file_name_len)
48                 length += file_name_len + 2;
49         if (short_name_len)
50                 length += short_name_len + 2;
51         return length;
52 }
53
54 static u64 dentry_correct_length_unaligned(const struct dentry *dentry)
55 {
56         return __dentry_correct_length_unaligned(dentry->file_name_len,
57                                                  dentry->short_name_len);
58 }
59
60 /* Return the "correct" value to write in the length field of the dentry, based
61  * on the file name length and short name length */
62 static u64 dentry_correct_length(const struct dentry *dentry)
63 {
64         return (dentry_correct_length_unaligned(dentry) + 7) & ~7;
65 }
66
67 /*
68  * Returns true if @dentry has the UTF-8 file name @name that has length
69  * @name_len.
70  */
71 static bool dentry_has_name(const struct dentry *dentry, const char *name, 
72                             size_t name_len)
73 {
74         if (dentry->file_name_utf8_len != name_len)
75                 return false;
76         return memcmp(dentry->file_name_utf8, name, name_len) == 0;
77 }
78
79 static inline bool ads_entry_has_name(const struct ads_entry *entry,
80                                       const char *name, size_t name_len)
81 {
82         if (entry->stream_name_utf8_len != name_len)
83                 return false;
84         return memcmp(entry->stream_name_utf8, name, name_len) == 0;
85 }
86
87 /* Duplicates a UTF-8 name into UTF-8 and UTF-16 strings and returns the strings
88  * and their lengths in the pointer arguments */
89 int get_names(char **name_utf16_ret, char **name_utf8_ret,
90               u16 *name_utf16_len_ret, u16 *name_utf8_len_ret,
91               const char *name)
92 {
93         size_t utf8_len;
94         size_t utf16_len;
95         char *name_utf16, *name_utf8;
96
97         utf8_len = strlen(name);
98
99         name_utf16 = utf8_to_utf16(name, utf8_len, &utf16_len);
100
101         if (!name_utf16)
102                 return WIMLIB_ERR_NOMEM;
103
104         name_utf8 = MALLOC(utf8_len + 1);
105         if (!name_utf8) {
106                 FREE(name_utf8);
107                 return WIMLIB_ERR_NOMEM;
108         }
109         memcpy(name_utf8, name, utf8_len + 1);
110         FREE(*name_utf8_ret);
111         FREE(*name_utf16_ret);
112         *name_utf8_ret      = name_utf8;
113         *name_utf16_ret     = name_utf16;
114         *name_utf8_len_ret  = utf8_len;
115         *name_utf16_len_ret = utf16_len;
116         return 0;
117 }
118
119 /* Changes the name of a dentry to @new_name.  Only changes the file_name and
120  * file_name_utf8 fields; does not change the short_name, short_name_utf8, or
121  * full_path_utf8 fields.  Also recalculates its length. */
122 static int change_dentry_name(struct dentry *dentry, const char *new_name)
123 {
124         int ret;
125
126         ret = get_names(&dentry->file_name, &dentry->file_name_utf8,
127                         &dentry->file_name_len, &dentry->file_name_utf8_len,
128                          new_name);
129         FREE(dentry->short_name);
130         dentry->short_name_len = 0;
131         if (ret == 0)
132                 dentry->length = dentry_correct_length(dentry);
133         return ret;
134 }
135
136 /*
137  * Changes the name of an alternate data stream */
138 static int change_ads_name(struct ads_entry *entry, const char *new_name)
139 {
140         return get_names(&entry->stream_name, &entry->stream_name_utf8,
141                          &entry->stream_name_len,
142                          &entry->stream_name_utf8_len,
143                          new_name);
144 }
145
146 /* Returns the total length of a WIM alternate data stream entry on-disk,
147  * including the stream name, the null terminator, AND the padding after the
148  * entry to align the next one (or the next dentry) on an 8-byte boundary. */
149 static u64 ads_entry_total_length(const struct ads_entry *entry)
150 {
151         u64 len = WIM_ADS_ENTRY_DISK_SIZE;
152         if (entry->stream_name_len)
153                 len += entry->stream_name_len + 2;
154         return (len + 7) & ~7;
155 }
156
157
158 static u64 __dentry_total_length(const struct dentry *dentry, u64 length)
159 {
160         const struct inode *inode = dentry->d_inode;
161         for (u16 i = 0; i < inode->num_ads; i++)
162                 length += ads_entry_total_length(&inode->ads_entries[i]);
163         return (length + 7) & ~7;
164 }
165
166 u64 dentry_correct_total_length(const struct dentry *dentry)
167 {
168         return __dentry_total_length(dentry,
169                                      dentry_correct_length_unaligned(dentry));
170 }
171
172 /* Real length of a dentry, including the alternate data stream entries, which
173  * are not included in the dentry->length field... */
174 static u64 dentry_total_length(const struct dentry *dentry)
175 {
176         return __dentry_total_length(dentry, dentry->length);
177 }
178
179 /* Transfers file attributes from a `stat' buffer to an inode. */
180 void stbuf_to_inode(const struct stat *stbuf, struct inode *inode)
181 {
182         if (S_ISLNK(stbuf->st_mode)) {
183                 inode->attributes = FILE_ATTRIBUTE_REPARSE_POINT;
184                 inode->reparse_tag = WIM_IO_REPARSE_TAG_SYMLINK;
185         } else if (S_ISDIR(stbuf->st_mode)) {
186                 inode->attributes = FILE_ATTRIBUTE_DIRECTORY;
187         } else {
188                 inode->attributes = FILE_ATTRIBUTE_NORMAL;
189         }
190         if (sizeof(ino_t) >= 8)
191                 inode->ino = (u64)stbuf->st_ino;
192         else
193                 inode->ino = (u64)stbuf->st_ino |
194                                    ((u64)stbuf->st_dev << (sizeof(ino_t) * 8));
195         /* Set timestamps */
196         inode->creation_time = timespec_to_wim_timestamp(&stbuf->st_mtim);
197         inode->last_write_time = timespec_to_wim_timestamp(&stbuf->st_mtim);
198         inode->last_access_time = timespec_to_wim_timestamp(&stbuf->st_atim);
199 }
200
201 #ifdef WITH_FUSE
202 /* Transfers file attributes from a struct inode to a `stat' buffer. 
203  *
204  * The lookup table entry tells us which stream in the inode we are statting.
205  * For a named data stream, everything returned is the same as the unnamed data
206  * stream except possibly the size and block count. */
207 int inode_to_stbuf(const struct inode *inode, struct lookup_table_entry *lte,
208                    struct stat *stbuf)
209 {
210         if (inode_is_symlink(inode))
211                 stbuf->st_mode = S_IFLNK | 0777;
212         else if (inode_is_directory(inode))
213                 stbuf->st_mode = S_IFDIR | 0755;
214         else
215                 stbuf->st_mode = S_IFREG | 0644;
216
217         stbuf->st_ino   = (ino_t)inode->ino;
218         stbuf->st_nlink = inode->link_count;
219         stbuf->st_uid   = getuid();
220         stbuf->st_gid   = getgid();
221
222         if (lte) {
223                 if (lte->resource_location == RESOURCE_IN_STAGING_FILE) {
224                         wimlib_assert(lte->staging_file_name);
225                         struct stat native_stat;
226                         if (stat(lte->staging_file_name, &native_stat) != 0) {
227                                 DEBUG("Failed to stat `%s': %m",
228                                       lte->staging_file_name);
229                                 return -errno;
230                         }
231                         stbuf->st_size = native_stat.st_size;
232                 } else {
233                         stbuf->st_size = wim_resource_size(lte);
234                 }
235         } else {
236                 stbuf->st_size = 0;
237         }
238
239         stbuf->st_atime   = wim_timestamp_to_unix(inode->last_access_time);
240         stbuf->st_mtime   = wim_timestamp_to_unix(inode->last_write_time);
241         stbuf->st_ctime   = wim_timestamp_to_unix(inode->creation_time);
242         stbuf->st_blocks  = (stbuf->st_size + 511) / 512;
243         return 0;
244 }
245 #endif
246
247 /* 
248  * Calls a function on all directory entries in a directory tree.  It is called
249  * on a parent before its children.
250  */
251 int for_dentry_in_tree(struct dentry *root, 
252                        int (*visitor)(struct dentry*, void*), void *arg)
253 {
254         int ret;
255         struct dentry *child;
256
257         ret = visitor(root, arg);
258
259         if (ret != 0)
260                 return ret;
261
262         child = root->d_inode->children;
263
264         if (!child)
265                 return 0;
266
267         do {
268                 ret = for_dentry_in_tree(child, visitor, arg);
269                 if (ret != 0)
270                         return ret;
271                 child = child->next;
272         } while (child != root->d_inode->children);
273         return 0;
274 }
275
276 /* 
277  * Like for_dentry_in_tree(), but the visitor function is always called on a
278  * dentry's children before on itself.
279  */
280 int for_dentry_in_tree_depth(struct dentry *root, 
281                              int (*visitor)(struct dentry*, void*), void *arg)
282 {
283         int ret;
284         struct dentry *child;
285         struct dentry *next;
286
287         child = root->d_inode->children;
288         if (child) {
289                 do {
290                         next = child->next;
291                         ret = for_dentry_in_tree_depth(child, visitor, arg);
292                         if (ret != 0)
293                                 return ret;
294                         child = next;
295                 } while (child != root->d_inode->children);
296         }
297         return visitor(root, arg);
298 }
299
300 /* 
301  * Calculate the full path of @dentry, based on its parent's full path and on
302  * its UTF-8 file name. 
303  */
304 int calculate_dentry_full_path(struct dentry *dentry, void *ignore)
305 {
306         char *full_path;
307         u32 full_path_len;
308         if (dentry_is_root(dentry)) {
309                 full_path = MALLOC(2);
310                 if (!full_path)
311                         goto oom;
312                 full_path[0] = '/';
313                 full_path[1] = '\0';
314                 full_path_len = 1;
315         } else {
316                 char *parent_full_path;
317                 u32 parent_full_path_len;
318                 const struct dentry *parent = dentry->parent;
319
320                 if (dentry_is_root(parent)) {
321                         parent_full_path = "";
322                         parent_full_path_len = 0;
323                 } else {
324                         parent_full_path = parent->full_path_utf8;
325                         parent_full_path_len = parent->full_path_utf8_len;
326                 }
327
328                 full_path_len = parent_full_path_len + 1 +
329                                 dentry->file_name_utf8_len;
330                 full_path = MALLOC(full_path_len + 1);
331                 if (!full_path)
332                         goto oom;
333
334                 memcpy(full_path, parent_full_path, parent_full_path_len);
335                 full_path[parent_full_path_len] = '/';
336                 memcpy(full_path + parent_full_path_len + 1,
337                        dentry->file_name_utf8,
338                        dentry->file_name_utf8_len);
339                 full_path[full_path_len] = '\0';
340         }
341         FREE(dentry->full_path_utf8);
342         dentry->full_path_utf8 = full_path;
343         dentry->full_path_utf8_len = full_path_len;
344         return 0;
345 oom:
346         ERROR("Out of memory while calculating dentry full path");
347         return WIMLIB_ERR_NOMEM;
348 }
349
350 /* 
351  * Recursively calculates the subdir offsets for a directory tree. 
352  *
353  * @dentry:  The root of the directory tree.
354  * @subdir_offset_p:  The current subdirectory offset; i.e., the subdirectory
355  *      offset for @dentry. 
356  */
357 void calculate_subdir_offsets(struct dentry *dentry, u64 *subdir_offset_p)
358 {
359         struct dentry *child;
360
361         child = dentry->d_inode->children;
362         dentry->subdir_offset = *subdir_offset_p;
363
364         if (child) {
365                 /* Advance the subdir offset by the amount of space the children
366                  * of this dentry take up. */
367                 do {
368                         *subdir_offset_p += dentry_correct_total_length(child);
369                         child = child->next;
370                 } while (child != dentry->d_inode->children);
371
372                 /* End-of-directory dentry on disk. */
373                 *subdir_offset_p += 8;
374
375                 /* Recursively call calculate_subdir_offsets() on all the
376                  * children. */
377                 do {
378                         calculate_subdir_offsets(child, subdir_offset_p);
379                         child = child->next;
380                 } while (child != dentry->d_inode->children);
381         } else {
382                 /* On disk, childless directories have a valid subdir_offset
383                  * that points to an 8-byte end-of-directory dentry.  Regular
384                  * files or reparse points have a subdir_offset of 0. */
385                 if (dentry_is_directory(dentry))
386                         *subdir_offset_p += 8;
387                 else
388                         dentry->subdir_offset = 0;
389         }
390 }
391
392 /* Returns the child of @dentry that has the file name @name.  
393  * Returns NULL if no child has the name. */
394 struct dentry *get_dentry_child_with_name(const struct dentry *dentry, 
395                                           const char *name)
396 {
397         struct dentry *child;
398         size_t name_len;
399         
400         child = dentry->d_inode->children;
401         if (child) {
402                 name_len = strlen(name);
403                 do {
404                         if (dentry_has_name(child, name, name_len))
405                                 return child;
406                         child = child->next;
407                 } while (child != dentry->d_inode->children);
408         }
409         return NULL;
410 }
411
412 /* Retrieves the dentry that has the UTF-8 @path relative to the dentry
413  * @cur_dir.  Returns NULL if no dentry having the path is found. */
414 static struct dentry *get_dentry_relative_path(struct dentry *cur_dir,
415                                                const char *path)
416 {
417         struct dentry *child;
418         size_t base_len;
419         const char *new_path;
420
421         if (*path == '\0')
422                 return cur_dir;
423
424         child = cur_dir->d_inode->children;
425         if (child) {
426                 new_path = path_next_part(path, &base_len);
427                 do {
428                         if (dentry_has_name(child, path, base_len))
429                                 return get_dentry_relative_path(child, new_path);
430                         child = child->next;
431                 } while (child != cur_dir->d_inode->children);
432         }
433         return NULL;
434 }
435
436 /* Returns the dentry corresponding to the UTF-8 @path, or NULL if there is no
437  * such dentry. */
438 struct dentry *get_dentry(WIMStruct *w, const char *path)
439 {
440         struct dentry *root = wim_root_dentry(w);
441         while (*path == '/')
442                 path++;
443         return get_dentry_relative_path(root, path);
444 }
445
446 struct inode *wim_pathname_to_inode(WIMStruct *w, const char *path)
447 {
448         struct dentry *dentry;
449         dentry = get_dentry(w, path);
450         if (!dentry)
451                 return NULL;
452         else
453                 return dentry->d_inode;
454 }
455
456 /* Returns the dentry that corresponds to the parent directory of @path, or NULL
457  * if the dentry is not found. */
458 struct dentry *get_parent_dentry(WIMStruct *w, const char *path)
459 {
460         size_t path_len = strlen(path);
461         char buf[path_len + 1];
462
463         memcpy(buf, path, path_len + 1);
464
465         to_parent_name(buf, path_len);
466
467         return get_dentry(w, buf);
468 }
469
470 /* Prints the full path of a dentry. */
471 int print_dentry_full_path(struct dentry *dentry, void *ignore)
472 {
473         if (dentry->full_path_utf8)
474                 puts(dentry->full_path_utf8);
475         return 0;
476 }
477
478 /* We want to be able to show the names of the file attribute flags that are
479  * set. */
480 struct file_attr_flag {
481         u32 flag;
482         const char *name;
483 };
484 struct file_attr_flag file_attr_flags[] = {
485         {FILE_ATTRIBUTE_READONLY,           "READONLY"},
486         {FILE_ATTRIBUTE_HIDDEN,             "HIDDEN"},
487         {FILE_ATTRIBUTE_SYSTEM,             "SYSTEM"},
488         {FILE_ATTRIBUTE_DIRECTORY,          "DIRECTORY"},
489         {FILE_ATTRIBUTE_ARCHIVE,            "ARCHIVE"},
490         {FILE_ATTRIBUTE_DEVICE,             "DEVICE"},
491         {FILE_ATTRIBUTE_NORMAL,             "NORMAL"},
492         {FILE_ATTRIBUTE_TEMPORARY,          "TEMPORARY"},
493         {FILE_ATTRIBUTE_SPARSE_FILE,        "SPARSE_FILE"},
494         {FILE_ATTRIBUTE_REPARSE_POINT,      "REPARSE_POINT"},
495         {FILE_ATTRIBUTE_COMPRESSED,         "COMPRESSED"},
496         {FILE_ATTRIBUTE_OFFLINE,            "OFFLINE"},
497         {FILE_ATTRIBUTE_NOT_CONTENT_INDEXED,"NOT_CONTENT_INDEXED"},
498         {FILE_ATTRIBUTE_ENCRYPTED,          "ENCRYPTED"},
499         {FILE_ATTRIBUTE_VIRTUAL,            "VIRTUAL"},
500 };
501
502 /* Prints a directory entry.  @lookup_table is a pointer to the lookup table, if
503  * available.  If the dentry is unresolved and the lookup table is NULL, the
504  * lookup table entries will not be printed.  Otherwise, they will be. */
505 int print_dentry(struct dentry *dentry, void *lookup_table)
506 {
507         const u8 *hash;
508         struct lookup_table_entry *lte;
509         const struct inode *inode = dentry->d_inode;
510         time_t time;
511         char *p;
512
513         printf("[DENTRY]\n");
514         printf("Length            = %"PRIu64"\n", dentry->length);
515         printf("Attributes        = 0x%x\n", inode->attributes);
516         for (unsigned i = 0; i < ARRAY_LEN(file_attr_flags); i++)
517                 if (file_attr_flags[i].flag & inode->attributes)
518                         printf("    FILE_ATTRIBUTE_%s is set\n",
519                                 file_attr_flags[i].name);
520         printf("Security ID       = %d\n", inode->security_id);
521         printf("Subdir offset     = %"PRIu64"\n", dentry->subdir_offset);
522
523         /* Translate the timestamps into something readable */
524         time = wim_timestamp_to_unix(inode->creation_time);
525         p = asctime(gmtime(&time));
526         *(strrchr(p, '\n')) = '\0';
527         printf("Creation Time     = %s UTC\n", p);
528
529         time = wim_timestamp_to_unix(inode->last_access_time);
530         p = asctime(gmtime(&time));
531         *(strrchr(p, '\n')) = '\0';
532         printf("Last Access Time  = %s UTC\n", p);
533
534         time = wim_timestamp_to_unix(inode->last_write_time);
535         p = asctime(gmtime(&time));
536         *(strrchr(p, '\n')) = '\0';
537         printf("Last Write Time   = %s UTC\n", p);
538
539         printf("Reparse Tag       = 0x%"PRIx32"\n", inode->reparse_tag);
540         printf("Hard Link Group   = 0x%"PRIx64"\n", inode->ino);
541         printf("Hard Link Group Size = %"PRIu32"\n", inode->link_count);
542         printf("Number of Alternate Data Streams = %hu\n", inode->num_ads);
543         printf("Filename          = \"");
544         print_string(dentry->file_name, dentry->file_name_len);
545         puts("\"");
546         printf("Filename Length   = %hu\n", dentry->file_name_len);
547         printf("Filename (UTF-8)  = \"%s\"\n", dentry->file_name_utf8);
548         printf("Filename (UTF-8) Length = %hu\n", dentry->file_name_utf8_len);
549         printf("Short Name        = \"");
550         print_string(dentry->short_name, dentry->short_name_len);
551         puts("\"");
552         printf("Short Name Length = %hu\n", dentry->short_name_len);
553         printf("Full Path (UTF-8) = \"%s\"\n", dentry->full_path_utf8);
554         lte = inode_stream_lte(dentry->d_inode, 0, lookup_table);
555         if (lte) {
556                 print_lookup_table_entry(lte);
557         } else {
558                 hash = inode_stream_hash(inode, 0);
559                 if (hash) {
560                         printf("Hash              = 0x"); 
561                         print_hash(hash);
562                         putchar('\n');
563                         putchar('\n');
564                 }
565         }
566         for (u16 i = 0; i < inode->num_ads; i++) {
567                 printf("[Alternate Stream Entry %u]\n", i);
568                 printf("Name = \"%s\"\n", inode->ads_entries[i].stream_name_utf8);
569                 printf("Name Length (UTF-16) = %u\n",
570                         inode->ads_entries[i].stream_name_len);
571                 hash = inode_stream_hash(inode, i + 1);
572                 if (hash) {
573                         printf("Hash              = 0x"); 
574                         print_hash(hash);
575                         putchar('\n');
576                 }
577                 print_lookup_table_entry(inode_stream_lte(inode, i + 1,
578                                                           lookup_table));
579         }
580         return 0;
581 }
582
583 /* Initializations done on every `struct dentry'. */
584 static void dentry_common_init(struct dentry *dentry)
585 {
586         memset(dentry, 0, sizeof(struct dentry));
587         dentry->refcnt = 1;
588 }
589
590 static struct inode *new_timeless_inode()
591 {
592         struct inode *inode = CALLOC(1, sizeof(struct inode));
593         if (!inode)
594                 return NULL;
595         inode->security_id = -1;
596         inode->link_count = 1;
597 #ifdef WITH_FUSE
598         inode->next_stream_id = 1;
599 #endif
600         INIT_LIST_HEAD(&inode->dentry_list);
601         return inode;
602 }
603
604 static struct inode *new_inode()
605 {
606         struct inode *inode = new_timeless_inode();
607         if (!inode)
608                 return NULL;
609         u64 now = get_wim_timestamp();
610         inode->creation_time = now;
611         inode->last_access_time = now;
612         inode->last_write_time = now;
613         return inode;
614 }
615
616 /* 
617  * Creates an unlinked directory entry.
618  *
619  * @name:  The UTF-8 filename of the new dentry.
620  *
621  * Returns a pointer to the new dentry, or NULL if out of memory.
622  */
623 struct dentry *new_dentry(const char *name)
624 {
625         struct dentry *dentry;
626         
627         dentry = MALLOC(sizeof(struct dentry));
628         if (!dentry)
629                 goto err;
630
631         dentry_common_init(dentry);
632         if (change_dentry_name(dentry, name) != 0)
633                 goto err;
634
635         dentry->next   = dentry;
636         dentry->prev   = dentry;
637         dentry->parent = dentry;
638
639         return dentry;
640 err:
641         FREE(dentry);
642         ERROR("Failed to allocate new dentry");
643         return NULL;
644 }
645
646
647 static struct dentry *__new_dentry_with_inode(const char *name, bool timeless)
648 {
649         struct dentry *dentry;
650         dentry = new_dentry(name);
651         if (dentry) {
652                 if (timeless)
653                         dentry->d_inode = new_timeless_inode();
654                 else
655                         dentry->d_inode = new_inode();
656                 if (dentry->d_inode) {
657                         inode_add_dentry(dentry, dentry->d_inode);
658                 } else {
659                         free_dentry(dentry);
660                         dentry = NULL;
661                 }
662         }
663         return dentry;
664 }
665
666 struct dentry *new_dentry_with_timeless_inode(const char *name)
667 {
668         return __new_dentry_with_inode(name, true);
669 }
670
671 struct dentry *new_dentry_with_inode(const char *name)
672 {
673         return __new_dentry_with_inode(name, false);
674 }
675
676
677 static int init_ads_entry(struct ads_entry *ads_entry, const char *name)
678 {
679         int ret = 0;
680         memset(ads_entry, 0, sizeof(*ads_entry));
681         if (name && *name)
682                 ret = change_ads_name(ads_entry, name);
683         return ret;
684 }
685
686 static void destroy_ads_entry(struct ads_entry *ads_entry)
687 {
688         FREE(ads_entry->stream_name);
689         FREE(ads_entry->stream_name_utf8);
690 }
691
692
693 /* Frees an inode. */
694 void free_inode(struct inode *inode)
695 {
696         if (inode) {
697                 if (inode->ads_entries) {
698                         for (u16 i = 0; i < inode->num_ads; i++)
699                                 destroy_ads_entry(&inode->ads_entries[i]);
700                         FREE(inode->ads_entries);
701                 }
702         #ifdef WITH_FUSE
703                 wimlib_assert(inode->num_opened_fds == 0);
704                 FREE(inode->fds);
705         #endif
706                 FREE(inode);
707         }
708 }
709
710 /* Decrements link count on an inode and frees it if the link count reaches 0.
711  * */
712 static void put_inode(struct inode *inode)
713 {
714         wimlib_assert(inode);
715         wimlib_assert(inode->link_count);
716         if (--inode->link_count == 0) {
717         #ifdef WITH_FUSE
718                 if (inode->num_opened_fds == 0)
719         #endif
720                 {
721                         free_inode(inode);
722                         inode = NULL;
723                 }
724         }
725 }
726
727 /* Frees a WIM dentry. 
728  *
729  * The inode is freed only if its link count is decremented to 0.
730  */
731 void free_dentry(struct dentry *dentry)
732 {
733         wimlib_assert(dentry);
734         struct inode *inode;
735
736         FREE(dentry->file_name);
737         FREE(dentry->file_name_utf8);
738         FREE(dentry->short_name);
739         FREE(dentry->full_path_utf8);
740         put_inode(dentry->d_inode);
741         FREE(dentry);
742 }
743
744 void put_dentry(struct dentry *dentry)
745 {
746         wimlib_assert(dentry);
747         wimlib_assert(dentry->refcnt);
748
749         if (--dentry->refcnt == 0)
750                 free_dentry(dentry);
751 }
752
753 /* 
754  * This function is passed as an argument to for_dentry_in_tree_depth() in order
755  * to free a directory tree.  __args is a pointer to a `struct free_dentry_args'.
756  */
757 static int do_free_dentry(struct dentry *dentry, void *__lookup_table)
758 {
759         struct lookup_table *lookup_table = __lookup_table;
760         unsigned i;
761
762         if (lookup_table) {
763                 struct lookup_table_entry *lte;
764                 struct inode *inode = dentry->d_inode;
765                 wimlib_assert(inode->link_count);
766                 for (i = 0; i <= inode->num_ads; i++) {
767                         lte = inode_stream_lte(inode, i, lookup_table);
768                         if (lte)
769                                 lte_decrement_refcnt(lte, lookup_table);
770                 }
771         }
772
773         put_dentry(dentry);
774         return 0;
775 }
776
777 /* 
778  * Unlinks and frees a dentry tree.
779  *
780  * @root:               The root of the tree.
781  * @lookup_table:       The lookup table for dentries.  If non-NULL, the
782  *                      reference counts in the lookup table for the lookup
783  *                      table entries corresponding to the dentries will be
784  *                      decremented.
785  */
786 void free_dentry_tree(struct dentry *root, struct lookup_table *lookup_table)
787 {
788         if (!root || !root->parent)
789                 return;
790         for_dentry_in_tree_depth(root, do_free_dentry, lookup_table);
791 }
792
793 int increment_dentry_refcnt(struct dentry *dentry, void *ignore)
794 {
795         dentry->refcnt++;
796         return 0;
797 }
798
799 /* 
800  * Links a dentry into the directory tree.
801  *
802  * @dentry: The dentry to link.
803  * @parent: The dentry that will be the parent of @dentry.
804  */
805 void link_dentry(struct dentry *dentry, struct dentry *parent)
806 {
807         wimlib_assert(dentry_is_directory(parent));
808         dentry->parent = parent;
809         if (parent->d_inode->children) {
810                 /* Not an only child; link to siblings. */
811                 dentry->next = parent->d_inode->children;
812                 dentry->prev = parent->d_inode->children->prev;
813                 dentry->next->prev = dentry;
814                 dentry->prev->next = dentry;
815         } else {
816                 /* Only child; link to parent. */
817                 parent->d_inode->children = dentry;
818                 dentry->next = dentry;
819                 dentry->prev = dentry;
820         }
821 }
822
823
824 #ifdef WITH_FUSE
825 /* 
826  * Unlink a dentry from the directory tree. 
827  *
828  * Note: This merely removes it from the in-memory tree structure.
829  */
830 void unlink_dentry(struct dentry *dentry)
831 {
832         if (dentry_is_root(dentry))
833                 return;
834         if (dentry_is_only_child(dentry)) {
835                 dentry->parent->d_inode->children = NULL;
836         } else {
837                 if (dentry_is_first_sibling(dentry))
838                         dentry->parent->d_inode->children = dentry->next;
839                 dentry->next->prev = dentry->prev;
840                 dentry->prev->next = dentry->next;
841         }
842 }
843 #endif
844
845 static inline struct dentry *inode_first_dentry(struct inode *inode)
846 {
847         wimlib_assert(inode->dentry_list.next != &inode->dentry_list);
848         return container_of(inode->dentry_list.next, struct dentry,
849                             inode_dentry_list);
850 }
851
852 static int verify_inode(struct inode *inode, const WIMStruct *w)
853 {
854         const struct lookup_table *table = w->lookup_table;
855         const struct wim_security_data *sd = wim_const_security_data(w);
856         const struct dentry *first_dentry = inode_first_dentry(inode);
857         int ret = WIMLIB_ERR_INVALID_DENTRY;
858
859         /* Check the security ID */
860         if (inode->security_id < -1) {
861                 ERROR("Dentry `%s' has an invalid security ID (%d)",
862                         first_dentry->full_path_utf8, inode->security_id);
863                 goto out;
864         }
865         if (inode->security_id >= sd->num_entries) {
866                 ERROR("Dentry `%s' has an invalid security ID (%d) "
867                       "(there are only %u entries in the security table)",
868                         first_dentry->full_path_utf8, inode->security_id,
869                         sd->num_entries);
870                 goto out;
871         }
872
873         /* Check that lookup table entries for all the resources exist, except
874          * if the SHA1 message digest is all 0's, which indicates there is
875          * intentionally no resource there.  */
876         if (w->hdr.total_parts == 1) {
877                 for (unsigned i = 0; i <= inode->num_ads; i++) {
878                         struct lookup_table_entry *lte;
879                         const u8 *hash;
880                         hash = inode_stream_hash_unresolved(inode, i);
881                         lte = __lookup_resource(table, hash);
882                         if (!lte && !is_zero_hash(hash)) {
883                                 ERROR("Could not find lookup table entry for stream "
884                                       "%u of dentry `%s'", i, first_dentry->full_path_utf8);
885                                 goto out;
886                         }
887                         if (lte && (lte->real_refcnt += inode->link_count) > lte->refcnt)
888                         {
889                         #ifdef ENABLE_ERROR_MESSAGES
890                                 WARNING("The following lookup table entry "
891                                         "has a reference count of %u, but",
892                                         lte->refcnt);
893                                 WARNING("We found %zu references to it",
894                                         lte->real_refcnt);
895                                 WARNING("(One dentry referencing it is at `%s')",
896                                          first_dentry->full_path_utf8);
897
898                                 print_lookup_table_entry(lte);
899                         #endif
900                                 /* Guess what!  install.wim for Windows 8
901                                  * contains a stream with 2 dentries referencing
902                                  * it, but the lookup table entry has reference
903                                  * count of 1.  So we will need to handle this
904                                  * case and not just make it be an error...  I'm
905                                  * just setting the reference count to the
906                                  * number of references we found.
907                                  * (Unfortunately, even after doing this, the
908                                  * reference count could be too low if it's also
909                                  * referenced in other WIM images) */
910
911                         #if 1
912                                 lte->refcnt = lte->real_refcnt;
913                                 WARNING("Fixing reference count");
914                         #else
915                                 goto out;
916                         #endif
917                         }
918                 }
919         }
920
921         /* Make sure there is only one un-named stream. */
922         unsigned num_unnamed_streams = 0;
923         for (unsigned i = 0; i <= inode->num_ads; i++) {
924                 const u8 *hash;
925                 hash = inode_stream_hash_unresolved(inode, i);
926                 if (!inode_stream_name_len(inode, i) && !is_zero_hash(hash))
927                         num_unnamed_streams++;
928         }
929         if (num_unnamed_streams > 1) {
930                 ERROR("Dentry `%s' has multiple (%u) un-named streams", 
931                       first_dentry->full_path_utf8, num_unnamed_streams);
932                 goto out;
933         }
934         inode->verified = true;
935         ret = 0;
936 out:
937         return ret;
938 }
939
940 /* Run some miscellaneous verifications on a WIM dentry */
941 int verify_dentry(struct dentry *dentry, void *wim)
942 {
943         const WIMStruct *w = wim;
944         const struct inode *inode = dentry->d_inode;
945         int ret = WIMLIB_ERR_INVALID_DENTRY;
946
947         if (!dentry->d_inode->verified) {
948                 ret = verify_inode(dentry->d_inode, w);
949                 if (ret != 0)
950                         goto out;
951         }
952
953         /* Cannot have a short name but no long name */
954         if (dentry->short_name_len && !dentry->file_name_len) {
955                 ERROR("Dentry `%s' has a short name but no long name",
956                       dentry->full_path_utf8);
957                 goto out;
958         }
959
960         /* Make sure root dentry is unnamed */
961         if (dentry_is_root(dentry)) {
962                 if (dentry->file_name_len) {
963                         ERROR("The root dentry is named `%s', but it must "
964                               "be unnamed", dentry->file_name_utf8);
965                         goto out;
966                 }
967         }
968
969 #if 0
970         /* Check timestamps */
971         if (inode->last_access_time < inode->creation_time ||
972             inode->last_write_time < inode->creation_time) {
973                 WARNING("Dentry `%s' was created after it was last accessed or "
974                       "written to", dentry->full_path_utf8);
975         }
976 #endif
977
978         ret = 0;
979 out:
980         return ret;
981 }
982
983
984 #ifdef WITH_FUSE
985 /* Returns the alternate data stream entry belonging to @inode that has the
986  * stream name @stream_name. */
987 struct ads_entry *inode_get_ads_entry(struct inode *inode,
988                                       const char *stream_name,
989                                       u16 *idx_ret)
990 {
991         size_t stream_name_len;
992         if (!stream_name)
993                 return NULL;
994         if (inode->num_ads) {
995                 u16 i = 0;
996                 stream_name_len = strlen(stream_name);
997                 do {
998                         if (ads_entry_has_name(&inode->ads_entries[i],
999                                                stream_name, stream_name_len))
1000                         {
1001                                 if (idx_ret)
1002                                         *idx_ret = i;
1003                                 return &inode->ads_entries[i];
1004                         }
1005                 } while (++i != inode->num_ads);
1006         }
1007         return NULL;
1008 }
1009 #endif
1010
1011 #if defined(WITH_FUSE) || defined(WITH_NTFS_3G)
1012 /* 
1013  * Add an alternate stream entry to an inode and return a pointer to it, or NULL
1014  * if memory could not be allocated.
1015  */
1016 struct ads_entry *inode_add_ads(struct inode *inode, const char *stream_name)
1017 {
1018         u16 num_ads;
1019         struct ads_entry *ads_entries;
1020         struct ads_entry *new_entry;
1021
1022         DEBUG("Add alternate data stream \"%s\"", stream_name);
1023
1024         if (inode->num_ads >= 0xfffe) {
1025                 ERROR("Too many alternate data streams in one inode!");
1026                 return NULL;
1027         }
1028         num_ads = inode->num_ads + 1;
1029         ads_entries = REALLOC(inode->ads_entries,
1030                               num_ads * sizeof(inode->ads_entries[0]));
1031         if (!ads_entries) {
1032                 ERROR("Failed to allocate memory for new alternate data stream");
1033                 return NULL;
1034         }
1035         inode->ads_entries = ads_entries;
1036
1037         new_entry = &inode->ads_entries[num_ads - 1];
1038         if (init_ads_entry(new_entry, stream_name) != 0)
1039                 return NULL;
1040 #ifdef WITH_FUSE
1041         new_entry->stream_id = inode->next_stream_id++;
1042 #endif
1043         inode->num_ads = num_ads;
1044         return new_entry;
1045 }
1046 #endif
1047
1048 #ifdef WITH_FUSE
1049 /* Remove an alternate data stream from the inode  */
1050 void inode_remove_ads(struct inode *inode, u16 idx,
1051                       struct lookup_table *lookup_table)
1052 {
1053         struct ads_entry *ads_entry;
1054         struct lookup_table_entry *lte;
1055
1056         wimlib_assert(idx < inode->num_ads);
1057         wimlib_assert(inode->resolved);
1058
1059         ads_entry = &inode->ads_entries[idx];
1060
1061         DEBUG("Remove alternate data stream \"%s\"", ads_entry->stream_name_utf8);
1062
1063         lte = ads_entry->lte;
1064         if (lte)
1065                 lte_decrement_refcnt(lte, lookup_table);
1066
1067         destroy_ads_entry(ads_entry);
1068
1069         memcpy(&inode->ads_entries[idx],
1070                &inode->ads_entries[idx + 1],
1071                (inode->num_ads - idx - 1) * sizeof(inode->ads_entries[0]));
1072         inode->num_ads--;
1073 }
1074 #endif
1075
1076
1077
1078 /* 
1079  * Reads the alternate data stream entries for a dentry.
1080  *
1081  * @p:  Pointer to buffer that starts with the first alternate stream entry.
1082  *
1083  * @inode:      Inode to load the alternate data streams into.
1084  *                      @inode->num_ads must have been set to the number of
1085  *                      alternate data streams that are expected.
1086  *
1087  * @remaining_size:     Number of bytes of data remaining in the buffer pointed
1088  *                              to by @p.
1089  *
1090  * The format of the on-disk alternate stream entries is as follows:
1091  *
1092  * struct ads_entry_on_disk {
1093  *      u64  length;          // Length of the entry, in bytes.  This includes
1094  *                                  all fields (including the stream name and 
1095  *                                  null terminator if present, AND the padding!).
1096  *      u64  reserved;        // Seems to be unused
1097  *      u8   hash[20];        // SHA1 message digest of the uncompressed stream
1098  *      u16  stream_name_len; // Length of the stream name, in bytes
1099  *      char stream_name[];   // Stream name in UTF-16LE, @stream_name_len bytes long,
1100  *                                  not including null terminator
1101  *      u16  zero;            // UTF-16 null terminator for the stream name, NOT
1102  *                                  included in @stream_name_len.  Based on what
1103  *                                  I've observed from filenames in dentries,
1104  *                                  this field should not exist when
1105  *                                  (@stream_name_len == 0), but you can't
1106  *                                  actually tell because of the padding anyway
1107  *                                  (provided that the padding is zeroed, which
1108  *                                  it always seems to be).
1109  *      char padding[];       // Padding to make the size a multiple of 8 bytes.
1110  * };
1111  *
1112  * In addition, the entries are 8-byte aligned.
1113  *
1114  * Return 0 on success or nonzero on failure.  On success, inode->ads_entries
1115  * is set to an array of `struct ads_entry's of length inode->num_ads.  On
1116  * failure, @inode is not modified.
1117  */
1118 static int read_ads_entries(const u8 *p, struct inode *inode,
1119                             u64 remaining_size)
1120 {
1121         u16 num_ads;
1122         struct ads_entry *ads_entries;
1123         int ret;
1124
1125         num_ads = inode->num_ads;
1126         ads_entries = CALLOC(num_ads, sizeof(inode->ads_entries[0]));
1127         if (!ads_entries) {
1128                 ERROR("Could not allocate memory for %"PRIu16" "
1129                       "alternate data stream entries", num_ads);
1130                 return WIMLIB_ERR_NOMEM;
1131         }
1132
1133         for (u16 i = 0; i < num_ads; i++) {
1134                 struct ads_entry *cur_entry;
1135                 u64 length;
1136                 u64 length_no_padding;
1137                 u64 total_length;
1138                 size_t utf8_len;
1139                 const u8 *p_save = p;
1140
1141                 cur_entry = &ads_entries[i];
1142
1143         #ifdef WITH_FUSE
1144                 ads_entries[i].stream_id = i + 1;
1145         #endif
1146
1147                 /* Read the base stream entry, excluding the stream name. */
1148                 if (remaining_size < WIM_ADS_ENTRY_DISK_SIZE) {
1149                         ERROR("Stream entries go past end of metadata resource");
1150                         ERROR("(remaining_size = %"PRIu64")", remaining_size);
1151                         ret = WIMLIB_ERR_INVALID_DENTRY;
1152                         goto out_free_ads_entries;
1153                 }
1154
1155                 p = get_u64(p, &length);
1156                 p += 8; /* Skip the reserved field */
1157                 p = get_bytes(p, SHA1_HASH_SIZE, (u8*)cur_entry->hash);
1158                 p = get_u16(p, &cur_entry->stream_name_len);
1159
1160                 cur_entry->stream_name = NULL;
1161                 cur_entry->stream_name_utf8 = NULL;
1162
1163                 /* Length including neither the null terminator nor the padding
1164                  * */
1165                 length_no_padding = WIM_ADS_ENTRY_DISK_SIZE +
1166                                     cur_entry->stream_name_len;
1167
1168                 /* Length including the null terminator and the padding */
1169                 total_length = ((length_no_padding + 2) + 7) & ~7;
1170
1171                 wimlib_assert(total_length == ads_entry_total_length(cur_entry));
1172
1173                 if (remaining_size < length_no_padding) {
1174                         ERROR("Stream entries go past end of metadata resource");
1175                         ERROR("(remaining_size = %"PRIu64" bytes, "
1176                               "length_no_padding = %"PRIu64" bytes)",
1177                               remaining_size, length_no_padding);
1178                         ret = WIMLIB_ERR_INVALID_DENTRY;
1179                         goto out_free_ads_entries;
1180                 }
1181
1182                 /* The @length field in the on-disk ADS entry is expected to be
1183                  * equal to @total_length, which includes all of the entry and
1184                  * the padding that follows it to align the next ADS entry to an
1185                  * 8-byte boundary.  However, to be safe, we'll accept the
1186                  * length field as long as it's not less than the un-padded
1187                  * total length and not more than the padded total length. */
1188                 if (length < length_no_padding || length > total_length) {
1189                         ERROR("Stream entry has unexpected length "
1190                               "field (length field = %"PRIu64", "
1191                               "unpadded total length = %"PRIu64", "
1192                               "padded total length = %"PRIu64")",
1193                               length, length_no_padding, total_length);
1194                         ret = WIMLIB_ERR_INVALID_DENTRY;
1195                         goto out_free_ads_entries;
1196                 }
1197
1198                 if (cur_entry->stream_name_len) {
1199                         cur_entry->stream_name = MALLOC(cur_entry->stream_name_len);
1200                         if (!cur_entry->stream_name) {
1201                                 ret = WIMLIB_ERR_NOMEM;
1202                                 goto out_free_ads_entries;
1203                         }
1204                         get_bytes(p, cur_entry->stream_name_len,
1205                                   (u8*)cur_entry->stream_name);
1206                         cur_entry->stream_name_utf8 = utf16_to_utf8(cur_entry->stream_name,
1207                                                                     cur_entry->stream_name_len,
1208                                                                     &utf8_len);
1209                         cur_entry->stream_name_utf8_len = utf8_len;
1210
1211                         if (!cur_entry->stream_name_utf8) {
1212                                 ret = WIMLIB_ERR_NOMEM;
1213                                 goto out_free_ads_entries;
1214                         }
1215                 }
1216                 /* It's expected that the size of every ADS entry is a multiple
1217                  * of 8.  However, to be safe, I'm allowing the possibility of
1218                  * an ADS entry at the very end of the metadata resource ending
1219                  * un-aligned.  So although we still need to increment the input
1220                  * pointer by @total_length to reach the next ADS entry, it's
1221                  * possible that less than @total_length is actually remaining
1222                  * in the metadata resource. We should set the remaining size to
1223                  * 0 bytes if this happens. */
1224                 p = p_save + total_length;
1225                 if (remaining_size < total_length)
1226                         remaining_size = 0;
1227                 else
1228                         remaining_size -= total_length;
1229         }
1230         inode->ads_entries = ads_entries;
1231 #ifdef WITH_FUSE
1232         inode->next_stream_id = inode->num_ads + 1;
1233 #endif
1234         return 0;
1235 out_free_ads_entries:
1236         for (u16 i = 0; i < num_ads; i++)
1237                 destroy_ads_entry(&ads_entries[i]);
1238         FREE(ads_entries);
1239         return ret;
1240 }
1241
1242 /* 
1243  * Reads a directory entry, including all alternate data stream entries that
1244  * follow it, from the WIM image's metadata resource.
1245  *
1246  * @metadata_resource:  Buffer containing the uncompressed metadata resource.
1247  * @metadata_resource_len:   Length of the metadata resource.
1248  * @offset:     Offset of this directory entry in the metadata resource.
1249  * @dentry:     A `struct dentry' that will be filled in by this function.
1250  *
1251  * Return 0 on success or nonzero on failure.  On failure, @dentry have been
1252  * modified, bu it will be left with no pointers to any allocated buffers.
1253  * On success, the dentry->length field must be examined.  If zero, this was a
1254  * special "end of directory" dentry and not a real dentry.  If nonzero, this
1255  * was a real dentry.
1256  */
1257 int read_dentry(const u8 metadata_resource[], u64 metadata_resource_len, 
1258                 u64 offset, struct dentry *dentry)
1259 {
1260         const u8 *p;
1261         u64 calculated_size;
1262         char *file_name = NULL;
1263         char *file_name_utf8 = NULL;
1264         char *short_name = NULL;
1265         u16 short_name_len;
1266         u16 file_name_len;
1267         size_t file_name_utf8_len = 0;
1268         int ret;
1269         struct inode *inode = NULL;
1270
1271         dentry_common_init(dentry);
1272
1273         /*Make sure the dentry really fits into the metadata resource.*/
1274         if (offset + 8 > metadata_resource_len || offset + 8 < offset) {
1275                 ERROR("Directory entry starting at %"PRIu64" ends past the "
1276                       "end of the metadata resource (size %"PRIu64")",
1277                       offset, metadata_resource_len);
1278                 return WIMLIB_ERR_INVALID_DENTRY;
1279         }
1280
1281         /* Before reading the whole dentry, we need to read just the length.
1282          * This is because a dentry of length 8 (that is, just the length field)
1283          * terminates the list of sibling directory entries. */
1284
1285         p = get_u64(&metadata_resource[offset], &dentry->length);
1286
1287         /* A zero length field (really a length of 8, since that's how big the
1288          * directory entry is...) indicates that this is the end of directory
1289          * dentry.  We do not read it into memory as an actual dentry, so just
1290          * return successfully in that case. */
1291         if (dentry->length == 0)
1292                 return 0;
1293
1294         /* If the dentry does not overflow the metadata resource buffer and is
1295          * not too short, read the rest of it (excluding the alternate data
1296          * streams, but including the file name and short name variable-length
1297          * fields) into memory. */
1298         if (offset + dentry->length >= metadata_resource_len
1299             || offset + dentry->length < offset)
1300         {
1301                 ERROR("Directory entry at offset %"PRIu64" and with size "
1302                       "%"PRIu64" ends past the end of the metadata resource "
1303                       "(size %"PRIu64")",
1304                       offset, dentry->length, metadata_resource_len);
1305                 return WIMLIB_ERR_INVALID_DENTRY;
1306         }
1307
1308         if (dentry->length < WIM_DENTRY_DISK_SIZE) {
1309                 ERROR("Directory entry has invalid length of %"PRIu64" bytes",
1310                       dentry->length);
1311                 return WIMLIB_ERR_INVALID_DENTRY;
1312         }
1313
1314         inode = new_timeless_inode();
1315         if (!inode)
1316                 return WIMLIB_ERR_NOMEM;
1317
1318         p = get_u32(p, &inode->attributes);
1319         p = get_u32(p, (u32*)&inode->security_id);
1320         p = get_u64(p, &dentry->subdir_offset);
1321
1322         /* 2 unused fields */
1323         p += 2 * sizeof(u64);
1324         /*p = get_u64(p, &dentry->unused1);*/
1325         /*p = get_u64(p, &dentry->unused2);*/
1326
1327         p = get_u64(p, &inode->creation_time);
1328         p = get_u64(p, &inode->last_access_time);
1329         p = get_u64(p, &inode->last_write_time);
1330
1331         p = get_bytes(p, SHA1_HASH_SIZE, inode->hash);
1332         
1333         /*
1334          * I don't know what's going on here.  It seems like M$ screwed up the
1335          * reparse points, then put the fields in the same place and didn't
1336          * document it.  The WIM_HDR_FLAG_RP_FIX flag in the WIM header might
1337          * have something to do with this, but it's not documented.
1338          */
1339         if (inode->attributes & FILE_ATTRIBUTE_REPARSE_POINT) {
1340                 /* ??? */
1341                 p += 4;
1342                 p = get_u32(p, &inode->reparse_tag);
1343                 p += 4;
1344         } else {
1345                 p = get_u32(p, &inode->reparse_tag);
1346                 p = get_u64(p, &inode->ino);
1347         }
1348
1349         /* By the way, the reparse_reserved field does not actually exist (at
1350          * least when the file is not a reparse point) */
1351         
1352         p = get_u16(p, &inode->num_ads);
1353
1354         p = get_u16(p, &short_name_len);
1355         p = get_u16(p, &file_name_len);
1356
1357         /* We now know the length of the file name and short name.  Make sure
1358          * the length of the dentry is large enough to actually hold them. 
1359          *
1360          * The calculated length here is unaligned to allow for the possibility
1361          * that the dentry->length names an unaligned length, although this
1362          * would be unexpected. */
1363         calculated_size = __dentry_correct_length_unaligned(file_name_len,
1364                                                             short_name_len);
1365
1366         if (dentry->length < calculated_size) {
1367                 ERROR("Unexpected end of directory entry! (Expected "
1368                       "at least %"PRIu64" bytes, got %"PRIu64" bytes. "
1369                       "short_name_len = %hu, file_name_len = %hu)", 
1370                       calculated_size, dentry->length,
1371                       short_name_len, file_name_len);
1372                 return WIMLIB_ERR_INVALID_DENTRY;
1373         }
1374
1375         /* Read the filename if present.  Note: if the filename is empty, there
1376          * is no null terminator following it. */
1377         if (file_name_len) {
1378                 file_name = MALLOC(file_name_len);
1379                 if (!file_name) {
1380                         ERROR("Failed to allocate %hu bytes for dentry file name",
1381                               file_name_len);
1382                         return WIMLIB_ERR_NOMEM;
1383                 }
1384                 p = get_bytes(p, file_name_len, file_name);
1385
1386                 /* Convert filename to UTF-8. */
1387                 file_name_utf8 = utf16_to_utf8(file_name, file_name_len, 
1388                                                &file_name_utf8_len);
1389
1390                 if (!file_name_utf8) {
1391                         ERROR("Failed to allocate memory to convert UTF-16 "
1392                               "filename (%hu bytes) to UTF-8", file_name_len);
1393                         ret = WIMLIB_ERR_NOMEM;
1394                         goto out_free_file_name;
1395                 }
1396                 if (*(u16*)p)
1397                         WARNING("Expected two zero bytes following the file name "
1398                                 "`%s', but found non-zero bytes", file_name_utf8);
1399                 p += 2;
1400         }
1401
1402         /* Align the calculated size */
1403         calculated_size = (calculated_size + 7) & ~7;
1404
1405         if (dentry->length > calculated_size) {
1406                 /* Weird; the dentry says it's longer than it should be.  Note
1407                  * that the length field does NOT include the size of the
1408                  * alternate stream entries. */
1409
1410                 /* Strangely, some directory entries inexplicably have a little
1411                  * over 70 bytes of extra data.  The exact amount of data seems
1412                  * to be 72 bytes, but it is aligned on the next 8-byte
1413                  * boundary.  It does NOT seem to be alternate data stream
1414                  * entries.  Here's an example of the aligned data:
1415                  *
1416                  * 01000000 40000000 6c786bba c58ede11 b0bb0026 1870892a b6adb76f
1417                  * e63a3e46 8fca8653 0d2effa1 6c786bba c58ede11 b0bb0026 1870892a
1418                  * 00000000 00000000 00000000 00000000
1419                  *
1420                  * Here's one interpretation of how the data is laid out.
1421                  *
1422                  * struct unknown {
1423                  *      u32 field1; (always 0x00000001)
1424                  *      u32 field2; (always 0x40000000)
1425                  *      u8  data[48]; (???)
1426                  *      u64 reserved1; (always 0)
1427                  *      u64 reserved2; (always 0)
1428                  * };*/
1429                 DEBUG("Dentry for file or directory `%s' has %zu extra "
1430                       "bytes of data",
1431                       file_name_utf8, dentry->length - calculated_size);
1432         }
1433
1434         /* Read the short filename if present.  Note: if there is no short
1435          * filename, there is no null terminator following it. */
1436         if (short_name_len) {
1437                 short_name = MALLOC(short_name_len);
1438                 if (!short_name) {
1439                         ERROR("Failed to allocate %hu bytes for short filename",
1440                               short_name_len);
1441                         ret = WIMLIB_ERR_NOMEM;
1442                         goto out_free_file_name_utf8;
1443                 }
1444
1445                 p = get_bytes(p, short_name_len, short_name);
1446                 if (*(u16*)p)
1447                         WARNING("Expected two zero bytes following the file name "
1448                                 "`%s', but found non-zero bytes", file_name_utf8);
1449                 p += 2;
1450         }
1451
1452         /* 
1453          * Read the alternate data streams, if present.  dentry->num_ads tells
1454          * us how many they are, and they will directly follow the dentry
1455          * on-disk.
1456          *
1457          * Note that each alternate data stream entry begins on an 8-byte
1458          * aligned boundary, and the alternate data stream entries are NOT
1459          * included in the dentry->length field for some reason.
1460          */
1461         if (inode->num_ads != 0) {
1462                 if (calculated_size > metadata_resource_len - offset) {
1463                         ERROR("Not enough space in metadata resource for "
1464                               "alternate stream entries");
1465                         ret = WIMLIB_ERR_INVALID_DENTRY;
1466                         goto out_free_short_name;
1467                 }
1468                 ret = read_ads_entries(&metadata_resource[offset + calculated_size],
1469                                        inode,
1470                                        metadata_resource_len - offset - calculated_size);
1471                 if (ret != 0)
1472                         goto out_free_short_name;
1473         }
1474
1475         /* We've read all the data for this dentry.  Set the names and their
1476          * lengths, and we've done. */
1477         dentry->d_inode              = inode;
1478         dentry->file_name          = file_name;
1479         dentry->file_name_utf8     = file_name_utf8;
1480         dentry->short_name         = short_name;
1481         dentry->file_name_len      = file_name_len;
1482         dentry->file_name_utf8_len = file_name_utf8_len;
1483         dentry->short_name_len     = short_name_len;
1484         return 0;
1485 out_free_short_name:
1486         FREE(short_name);
1487 out_free_file_name_utf8:
1488         FREE(file_name_utf8);
1489 out_free_file_name:
1490         FREE(file_name);
1491 out_free_inode:
1492         free_inode(inode);
1493         return ret;
1494 }
1495
1496 /* Reads the children of a dentry, and all their children, ..., etc. from the
1497  * metadata resource and into the dentry tree.
1498  *
1499  * @metadata_resource:  An array that contains the uncompressed metadata
1500  *                      resource for the WIM file.
1501  *
1502  * @metadata_resource_len:  The length of the uncompressed metadata resource, in
1503  *                          bytes.
1504  *
1505  * @dentry:     A pointer to a `struct dentry' that is the root of the directory
1506  *              tree and has already been read from the metadata resource.  It
1507  *              does not need to be the real root because this procedure is
1508  *              called recursively.
1509  *
1510  * @return:     Zero on success, nonzero on failure.
1511  */
1512 int read_dentry_tree(const u8 metadata_resource[], u64 metadata_resource_len,
1513                      struct dentry *dentry)
1514 {
1515         u64 cur_offset = dentry->subdir_offset;
1516         struct dentry *prev_child = NULL;
1517         struct dentry *first_child = NULL;
1518         struct dentry *child;
1519         struct dentry cur_child;
1520         int ret;
1521
1522         /* 
1523          * If @dentry has no child dentries, nothing more needs to be done for
1524          * this branch.  This is the case for regular files, symbolic links, and
1525          * *possibly* empty directories (although an empty directory may also
1526          * have one child dentry that is the special end-of-directory dentry)
1527          */
1528         if (cur_offset == 0)
1529                 return 0;
1530
1531         /* Find and read all the children of @dentry. */
1532         while (1) {
1533
1534                 /* Read next child of @dentry into @cur_child. */
1535                 ret = read_dentry(metadata_resource, metadata_resource_len, 
1536                                   cur_offset, &cur_child);
1537                 if (ret != 0)
1538                         break;
1539
1540                 /* Check for end of directory. */
1541                 if (cur_child.length == 0)
1542                         break;
1543
1544                 /* Not end of directory.  Allocate this child permanently and
1545                  * link it to the parent and previous child. */
1546                 child = MALLOC(sizeof(struct dentry));
1547                 if (!child) {
1548                         ERROR("Failed to allocate %zu bytes for new dentry",
1549                               sizeof(struct dentry));
1550                         ret = WIMLIB_ERR_NOMEM;
1551                         break;
1552                 }
1553                 memcpy(child, &cur_child, sizeof(struct dentry));
1554
1555                 if (prev_child) {
1556                         prev_child->next = child;
1557                         child->prev = prev_child;
1558                 } else {
1559                         first_child = child;
1560                 }
1561
1562                 child->parent = dentry;
1563                 prev_child = child;
1564                 inode_add_dentry(child, child->d_inode);
1565
1566                 /* If there are children of this child, call this procedure
1567                  * recursively. */
1568                 if (child->subdir_offset != 0) {
1569                         ret = read_dentry_tree(metadata_resource, 
1570                                                metadata_resource_len, child);
1571                         if (ret != 0)
1572                                 break;
1573                 }
1574
1575                 /* Advance to the offset of the next child.  Note: We need to
1576                  * advance by the TOTAL length of the dentry, not by the length
1577                  * child->length, which although it does take into account the
1578                  * padding, it DOES NOT take into account alternate stream
1579                  * entries. */
1580                 cur_offset += dentry_total_length(child);
1581         }
1582
1583         /* Link last child to first one, and set parent's children pointer to
1584          * the first child.  */
1585         if (prev_child) {
1586                 prev_child->next = first_child;
1587                 first_child->prev = prev_child;
1588         }
1589         dentry->d_inode->children = first_child;
1590         return ret;
1591 }
1592
1593 /* 
1594  * Writes a WIM dentry to an output buffer.
1595  *
1596  * @dentry:  The dentry structure.
1597  * @p:       The memory location to write the data to.
1598  * @return:  Pointer to the byte after the last byte we wrote as part of the
1599  *              dentry.
1600  */
1601 static u8 *write_dentry(const struct dentry *dentry, u8 *p)
1602 {
1603         u8 *orig_p = p;
1604         const u8 *hash;
1605         const struct inode *inode = dentry->d_inode;
1606
1607         /* We calculate the correct length of the dentry ourselves because the
1608          * dentry->length field may been set to an unexpected value from when we
1609          * read the dentry in (for example, there may have been unknown data
1610          * appended to the end of the dentry...) */
1611         u64 length = dentry_correct_length(dentry);
1612
1613         p = put_u64(p, length);
1614         p = put_u32(p, inode->attributes);
1615         p = put_u32(p, inode->security_id);
1616         p = put_u64(p, dentry->subdir_offset);
1617         p = put_u64(p, 0); /* unused1 */
1618         p = put_u64(p, 0); /* unused2 */
1619         p = put_u64(p, inode->creation_time);
1620         p = put_u64(p, inode->last_access_time);
1621         p = put_u64(p, inode->last_write_time);
1622         hash = inode_stream_hash(inode, 0);
1623         p = put_bytes(p, SHA1_HASH_SIZE, hash);
1624         if (inode->attributes & FILE_ATTRIBUTE_REPARSE_POINT) {
1625                 p = put_zeroes(p, 4);
1626                 p = put_u32(p, inode->reparse_tag);
1627                 p = put_zeroes(p, 4);
1628         } else {
1629                 u64 link_group_id;
1630                 p = put_u32(p, 0);
1631                 if (inode->link_count == 1)
1632                         link_group_id = 0;
1633                 else
1634                         link_group_id = inode->ino;
1635                 p = put_u64(p, link_group_id);
1636         }
1637         p = put_u16(p, inode->num_ads);
1638         p = put_u16(p, dentry->short_name_len);
1639         p = put_u16(p, dentry->file_name_len);
1640         if (dentry->file_name_len) {
1641                 p = put_bytes(p, dentry->file_name_len, (u8*)dentry->file_name);
1642                 p = put_u16(p, 0); /* filename padding, 2 bytes. */
1643         }
1644         if (dentry->short_name) {
1645                 p = put_bytes(p, dentry->short_name_len, (u8*)dentry->short_name);
1646                 p = put_u16(p, 0); /* short name padding, 2 bytes */
1647         }
1648
1649         /* Align to 8-byte boundary */
1650         wimlib_assert(length >= (p - orig_p) && length - (p - orig_p) <= 7);
1651         p = put_zeroes(p, length - (p - orig_p));
1652
1653         /* Write the alternate data streams, if there are any.  Please see
1654          * read_ads_entries() for comments about the format of the on-disk
1655          * alternate data stream entries. */
1656         for (u16 i = 0; i < inode->num_ads; i++) {
1657                 p = put_u64(p, ads_entry_total_length(&inode->ads_entries[i]));
1658                 p = put_u64(p, 0); /* Unused */
1659                 hash = inode_stream_hash(inode, i + 1);
1660                 p = put_bytes(p, SHA1_HASH_SIZE, hash);
1661                 p = put_u16(p, inode->ads_entries[i].stream_name_len);
1662                 if (inode->ads_entries[i].stream_name_len) {
1663                         p = put_bytes(p, inode->ads_entries[i].stream_name_len,
1664                                          (u8*)inode->ads_entries[i].stream_name);
1665                         p = put_u16(p, 0);
1666                 }
1667                 p = put_zeroes(p, (8 - (p - orig_p) % 8) % 8);
1668         }
1669         wimlib_assert(p - orig_p == __dentry_total_length(dentry, length));
1670         return p;
1671 }
1672
1673 /* Recursive function that writes a dentry tree rooted at @parent, not including
1674  * @parent itself, which has already been written. */
1675 static u8 *write_dentry_tree_recursive(const struct dentry *parent, u8 *p)
1676 {
1677         const struct dentry *child;
1678
1679         /* Nothing to do if this dentry has no children. */
1680         if (parent->subdir_offset == 0)
1681                 return p;
1682
1683         /* Write child dentries and end-of-directory entry. 
1684          *
1685          * Note: we need to write all of this dentry's children before
1686          * recursively writing the directory trees rooted at each of the child
1687          * dentries, since the on-disk dentries for a dentry's children are
1688          * always located at consecutive positions in the metadata resource! */
1689         child = parent->d_inode->children;
1690         if (child) {
1691                 do {
1692                         p = write_dentry(child, p);
1693                         child = child->next;
1694                 } while (child != parent->d_inode->children);
1695         }
1696
1697         /* write end of directory entry */
1698         p = put_u64(p, 0);
1699
1700         /* Recurse on children. */
1701         if (child) {
1702                 do {
1703                         p = write_dentry_tree_recursive(child, p);
1704                         child = child->next;
1705                 } while (child != parent->d_inode->children);
1706         }
1707         return p;
1708 }
1709
1710 /* Writes a directory tree to the metadata resource.
1711  *
1712  * @root:       Root of the dentry tree.
1713  * @p:          Pointer to a buffer with enough space for the dentry tree.
1714  *
1715  * Returns pointer to the byte after the last byte we wrote.
1716  */
1717 u8 *write_dentry_tree(const struct dentry *root, u8 *p)
1718 {
1719         wimlib_assert(dentry_is_root(root));
1720
1721         /* If we're the root dentry, we have no parent that already
1722          * wrote us, so we need to write ourselves. */
1723         p = write_dentry(root, p);
1724
1725         /* Write end of directory entry after the root dentry just to be safe;
1726          * however the root dentry obviously cannot have any siblings. */
1727         p = put_u64(p, 0);
1728
1729         /* Recursively write the rest of the dentry tree. */
1730         return write_dentry_tree_recursive(root, p);
1731 }
1732