]> wimlib.net Git - wimlib/blob - src/dentry.h
1e3a04bc13aba41abc8f452ba87e6607f7fe9baa
[wimlib] / src / dentry.h
1 #ifndef _WIMLIB_DENTRY_H
2 #define _WIMLIB_DENTRY_H
3
4 #include "util.h"
5 #include "config.h"
6 #include "list.h"
7 #include "sha1.h"
8 #include <string.h>
9
10
11 struct stat;
12 struct lookup_table;
13 struct WIMStruct;
14
15 /* Size of the struct dentry up to and including the file_name_len. */
16 #define WIM_DENTRY_DISK_SIZE    102
17
18 /* Size of on-disk WIM alternate data stream entry, in bytes, up to and
19  * including the stream length field (see below). */
20 #define WIM_ADS_ENTRY_DISK_SIZE 38
21
22
23 /* 
24  * Reparse tags documented at 
25  * http://msdn.microsoft.com/en-us/library/dd541667(v=prot.10).aspx
26  */
27 #define WIM_IO_REPARSE_TAG_RESERVED_ZERO        0x00000000
28 #define WIM_IO_REPARSE_TAG_RESERVED_ONE         0x00000001
29 #define WIM_IO_REPARSE_TAG_MOUNT_POINT          0xA0000003
30 #define WIM_IO_REPARSE_TAG_HSM                  0xC0000004
31 #define WIM_IO_REPARSE_TAG_HSM2                 0x80000006
32 #define WIM_IO_REPARSE_TAG_DRIVER_EXTENDER      0x80000005
33 #define WIM_IO_REPARSE_TAG_SIS                  0x80000007
34 #define WIM_IO_REPARSE_TAG_DFS                  0x8000000A
35 #define WIM_IO_REPARSE_TAG_DFSR                 0x80000012
36 #define WIM_IO_REPARSE_TAG_FILTER_MANAGER       0x8000000B
37 #define WIM_IO_REPARSE_TAG_SYMLINK              0xA000000C
38
39 #define FILE_ATTRIBUTE_READONLY            0x00000001
40 #define FILE_ATTRIBUTE_HIDDEN              0x00000002
41 #define FILE_ATTRIBUTE_SYSTEM              0x00000004
42 #define FILE_ATTRIBUTE_DIRECTORY           0x00000010
43 #define FILE_ATTRIBUTE_ARCHIVE             0x00000020
44 #define FILE_ATTRIBUTE_DEVICE              0x00000040
45 #define FILE_ATTRIBUTE_NORMAL              0x00000080
46 #define FILE_ATTRIBUTE_TEMPORARY           0x00000100
47 #define FILE_ATTRIBUTE_SPARSE_FILE         0x00000200
48 #define FILE_ATTRIBUTE_REPARSE_POINT       0x00000400
49 #define FILE_ATTRIBUTE_COMPRESSED          0x00000800
50 #define FILE_ATTRIBUTE_OFFLINE             0x00001000
51 #define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
52 #define FILE_ATTRIBUTE_ENCRYPTED           0x00004000
53 #define FILE_ATTRIBUTE_VIRTUAL             0x00010000
54
55 struct lookup_table_entry;
56
57 /* Alternate data stream entry.
58  *
59  * We read this from disk in the read_ads_entries() function; see that function
60  * for more explanation. */
61 struct ads_entry {
62         union {
63                 /* SHA-1 message digest of stream contents */
64                 u8 hash[SHA1_HASH_SIZE];
65
66                 /* The corresponding lookup table entry (only for resolved
67                  * streams) */
68                 struct lookup_table_entry *lte;
69         };
70
71         /* Length of stream name (UTF-16) */
72         u16 stream_name_len;
73
74         /* Length of stream name (UTF-8) */
75         u16 stream_name_utf8_len;
76
77         /* Stream name (UTF-16) */
78         char *stream_name;
79
80         /* Stream name (UTF-8) */
81         char *stream_name_utf8;
82
83         /* Doubly linked list of streams that share the same lookup table entry */
84         struct stream_list_head lte_group_list;
85
86         /* Containing inode */
87         struct inode *inode;
88 };
89
90 /* Returns the total length of a WIM alternate data stream entry on-disk,
91  * including the stream name, the null terminator, AND the padding after the
92  * entry to align the next one (or the next dentry) on an 8-byte boundary. */
93 static inline u64 ads_entry_total_length(const struct ads_entry *entry)
94 {
95         u64 len = WIM_ADS_ENTRY_DISK_SIZE;
96         if (entry->stream_name_len)
97                 len += entry->stream_name_len + 2;
98         return (len + 7) & ~7;
99 }
100
101 static inline bool ads_entry_has_name(const struct ads_entry *entry,
102                                       const char *name, size_t name_len)
103 {
104         if (entry->stream_name_utf8_len != name_len)
105                 return false;
106         return memcmp(entry->stream_name_utf8, name, name_len) == 0;
107 }
108
109 static inline bool ads_entries_have_same_name(const struct ads_entry *entry_1,
110                                               const struct ads_entry *entry_2)
111 {
112         if (entry_1->stream_name_len != entry_2->stream_name_len)
113                 return false;
114         return memcmp(entry_1->stream_name, entry_2->stream_name,
115                       entry_1->stream_name_len) == 0;
116 }
117
118 struct inode {
119         /* Timestamps for the inode.  The timestamps are the number of
120          * 100-nanosecond intervals that have elapsed since 12:00 A.M., January
121          * 1st, 1601, UTC.  This is the same format used in NTFS inodes. */
122         u64 creation_time;
123         u64 last_access_time;
124         u64 last_write_time;
125
126         /* The file attributes associated with this inode.  This is a bitwise OR
127          * of the FILE_ATTRIBUTE_* flags. */
128         u32 attributes;
129
130         /* The index of the security descriptor in the WIM image's table of
131          * security descriptors that contains this file's security information.
132          * If -1, no security information exists for this file.  */
133         int32_t security_id;
134
135         /* %true iff the inode's lookup table entries has been resolved (i.e.
136          * the @lte field is valid, but the @hash field is not valid) 
137          *
138          * (This is not an on-disk field.) */
139         bool resolved;
140
141         u16 num_ads;
142
143         /* A hash of the file's contents, or a pointer to the lookup table entry
144          * for this dentry if the lookup table entries have been resolved.
145          *
146          * More specifically, this is for the un-named default file stream, as
147          * opposed to the alternate (named) file streams, which may have their
148          * own lookup table entries.  */
149         union {
150                 u8 hash[SHA1_HASH_SIZE];
151                 struct lookup_table_entry *lte;
152         };
153
154         /* Identity of a reparse point.  See
155          * http://msdn.microsoft.com/en-us/library/windows/desktop/aa365503(v=vs.85).aspx
156          * for what a reparse point is. */
157         u32 reparse_tag;
158
159         u32 link_count;
160
161         struct ads_entry **ads_entries;
162
163         /* If the file is part of a hard link set, all the directory entries in
164          * the set will share the same value for this field. 
165          *
166          * Unfortunately, in some WIMs it is NOT the case that all dentries that
167          * share this field are actually in the same hard link set, although the
168          * WIMs that wimlib writes maintain this restriction. */
169         u64 ino;
170
171         struct list_head dentry_list;
172         union {
173                 struct stream_list_head lte_group_list;
174                 struct hlist_node hlist;
175         };
176         char *extracted_file;
177 };
178
179 /* 
180  * In-memory structure for a WIM directory entry (dentry).  There is a directory
181  * tree for each image in the WIM. 
182  *
183  * Please note that this is a directory entry and not an inode.  Since NTFS
184  * allows hard links, it's possible for a NTFS inode to correspond to multiple
185  * WIM dentries.  The @hard_link field tells you the number of the NTFS inode
186  * that the dentry corresponds to.
187  *
188  * Unfortunately, WIM files do not have an analogue to an inode; instead certain
189  * information, such as file attributes, the security descriptor, and file
190  * streams is replicated in each hard-linked dentry, even though this
191  * information really is associated with an inode.
192  *
193  * Confusingly, it's also possible for stream information to be missing from a
194  * dentry in a hard link set, in which case the stream information needs to be
195  * gotten from one of the other dentries in the hard link set.  In addition, it
196  * is possible for dentries to have inconsistent security IDs, file attributes,
197  * or file streams when they share the same hard link ID (don't even ask.  I
198  * hope that Microsoft may have fixed this problem, since I've only noticed it
199  * in the 'install.wim' for Windows 7).  For those dentries, we have to use the
200  * conflicting fields to split up the hard link groups.
201  */
202 struct dentry {
203         /* The parent of this directory entry. */
204         struct dentry *parent;
205
206         /* Linked list of sibling directory entries. */
207         struct dentry *next;
208         struct dentry *prev;
209
210         /* Pointer to a child of this directory entry. */
211         struct dentry *children;
212
213         struct inode *inode;
214
215         /* 
216          * Size of directory entry on disk, in bytes.  Typical size is around
217          * 104 to 120 bytes.
218          *
219          * It is possible for the length field to be 0.  This situation, which
220          * is undocumented, indicates the end of a list of sibling nodes in a
221          * directory.  It also means the real length is 8, because the dentry
222          * included only the length field, but that takes up 8 bytes.
223          *
224          * The length here includes the base directory entry on disk as well as
225          * the long and short filenames.  It does NOT include any alternate
226          * stream entries that may follow the directory entry, even though the
227          * size of those needs to be considered.  The length SHOULD be 8-byte
228          * aligned, although we don't require it to be.  We do require the
229          * length to be large enough to hold the file name(s) of the dentry;
230          * additionally, a warning is issued if this field is larger than the
231          * aligned size.
232          */
233         u64 length;
234
235
236         /* The offset, from the start of the uncompressed WIM metadata resource
237          * for this image, of this dentry's child dentries.  0 if the directory
238          * entry has no children, which is the case for regular files or reparse
239          * points. */
240         u64 subdir_offset;
241
242
243         /* Although M$'s documentation does not tell you this, it seems that the
244          * reparse_reserved field does not actually exist.  So the hard_link
245          * field directly follows the reparse_tag on disk.  EXCEPT when the
246          * dentry is actually a reparse point... well, just take a look at the
247          * read_dentry() function. */
248         //u32 reparse_reserved;
249
250
251         /* Length of short filename, in bytes, not including the terminating
252          * zero wide-character. */
253         u16 short_name_len;
254
255         /* Length of file name, in bytes, not including the terminating zero
256          * wide-character. */
257         u16 file_name_len;
258
259         /* Length of the filename converted into UTF-8, in bytes, not including
260          * the terminating zero byte. */
261         u16 file_name_utf8_len;
262
263         /* Pointer to the short filename (malloc()ed buffer) */
264         char *short_name;
265
266         /* Pointer to the filename (malloc()ed buffer). */
267         char *file_name;
268
269         /* Pointer to the filename converted to UTF-8 (malloc()ed buffer). */
270         char *file_name_utf8;
271
272         /* Full path to this dentry (malloc()ed buffer). */
273         char *full_path_utf8;
274         u32   full_path_utf8_len;
275
276         union {
277                 /* Number of references to the dentry tree itself, as in multiple
278                  * WIMStructs */
279                 u32 refcnt;
280
281                 /* Number of times this dentry has been opened (only for
282                  * directories!) */
283                 u32 num_times_opened;
284         };
285
286         /* List of dentries in the hard link set */
287         struct list_head inode_dentry_list;
288         struct list_head tmp_list;
289 };
290
291
292 extern struct ads_entry *dentry_get_ads_entry(struct dentry *dentry,
293                                               const char *stream_name);
294
295 extern struct ads_entry *dentry_add_ads(struct dentry *dentry,
296                                         const char *stream_name);
297
298 extern void dentry_remove_ads(struct dentry *dentry, struct ads_entry *entry);
299
300 extern const char *path_stream_name(const char *path);
301
302 extern u64 dentry_total_length(const struct dentry *dentry);
303 extern u64 dentry_correct_total_length(const struct dentry *dentry);
304
305 extern void stbuf_to_inode(const struct stat *stbuf, struct inode *inode);
306
307 extern int for_dentry_in_tree(struct dentry *root, 
308                               int (*visitor)(struct dentry*, void*), 
309                               void *args);
310
311 extern int for_dentry_in_tree_depth(struct dentry *root, 
312                                     int (*visitor)(struct dentry*, void*), 
313                                     void *args);
314
315 extern int calculate_dentry_full_path(struct dentry *dentry, void *ignore);
316 extern void calculate_subdir_offsets(struct dentry *dentry, u64 *subdir_offset_p);
317 extern int get_names(char **name_utf16_ret, char **name_utf8_ret,
318                      u16 *name_utf16_len_ret, u16 *name_utf8_len_ret,
319                      const char *name);
320 extern int change_dentry_name(struct dentry *dentry, const char *new_name);
321 extern int change_ads_name(struct ads_entry *entry, const char *new_name);
322
323 extern void unlink_dentry(struct dentry *dentry);
324 extern void link_dentry(struct dentry *dentry, struct dentry *parent);
325
326 extern int print_dentry(struct dentry *dentry, void *lookup_table);
327 extern int print_dentry_full_path(struct dentry *entry, void *ignore);
328
329 extern struct dentry *get_dentry(struct WIMStruct *w, const char *path);
330 extern struct dentry *get_parent_dentry(struct WIMStruct *w, const char *path);
331 extern struct dentry *get_dentry_child_with_name(const struct dentry *dentry, 
332                                                         const char *name);
333 extern void dentry_update_all_timestamps(struct dentry *dentry);
334 extern void init_dentry(struct dentry *dentry, const char *name);
335 extern struct dentry *new_dentry(const char *name);
336 extern struct inode *new_inode();
337 extern struct inode *new_timeless_inode();
338 extern struct dentry *new_dentry_with_inode(const char *name);
339
340 extern void dentry_free_ads_entries(struct dentry *dentry);
341 extern void free_dentry(struct dentry *dentry);
342 extern void free_inode(struct inode *inode);
343 extern void put_inode(struct inode *inode);
344 extern void put_dentry(struct dentry *dentry);
345 extern struct dentry *clone_dentry(struct dentry *old);
346 extern void free_dentry_tree(struct dentry *root,
347                              struct lookup_table *lookup_table);
348 extern int increment_dentry_refcnt(struct dentry *dentry, void *ignore);
349 extern int decrement_dentry_refcnt(struct dentry *dentry, void *ignore);
350
351 extern void calculate_dir_tree_statistics(struct dentry *root, 
352                                           struct lookup_table *table, 
353                                           u64 *dir_count_ret, 
354                                           u64 *file_count_ret, 
355                                           u64 *total_bytes_ret, 
356                                           u64 *hard_link_bytes_ret);
357
358 extern int read_dentry(const u8 metadata_resource[], u64 metadata_resource_len, 
359                        u64 offset, struct dentry *dentry);
360
361 extern int verify_dentry(struct dentry *dentry, void *wim);
362
363 extern int read_dentry_tree(const u8 metadata_resource[], 
364                             u64 metadata_resource_len, struct dentry *dentry);
365
366 extern u8 *write_dentry_tree(const struct dentry *tree, u8 *p);
367
368
369 /* Return the number of dentries in the hard link group */
370 static inline size_t dentry_link_group_size(const struct dentry *dentry)
371 {
372         const struct list_head *cur;
373         size_t size = 0;
374         list_for_each(cur, &dentry->inode_dentry_list)
375                 size++;
376         return size;
377 }
378
379 static inline bool dentry_is_root(const struct dentry *dentry)
380 {
381         return dentry->parent == dentry;
382 }
383
384 static inline bool dentry_is_first_sibling(const struct dentry *dentry)
385 {
386         return dentry_is_root(dentry) || dentry->parent->children == dentry;
387 }
388
389 static inline bool dentry_is_only_child(const struct dentry *dentry)
390 {
391         return dentry->next == dentry;
392 }
393
394 static inline bool inode_is_directory(const struct inode *inode)
395 {
396         return (inode->attributes & FILE_ATTRIBUTE_DIRECTORY)
397                 && !(inode->attributes & FILE_ATTRIBUTE_REPARSE_POINT);
398 }
399
400 static inline bool dentry_is_directory(const struct dentry *dentry)
401 {
402         return inode_is_directory(dentry->inode);
403 }
404
405 /* For our purposes, we consider "real" symlinks and "junction points" to both
406  * be symlinks. */
407 static inline bool inode_is_symlink(const struct inode *inode)
408 {
409         return (inode->attributes & FILE_ATTRIBUTE_REPARSE_POINT)
410                 && ((inode->reparse_tag == WIM_IO_REPARSE_TAG_SYMLINK) ||
411                      inode->reparse_tag == WIM_IO_REPARSE_TAG_MOUNT_POINT);
412 }
413
414 static inline bool dentry_is_symlink(const struct dentry *dentry)
415 {
416         return inode_is_symlink(dentry->inode);
417 }
418
419 static inline bool dentry_is_regular_file(const struct dentry *dentry)
420 {
421         return !dentry_is_directory(dentry) && !dentry_is_symlink(dentry);
422 }
423
424 static inline bool dentry_is_empty_directory(const struct dentry *dentry)
425 {
426         return dentry_is_directory(dentry) && dentry->children == NULL;
427 }
428
429 #endif