]> wimlib.net Git - wimlib/blob - src/dentry.h
e8d8328d9d27b352021a7bf3ff3c9a06ba90bfc8
[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 "rbtree.h"
9 #include <string.h>
10
11 #ifdef WITH_FUSE
12 #include <pthread.h>
13 #endif
14
15 struct stat;
16 struct wim_lookup_table;
17 struct WIMStruct;
18 struct wim_lookup_table_entry;
19 struct wimfs_fd;
20 struct wim_inode;
21 struct wim_dentry;
22
23 /* Size of the struct wim_dentry up to and including the file_name_len. */
24 #define WIM_DENTRY_DISK_SIZE    102
25
26 /* Size of on-disk WIM alternate data stream entry, in bytes, up to and
27  * including the stream length field (see below). */
28 #define WIM_ADS_ENTRY_DISK_SIZE 38
29
30 /*
31  * Reparse tags documented at
32  * http://msdn.microsoft.com/en-us/library/dd541667(v=prot.10).aspx
33  */
34 #define WIM_IO_REPARSE_TAG_RESERVED_ZERO        0x00000000
35 #define WIM_IO_REPARSE_TAG_RESERVED_ONE         0x00000001
36 #define WIM_IO_REPARSE_TAG_MOUNT_POINT          0xA0000003
37 #define WIM_IO_REPARSE_TAG_HSM                  0xC0000004
38 #define WIM_IO_REPARSE_TAG_HSM2                 0x80000006
39 #define WIM_IO_REPARSE_TAG_DRIVER_EXTENDER      0x80000005
40 #define WIM_IO_REPARSE_TAG_SIS                  0x80000007
41 #define WIM_IO_REPARSE_TAG_DFS                  0x8000000A
42 #define WIM_IO_REPARSE_TAG_DFSR                 0x80000012
43 #define WIM_IO_REPARSE_TAG_FILTER_MANAGER       0x8000000B
44 #define WIM_IO_REPARSE_TAG_SYMLINK              0xA000000C
45
46 #define FILE_ATTRIBUTE_READONLY            0x00000001
47 #define FILE_ATTRIBUTE_HIDDEN              0x00000002
48 #define FILE_ATTRIBUTE_SYSTEM              0x00000004
49 #define FILE_ATTRIBUTE_DIRECTORY           0x00000010
50 #define FILE_ATTRIBUTE_ARCHIVE             0x00000020
51 #define FILE_ATTRIBUTE_DEVICE              0x00000040
52 #define FILE_ATTRIBUTE_NORMAL              0x00000080
53 #define FILE_ATTRIBUTE_TEMPORARY           0x00000100
54 #define FILE_ATTRIBUTE_SPARSE_FILE         0x00000200
55 #define FILE_ATTRIBUTE_REPARSE_POINT       0x00000400
56 #define FILE_ATTRIBUTE_COMPRESSED          0x00000800
57 #define FILE_ATTRIBUTE_OFFLINE             0x00001000
58 #define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
59 #define FILE_ATTRIBUTE_ENCRYPTED           0x00004000
60 #define FILE_ATTRIBUTE_VIRTUAL             0x00010000
61
62
63 /* Alternate data stream entry.
64  *
65  * We read this from disk in the read_ads_entries() function; see that function
66  * for more explanation. */
67 struct wim_ads_entry {
68         union {
69                 /* SHA-1 message digest of stream contents */
70                 u8 hash[SHA1_HASH_SIZE];
71
72                 /* The corresponding lookup table entry (only for resolved
73                  * streams) */
74                 struct wim_lookup_table_entry *lte;
75         };
76
77         /* Length of UTF16-encoded stream name, in bytes, not including the
78          * terminating null character. */
79         u16 stream_name_nbytes;
80
81         /* Stream name (UTF-16LE) */
82         utf16lechar *stream_name;
83
84 #ifdef WITH_FUSE
85         /* Number to identify an alternate data stream even after it's possibly
86          * been moved or renamed. */
87         u32 stream_id;
88 #endif
89 };
90
91
92 static inline bool
93 ads_entries_have_same_name(const struct wim_ads_entry *entry_1,
94                            const struct wim_ads_entry *entry_2)
95 {
96         return entry_1->stream_name_nbytes == entry_2->stream_name_nbytes &&
97                memcmp(entry_1->stream_name, entry_2->stream_name,
98                       entry_1->stream_name_nbytes) == 0;
99 }
100
101 /*
102  * In-memory structure for a WIM directory entry (dentry).  There is a directory
103  * tree for each image in the WIM.
104  *
105  * Note that this is a directory entry and not an inode.  Since NTFS allows hard
106  * links, it's possible for a NTFS inode to correspond to multiple WIM dentries.
107  * The hard link group ID field of the on-disk WIM dentry tells us the number of
108  * the NTFS inode that the dentry corresponds to (and this gets placed in
109  * d_inode->i_ino).
110  *
111  * Unfortunately, WIM files do not have an analogue to an inode; instead certain
112  * information, such as file attributes, the security descriptor, and file
113  * streams is replicated in each hard-linked dentry, even though this
114  * information really is associated with an inode.  In-memory, we fix up this
115  * flaw by allocating a `struct wim_inode' for each dentry that contains some of
116  * this duplicated information, then combining the inodes for each hard link
117  * group together.
118  *
119  * Confusingly, it's possible for stream information to be missing from a dentry
120  * in a hard link set, in which case the stream information needs to be gotten
121  * from one of the other dentries in the hard link set.  In addition, it is
122  * possible for dentries to have inconsistent security IDs, file attributes, or
123  * file streams when they share the same hard link ID (don't even ask.  I hope
124  * that Microsoft may have fixed this problem, since I've only noticed it in the
125  * 'install.wim' for Windows 7).  For those dentries, we have to use the
126  * conflicting fields to split up the hard link groups.  (See
127  * dentry_tree_fix_inodes() in hardlink.c).
128  */
129 struct wim_dentry {
130         /* The inode for this dentry */
131         struct wim_inode *d_inode;
132
133         /* Red-black tree of sibling dentries */
134         struct rb_node rb_node;
135
136         /* Length of UTF-16LE encoded short filename, in bytes, not including
137          * the terminating zero wide-character. */
138         u16 short_name_nbytes;
139
140         /* Length of UTF-16LE encoded "long" file name, in bytes, not including
141          * the terminating null character. */
142         u16 file_name_nbytes;
143
144         /* Length of full path name encoded using "tchars", in bytes, not
145          * including the terminating null character. */
146         u32 full_path_nbytes;
147
148         /* Has this dentry been extracted yet? */
149         u8 is_extracted : 1;
150
151         /* Only used during NTFS capture */
152         u8 is_win32_name : 1;
153
154         /* Temporary list */
155         struct list_head tmp_list;
156
157         /* List of dentries in the inode (hard link set)  */
158         struct list_head d_alias;
159
160         /* The parent of this directory entry. */
161         struct wim_dentry *parent;
162
163         /*
164          * Size of directory entry on disk, in bytes.  Typical size is around
165          * 104 to 120 bytes.
166          *
167          * It is possible for the length field to be 0.  This situation, which
168          * is undocumented, indicates the end of a list of sibling nodes in a
169          * directory.  It also means the real length is 8, because the dentry
170          * included only the length field, but that takes up 8 bytes.
171          *
172          * The length here includes the base directory entry on disk as well as
173          * the long and short filenames.  It does NOT include any alternate
174          * stream entries that may follow the directory entry, even though the
175          * size of those needs to be considered.  The length SHOULD be 8-byte
176          * aligned, although we don't require it to be.  We do require the
177          * length to be large enough to hold the file name(s) of the dentry;
178          * additionally, a warning is issued if this field is larger than the
179          * aligned size.
180          */
181         u64 length;
182
183         /* The offset, from the start of the uncompressed WIM metadata resource
184          * for this image, of this dentry's child dentries.  0 if the directory
185          * entry has no children, which is the case for regular files or reparse
186          * points. */
187         u64 subdir_offset;
188
189         /* Number of references to the dentry tree itself, as in multiple
190          * WIMStructs */
191         u32 refcnt;
192
193         /* Pointer to the UTF-16LE short filename (malloc()ed buffer) */
194         utf16lechar *short_name;
195
196         /* Pointer to the UTF-16LE filename (malloc()ed buffer). */
197         utf16lechar *file_name;
198
199         /* Full path of this dentry */
200         tchar *full_path;
201 };
202
203 #define rbnode_dentry(node) container_of(node, struct wim_dentry, rb_node)
204
205 /*
206  * WIM inode.
207  *
208  * As mentioned above, in the WIM file that is no on-disk analogue of a real
209  * inode, as most of these fields are duplicated in the dentries.
210  */
211 struct wim_inode {
212         /* Timestamps for the inode.  The timestamps are the number of
213          * 100-nanosecond intervals that have elapsed since 12:00 A.M., January
214          * 1st, 1601, UTC.  This is the same format used in NTFS inodes. */
215         u64 i_creation_time;
216         u64 i_last_access_time;
217         u64 i_last_write_time;
218
219         /* The file attributes associated with this inode.  This is a bitwise OR
220          * of the FILE_ATTRIBUTE_* flags. */
221         u32 i_attributes;
222
223         /* The index of the security descriptor in the WIM image's table of
224          * security descriptors that contains this file's security information.
225          * If -1, no security information exists for this file.  */
226         int32_t i_security_id;
227
228         /* %true iff the inode's lookup table entries has been resolved (i.e.
229          * the @lte field is valid, but the @hash field is not valid)
230          *
231          * (This is not an on-disk field.) */
232         u8 i_resolved : 1;
233
234         /* %true iff verify_inode() has run on this inode. */
235         u8 i_verified : 1;
236
237         /* Used only in NTFS-mode extraction */
238         u8 i_dos_name_extracted : 1;
239
240         /* Number of alternate data streams associated with this inode */
241         u16 i_num_ads;
242
243         /* A hash of the file's contents, or a pointer to the lookup table entry
244          * for this dentry if the lookup table entries have been resolved.
245          *
246          * More specifically, this is for the un-named default file stream, as
247          * opposed to the alternate (named) file streams, which may have their
248          * own lookup table entries.  */
249         union {
250                 u8 i_hash[SHA1_HASH_SIZE];
251                 struct wim_lookup_table_entry *i_lte;
252         };
253
254         /* Identity of a reparse point.  See
255          * http://msdn.microsoft.com/en-us/library/windows/desktop/aa365503(v=vs.85).aspx
256          * for what a reparse point is. */
257         u32 i_reparse_tag;
258
259         /* Number of dentries that reference this inode */
260         u32 i_nlink;
261
262         /* Alternate data stream entries. */
263         struct wim_ads_entry *i_ads_entries;
264
265         /* Inode number */
266         u64 i_ino;
267
268         /* List of dentries that reference this inode (there should be
269          * link_count of them) */
270         struct list_head i_dentry;
271
272         struct hlist_node i_hlist;
273
274         struct list_head i_lte_inode_list;
275
276         tchar *i_extracted_file;
277
278         /* Root of a red-black tree storing the children of this inode (if
279          * non-empty, implies the inode is a directory, although that is also
280          * noted in the @attributes field.) */
281         struct rb_root i_children;
282
283 #ifdef WITH_FUSE
284         /* wimfs file descriptors table for the inode */
285         u16 i_num_opened_fds;
286         u16 i_num_allocated_fds;
287         struct wimfs_fd **i_fds;
288
289         /* Next alternate data stream ID to be assigned */
290         u32 i_next_stream_id;
291
292         /* This mutex protects the inode's file descriptors table during
293          * read-only mounts.  Read-write mounts are still restricted to 1
294          * thread. */
295         pthread_mutex_t i_mutex;
296 #endif
297 };
298
299 #define inode_for_each_dentry(dentry, inode) \
300                 list_for_each_entry((dentry), &(inode)->i_dentry, d_alias)
301
302 #define inode_add_dentry(dentry, inode) \
303                 list_add_tail(&(dentry)->d_alias, &(inode)->i_dentry)
304
305 #define inode_first_dentry(inode) \
306                 container_of(inode->i_dentry.next, struct wim_dentry, d_alias)
307
308 static inline bool
309 dentry_is_first_in_inode(const struct wim_dentry *dentry)
310 {
311         return inode_first_dentry(dentry->d_inode) == dentry;
312 }
313
314 extern u64
315 dentry_correct_total_length(const struct wim_dentry *dentry);
316
317 extern int
318 for_dentry_in_tree(struct wim_dentry *root,
319                    int (*visitor)(struct wim_dentry*, void*),
320                    void *args);
321
322 extern int
323 for_dentry_in_rbtree(struct rb_node *node,
324                      int (*visitor)(struct wim_dentry *, void *),
325                      void *arg);
326
327 static inline int
328 for_dentry_child(const struct wim_dentry *dentry,
329                  int (*visitor)(struct wim_dentry *, void *),
330                  void *arg)
331 {
332         return for_dentry_in_rbtree(dentry->d_inode->i_children.rb_node,
333                                     visitor,
334                                     arg);
335 }
336
337 extern int
338 for_dentry_in_tree_depth(struct wim_dentry *root,
339                          int (*visitor)(struct wim_dentry*, void*),
340                          void *args);
341
342 extern int
343 calculate_dentry_full_path(struct wim_dentry *dentry, void *ignore);
344
345 extern void
346 calculate_subdir_offsets(struct wim_dentry *dentry, u64 *subdir_offset_p);
347
348 extern int
349 set_dentry_name(struct wim_dentry *dentry, const tchar *new_name);
350
351 extern struct wim_dentry *
352 get_dentry(struct WIMStruct *w, const tchar *path);
353
354 extern struct wim_inode *
355 wim_pathname_to_inode(struct WIMStruct *w, const tchar *path);
356
357 extern struct wim_dentry *
358 get_dentry_child_with_name(const struct wim_dentry *dentry,
359                            const tchar *name);
360
361 extern struct wim_dentry *
362 get_dentry_child_with_utf16le_name(const struct wim_dentry *dentry,
363                                    const utf16lechar *name,
364                                    size_t name_nbytes);
365
366 extern struct wim_dentry *
367 get_parent_dentry(struct WIMStruct *w, const tchar *path);
368
369 extern int
370 print_dentry(struct wim_dentry *dentry, void *lookup_table);
371
372 extern int
373 print_dentry_full_path(struct wim_dentry *entry, void *ignore);
374
375 extern int
376 new_dentry(const tchar *name, struct wim_dentry **dentry_ret);
377
378 extern int
379 new_dentry_with_inode(const tchar *name, struct wim_dentry **dentry_ret);
380
381 extern int
382 new_dentry_with_timeless_inode(const tchar *name, struct wim_dentry **dentry_ret);
383
384 extern void
385 free_inode(struct wim_inode *inode);
386
387 extern void
388 free_dentry(struct wim_dentry *dentry);
389
390 extern void
391 put_dentry(struct wim_dentry *dentry);
392
393 extern void
394 free_dentry_tree(struct wim_dentry *root,
395                  struct wim_lookup_table *lookup_table);
396
397 extern int
398 increment_dentry_refcnt(struct wim_dentry *dentry, void *ignore);
399
400 extern void
401 unlink_dentry(struct wim_dentry *dentry);
402
403 extern bool
404 dentry_add_child(struct wim_dentry * restrict parent,
405                  struct wim_dentry * restrict child);
406
407 extern struct wim_ads_entry *
408 inode_get_ads_entry(struct wim_inode *inode, const tchar *stream_name,
409                     u16 *idx_ret);
410
411 extern struct wim_ads_entry *
412 inode_add_ads_utf16le(struct wim_inode *inode,
413                       const utf16lechar *stream_name,
414                       size_t stream_name_nbytes);
415
416 extern struct wim_ads_entry *
417 inode_add_ads(struct wim_inode *dentry, const tchar *stream_name);
418
419 extern int
420 inode_add_ads_with_data(struct wim_inode *inode, const tchar *name,
421                         const void *value, size_t size,
422                         struct wim_lookup_table *lookup_table);
423
424 extern void
425 inode_remove_ads(struct wim_inode *inode, u16 idx,
426                  struct wim_lookup_table *lookup_table);
427
428
429 #define WIMLIB_UNIX_DATA_TAG "$$__wimlib_UNIX_data"
430 #define WIMLIB_UNIX_DATA_TAG_NBYTES (sizeof(WIMLIB_UNIX_DATA_TAG) - 1)
431
432 #define WIMLIB_UNIX_DATA_TAG_UTF16LE "$\0$\0_\0_\0w\0i\0m\0l\0i\0b\0_\0U\0N\0I\0X\0_\0d\0a\0t\0a\0"
433 #define WIMLIB_UNIX_DATA_TAG_UTF16LE_NBYTES (sizeof(WIMLIB_UNIX_DATA_TAG_UTF16LE) - 1)
434
435 /* Format for special alternate data stream entries to store UNIX data for files
436  * and directories (see: WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA) */
437 struct wimlib_unix_data {
438         u16 version; /* Must be 0 */
439         u16 uid;
440         u16 gid;
441         u16 mode;
442 } PACKED;
443
444 #ifndef __WIN32__
445
446 #define NO_UNIX_DATA (-1)
447 #define BAD_UNIX_DATA (-2)
448 extern int
449 inode_get_unix_data(const struct wim_inode *inode,
450                     struct wimlib_unix_data *unix_data,
451                     u16 *stream_idx_ret);
452
453 #define UNIX_DATA_UID    0x1
454 #define UNIX_DATA_GID    0x2
455 #define UNIX_DATA_MODE   0x4
456 #define UNIX_DATA_ALL    (UNIX_DATA_UID | UNIX_DATA_GID | UNIX_DATA_MODE)
457 #define UNIX_DATA_CREATE 0x8
458 extern int
459 inode_set_unix_data(struct wim_inode *inode, uid_t uid, gid_t gid, mode_t mode,
460                     struct wim_lookup_table *lookup_table, int which);
461 #endif
462
463 extern int
464 read_dentry(const u8 metadata_resource[], u64 metadata_resource_len,
465             u64 offset, struct wim_dentry *dentry);
466
467
468 extern int
469 read_dentry_tree(const u8 metadata_resource[], u64 metadata_resource_len,
470                  struct wim_dentry *dentry);
471
472 extern u8 *
473 write_dentry_tree(const struct wim_dentry *tree, u8 *p);
474
475 static inline bool
476 dentry_is_root(const struct wim_dentry *dentry)
477 {
478         return dentry->parent == dentry;
479 }
480
481 static inline bool
482 inode_is_directory(const struct wim_inode *inode)
483 {
484         return (inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY)
485                 && !(inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT);
486 }
487
488 static inline bool
489 dentry_is_directory(const struct wim_dentry *dentry)
490 {
491         return inode_is_directory(dentry->d_inode);
492 }
493
494 /* For our purposes, we consider "real" symlinks and "junction points" to both
495  * be symlinks. */
496 static inline bool
497 inode_is_symlink(const struct wim_inode *inode)
498 {
499         return (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT)
500                 && ((inode->i_reparse_tag == WIM_IO_REPARSE_TAG_SYMLINK) ||
501                      inode->i_reparse_tag == WIM_IO_REPARSE_TAG_MOUNT_POINT);
502 }
503
504 static inline bool
505 inode_is_regular_file(const struct wim_inode *inode)
506 {
507         return !inode_is_directory(inode) && !inode_is_symlink(inode);
508 }
509
510 static inline bool
511 dentry_is_regular_file(const struct wim_dentry *dentry)
512 {
513         return inode_is_regular_file(dentry->d_inode);
514 }
515
516 static inline bool
517 inode_has_children(const struct wim_inode *inode)
518 {
519         return inode->i_children.rb_node != NULL;
520 }
521
522 static inline bool
523 dentry_has_children(const struct wim_dentry *dentry)
524 {
525         return inode_has_children(dentry->d_inode);
526 }
527
528 static inline bool
529 dentry_has_short_name(const struct wim_dentry *dentry)
530 {
531         return dentry->short_name_nbytes != 0;
532 }
533
534 static inline bool
535 dentry_has_long_name(const struct wim_dentry *dentry)
536 {
537         return dentry->file_name_nbytes != 0;
538 }
539
540 #endif