]> wimlib.net Git - wimlib/blob - src/dentry.c
mount changes (IN PROGRESS)
[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  *
14  * Copyright (C) 2010 Carl Thijssen
15  * Copyright (C) 2012 Eric Biggers
16  *
17  * This file is part of wimlib, a library for working with WIM files.
18  *
19  * wimlib is free software; you can redistribute it and/or modify it under the
20  * terms of the GNU Lesser General Public License as published by the Free
21  * Software Foundation; either version 2.1 of the License, or (at your option)
22  * any later version.
23  *
24  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
25  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
26  * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
27  * details.
28  *
29  * You should have received a copy of the GNU Lesser General Public License
30  * along with wimlib; if not, see http://www.gnu.org/licenses/.
31  */
32
33 #include "wimlib_internal.h"
34 #include "dentry.h"
35 #include "io.h"
36 #include "timestamp.h"
37 #include "lookup_table.h"
38 #include "sha1.h"
39 #include <unistd.h>
40 #include <sys/stat.h>
41
42 /*
43  * Returns true if @dentry has the UTF-8 file name @name that has length
44  * @name_len.
45  */
46 static bool dentry_has_name(const struct dentry *dentry, const char *name, 
47                             size_t name_len)
48 {
49         if (dentry->file_name_utf8_len != name_len)
50                 return false;
51         return memcmp(dentry->file_name_utf8, name, name_len) == 0;
52 }
53
54 static bool ads_entry_has_name(const struct ads_entry *entry,
55                                const char *name, size_t name_len)
56 {
57         if (entry->stream_name_utf8_len != name_len)
58                 return false;
59         return memcmp(entry->stream_name_utf8, name, name_len) == 0;
60 }
61
62 /* Real length of a dentry, including the alternate data stream entries, which
63  * are not included in the dentry->length field... */
64 u64 dentry_total_length(const struct dentry *dentry)
65 {
66         u64 length = (dentry->length + 7) & ~7;
67         for (u16 i = 0 ; i < dentry->num_ads; i++)
68                 length += ads_entry_length(&dentry->ads_entries[i]);
69         return length;
70 }
71
72 /* Transfers file attributes from a `stat' buffer to a struct dentry. */
73 void stbuf_to_dentry(const struct stat *stbuf, struct dentry *dentry)
74 {
75         if (S_ISLNK(stbuf->st_mode)) {
76                 dentry->attributes = FILE_ATTRIBUTE_REPARSE_POINT;
77                 dentry->reparse_tag = WIM_IO_REPARSE_TAG_SYMLINK;
78         } else if (S_ISDIR(stbuf->st_mode)) {
79                 dentry->attributes = FILE_ATTRIBUTE_DIRECTORY;
80         } else {
81                 dentry->attributes = FILE_ATTRIBUTE_NORMAL;
82         }
83 }
84
85 /* Transfers file attributes from a struct dentry to a `stat' buffer. */
86 void dentry_to_stbuf(const struct dentry *dentry, struct stat *stbuf, 
87                      const struct lookup_table *table)
88 {
89         struct lookup_table_entry *lte;
90
91         if (dentry_is_symlink(dentry))
92                 stbuf->st_mode = S_IFLNK | 0777;
93         else if (dentry_is_directory(dentry))
94                 stbuf->st_mode = S_IFDIR | 0755;
95         else
96                 stbuf->st_mode = S_IFREG | 0644;
97
98         if (table)
99                 lte = __lookup_resource(table, dentry_hash(dentry));
100         else
101                 lte = NULL;
102
103         if (lte) {
104                 stbuf->st_nlink = lte->refcnt;
105                 stbuf->st_size = lte->resource_entry.original_size;
106         } else {
107                 stbuf->st_nlink = 1;
108                 stbuf->st_size = 0;
109         }
110         stbuf->st_uid     = getuid();
111         stbuf->st_gid     = getgid();
112         stbuf->st_atime   = ms_timestamp_to_unix(dentry->last_access_time);
113         stbuf->st_mtime   = ms_timestamp_to_unix(dentry->last_write_time);
114         stbuf->st_ctime   = ms_timestamp_to_unix(dentry->creation_time);
115         stbuf->st_blocks  = (stbuf->st_size + 511) / 512;
116 }
117
118 /* Makes all timestamp fields for the dentry be the current time. */
119 void dentry_update_all_timestamps(struct dentry *dentry)
120 {
121         u64 now = get_timestamp();
122         dentry->creation_time    = now;
123         dentry->last_access_time = now;
124         dentry->last_write_time  = now;
125 }
126
127 struct ads_entry *dentry_get_ads_entry(struct dentry *dentry,
128                                        const char *stream_name)
129 {
130         size_t stream_name_len = strlen(stream_name);
131         if (!stream_name)
132                 return NULL;
133         for (u16 i = 0; i < dentry->num_ads; i++)
134                 if (ads_entry_has_name(&dentry->ads_entries[i],
135                                        stream_name, stream_name_len))
136                         return &dentry->ads_entries[i];
137         return NULL;
138 }
139
140 /* Add an alternate stream entry to a dentry and return a pointer to it, or NULL
141  * on failure. */
142 struct ads_entry *dentry_add_ads(struct dentry *dentry, const char *stream_name)
143 {
144         u16 num_ads = dentry->num_ads + 1;
145         struct ads_entry *ads_entries;
146         struct ads_entry *new_entry;
147         if (num_ads == 0xffff)
148                 return NULL;
149         ads_entries = MALLOC(num_ads * sizeof(struct ads_entry));
150         if (!ads_entries)
151                 return NULL;
152
153         new_entry = &ads_entries[num_ads - 1];
154         if (change_ads_name(new_entry, stream_name) != 0) {
155                 FREE(ads_entries);
156                 return NULL;
157         }
158
159         memcpy(ads_entries, dentry->ads_entries,
160                (num_ads - 1) * sizeof(struct ads_entry));
161         FREE(dentry->ads_entries);
162         dentry->ads_entries = ads_entries;
163         dentry->num_ads = num_ads;
164         return memset(new_entry, 0, sizeof(struct ads_entry));
165 }
166
167 void dentry_remove_ads(struct dentry *dentry, struct ads_entry *sentry)
168 {
169         destroy_ads_entry(sentry);
170         memcpy(sentry, sentry + 1,
171                (dentry->num_ads - (sentry - dentry->ads_entries))
172                  * sizeof(struct ads_entry));
173         dentry->num_ads--;
174 }
175
176 /* 
177  * Calls a function on all directory entries in a directory tree.  It is called
178  * on a parent before its children.
179  */
180 int for_dentry_in_tree(struct dentry *root, 
181                        int (*visitor)(struct dentry*, void*), void *arg)
182 {
183         int ret;
184         struct dentry *child;
185
186         ret = visitor(root, arg);
187
188         if (ret != 0)
189                 return ret;
190
191         child = root->children;
192
193         if (!child)
194                 return 0;
195
196         do {
197                 ret = for_dentry_in_tree(child, visitor, arg);
198                 if (ret != 0)
199                         return ret;
200                 child = child->next;
201         } while (child != root->children);
202         return 0;
203 }
204
205 /* 
206  * Like for_dentry_in_tree(), but the visitor function is always called on a
207  * dentry's children before on itself.
208  */
209 int for_dentry_in_tree_depth(struct dentry *root, 
210                              int (*visitor)(struct dentry*, void*), void *arg)
211 {
212         int ret;
213         struct dentry *child;
214         struct dentry *next;
215
216         child = root->children;
217         if (child) {
218                 do {
219                         next = child->next;
220                         ret = for_dentry_in_tree_depth(child, visitor, arg);
221                         if (ret != 0)
222                                 return ret;
223                         child = next;
224                 } while (child != root->children);
225         }
226         return visitor(root, arg);
227 }
228
229 /* 
230  * Calculate the full path of @dentry, based on its parent's full path and on
231  * its UTF-8 file name. 
232  */
233 int calculate_dentry_full_path(struct dentry *dentry, void *ignore)
234 {
235         char *full_path;
236         u32 full_path_len;
237         if (dentry_is_root(dentry)) {
238                 full_path = MALLOC(2);
239                 if (!full_path)
240                         goto oom;
241                 full_path[0] = '/';
242                 full_path[1] = '\0';
243                 full_path_len = 1;
244         } else {
245                 char *parent_full_path;
246                 u32 parent_full_path_len;
247                 const struct dentry *parent = dentry->parent;
248
249                 if (dentry_is_root(parent)) {
250                         parent_full_path = "";
251                         parent_full_path_len = 0;
252                 } else {
253                         parent_full_path = parent->full_path_utf8;
254                         parent_full_path_len = parent->full_path_utf8_len;
255                 }
256
257                 full_path_len = parent_full_path_len + 1 +
258                                 dentry->file_name_utf8_len;
259                 full_path = MALLOC(full_path_len + 1);
260                 if (!full_path)
261                         goto oom;
262
263                 memcpy(full_path, parent_full_path, parent_full_path_len);
264                 full_path[parent_full_path_len] = '/';
265                 memcpy(full_path + parent_full_path_len + 1,
266                        dentry->file_name_utf8,
267                        dentry->file_name_utf8_len);
268                 full_path[full_path_len] = '\0';
269         }
270         FREE(dentry->full_path_utf8);
271         dentry->full_path_utf8 = full_path;
272         dentry->full_path_utf8_len = full_path_len;
273         return 0;
274 oom:
275         ERROR("Out of memory while calculating dentry full path");
276         return WIMLIB_ERR_NOMEM;
277 }
278
279 /* 
280  * Recursively calculates the subdir offsets for a directory tree. 
281  *
282  * @dentry:  The root of the directory tree.
283  * @subdir_offset_p:  The current subdirectory offset; i.e., the subdirectory
284  *      offset for @dentry. 
285  */
286 void calculate_subdir_offsets(struct dentry *dentry, u64 *subdir_offset_p)
287 {
288         struct dentry *child;
289
290         child = dentry->children;
291         dentry->subdir_offset = *subdir_offset_p;
292         if (child) {
293
294                 /* Advance the subdir offset by the amount of space the children
295                  * of this dentry take up. */
296                 do {
297                         *subdir_offset_p += dentry_total_length(child);
298                         child = child->next;
299                 } while (child != dentry->children);
300
301                 /* End-of-directory dentry on disk. */
302                 *subdir_offset_p += 8;
303
304                 /* Recursively call calculate_subdir_offsets() on all the
305                  * children. */
306                 do {
307                         calculate_subdir_offsets(child, subdir_offset_p);
308                         child = child->next;
309                 } while (child != dentry->children);
310         } else {
311                 /* On disk, childless directories have a valid subdir_offset
312                  * that points to an 8-byte end-of-directory dentry.  Regular
313                  * files have a subdir_offset of 0. */
314                 if (dentry_is_directory(dentry))
315                         *subdir_offset_p += 8;
316                 else
317                         dentry->subdir_offset = 0;
318         }
319 }
320
321
322 /* Returns the child of @dentry that has the file name @name.  
323  * Returns NULL if no child has the name. */
324 struct dentry *get_dentry_child_with_name(const struct dentry *dentry, 
325                                                         const char *name)
326 {
327         struct dentry *child;
328         size_t name_len;
329         
330         child = dentry->children;
331         if (child) {
332                 name_len = strlen(name);
333                 do {
334                         if (dentry_has_name(child, name, name_len))
335                                 return child;
336                         child = child->next;
337                 } while (child != dentry->children);
338         }
339         return NULL;
340 }
341
342 /* Retrieves the dentry that has the UTF-8 @path relative to the dentry
343  * @cur_dir.  Returns NULL if no dentry having the path is found. */
344 static struct dentry *get_dentry_relative_path(struct dentry *cur_dir, const char *path)
345 {
346         struct dentry *child;
347         size_t base_len;
348         const char *new_path;
349
350         if (*path == '\0')
351                 return cur_dir;
352
353         child = cur_dir->children;
354         if (child) {
355                 new_path = path_next_part(path, &base_len);
356                 do {
357                         if (dentry_has_name(child, path, base_len))
358                                 return get_dentry_relative_path(child, new_path);
359                         child = child->next;
360                 } while (child != cur_dir->children);
361         }
362         return NULL;
363 }
364
365 /* Returns the dentry corresponding to the UTF-8 @path, or NULL if there is no
366  * such dentry. */
367 struct dentry *get_dentry(WIMStruct *w, const char *path)
368 {
369         struct dentry *root = wim_root_dentry(w);
370         while (*path == '/')
371                 path++;
372         return get_dentry_relative_path(root, path);
373 }
374
375 /* Returns the parent directory for the @path. */
376 struct dentry *get_parent_dentry(WIMStruct *w, const char *path)
377 {
378         size_t path_len = strlen(path);
379         char buf[path_len + 1];
380
381         memcpy(buf, path, path_len + 1);
382
383         to_parent_name(buf, path_len);
384
385         return get_dentry(w, buf);
386 }
387
388 /* Prints the full path of a dentry. */
389 int print_dentry_full_path(struct dentry *dentry, void *ignore)
390 {
391         if (dentry->full_path_utf8)
392                 puts(dentry->full_path_utf8);
393         return 0;
394 }
395
396 struct file_attr_flag {
397         u32 flag;
398         const char *name;
399 };
400 struct file_attr_flag file_attr_flags[] = {
401         {FILE_ATTRIBUTE_READONLY,               "READONLY"},
402         {FILE_ATTRIBUTE_HIDDEN,         "HIDDEN"},
403         {FILE_ATTRIBUTE_SYSTEM,         "SYSTEM"},
404         {FILE_ATTRIBUTE_DIRECTORY,              "DIRECTORY"},
405         {FILE_ATTRIBUTE_ARCHIVE,                "ARCHIVE"},
406         {FILE_ATTRIBUTE_DEVICE,         "DEVICE"},
407         {FILE_ATTRIBUTE_NORMAL,         "NORMAL"},
408         {FILE_ATTRIBUTE_TEMPORARY,              "TEMPORARY"},
409         {FILE_ATTRIBUTE_SPARSE_FILE,    "SPARSE_FILE"},
410         {FILE_ATTRIBUTE_REPARSE_POINT,  "REPARSE_POINT"},
411         {FILE_ATTRIBUTE_COMPRESSED,             "COMPRESSED"},
412         {FILE_ATTRIBUTE_OFFLINE,                "OFFLINE"},
413         {FILE_ATTRIBUTE_NOT_CONTENT_INDEXED,"NOT_CONTENT_INDEXED"},
414         {FILE_ATTRIBUTE_ENCRYPTED,              "ENCRYPTED"},
415         {FILE_ATTRIBUTE_VIRTUAL,                "VIRTUAL"},
416 };
417
418 /* Prints a directory entry.  @lookup_table is a pointer to the lookup table, or
419  * NULL if the resource entry for the dentry is not to be printed. */
420 int print_dentry(struct dentry *dentry, void *lookup_table)
421 {
422         struct lookup_table_entry *lte;
423         unsigned i;
424
425         printf("[DENTRY]\n");
426         printf("Length            = %"PRIu64"\n", dentry->length);
427         printf("Attributes        = 0x%x\n", dentry->attributes);
428         for (i = 0; i < ARRAY_LEN(file_attr_flags); i++)
429                 if (file_attr_flags[i].flag & dentry->attributes)
430                         printf("    FILE_ATTRIBUTE_%s is set\n",
431                                 file_attr_flags[i].name);
432         printf("Security ID       = %d\n", dentry->security_id);
433         printf("Subdir offset     = %"PRIu64"\n", dentry->subdir_offset);
434         /*printf("Unused1           = 0x%"PRIu64"\n", dentry->unused1);*/
435         /*printf("Unused2           = %"PRIu64"\n", dentry->unused2);*/
436         printf("Creation Time     = 0x%"PRIx64"\n", dentry->creation_time);
437         printf("Last Access Time  = 0x%"PRIx64"\n", dentry->last_access_time);
438         printf("Last Write Time   = 0x%"PRIx64"\n", dentry->last_write_time);
439         printf("Hash              = 0x"); 
440         print_hash(dentry->hash); 
441         putchar('\n');
442         printf("Reparse Tag       = 0x%"PRIx32"\n", dentry->reparse_tag);
443         printf("Hard Link Group   = 0x%"PRIx64"\n", dentry->hard_link);
444         printf("Number of Alternate Data Streams = %hu\n", dentry->num_ads);
445         printf("Filename          = \"");
446         print_string(dentry->file_name, dentry->file_name_len);
447         puts("\"");
448         printf("Filename Length   = %hu\n", dentry->file_name_len);
449         printf("Filename (UTF-8)  = \"%s\"\n", dentry->file_name_utf8);
450         printf("Filename (UTF-8) Length = %hu\n", dentry->file_name_utf8_len);
451         printf("Short Name        = \"");
452         print_string(dentry->short_name, dentry->short_name_len);
453         puts("\"");
454         printf("Short Name Length = %hu\n", dentry->short_name_len);
455         printf("Full Path (UTF-8) = \"%s\"\n", dentry->full_path_utf8);
456         if (lookup_table && (lte = __lookup_resource(lookup_table, dentry->hash)))
457                 print_lookup_table_entry(lte, NULL);
458         else
459                 putchar('\n');
460         for (u16 i = 0; i < dentry->num_ads; i++) {
461                 printf("[Alternate Stream Entry %u]\n", i);
462                 printf("Name = \"%s\"\n", dentry->ads_entries[i].stream_name_utf8);
463                 printf("Name Length (UTF-16) = %u\n",
464                                 dentry->ads_entries[i].stream_name_len);
465                 printf("Hash              = 0x"); 
466                 print_hash(dentry->ads_entries[i].hash); 
467                 if (lookup_table &&
468                      (lte = __lookup_resource(lookup_table,
469                                               dentry->ads_entries[i].hash)))
470                 {
471                         print_lookup_table_entry(lte, NULL);
472                 } else {
473                         putchar('\n');
474                 }
475         }
476         return 0;
477 }
478
479 static inline void dentry_common_init(struct dentry *dentry)
480 {
481         memset(dentry, 0, sizeof(struct dentry));
482         dentry->refcnt = 1;
483         dentry->security_id = -1;
484 }
485
486 /* 
487  * Creates an unlinked directory entry.
488  *
489  * @name:    The base name of the new dentry.
490  * @return:  A pointer to the new dentry, or NULL if out of memory.
491  */
492 struct dentry *new_dentry(const char *name)
493 {
494         struct dentry *dentry;
495         
496         dentry = MALLOC(sizeof(struct dentry));
497         if (!dentry)
498                 return NULL;
499
500         dentry_common_init(dentry);
501         if (change_dentry_name(dentry, name) != 0) {
502                 FREE(dentry);
503                 return NULL;
504         }
505
506         dentry_update_all_timestamps(dentry);
507         dentry->next   = dentry;
508         dentry->prev   = dentry;
509         dentry->parent = dentry;
510         return dentry;
511 }
512
513 static void dentry_free_ads_entries(struct dentry *dentry)
514 {
515         for (u16 i = 0; i < dentry->num_ads; i++)
516                 destroy_ads_entry(&dentry->ads_entries[i]);
517         FREE(dentry->ads_entries);
518         dentry->ads_entries = NULL;
519         dentry->num_ads = 0;
520 }
521
522
523 void free_dentry(struct dentry *dentry)
524 {
525         FREE(dentry->file_name);
526         FREE(dentry->file_name_utf8);
527         FREE(dentry->short_name);
528         FREE(dentry->full_path_utf8);
529         dentry_free_ads_entries(dentry);
530         FREE(dentry);
531 }
532
533 /* Arguments for do_free_dentry(). */
534 struct free_dentry_args {
535         struct lookup_table *lookup_table;
536         bool lt_decrement_refcnt;
537 };
538
539 /* 
540  * This function is passed as an argument to for_dentry_in_tree_depth() in order
541  * to free a directory tree.  __args is a pointer to a `struct free_dentry_args'.
542  */
543 static int do_free_dentry(struct dentry *dentry, void *__args)
544 {
545         struct free_dentry_args *args = (struct free_dentry_args*)__args;
546
547         if (args->lt_decrement_refcnt && !dentry_is_directory(dentry)) {
548                 lookup_table_decrement_refcnt(args->lookup_table, 
549                                               dentry->hash);
550         }
551
552         wimlib_assert(dentry->refcnt >= 1);
553         if (--dentry->refcnt == 0)
554                 free_dentry(dentry);
555         return 0;
556 }
557
558 /* 
559  * Unlinks and frees a dentry tree.
560  *
561  * @root:               The root of the tree.
562  * @lookup_table:       The lookup table for dentries.
563  * @decrement_refcnt:   True if the dentries in the tree are to have their 
564  *                      reference counts in the lookup table decremented.
565  */
566 void free_dentry_tree(struct dentry *root, struct lookup_table *lookup_table, 
567                       bool lt_decrement_refcnt)
568 {
569         if (!root || !root->parent)
570                 return;
571
572         struct free_dentry_args args;
573         args.lookup_table        = lookup_table;
574         args.lt_decrement_refcnt = lt_decrement_refcnt;
575         for_dentry_in_tree_depth(root, do_free_dentry, &args);
576 }
577
578 int increment_dentry_refcnt(struct dentry *dentry, void *ignore)
579 {
580         dentry->refcnt++;
581         return 0;
582 }
583
584 /* 
585  * Links a dentry into the directory tree.
586  *
587  * @dentry: The dentry to link.
588  * @parent: The dentry that will be the parent of @dentry.
589  */
590 void link_dentry(struct dentry *dentry, struct dentry *parent)
591 {
592         dentry->parent = parent;
593         if (parent->children) {
594                 /* Not an only child; link to siblings. */
595                 dentry->next = parent->children;
596                 dentry->prev = parent->children->prev;
597                 dentry->next->prev = dentry;
598                 dentry->prev->next = dentry;
599         } else {
600                 /* Only child; link to parent. */
601                 parent->children = dentry;
602                 dentry->next = dentry;
603                 dentry->prev = dentry;
604         }
605 }
606
607 /* Unlink a dentry from the directory tree. */
608 void unlink_dentry(struct dentry *dentry)
609 {
610         if (dentry_is_root(dentry))
611                 return;
612         if (dentry_is_only_child(dentry)) {
613                 dentry->parent->children = NULL;
614         } else {
615                 if (dentry_is_first_sibling(dentry))
616                         dentry->parent->children = dentry->next;
617                 dentry->next->prev = dentry->prev;
618                 dentry->prev->next = dentry->next;
619         }
620 }
621
622
623 /* Recalculates the length of @dentry based on its file name length and short
624  * name length.  */
625 static inline void recalculate_dentry_size(struct dentry *dentry)
626 {
627         dentry->length = WIM_DENTRY_DISK_SIZE + dentry->file_name_len + 
628                          2 + dentry->short_name_len;
629         /* Must be multiple of 8. */
630         dentry->length = (dentry->length + 7) & ~7;
631 }
632
633 static int do_name_change(char **file_name_ret,
634                           char **file_name_utf8_ret,
635                           u16 *file_name_len_ret,
636                           u16 *file_name_utf8_len_ret,
637                           const char *new_name)
638 {
639         size_t utf8_len;
640         size_t utf16_len;
641         char *file_name, *file_name_utf8;
642
643         utf8_len = strlen(new_name);
644
645         file_name = utf8_to_utf16(new_name, utf8_len, &utf16_len);
646
647         if (!file_name)
648                 return WIMLIB_ERR_NOMEM;
649
650         file_name_utf8 = MALLOC(utf8_len + 1);
651         if (!file_name_utf8) {
652                 FREE(file_name);
653                 return WIMLIB_ERR_NOMEM;
654         }
655         memcpy(file_name_utf8, new_name, utf8_len + 1);
656
657         FREE(*file_name_ret);
658         FREE(*file_name_utf8_ret);
659         *file_name_ret          = file_name;
660         *file_name_utf8_ret     = file_name_utf8;
661         *file_name_len_ret      = utf16_len;
662         *file_name_utf8_len_ret = utf8_len;
663 }
664
665 /* Changes the name of a dentry to @new_name.  Only changes the file_name and
666  * file_name_utf8 fields; does not change the short_name, short_name_utf8, or
667  * full_path_utf8 fields.  Also recalculates its length. */
668 int change_dentry_name(struct dentry *dentry, const char *new_name)
669 {
670         int ret;
671
672         ret = do_name_change(&dentry->file_name, &dentry->file_name_utf8,
673                              &dentry->file_name_len, &dentry->file_name_utf8_len,
674                              new_name);
675         if (ret == 0)
676                 recalculate_dentry_size(dentry);
677         return ret;
678 }
679
680 int change_ads_name(struct ads_entry *entry, const char *new_name)
681 {
682         return do_name_change(&entry->stream_name, &entry->stream_name_utf8,
683                               &entry->stream_name_len,
684                               &entry->stream_name_utf8_len,
685                               new_name);
686 }
687
688 /* Parameters for calculate_dentry_statistics(). */
689 struct image_statistics {
690         struct lookup_table *lookup_table;
691         u64 *dir_count;
692         u64 *file_count;
693         u64 *total_bytes;
694         u64 *hard_link_bytes;
695 };
696
697 static int calculate_dentry_statistics(struct dentry *dentry, void *arg)
698 {
699         struct image_statistics *stats;
700         struct lookup_table_entry *lte; 
701         u16 i;
702         
703         stats = arg;
704
705         if (dentry_is_directory(dentry) && !dentry_is_root(dentry))
706                 ++*stats->dir_count;
707         else
708                 ++*stats->file_count;
709
710         lte = __lookup_resource(stats->lookup_table, dentry->hash);
711         i = 0;
712         while (1) {
713                 if (lte) {
714                         u64 size = lte->resource_entry.original_size;
715                         *stats->total_bytes += size;
716                         if (++lte->out_refcnt == 1)
717                                 *stats->hard_link_bytes += size;
718                 }
719                 if (i == dentry->num_ads)
720                         break;
721                 lte = __lookup_resource(stats->lookup_table,
722                                         dentry->ads_entries[i].hash);
723                 i++;
724         }
725
726         return 0;
727 }
728
729 void calculate_dir_tree_statistics(struct dentry *root, struct lookup_table *table, 
730                                    u64 *dir_count_ret, u64 *file_count_ret, 
731                                    u64 *total_bytes_ret, 
732                                    u64 *hard_link_bytes_ret)
733 {
734         struct image_statistics stats;
735         *dir_count_ret         = 0;
736         *file_count_ret        = 0;
737         *total_bytes_ret       = 0;
738         *hard_link_bytes_ret   = 0;
739         stats.lookup_table     = table;
740         stats.dir_count       = dir_count_ret;
741         stats.file_count      = file_count_ret;
742         stats.total_bytes     = total_bytes_ret;
743         stats.hard_link_bytes = hard_link_bytes_ret;
744         for_lookup_table_entry(table, zero_out_refcnts, NULL);
745         for_dentry_in_tree(root, calculate_dentry_statistics, &stats);
746 }
747
748 static int read_ads_entries(const u8 *p, struct dentry *dentry,
749                             u64 remaining_size)
750 {
751         u16 num_ads = dentry->num_ads;
752         struct ads_entry *ads_entries = CALLOC(num_ads, sizeof(struct ads_entry));
753         int ret;
754         if (!ads_entries) {
755                 ERROR("Could not allocate memory for %"PRIu16" "
756                       "alternate data stream entries", num_ads);
757                 return WIMLIB_ERR_NOMEM;
758         }
759         DEBUG2("Reading %"PRIu16" alternate data streams "
760                "(remaining size = %"PRIu64")", num_ads, remaining_size);
761
762         for (u16 i = 0; i < num_ads; i++) {
763                 struct ads_entry *cur_entry = &ads_entries[i];
764                 u64 length;
765                 size_t utf8_len;
766                 const char *p_save = p;
767                 /* Read the base stream entry, excluding the stream name. */
768                 if (remaining_size < WIM_ADS_ENTRY_DISK_SIZE) {
769                         ERROR("Stream entries go past end of metadata resource");
770                         ERROR("(remaining_size = %"PRIu64")", remaining_size);
771                         ret = WIMLIB_ERR_INVALID_DENTRY;
772                         goto out_free_ads_entries;
773                 }
774                 remaining_size -= WIM_ADS_ENTRY_DISK_SIZE;
775
776                 p = get_u64(p, &length); /* ADS entry length */
777
778                 DEBUG2("ADS length = %"PRIu64, length);
779
780                 p += 8; /* Unused */
781                 p = get_bytes(p, WIM_HASH_SIZE, (u8*)cur_entry->hash);
782                 p = get_u16(p, &cur_entry->stream_name_len);
783
784                 DEBUG2("Stream name length = %u", cur_entry->stream_name_len);
785
786                 cur_entry->stream_name = NULL;
787                 cur_entry->stream_name_utf8 = NULL;
788
789                 if (remaining_size < cur_entry->stream_name_len + 2) {
790                         ERROR("Stream entries go past end of metadata resource");
791                         ERROR("(remaining_size = %"PRIu64" bytes, stream_name_len "
792                               "= %"PRIu16" bytes", remaining_size,
793                               cur_entry->stream_name_len);
794                         ret = WIMLIB_ERR_INVALID_DENTRY;
795                         goto out_free_ads_entries;
796                 }
797                 remaining_size -= cur_entry->stream_name_len + 2;
798
799                 cur_entry->stream_name = MALLOC(cur_entry->stream_name_len);
800                 if (!cur_entry->stream_name) {
801                         ret = WIMLIB_ERR_NOMEM;
802                         goto out_free_ads_entries;
803                 }
804                 get_bytes(p, cur_entry->stream_name_len,
805                           (u8*)cur_entry->stream_name);
806                 cur_entry->stream_name_utf8 = utf16_to_utf8(cur_entry->stream_name,
807                                                             cur_entry->stream_name_len,
808                                                             &utf8_len);
809                 cur_entry->stream_name_utf8_len = utf8_len;
810
811                 if (!cur_entry->stream_name_utf8) {
812                         ret = WIMLIB_ERR_NOMEM;
813                         goto out_free_ads_entries;
814                 }
815                 p = p_save + ads_entry_length(cur_entry);
816         }
817         dentry->ads_entries = ads_entries;
818         return 0;
819 out_free_ads_entries:
820         for (u16 i = 0; i < num_ads; i++) {
821                 FREE(ads_entries[i].stream_name);
822                 FREE(ads_entries[i].stream_name_utf8);
823         }
824         FREE(ads_entries);
825         return ret;
826 }
827
828 /* 
829  * Reads a directory entry from the metadata resource.
830  */
831 int read_dentry(const u8 metadata_resource[], u64 metadata_resource_len, 
832                 u64 offset, struct dentry *dentry)
833 {
834         const u8 *p;
835         u64 calculated_size;
836         char *file_name;
837         char *file_name_utf8;
838         char *short_name;
839         u16 short_name_len;
840         u16 file_name_len;
841         size_t file_name_utf8_len;
842         int ret;
843
844         dentry_common_init(dentry);
845
846         /*Make sure the dentry really fits into the metadata resource.*/
847         if (offset + 8 > metadata_resource_len) {
848                 ERROR("Directory entry starting at %"PRIu64" ends past the "
849                       "end of the metadata resource (size %"PRIu64")",
850                       offset, metadata_resource_len);
851                 return WIMLIB_ERR_INVALID_DENTRY;
852         }
853
854         /* Before reading the whole entry, we need to read just the length.
855          * This is because an entry of length 8 (that is, just the length field)
856          * terminates the list of sibling directory entries. */
857
858         p = get_u64(&metadata_resource[offset], &dentry->length);
859
860         /* A zero length field (really a length of 8, since that's how big the
861          * directory entry is...) indicates that this is the end of directory
862          * dentry.  We do not read it into memory as an actual dentry, so just
863          * return true in that case. */
864         if (dentry->length == 0)
865                 return 0;
866
867         if (offset + dentry->length >= metadata_resource_len) {
868                 ERROR("Directory entry at offset %"PRIu64" and with size "
869                       "%"PRIu64" ends past the end of the metadata resource "
870                       "(size %"PRIu64")",
871                       offset, dentry->length, metadata_resource_len);
872                 return WIMLIB_ERR_INVALID_DENTRY;
873         }
874
875         /* If it is a recognized length, read the rest of the directory entry.
876          * Note: The root directory entry has no name, and its length does not
877          * include the short name length field.  */
878         if (dentry->length < WIM_DENTRY_DISK_SIZE) {
879                 ERROR("Directory entry has invalid length of %"PRIu64" bytes",
880                       dentry->length);
881                 return WIMLIB_ERR_INVALID_DENTRY;
882         }
883
884         p = get_u32(p, &dentry->attributes);
885         p = get_u32(p, (u32*)&dentry->security_id);
886         p = get_u64(p, &dentry->subdir_offset);
887
888         /* 2 unused fields */
889         p += 2 * sizeof(u64);
890         /*p = get_u64(p, &dentry->unused1);*/
891         /*p = get_u64(p, &dentry->unused2);*/
892
893         p = get_u64(p, &dentry->creation_time);
894         p = get_u64(p, &dentry->last_access_time);
895         p = get_u64(p, &dentry->last_write_time);
896
897         p = get_bytes(p, WIM_HASH_SIZE, dentry->hash);
898         
899         /*
900          * I don't know what's going on here.  It seems like M$ screwed up the
901          * reparse points, then put the fields in the same place and didn't
902          * document it.  The WIM_HDR_FLAG_RP_FIX flag in the WIM header might
903          * have something to do with this, but it's not documented.
904          */
905         if (dentry->attributes & FILE_ATTRIBUTE_REPARSE_POINT) {
906                 /* ??? */
907                 u32 u1, u2;
908                 p = get_u32(p, &u1);
909                 /*p += 4;*/
910                 p = get_u32(p, &dentry->reparse_tag);
911                 p = get_u32(p, &u2);
912                 /*p += 4;*/
913                 dentry->hard_link = (u64)(u1) | ((u64)(u2) << 32);
914         } else {
915                 p = get_u32(p, &dentry->reparse_tag);
916                 p = get_u64(p, &dentry->hard_link);
917         }
918
919         /* By the way, the reparse_reserved field does not actually exist (at
920          * least when the file is not a reparse point) */
921
922         
923         p = get_u16(p, &dentry->num_ads);
924
925         p = get_u16(p, &short_name_len);
926         p = get_u16(p, &file_name_len);
927
928         calculated_size = WIM_DENTRY_DISK_SIZE + file_name_len + 2 +
929                           short_name_len;
930
931         if (dentry->length < calculated_size) {
932                 ERROR("Unexpected end of directory entry! (Expected "
933                       "%"PRIu64" bytes, got %"PRIu64" bytes. "
934                       "short_name_len = %hu, file_name_len = %hu)", 
935                       calculated_size, dentry->length,
936                       short_name_len, file_name_len);
937                 return WIMLIB_ERR_INVALID_DENTRY;
938         }
939
940         /* Read the filename. */
941         file_name = MALLOC(file_name_len);
942         if (!file_name) {
943                 ERROR("Failed to allocate %hu bytes for dentry file name",
944                       file_name_len);
945                 return WIMLIB_ERR_NOMEM;
946         }
947         p = get_bytes(p, file_name_len, file_name);
948
949         /* Convert filename to UTF-8. */
950         file_name_utf8 = utf16_to_utf8(file_name, file_name_len, 
951                                        &file_name_utf8_len);
952
953         if (!file_name_utf8) {
954                 ERROR("Failed to allocate memory to convert UTF-16 "
955                       "filename (%hu bytes) to UTF-8", file_name_len);
956                 ret = WIMLIB_ERR_NOMEM;
957                 goto out_free_file_name;
958         }
959
960         /* Undocumented padding between file name and short name.  This probably
961          * is supposed to be a terminating null character. */
962         p += 2;
963
964         /* Read the short filename. */
965         short_name = MALLOC(short_name_len);
966         if (!short_name) {
967                 ERROR("Failed to allocate %hu bytes for short filename",
968                       short_name_len);
969                 ret = WIMLIB_ERR_NOMEM;
970                 goto out_free_file_name_utf8;
971         }
972
973         p = get_bytes(p, short_name_len, short_name);
974
975         /* Some directory entries inexplicibly have a little over 70 bytes of
976          * extra data.  The exact amount of data seems to be 72 bytes, but it is
977          * aligned on the next 8-byte boundary.  Here's an example of the
978          * aligned data:
979          *
980          * 01000000400000006c786bbac58ede11b0bb00261870892ab6adb76fe63a3
981          * e468fca86530d2effa16c786bbac58ede11b0bb00261870892a0000000000
982          * 0000000000000000000000
983          *
984          * Here's one interpretation of how the data is laid out.
985          *
986          * struct unknown {
987          *      u32 field1; (always 0x00000001)
988          *      u32 field2; (always 0x40000000)
989          *      u16 field3;
990          *      u32 field4;
991          *      u32 field5;
992          *      u32 field6;
993          *      u8  data[48]; (???)
994          *      u64 reserved1; (always 0)
995          *      u64 reserved2; (always 0)
996          * };*/
997 #if 0
998         if (dentry->length - calculated_size >= WIM_ADS_ENTRY_DISK_SIZE) {
999                 printf("%s: %lu / %lu (", file_name_utf8, 
1000                                 calculated_size, dentry->length);
1001                 print_string(p + WIM_ADS_ENTRY_DISK_SIZE, dentry->length - calculated_size - WIM_ADS_ENTRY_DISK_SIZE);
1002                 puts(")");
1003                 print_byte_field(p, dentry->length - calculated_size);
1004                 putchar('\n');
1005         }
1006 #endif
1007
1008         if (dentry->num_ads != 0) {
1009                 calculated_size = (calculated_size + 7) & ~7;
1010                 if (calculated_size > metadata_resource_len - offset) {
1011                         ERROR("Not enough space in metadata resource for "
1012                               "alternate stream entries");
1013                         ret = WIMLIB_ERR_INVALID_DENTRY;
1014                         goto out_free_short_name;
1015                 }
1016                 ret = read_ads_entries(&metadata_resource[offset + calculated_size],
1017                                        dentry,
1018                                        metadata_resource_len - offset - calculated_size);
1019                 if (ret != 0)
1020                         goto out_free_short_name;
1021         }
1022
1023         dentry->file_name          = file_name;
1024         dentry->file_name_utf8     = file_name_utf8;
1025         dentry->short_name         = short_name;
1026         dentry->file_name_len      = file_name_len;
1027         dentry->file_name_utf8_len = file_name_utf8_len;
1028         dentry->short_name_len     = short_name_len;
1029         return 0;
1030 out_free_short_name:
1031         FREE(short_name);
1032 out_free_file_name_utf8:
1033         FREE(file_name_utf8);
1034 out_free_file_name:
1035         FREE(file_name);
1036         return ret;
1037 }
1038
1039 /* 
1040  * Writes a dentry to an output buffer.
1041  *
1042  * @dentry:  The dentry structure.
1043  * @p:       The memory location to write the data to.
1044  * @return:  Pointer to the byte after the last byte we wrote as part of the
1045  *              dentry.
1046  */
1047 static u8 *write_dentry(const struct dentry *dentry, u8 *p)
1048 {
1049         u8 *orig_p = p;
1050         unsigned padding;
1051         memset(p, 0, dentry->length);
1052         p = put_u64(p, dentry->length);
1053         p = put_u32(p, dentry->attributes);
1054         p = put_u32(p, dentry->security_id);
1055         p = put_u64(p, dentry->subdir_offset);
1056         p = put_u64(p, 0); /* unused1 */
1057         p = put_u64(p, 0); /* unused2 */
1058         p = put_u64(p, dentry->creation_time);
1059         p = put_u64(p, dentry->last_access_time);
1060         p = put_u64(p, dentry->last_write_time);
1061         memcpy(p, dentry->hash, WIM_HASH_SIZE);
1062         p += WIM_HASH_SIZE;
1063         p = put_u32(p, dentry->reparse_tag);
1064         p = put_u64(p, dentry->hard_link);
1065         p = put_u16(p, dentry->num_ads); /*streams */
1066         p = put_u16(p, dentry->short_name_len);
1067         p = put_u16(p, dentry->file_name_len);
1068         p = put_bytes(p, dentry->file_name_len, (u8*)dentry->file_name);
1069         p = put_u16(p, 0); /* filename padding, 2 bytes. */
1070         p = put_bytes(p, dentry->short_name_len, (u8*)dentry->short_name);
1071
1072         wimlib_assert(p - orig_p <= dentry->length);
1073         if (p - orig_p < dentry->length)
1074                 p = put_zeroes(p, dentry->length - (p - orig_p));
1075
1076         p = put_zeroes(p, (8 - (p - orig_p) % 8) % 8);
1077
1078         for (u16 i = 0; i < dentry->num_ads; i++) {
1079                 p = put_u64(p, ads_entry_length(&dentry->ads_entries[i]));
1080                 p = put_u64(p, 0); /* Unused */
1081                 p = put_bytes(p, WIM_HASH_SIZE, dentry->ads_entries[i].hash);
1082                 p = put_u16(p, dentry->ads_entries[i].stream_name_len);
1083                 p = put_bytes(p, dentry->ads_entries[i].stream_name_len,
1084                                  (u8*)dentry->ads_entries[i].stream_name);
1085                 p = put_zeroes(p, (8 - (p - orig_p) % 8) % 8);
1086         }
1087         return p;
1088 }
1089
1090 /* Recursive function that writes a dentry tree rooted at @tree, not including
1091  * @tree itself, which has already been written, except in the case of the root
1092  * dentry, which is written right away, along with an end-of-directory entry. */
1093 u8 *write_dentry_tree(const struct dentry *tree, u8 *p)
1094 {
1095         const struct dentry *child;
1096
1097         if (dentry_is_root(tree)) {
1098                 p = write_dentry(tree, p);
1099
1100                 /* write end of directory entry */
1101                 p = put_u64(p, 0);
1102         } else {
1103                 /* Nothing to do for a regular file. */
1104                 if (dentry_is_regular_file(tree))
1105                         return p;
1106         }
1107
1108         /* Write child dentries and end-of-directory entry. */
1109         child = tree->children;
1110         if (child) {
1111                 do {
1112                         p = write_dentry(child, p);
1113                         child = child->next;
1114                 } while (child != tree->children);
1115         }
1116
1117         /* write end of directory entry */
1118         p = put_u64(p, 0);
1119
1120         /* Recurse on children. */
1121         if (child) {
1122                 do {
1123                         p = write_dentry_tree(child, p);
1124                         child = child->next;
1125                 } while (child != tree->children);
1126         }
1127         return p;
1128 }
1129
1130 /* Reads the children of a dentry, and all their children, ..., etc. from the
1131  * metadata resource and into the dentry tree.
1132  *
1133  * @metadata_resource:  An array that contains the uncompressed metadata
1134  *                      resource for the WIM file.
1135  * @metadata_resource_len:      The length of @metadata_resource.
1136  * @dentry:     A pointer to a struct dentry that is the root of the directory
1137  *              tree and has already been read from the metadata resource.  It
1138  *              does not need to be the real root because this procedure is
1139  *              called recursively.
1140  *
1141  * @return:     Zero on success, nonzero on failure.
1142  */
1143 int read_dentry_tree(const u8 metadata_resource[], u64 metadata_resource_len,
1144                      struct dentry *dentry)
1145 {
1146         u64 cur_offset = dentry->subdir_offset;
1147         struct dentry *prev_child = NULL;
1148         struct dentry *first_child = NULL;
1149         struct dentry *child;
1150         struct dentry cur_child;
1151         int ret;
1152
1153         /* If @dentry is a regular file, nothing more needs to be done for this
1154          * branch. */
1155         if (cur_offset == 0)
1156                 return 0;
1157
1158         /* Find and read all the children of @dentry. */
1159         while (1) {
1160
1161                 /* Read next child of @dentry into @cur_child. */
1162                 ret = read_dentry(metadata_resource, metadata_resource_len, 
1163                                   cur_offset, &cur_child);
1164                 if (ret != 0)
1165                         break;
1166
1167                 /* Check for end of directory. */
1168                 if (cur_child.length == 0) {
1169                         ret = 0;
1170                         break;
1171                 }
1172
1173                 /* Not end of directory.  Allocate this child permanently and
1174                  * link it to the parent and previous child. */
1175                 child = MALLOC(sizeof(struct dentry));
1176                 if (!child) {
1177                         ERROR("Failed to allocate %zu bytes for new dentry",
1178                               sizeof(struct dentry));
1179                         ret = WIMLIB_ERR_NOMEM;
1180                         break;
1181                 }
1182                 memcpy(child, &cur_child, sizeof(struct dentry));
1183
1184                 if (prev_child) {
1185                         prev_child->next = child;
1186                         child->prev = prev_child;
1187                 } else {
1188                         first_child = child;
1189                 }
1190
1191                 child->parent = dentry;
1192                 prev_child = child;
1193
1194                 /* If there are children of this child, call this procedure
1195                  * recursively. */
1196                 if (child->subdir_offset != 0) {
1197                         ret = read_dentry_tree(metadata_resource, 
1198                                                metadata_resource_len, child);
1199                         if (ret != 0)
1200                                 break;
1201                 }
1202
1203                 /* Advance to the offset of the next child. */
1204                 cur_offset += dentry_total_length(child);
1205         }
1206
1207         /* Link last child to first one, and set parent's
1208          * children pointer to the first child.  */
1209         if (prev_child) {
1210                 prev_child->next = first_child;
1211                 first_child->prev = prev_child;
1212         }
1213         dentry->children = first_child;
1214         return ret;
1215 }
1216
1217 int dentry_set_symlink_buf(struct dentry *dentry, const u8 symlink_buf_hash[])
1218 {
1219         struct ads_entry *ads_entries;
1220
1221         ads_entries = CALLOC(2, sizeof(struct ads_entry));
1222         if (!ads_entries)
1223                 return WIMLIB_ERR_NOMEM;
1224         memcpy(ads_entries[1].hash, symlink_buf_hash, WIM_HASH_SIZE);
1225         dentry_free_ads_entries(dentry);
1226         dentry->num_ads = 2;
1227         dentry->ads_entries = ads_entries;
1228         return 0;
1229 }