]> wimlib.net Git - wimlib/blob - src/lookup_table.h
0a1416eaf261c810d79ceaefe6d4c0120f51f238
[wimlib] / src / lookup_table.h
1 #ifndef _WIMLIB_LOOKUP_TABLE_H
2 #define _WIMLIB_LOOKUP_TABLE_H
3 #include "wimlib_internal.h"
4 #include "dentry.h"
5 #include "sha1.h"
6 #include <sys/types.h>
7
8 /* Size of each lookup table entry in the WIM file. */
9 #define WIM_LOOKUP_TABLE_ENTRY_DISK_SIZE 50
10
11 #define LOOKUP_FLAG_ADS_OK              0x00000001
12 #define LOOKUP_FLAG_DIRECTORY_OK        0x00000002
13
14 /* Not yet used */
15 //#define LOOKUP_FLAG_FOLLOW_SYMLINKS   0x00000004
16
17
18 /* A lookup table that is used to translate the hash codes of dentries into the
19  * offsets and sizes of uncompressed or compressed file resources.  It is
20  * implemented as a hash table. */
21 struct lookup_table {
22         struct hlist_head *array;
23         u64 num_entries;
24         u64 capacity;
25 };
26
27 #ifdef WITH_NTFS_3G
28 struct ntfs_location {
29         char *path_utf8;
30         char *stream_name_utf16;
31         u16 stream_name_utf16_num_chars;
32         struct _ntfs_volume **ntfs_vol_p;
33         bool is_reparse_point;
34 };
35 #endif
36
37 /* An enumerated type that identifies where the stream corresponding to this
38  * lookup table entry is actually located.
39  *
40  * If we open a WIM and read its lookup table, the location is set to
41  * RESOURCE_IN_WIM since all the streams will initially be located in the WIM.
42  * However, to deal with problems such as image capture and image mount, we
43  * allow the actual location of the stream to be somewhere else, such as an
44  * external file.
45  */
46 enum resource_location {
47         /* The lookup table entry does not correspond to a stream (this state
48          * should exist only temporarily) */
49         RESOURCE_NONEXISTENT = 0,
50
51         /* The stream resource is located in a WIM file.  The WIMStruct for the
52          * WIM file will be pointed to by the @wim member. */
53         RESOURCE_IN_WIM,
54
55         /* The stream resource is located in an external file.  The name of the
56          * file will be provided by @file_on_disk member.  In addition, if
57          * @file_on_disk_fp is not NULL, it will be an open FILE * to the file.
58          * */
59         RESOURCE_IN_FILE_ON_DISK,
60
61         /* The stream resource is located in an external file in the staging
62          * directory for a read-write mount.  */
63         RESOURCE_IN_STAGING_FILE,
64
65         /* The stream resource is directly attached in an in-memory buffer
66          * pointed to by @attached_buffer. */
67         RESOURCE_IN_ATTACHED_BUFFER,
68
69         /* The stream resource is located in an NTFS volume.  It is identified
70          * by volume, filename, data stream name, and by whether it is a reparse
71          * point or not. @ntfs_loc points to a structure containing this
72          * information. */
73         RESOURCE_IN_NTFS_VOLUME,
74 };
75
76 /*
77  * An entry in the lookup table in the WIM file.
78  *
79  * It is used to find data streams for files in the WIM.
80  *
81  * Metadata resources and reparse point data buffers will also have lookup table
82  * entries associated with the data.
83  *
84  * The lookup_table_entry for a given dentry or alternate stream entry in the
85  * WIM is found using the SHA1 message digest field.
86  */
87 struct lookup_table_entry {
88
89         /* List of lookup table entries in this hash bucket */
90         struct hlist_node hash_list;
91
92         /* Location and size of the stream in the WIM, whether it is compressed
93          * or not, and whether it's a metadata resource or not.  This is an
94          * on-disk field. */
95         struct resource_entry resource_entry;
96
97         /* Specifies which part of the split WIM the resource is located in.
98          * This is on on-disk field.
99          *
100          * In stand-alone WIMs, this must be 1.
101          *
102          * In split WIMs, every split WIM part has its own lookup table, and in
103          * read_lookup_table() it's currently expected that the part number of
104          * each lookup table entry in a split WIM part's lookup table is the
105          * same as the part number of that split WIM part.  So this makes this
106          * field redundant since we store a pointer to the corresponding
107          * WIMStruct in the lookup table entry anyway.
108          */
109         u16 part_number;
110
111         /* See enum resource_location above */
112         u16 resource_location;
113
114         /* (On-disk field)
115          * Number of times this lookup table entry is referenced by dentries.
116          * Unfortunately, this field is not always set correctly in Microsoft's
117          * WIMs, so we have no choice but to fix it if more references to the
118          * lookup table entry are found than stated here. */
119         u32 refcnt;
120
121         union {
122                 /* (On-disk field) SHA1 message digest of the stream referenced
123                  * by this lookup table entry */
124                 u8  hash[SHA1_HASH_SIZE];
125
126                 /* First 4 or 8 bytes of the SHA1 message digest, used for
127                  * inserting the entry into the hash table.  Since the SHA1
128                  * message digest can be considered random, we don't really need
129                  * the full 20 byte hash just to insert the entry in a hash
130                  * table. */
131                 size_t hash_short;
132         };
133
134         #ifdef WITH_FUSE
135         u16 num_opened_fds;
136         #endif
137
138         /* Pointers to somewhere where the stream is actually located.  See the
139          * comments for the @resource_location field above. */
140         union {
141                 WIMStruct *wim;
142                 char *file_on_disk;
143                 char *staging_file_name;
144                 u8 *attached_buffer;
145         #ifdef WITH_NTFS_3G
146                 struct ntfs_location *ntfs_loc;
147         #endif
148         };
149         union {
150                 /* @file_on_disk_fp and @attr are both used to cache file/stream
151                  * handles so we don't have re-open them on every read */
152
153                 /* Valid iff resource_location == RESOURCE_IN_FILE_ON_DISK */
154                 FILE *file_on_disk_fp;
155         #ifdef WITH_NTFS_3G
156                 /* Valid iff resource_location == RESOURCE_IN_NTFS_VOLUME */
157                 struct _ntfs_attr *attr;
158         #endif
159
160                 /* Pointer to inode that contains the opened file descriptors to
161                  * this stream (valid iff resource_location ==
162                  * RESOURCE_IN_STAGING_FILE) */
163                 struct inode *lte_inode;
164         };
165
166         /* When a WIM file is written, out_refcnt starts at 0 and is incremented
167          * whenever the file resource pointed to by this lookup table entry
168          * needs to be written.  The file resource only need to be written when
169          * out_refcnt is nonzero, since otherwise it is not referenced by any
170          * dentries. */
171         u32 out_refcnt;
172
173         u32 real_refcnt;
174
175         union {
176                 /* When a WIM file is written, @output_resource_entry is filled
177                  * in with the resource entry for the output WIM.  This will not
178                  * necessarily be the same as the @resource_entry since: - The
179                  * stream may have a different offset in the new WIM - The
180                  * stream may have a different compressed size in the new WIM if
181                  * the compression type changed
182                  */
183                 struct resource_entry output_resource_entry;
184
185                 struct list_head msg_list;
186                 struct list_head inode_list;
187         };
188
189         /* List of lookup table entries that correspond to streams that have
190          * been extracted to the staging directory when modifying a read-write
191          * mounted WIM.
192          *
193          * This field is also used to make other lists of lookup table entries.
194          * */
195         struct list_head staging_list;
196
197         /* This field is used for the special hardlink or symlink image
198          * extraction mode.   In these mode, all identical files are linked
199          * together, and @extracted_file will be set to the filename of the
200          * first extracted file containing this stream.  */
201         char *extracted_file;
202 };
203
204 static inline u64
205 wim_resource_size(const struct lookup_table_entry *lte)
206 {
207         return lte->resource_entry.original_size;
208 }
209
210 static inline u64
211 wim_resource_chunks(const struct lookup_table_entry *lte)
212 {
213         return (wim_resource_size(lte) + WIM_CHUNK_SIZE - 1) / WIM_CHUNK_SIZE;
214 }
215
216 static inline u64
217 wim_resource_compressed_size(const struct lookup_table_entry *lte)
218 {
219         return lte->resource_entry.size;
220 }
221
222 /*
223  * XXX Probably should store the compression type directly in the lookup table
224  * entry
225  */
226 static inline int
227 wim_resource_compression_type(const struct lookup_table_entry *lte)
228 {
229         if (!(lte->resource_entry.flags & WIM_RESHDR_FLAG_COMPRESSED)
230             || lte->resource_location != RESOURCE_IN_WIM)
231                 return WIMLIB_COMPRESSION_TYPE_NONE;
232         return wimlib_get_compression_type(lte->wim);
233 }
234
235
236 extern struct lookup_table *
237 new_lookup_table(size_t capacity);
238
239 extern int
240 read_lookup_table(WIMStruct *w);
241
242 extern int
243 write_lookup_table(struct lookup_table *table, FILE *out,
244                    struct resource_entry *out_res_entry);
245 extern void
246 free_lookup_table(struct lookup_table *table);
247
248 extern void
249 lookup_table_insert(struct lookup_table *table, struct lookup_table_entry *lte);
250
251 /* Unlinks a lookup table entry from the table; does not free it. */
252 static inline void
253 lookup_table_unlink(struct lookup_table *table, struct lookup_table_entry *lte)
254 {
255         hlist_del(&lte->hash_list);
256         table->num_entries--;
257 }
258
259 extern struct lookup_table_entry *
260 new_lookup_table_entry();
261
262 extern struct lookup_table_entry *
263 clone_lookup_table_entry(const struct lookup_table_entry *lte);
264
265 extern void
266 print_lookup_table_entry(const struct lookup_table_entry *entry);
267
268 extern void
269 free_lookup_table_entry(struct lookup_table_entry *lte);
270
271 extern int
272 for_lookup_table_entry(struct lookup_table *table,
273                        int (*visitor)(struct lookup_table_entry *, void *),
274                        void *arg);
275
276 extern struct lookup_table_entry *
277 __lookup_resource(const struct lookup_table *table, const u8 hash[]);
278
279 extern int
280 lookup_resource(WIMStruct *w, const char *path,
281                 int lookup_flags, struct dentry **dentry_ret,
282                 struct lookup_table_entry **lte_ret, u16 *stream_idx_ret);
283
284 extern void
285 lte_decrement_refcnt(struct lookup_table_entry *lte,
286                      struct lookup_table *table);
287 #ifdef WITH_FUSE
288 extern void
289 lte_decrement_num_opened_fds(struct lookup_table_entry *lte);
290 #endif
291
292 extern int
293 lte_zero_out_refcnt(struct lookup_table_entry *entry, void *ignore);
294
295 extern int
296 lte_zero_real_refcnt(struct lookup_table_entry *entry, void *ignore);
297
298 extern int
299 lte_free_extracted_file(struct lookup_table_entry *lte, void *ignore);
300
301 extern void
302 inode_resolve_ltes(struct inode *inode, struct lookup_table *table);
303
304 extern void
305 inode_unresolve_ltes(struct inode *inode);
306
307 extern int
308 write_lookup_table_entry(struct lookup_table_entry *lte, void *__out);
309
310 static inline struct resource_entry*
311 wim_metadata_resource_entry(WIMStruct *w)
312 {
313         return &w->image_metadata[
314                         w->current_image - 1].metadata_lte->resource_entry;
315 }
316
317 static inline struct lookup_table_entry *
318 inode_stream_lte_resolved(const struct inode *inode, unsigned stream_idx)
319 {
320         wimlib_assert(inode->resolved);
321         wimlib_assert(stream_idx <= inode->num_ads);
322         if (stream_idx == 0)
323                 return inode->lte;
324         else
325                 return inode->ads_entries[stream_idx - 1].lte;
326 }
327
328 static inline struct lookup_table_entry *
329 inode_stream_lte_unresolved(const struct inode *inode, unsigned stream_idx,
330                             const struct lookup_table *table)
331 {
332         wimlib_assert(!inode->resolved);
333         wimlib_assert(stream_idx <= inode->num_ads);
334         if (!table)
335                 return NULL;
336         if (stream_idx == 0)
337                 return __lookup_resource(table, inode->hash);
338         else
339                 return __lookup_resource(table,
340                                          inode->ads_entries[
341                                                 stream_idx - 1].hash);
342 }
343
344 extern struct lookup_table_entry *
345 inode_stream_lte(const struct inode *inode, unsigned stream_idx,
346                  const struct lookup_table *table);
347
348 static inline const u8 *
349 inode_stream_hash_unresolved(const struct inode *inode, unsigned stream_idx)
350 {
351         wimlib_assert(!inode->resolved);
352         wimlib_assert(stream_idx <= inode->num_ads);
353         if (stream_idx == 0)
354                 return inode->hash;
355         else
356                 return inode->ads_entries[stream_idx - 1].hash;
357 }
358
359
360 static inline const u8 *
361 inode_stream_hash_resolved(const struct inode *inode, unsigned stream_idx)
362 {
363         struct lookup_table_entry *lte;
364         lte = inode_stream_lte_resolved(inode, stream_idx);
365         if (lte)
366                 return lte->hash;
367         else
368                 return zero_hash;
369 }
370
371 /*
372  * Returns the hash for stream @stream_idx of the inode, where stream_idx = 0
373  * means the default un-named file stream, and stream_idx >= 1 corresponds to an
374  * alternate data stream.
375  *
376  * This works for both resolved and un-resolved dentries.
377  */
378 static inline const u8 *
379 inode_stream_hash(const struct inode *inode, unsigned stream_idx)
380 {
381         if (inode->resolved)
382                 return inode_stream_hash_resolved(inode, stream_idx);
383         else
384                 return inode_stream_hash_unresolved(inode, stream_idx);
385 }
386
387 static inline u16
388 inode_stream_name_len(const struct inode *inode, unsigned stream_idx)
389 {
390         wimlib_assert(stream_idx <= inode->num_ads);
391         if (stream_idx == 0)
392                 return 0;
393         else
394                 return inode->ads_entries[stream_idx - 1].stream_name_len;
395 }
396
397 static inline struct lookup_table_entry *
398 inode_unnamed_lte_resolved(const struct inode *inode)
399 {
400         wimlib_assert(inode->resolved);
401         for (unsigned i = 0; i <= inode->num_ads; i++)
402                 if (inode_stream_name_len(inode, i) == 0 &&
403                      !is_zero_hash(inode_stream_hash_resolved(inode, i)))
404                         return inode_stream_lte_resolved(inode, i);
405         return NULL;
406 }
407
408 static inline struct lookup_table_entry *
409 inode_unnamed_lte_unresolved(const struct inode *inode,
410                              const struct lookup_table *table)
411 {
412         wimlib_assert(!inode->resolved);
413         for (unsigned i = 0; i <= inode->num_ads; i++)
414                 if (inode_stream_name_len(inode, i) == 0 &&
415                      !is_zero_hash(inode_stream_hash_unresolved(inode, i)))
416                         return inode_stream_lte_unresolved(inode, i, table);
417         return NULL;
418 }
419
420 extern struct lookup_table_entry *
421 inode_unnamed_lte(const struct inode *inode, const struct lookup_table *table);
422
423 extern u64
424 lookup_table_total_stream_size(struct lookup_table *table);
425
426 #endif