]> wimlib.net Git - wimlib/blob - include/wimlib/lookup_table.h
Re-visit SHA-1 code
[wimlib] / include / wimlib / lookup_table.h
1 #ifndef _WIMLIB_LOOKUP_TABLE_H
2 #define _WIMLIB_LOOKUP_TABLE_H
3
4 #include "wimlib/list.h"
5 #include "wimlib/resource.h"
6 #include "wimlib/sha1.h"
7 #include "wimlib/types.h"
8
9 /* An enumerated type that identifies where the stream corresponding to this
10  * lookup table entry is actually located.
11  *
12  * If we open a WIM and read its lookup table, the location is set to
13  * RESOURCE_IN_WIM since all the streams will initially be located in the WIM.
14  * However, to handle situations such as image capture and image mount, we allow
15  * the actual location of the stream to be somewhere else, such as an external
16  * file.  */
17 enum resource_location {
18         /* The lookup table entry does not yet correspond to a stream; this is a
19          * temporary state only.  */
20         RESOURCE_NONEXISTENT = 0,
21
22         /* The stream is located in a resource in a WIM file identified by the
23          * `struct wim_resource_spec' pointed to by @rspec.  @offset_in_res
24          * identifies the offset at which this particular stream begins in the
25          * uncompressed data of the resource; this is normally 0, but in general
26          * a WIM resource may be "packed" and potentially contain multiple
27          * streams.  */
28         RESOURCE_IN_WIM,
29
30         /* The stream is located in the external file named by @file_on_disk.
31          */
32         RESOURCE_IN_FILE_ON_DISK,
33
34         /* The stream is directly attached in the in-memory buffer pointed to by
35          * @attached_buffer.  */
36         RESOURCE_IN_ATTACHED_BUFFER,
37
38 #ifdef WITH_FUSE
39         /* The stream is located in the external file named by
40          * @staging_file_name, located in the staging directory for a read-write
41          * mount.  */
42         RESOURCE_IN_STAGING_FILE,
43 #endif
44
45 #ifdef WITH_NTFS_3G
46         /* The stream is located in an NTFS volume.  It is identified by volume,
47          * filename, data stream name, and by whether it is a reparse point or
48          * not.  @ntfs_loc points to a structure containing this information.
49          * */
50         RESOURCE_IN_NTFS_VOLUME,
51 #endif
52
53 #ifdef __WIN32__
54         /* Windows only: the stream is located in the external file named by
55          * @file_on_disk, which is in the Windows NT namespace and may specify a
56          * named data stream.  */
57         RESOURCE_IN_WINNT_FILE_ON_DISK,
58
59         /* Windows only: the stream is located in the external file named by
60          * @file_on_disk, but the file is encrypted and must be read using the
61          * appropriate Windows API.  */
62         RESOURCE_WIN32_ENCRYPTED,
63 #endif
64 };
65
66 struct stream_owner {
67         struct wim_inode *inode;
68         const utf16lechar *stream_name;
69 };
70
71 /* Specification for a stream, which may be the contents of a file (unnamed data
72  * stream), a named data stream, reparse point data, or a WIM metadata resource.
73  *
74  * One instance of this structure is created for each entry in the WIM's lookup
75  * table, hence the name of the struct.  Each of these entries contains the SHA1
76  * message digest of a stream and the location of the stream data in the WIM
77  * file (size, location, flags).  The in-memory lookup table is a map from SHA1
78  * message digests to stream locations.  */
79 struct wim_lookup_table_entry {
80
81         /* List node for a hash bucket of the lookup table.  */
82         struct hlist_node hash_list;
83
84         /* Uncompressed size of this stream.  */
85         u64 size;
86
87         /* Stream flags (WIM_RESHDR_FLAG_*).  */
88         u32 flags : 8;
89
90         /* One of the `enum resource_location' values documented above.  */
91         u32 resource_location : 4;
92
93         /* 1 if this stream has not had a SHA1 message digest calculated for it
94          * yet.  */
95         u32 unhashed : 1;
96
97         /* Temoorary fields used when writing streams; set as documented for
98          * prepare_stream_list_for_write().  */
99         u32 unique_size : 1;
100         u32 will_be_in_output_wim : 1;
101
102         /* Set to 1 when a metadata entry has its checksum changed; in such
103          * cases the hash cannot be used to verify the data if the metadata
104          * resource is read again.  (This could be avoided if we used separate
105          * fields for input/output checksum, but most stream entries wouldn't
106          * need this.)  */
107         u32 dont_check_metadata_hash : 1;
108
109         union {
110                 /* (On-disk field) SHA1 message digest of the stream referenced
111                  * by this lookup table entry.  */
112                 u8  hash[SHA1_HASH_SIZE];
113
114                 /* First 4 or 8 bytes of the SHA1 message digest, used for
115                  * inserting the entry into the hash table.  Since the SHA1
116                  * message digest can be considered random, we don't really need
117                  * the full 20 byte hash just to insert the entry in a hash
118                  * table.  */
119                 size_t hash_short;
120
121                 /* Unhashed entries only (unhashed == 1): these variables make
122                  * it possible to find the pointer to this 'struct
123                  * wim_lookup_table_entry' contained in either 'struct
124                  * wim_ads_entry' or 'struct wim_inode'.  There can be at most 1
125                  * such pointer, as we can only join duplicate streams after
126                  * they have been hashed.  */
127                 struct {
128                         struct wim_inode *back_inode;
129                         u32 back_stream_id;
130                 };
131         };
132
133         /* Number of times this lookup table entry is referenced by dentries in
134          * the WIM.  When a WIM's lookup table is read, this field is
135          * initialized from a corresponding entry; while it should be correct,
136          * in general it may not be.  wim_recalculate_refcnts() recalculates the
137          * reference counts for all streams and is run before doing any
138          * deletions.  */
139         u32 refcnt;
140
141         /* When a WIM file is written, this is set to the number of references
142          * (by dentries) to this stream in the output WIM file.
143          *
144          * During extraction, this is the number of slots in stream_owners (or
145          * inline_stream_owners) that have been filled.
146          *
147          * During image export, this is set to the number of references of this
148          * stream that originated from the source WIM.
149          *
150          * When mounting a WIM image read-write, this is set to the number of
151          * extra references to this stream preemptively taken to allow later
152          * saving the modified image as a new image and leaving the original
153          * image alone.  */
154         u32 out_refcnt;
155
156 #ifdef WITH_FUSE
157         /* Number of open file descriptors to this stream during a FUSE mount of
158          * the containing image.  */
159         u16 num_opened_fds;
160 #endif
161
162         /* Specification of where this stream is actually located.  Which member
163          * is valid is determined by the @resource_location field.  */
164         union {
165                 struct {
166                         struct wim_resource_spec *rspec;
167                         u64 offset_in_res;
168                 };
169                 tchar *file_on_disk;
170                 void *attached_buffer;
171         #ifdef WITH_FUSE
172                 struct {
173                         char *staging_file_name;
174                         int staging_dir_fd;
175                 };
176         #endif
177         #ifdef WITH_NTFS_3G
178                 struct ntfs_location *ntfs_loc;
179         #endif
180         };
181
182         /* Links together streams that share the same underlying WIM resource.
183          * The head is the `stream_list' member of `struct wim_resource_spec'.
184          */
185         struct list_head rspec_node;
186
187         /* Temporary fields  */
188         union {
189                 /* Fields used temporarily during WIM file writing.  */
190                 struct {
191                         union {
192                                 /* List node used for stream size table.  */
193                                 struct hlist_node hash_list_2;
194
195                                 /* Metadata for the underlying packed resource
196                                  * in the WIM being written (only valid if
197                                  * WIM_RESHDR_FLAG_PACKED_STREAMS set in
198                                  * out_reshdr.flags).  */
199                                 struct {
200                                         u64 out_res_offset_in_wim;
201                                         u64 out_res_size_in_wim;
202                                         u64 out_res_uncompressed_size;
203                                 };
204                         };
205
206                         /* Links streams being written to the WIM.  */
207                         struct list_head write_streams_list;
208
209                         /* Metadata for this stream in the WIM being written.
210                          */
211                         struct wim_reshdr out_reshdr;
212                 };
213
214                 /* Used temporarily during extraction.  This is an array of
215                  * pointers to the inodes being extracted that use this stream.
216                  */
217                 union {
218                         /* Inodes to extract that reference this stream.
219                          * out_refcnt tracks the number of slots filled.  */
220                         struct stream_owner inline_stream_owners[3];
221                         struct {
222                                 struct stream_owner *stream_owners;
223                                 u32 alloc_stream_owners;
224                         };
225                 };
226
227                 /* Actual reference count to this stream (only used while
228                  * verifying an image).  */
229                 u32 real_refcnt;
230         };
231
232         /* Temporary list fields.  */
233         union {
234                 /* Links streams for writing lookup table.  */
235                 struct list_head lookup_table_list;
236
237                 /* Links streams being extracted.  */
238                 struct list_head extraction_list;
239
240                 /* Links streams being exported.  */
241                 struct list_head export_stream_list;
242
243                 /* Links original list of streams in the read-write mounted image.  */
244                 struct list_head orig_stream_list;
245         };
246
247         /* Links streams that are still unhashed after being been added to a
248          * WIM.  */
249         struct list_head unhashed_list;
250 };
251
252 /* Functions to allocate and free lookup tables  */
253
254 extern struct wim_lookup_table *
255 new_lookup_table(size_t capacity) _malloc_attribute;
256
257 extern void
258 free_lookup_table(struct wim_lookup_table *table);
259
260 /* Functions to read or write the lookup table from/to a WIM file  */
261
262 extern int
263 read_wim_lookup_table(WIMStruct *wim);
264
265 extern int
266 write_wim_lookup_table_from_stream_list(struct list_head *stream_list,
267                                         struct filedes *out_fd,
268                                         u16 part_number,
269                                         struct wim_reshdr *out_reshdr,
270                                         int write_resource_flags);
271
272 /* Functions to create, clone, print, and free lookup table entries  */
273
274 extern struct wim_lookup_table_entry *
275 new_lookup_table_entry(void) _malloc_attribute;
276
277 extern struct wim_lookup_table_entry *
278 clone_lookup_table_entry(const struct wim_lookup_table_entry *lte)
279                         _malloc_attribute;
280
281 extern void
282 lte_decrement_refcnt(struct wim_lookup_table_entry *lte,
283                      struct wim_lookup_table *table);
284 #ifdef WITH_FUSE
285 extern void
286 lte_decrement_num_opened_fds(struct wim_lookup_table_entry *lte);
287 #endif
288
289 extern void
290 free_lookup_table_entry(struct wim_lookup_table_entry *lte);
291
292 /* Functions to insert and delete entries from a lookup table  */
293
294 extern void
295 lookup_table_insert(struct wim_lookup_table *table,
296                 struct wim_lookup_table_entry *lte);
297
298 extern void
299 lookup_table_unlink(struct wim_lookup_table *table,
300                     struct wim_lookup_table_entry *lte);
301
302 /* Function to lookup a stream by SHA1 message digest  */
303 extern struct wim_lookup_table_entry *
304 lookup_stream(const struct wim_lookup_table *table, const u8 hash[]);
305
306 /* Functions to iterate through the entries of a lookup table  */
307
308 extern int
309 for_lookup_table_entry(struct wim_lookup_table *table,
310                        int (*visitor)(struct wim_lookup_table_entry *, void *),
311                        void *arg);
312
313 extern int
314 for_lookup_table_entry_pos_sorted(struct wim_lookup_table *table,
315                                   int (*visitor)(struct wim_lookup_table_entry *,
316                                                  void *),
317                                   void *arg);
318
319
320
321 /* Function to get a resource entry in stable format  */
322
323 struct wimlib_resource_entry;
324
325 extern void
326 lte_to_wimlib_resource_entry(const struct wim_lookup_table_entry *lte,
327                              struct wimlib_resource_entry *wentry);
328
329 /* Functions to sort a list of lookup table entries  */
330 extern int
331 sort_stream_list(struct list_head *stream_list,
332                  size_t list_head_offset,
333                  int (*compar)(const void *, const void*));
334
335 extern int
336 sort_stream_list_by_sequential_order(struct list_head *stream_list,
337                                      size_t list_head_offset);
338
339 /* Utility functions  */
340
341 extern int
342 lte_zero_out_refcnt(struct wim_lookup_table_entry *lte, void *ignore);
343
344 extern int
345 lte_zero_real_refcnt(struct wim_lookup_table_entry *lte, void *ignore);
346
347 static inline bool
348 lte_is_partial(const struct wim_lookup_table_entry * lte)
349 {
350         return lte->resource_location == RESOURCE_IN_WIM &&
351                lte->size != lte->rspec->uncompressed_size;
352 }
353
354 static inline const struct stream_owner *
355 stream_owners(struct wim_lookup_table_entry *stream)
356 {
357         if (stream->out_refcnt <= ARRAY_LEN(stream->inline_stream_owners))
358                 return stream->inline_stream_owners;
359         else
360                 return stream->stream_owners;
361 }
362
363 static inline void
364 lte_bind_wim_resource_spec(struct wim_lookup_table_entry *lte,
365                            struct wim_resource_spec *rspec)
366 {
367         lte->resource_location = RESOURCE_IN_WIM;
368         lte->rspec = rspec;
369         list_add_tail(&lte->rspec_node, &rspec->stream_list);
370 }
371
372 static inline void
373 lte_unbind_wim_resource_spec(struct wim_lookup_table_entry *lte)
374 {
375         list_del(&lte->rspec_node);
376         lte->resource_location = RESOURCE_NONEXISTENT;
377 }
378
379 extern void
380 lte_put_resource(struct wim_lookup_table_entry *lte);
381
382 extern struct wim_lookup_table_entry *
383 new_stream_from_data_buffer(const void *buffer, size_t size,
384                             struct wim_lookup_table *lookup_table);
385
386 static inline void
387 add_unhashed_stream(struct wim_lookup_table_entry *lte,
388                     struct wim_inode *back_inode,
389                     u32 back_stream_id,
390                     struct list_head *unhashed_streams)
391 {
392         lte->unhashed = 1;
393         lte->back_inode = back_inode;
394         lte->back_stream_id = back_stream_id;
395         list_add_tail(&lte->unhashed_list, unhashed_streams);
396 }
397
398 extern int
399 hash_unhashed_stream(struct wim_lookup_table_entry *lte,
400                      struct wim_lookup_table *lookup_table,
401                      struct wim_lookup_table_entry **lte_ret);
402
403 extern struct wim_lookup_table_entry **
404 retrieve_lte_pointer(struct wim_lookup_table_entry *lte);
405
406 #endif /* _WIMLIB_LOOKUP_TABLE_H */