]> wimlib.net Git - wimlib/blob - include/wimlib/blob_table.h
e273de2531b8fd16280b5737c6421526e32afb75
[wimlib] / include / wimlib / blob_table.h
1 #ifndef _WIMLIB_BLOB_TABLE_H
2 #define _WIMLIB_BLOB_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 a blob's data is located.  */
10 enum blob_location {
11
12         /* The blob's data does not exist.  This is a temporary state only.  */
13         BLOB_NONEXISTENT = 0,
14
15         /* The blob's data is located in a WIM resource identified by the
16          * `struct wim_resource_descriptor' pointed to by @rdesc.
17          * @offset_in_res identifies the offset at which this particular blob
18          * begins in the uncompressed data of the resource.  */
19         BLOB_IN_WIM,
20
21         /* The blob's data is available as the contents of the file named by
22          * @file_on_disk.  */
23         BLOB_IN_FILE_ON_DISK,
24
25         /* The blob's data is available as the contents of the in-memory buffer
26          * pointed to by @attached_buffer.  */
27         BLOB_IN_ATTACHED_BUFFER,
28
29 #ifdef WITH_FUSE
30         /* The blob's data is available as the contents of the file with name
31          * @staging_file_name relative to the open directory file descriptor
32          * @staging_dir_fd.  */
33         BLOB_IN_STAGING_FILE,
34 #endif
35
36 #ifdef WITH_NTFS_3G
37         /* The blob's data is available as the contents of an NTFS attribute
38          * accessible through libntfs-3g.  The attribute is identified by
39          * volume, path to an inode, attribute name, and attribute type.
40          * @ntfs_loc points to a structure containing this information.  */
41         BLOB_IN_NTFS_VOLUME,
42 #endif
43
44 #ifdef __WIN32__
45         /* Windows only: the blob's data is available as the contents of the
46          * data stream named by @file_on_disk.  @file_on_disk is an NT namespace
47          * path that may be longer than the Win32-level MAX_PATH.  Furthermore,
48          * the stream may require "backup semantics" to access.  */
49         BLOB_IN_WINNT_FILE_ON_DISK,
50
51         /* Windows only: the blob's data is available as the raw encrypted data
52          * of the external file named by @file_on_disk.  @file_on_disk is a
53          * Win32 namespace path.  */
54         BLOB_WIN32_ENCRYPTED,
55 #endif
56 };
57
58 /* A "blob target" is a stream, and the inode to which that stream belongs, to
59  * which a blob needs to be extracted as part of an extraction operation.  Since
60  * blobs are single-instanced, a blob may have multiple targets.  */
61 struct blob_extraction_target {
62         struct wim_inode *inode;
63         struct wim_inode_stream *stream;
64 };
65
66 /*
67  * Descriptor for a blob, which is a known length sequence of binary data.
68  *
69  * Within a WIM file, blobs are single instanced and are identified by SHA-1
70  * message digest.
71  */
72 struct blob_descriptor {
73
74         /* List node for a hash bucket of the blob table  */
75         struct hlist_node hash_list;
76
77         /* Uncompressed size of this blob  */
78         u64 size;
79
80         union {
81                 /*
82                  * For unhashed == 0: 'hash' is the SHA-1 message digest of the
83                  * blob's data.  'hash_short' allows accessing just a prefix of
84                  * the SHA-1 message digest, which is useful for getting a "hash
85                  * code" for hash table lookup/insertion.
86                  */
87                 u8 hash[SHA1_HASH_SIZE];
88                 size_t hash_short;
89
90                 /* For unhashed == 1: these variables make it possible to find
91                  * the stream that references this blob.  There can be at most
92                  * one such reference, since duplicate blobs can only be joined
93                  * after they have been hashed.  */
94                 struct {
95                         struct wim_inode *back_inode;
96                         u32 back_stream_id;
97                 };
98         };
99
100         /* Number of times this blob is referenced by file streams in WIM
101          * images.  See blob_decrement_refcnt() for information about the
102          * limitations of this field.  */
103         u32 refcnt;
104
105         /*
106          * When a WIM file is written, this is set to the number of references
107          * (from file streams) to this blob in the output WIM file.
108          *
109          * During extraction, this is set to the number of targets to which this
110          * blob is being extracted.
111          *
112          * During image export, this is set to the number of references of this
113          * blob that originated from the source WIM.
114          *
115          * When mounting a WIM image read-write, this is set to the number of
116          * extra references to this blob preemptively taken to allow later
117          * saving the modified image as a new image and leaving the original
118          * image alone.
119          */
120         u32 out_refcnt;
121
122 #ifdef WITH_FUSE
123         /* Number of open file descriptors to this blob during a FUSE mount of
124          * the containing image.  */
125         u16 num_opened_fds;
126 #endif
127
128         /* One of the `enum blob_location' values documented above.  */
129         u16 blob_location : 4;
130
131         /* 1 iff this blob contains "metadata" as opposed to data.  */
132         u16 is_metadata : 1;
133
134         /* 1 iff the SHA-1 message digest of this blob is unknown.  */
135         u16 unhashed : 1;
136
137         /* Temporary fields used when writing blobs; set as documented for
138          * prepare_blob_list_for_write().  */
139         u16 unique_size : 1;
140         u16 will_be_in_output_wim : 1;
141
142         /* Set to 1 if this blob represents a metadata resource that has been
143          * changed.  In such cases, the hash cannot be used to verify the data
144          * if the metadata resource is read again.  (This could be avoided if we
145          * used separate fields for input/output checksum, but most blobs
146          * wouldn't need this.)  */
147         u16 dont_check_metadata_hash : 1;
148
149         u16 may_send_done_with_file : 1;
150
151         /* Only used by wimlib_export_image() */
152         u16 was_exported : 1;
153
154         /* Specification of where this blob's data is located.  Which member of
155          * this union is valid is determined by the @blob_location field.  */
156         union {
157                 /* BLOB_IN_WIM  */
158                 struct {
159                         struct wim_resource_descriptor *rdesc;
160                         u64 offset_in_res;
161
162                         /* Links together blobs that share the same underlying
163                          * WIM resource.  The head is rdesc->blob_list.  */
164                         struct list_head rdesc_node;
165                 };
166
167                 struct {
168
169                         union {
170
171                                 /* BLOB_IN_FILE_ON_DISK
172                                  * BLOB_IN_WINNT_FILE_ON_DISK
173                                  * BLOB_WIN32_ENCRYPTED  */
174                                 struct {
175                                         tchar *file_on_disk;
176                                         struct wim_inode *file_inode;
177                                 };
178
179                                 /* BLOB_IN_ATTACHED_BUFFER */
180                                 void *attached_buffer;
181
182                         #ifdef WITH_FUSE
183                                 /* BLOB_IN_STAGING_FILE  */
184                                 struct {
185                                         char *staging_file_name;
186                                         int staging_dir_fd;
187                                 };
188                         #endif
189
190                         #ifdef WITH_NTFS_3G
191                                 /* BLOB_IN_NTFS_VOLUME  */
192                                 struct ntfs_location *ntfs_loc;
193                         #endif
194                         };
195
196                         /* List link for per-WIM-image list of unhashed blobs */
197                         struct list_head unhashed_list;
198                 };
199         };
200
201         /* Temporary fields  */
202         union {
203                 /* Fields used temporarily during WIM file writing.  */
204                 struct {
205                         union {
206                                 /* List node used for blob size table.  */
207                                 struct hlist_node hash_list_2;
208
209                                 /* Metadata for the underlying solid resource in
210                                  * the WIM being written (only valid if
211                                  * WIM_RESHDR_FLAG_SOLID set in
212                                  * out_reshdr.flags).  */
213                                 struct {
214                                         u64 out_res_offset_in_wim;
215                                         u64 out_res_size_in_wim;
216                                         u64 out_res_uncompressed_size;
217                                 };
218                         };
219
220                         /* Links blobs being written to the WIM.  */
221                         struct list_head write_blobs_list;
222
223                         union {
224                                 /* Metadata for this blob in the WIM being
225                                  * written.  */
226                                 struct wim_reshdr out_reshdr;
227
228                                 struct {
229                                         /* Name under which this blob is being
230                                          * sorted; used only when sorting blobs
231                                          * for solid compression.  */
232                                         utf16lechar *solid_sort_name;
233                                         size_t solid_sort_name_nbytes;
234                                 };
235                         };
236                 };
237
238                 /* Used temporarily during extraction.  This is an array of
239                  * references to the streams being extracted that use this blob.
240                  * out_refcnt tracks the number of slots filled.  */
241                 union {
242                         struct blob_extraction_target inline_blob_extraction_targets[3];
243                         struct {
244                                 struct blob_extraction_target *blob_extraction_targets;
245                                 u32 alloc_blob_extraction_targets;
246                         };
247                 };
248         };
249
250         /* Temporary list fields.  */
251         union {
252                 /* Links blobs for writing blob table.  */
253                 struct list_head blob_table_list;
254
255                 /* Links blobs being extracted.  */
256                 struct list_head extraction_list;
257
258                 /* Links blobs being exported.  */
259                 struct list_head export_blob_list;
260
261                 /* Links original list of blobs in the read-write mounted image.  */
262                 struct list_head orig_blob_list;
263         };
264 };
265
266 extern struct blob_table *
267 new_blob_table(size_t capacity) _malloc_attribute;
268
269 extern void
270 free_blob_table(struct blob_table *table);
271
272 extern int
273 read_blob_table(WIMStruct *wim);
274
275 extern int
276 write_blob_table_from_blob_list(struct list_head *blob_list,
277                                 struct filedes *out_fd,
278                                 u16 part_number,
279                                 struct wim_reshdr *out_reshdr,
280                                 int write_resource_flags);
281
282 extern struct blob_descriptor *
283 new_blob_descriptor(void) _malloc_attribute;
284
285 extern struct blob_descriptor *
286 clone_blob_descriptor(const struct blob_descriptor *blob) _malloc_attribute;
287
288 extern void
289 blob_decrement_refcnt(struct blob_descriptor *blob, struct blob_table *table);
290
291 extern void
292 blob_subtract_refcnt(struct blob_descriptor *blob, struct blob_table *table,
293                      u32 count);
294
295 #ifdef WITH_FUSE
296 extern void
297 blob_decrement_num_opened_fds(struct blob_descriptor *blob);
298 #endif
299
300 extern void
301 free_blob_descriptor(struct blob_descriptor *blob);
302
303 extern void
304 blob_table_insert(struct blob_table *table, struct blob_descriptor *blob);
305
306 extern void
307 blob_table_unlink(struct blob_table *table, struct blob_descriptor *blob);
308
309 extern struct blob_descriptor *
310 lookup_blob(const struct blob_table *table, const u8 *hash);
311
312 extern int
313 for_blob_in_table(struct blob_table *table,
314                   int (*visitor)(struct blob_descriptor *, void *), void *arg);
315
316 extern int
317 for_blob_in_table_sorted_by_sequential_order(struct blob_table *table,
318                                              int (*visitor)(struct blob_descriptor *, void *),
319                                              void *arg);
320
321 struct wimlib_resource_entry;
322
323 extern void
324 blob_to_wimlib_resource_entry(const struct blob_descriptor *blob,
325                               struct wimlib_resource_entry *wentry);
326
327 extern int
328 sort_blob_list(struct list_head *blob_list,
329                size_t list_head_offset,
330                int (*compar)(const void *, const void*));
331
332 extern int
333 sort_blob_list_by_sequential_order(struct list_head *blob_list,
334                                    size_t list_head_offset);
335
336 extern int
337 cmp_blobs_by_sequential_order(const void *p1, const void *p2);
338
339 static inline const struct blob_extraction_target *
340 blob_extraction_targets(struct blob_descriptor *blob)
341 {
342         if (blob->out_refcnt <= ARRAY_LEN(blob->inline_blob_extraction_targets))
343                 return blob->inline_blob_extraction_targets;
344         else
345                 return blob->blob_extraction_targets;
346 }
347
348 static inline void
349 blob_set_is_located_in_wim_resource(struct blob_descriptor *blob,
350                                     struct wim_resource_descriptor *rdesc)
351 {
352         blob->blob_location = BLOB_IN_WIM;
353         blob->rdesc = rdesc;
354         list_add_tail(&blob->rdesc_node, &rdesc->blob_list);
355 }
356
357 static inline void
358 blob_unset_is_located_in_wim_resource(struct blob_descriptor *blob)
359 {
360         list_del(&blob->rdesc_node);
361         blob->blob_location = BLOB_NONEXISTENT;
362 }
363
364 extern struct blob_descriptor *
365 new_blob_from_data_buffer(const void *buffer, size_t size,
366                           struct blob_table *blob_table);
367
368 extern struct blob_descriptor *
369 after_blob_hashed(struct blob_descriptor *blob,
370                   struct blob_descriptor **back_ptr,
371                   struct blob_table *blob_table);
372
373 extern int
374 hash_unhashed_blob(struct blob_descriptor *blob,
375                    struct blob_table *blob_table,
376                    struct blob_descriptor **blob_ret);
377
378 extern struct blob_descriptor **
379 retrieve_pointer_to_unhashed_blob(struct blob_descriptor *blob);
380
381 static inline void
382 prepare_unhashed_blob(struct blob_descriptor *blob,
383                       struct wim_inode *back_inode, u32 stream_id,
384                       struct list_head *unhashed_blobs)
385 {
386         if (!blob)
387                 return;
388         blob->unhashed = 1;
389         blob->back_inode = back_inode;
390         blob->back_stream_id = stream_id;
391         list_add_tail(&blob->unhashed_list, unhashed_blobs);
392 }
393
394 #endif /* _WIMLIB_BLOB_TABLE_H */