]> wimlib.net Git - wimlib/blob - src/blob_table.c
cf25d005225c67af63791125760f892dd0f4487a
[wimlib] / src / blob_table.c
1 /*
2  * blob_table.c
3  *
4  * A blob table maps SHA-1 message digests to "blobs", which are nonempty
5  * sequences of binary data.  Within a WIM file, blobs are single-instanced.
6  *
7  * This file also contains code to read and write the corresponding on-disk
8  * representation of this table in the WIM file format.
9  */
10
11 /*
12  * Copyright (C) 2012, 2013, 2014, 2015 Eric Biggers
13  *
14  * This file is free software; you can redistribute it and/or modify it under
15  * the terms of the GNU Lesser General Public License as published by the Free
16  * Software Foundation; either version 3 of the License, or (at your option) any
17  * later version.
18  *
19  * This file is distributed in the hope that it will be useful, but WITHOUT
20  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
21  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
22  * details.
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * along with this file; if not, see http://www.gnu.org/licenses/.
26  */
27
28 #ifdef HAVE_CONFIG_H
29 #  include "config.h"
30 #endif
31
32 #include <stdlib.h>
33 #include <string.h>
34 #include <unistd.h> /* for unlink()  */
35
36 #include "wimlib/assert.h"
37 #include "wimlib/blob_table.h"
38 #include "wimlib/encoding.h"
39 #include "wimlib/endianness.h"
40 #include "wimlib/error.h"
41 #include "wimlib/metadata.h"
42 #include "wimlib/ntfs_3g.h"
43 #include "wimlib/resource.h"
44 #include "wimlib/unaligned.h"
45 #include "wimlib/util.h"
46 #include "wimlib/write.h"
47
48 /* A hash table mapping SHA-1 message digests to blob descriptors  */
49 struct blob_table {
50         struct hlist_head *array;
51         size_t num_blobs;
52         size_t capacity;
53 };
54
55 struct blob_table *
56 new_blob_table(size_t capacity)
57 {
58         struct blob_table *table;
59         struct hlist_head *array;
60
61         table = MALLOC(sizeof(struct blob_table));
62         if (table == NULL)
63                 goto oom;
64
65         array = CALLOC(capacity, sizeof(array[0]));
66         if (array == NULL) {
67                 FREE(table);
68                 goto oom;
69         }
70
71         table->num_blobs = 0;
72         table->capacity = capacity;
73         table->array = array;
74         return table;
75
76 oom:
77         ERROR("Failed to allocate memory for blob table "
78               "with capacity %zu", capacity);
79         return NULL;
80 }
81
82 static int
83 do_free_blob_descriptor(struct blob_descriptor *blob, void *_ignore)
84 {
85         free_blob_descriptor(blob);
86         return 0;
87 }
88
89 void
90 free_blob_table(struct blob_table *table)
91 {
92         if (table) {
93                 for_blob_in_table(table, do_free_blob_descriptor, NULL);
94                 FREE(table->array);
95                 FREE(table);
96         }
97 }
98
99 struct blob_descriptor *
100 new_blob_descriptor(void)
101 {
102         struct blob_descriptor *blob;
103
104         blob = CALLOC(1, sizeof(struct blob_descriptor));
105         if (blob == NULL)
106                 return NULL;
107
108         /* blob->refcnt = 0  */
109         /* blob->blob_location = BLOB_NONEXISTENT  */
110         BUILD_BUG_ON(BLOB_NONEXISTENT != 0);
111
112         return blob;
113 }
114
115 struct blob_descriptor *
116 clone_blob_descriptor(const struct blob_descriptor *old)
117 {
118         struct blob_descriptor *new;
119
120         new = memdup(old, sizeof(struct blob_descriptor));
121         if (new == NULL)
122                 return NULL;
123
124         switch (new->blob_location) {
125         case BLOB_IN_WIM:
126                 list_add(&new->rdesc_node, &new->rdesc->blob_list);
127                 break;
128
129         case BLOB_IN_FILE_ON_DISK:
130 #ifdef __WIN32__
131         case BLOB_IN_WINNT_FILE_ON_DISK:
132         case BLOB_WIN32_ENCRYPTED:
133 #endif
134 #ifdef WITH_FUSE
135         case BLOB_IN_STAGING_FILE:
136                 BUILD_BUG_ON((void*)&old->file_on_disk !=
137                              (void*)&old->staging_file_name);
138 #endif
139                 new->file_on_disk = TSTRDUP(old->file_on_disk);
140                 if (new->file_on_disk == NULL)
141                         goto out_free;
142                 break;
143         case BLOB_IN_ATTACHED_BUFFER:
144                 new->attached_buffer = memdup(old->attached_buffer, old->size);
145                 if (new->attached_buffer == NULL)
146                         goto out_free;
147                 break;
148 #ifdef WITH_NTFS_3G
149         case BLOB_IN_NTFS_VOLUME:
150                 if (old->ntfs_loc) {
151                         new->ntfs_loc = memdup(old->ntfs_loc,
152                                                sizeof(struct ntfs_location));
153                         if (new->ntfs_loc == NULL)
154                                 goto out_free;
155                         new->ntfs_loc->path = STRDUP(old->ntfs_loc->path);
156                         new->ntfs_loc->attr_name = NULL;
157                         if (new->ntfs_loc->path == NULL)
158                                 goto out_free;
159                         if (new->ntfs_loc->attr_name_nchars != 0) {
160                                 new->ntfs_loc->attr_name =
161                                         utf16le_dup(old->ntfs_loc->attr_name);
162                                 if (new->ntfs_loc->attr_name == NULL)
163                                         goto out_free;
164                         }
165                 }
166                 break;
167 #endif
168         default:
169                 break;
170         }
171         return new;
172
173 out_free:
174         free_blob_descriptor(new);
175         return NULL;
176 }
177
178 static void
179 blob_release_location(struct blob_descriptor *blob)
180 {
181         switch (blob->blob_location) {
182         case BLOB_IN_WIM:
183                 list_del(&blob->rdesc_node);
184                 if (list_empty(&blob->rdesc->blob_list))
185                         FREE(blob->rdesc);
186                 break;
187         case BLOB_IN_FILE_ON_DISK:
188 #ifdef __WIN32__
189         case BLOB_IN_WINNT_FILE_ON_DISK:
190         case BLOB_WIN32_ENCRYPTED:
191 #endif
192 #ifdef WITH_FUSE
193         case BLOB_IN_STAGING_FILE:
194                 BUILD_BUG_ON((void*)&blob->file_on_disk !=
195                              (void*)&blob->staging_file_name);
196 #endif
197         case BLOB_IN_ATTACHED_BUFFER:
198                 BUILD_BUG_ON((void*)&blob->file_on_disk !=
199                              (void*)&blob->attached_buffer);
200                 FREE(blob->file_on_disk);
201                 break;
202 #ifdef WITH_NTFS_3G
203         case BLOB_IN_NTFS_VOLUME:
204                 if (blob->ntfs_loc) {
205                         FREE(blob->ntfs_loc->path);
206                         FREE(blob->ntfs_loc->attr_name);
207                         FREE(blob->ntfs_loc);
208                 }
209                 break;
210 #endif
211         default:
212                 break;
213         }
214 }
215
216 void
217 free_blob_descriptor(struct blob_descriptor *blob)
218 {
219         if (blob) {
220                 blob_release_location(blob);
221                 FREE(blob);
222         }
223 }
224
225 /* Should this blob be retained even if it has no references?  */
226 static bool
227 should_retain_blob(const struct blob_descriptor *blob)
228 {
229         return blob->blob_location == BLOB_IN_WIM;
230 }
231
232 static void
233 finalize_blob(struct blob_descriptor *blob)
234 {
235         if (!should_retain_blob(blob))
236                 free_blob_descriptor(blob);
237 }
238
239 /*
240  * Decrements the reference count of the specified blob, which must be either
241  * (a) unhashed, or (b) inserted in the specified blob table.
242  *
243  * If the blob's reference count reaches 0, we may unlink it from @table and
244  * free it.  However, we retain blobs with 0 reference count that originated
245  * from WIM files (BLOB_IN_WIM).  We do this for two reasons:
246  *
247  * 1. This prevents information about valid blobs in a WIM file --- blobs which
248  *    will continue to be present after appending to the WIM file --- from being
249  *    lost merely because we dropped all references to them.
250  *
251  * 2. Blob reference counts we read from WIM files can't be trusted.  It's
252  *    possible that a WIM has reference counts that are too low; WIMGAPI
253  *    sometimes creates WIMs where this is the case.  It's also possible that
254  *    blobs have been referenced from an external WIM; those blobs can
255  *    potentially have any reference count at all, either lower or higher than
256  *    would be expected for this WIM ("this WIM" meaning the owner of @table) if
257  *    it were a standalone WIM.
258  *
259  * So we can't take the reference counts too seriously.  But at least, we do
260  * recalculate by default when writing a new WIM file.
261  */
262 void
263 blob_decrement_refcnt(struct blob_descriptor *blob, struct blob_table *table)
264 {
265         blob_subtract_refcnt(blob, table, 1);
266 }
267
268 void
269 blob_subtract_refcnt(struct blob_descriptor *blob, struct blob_table *table,
270                      u32 count)
271 {
272         if (unlikely(blob->refcnt < count)) {
273                 blob->refcnt = 0; /* See comment above  */
274                 return;
275         }
276
277         blob->refcnt -= count;
278
279         if (blob->refcnt != 0)
280                 return;
281
282         if (blob->unhashed) {
283                 list_del(&blob->unhashed_list);
284         #ifdef WITH_FUSE
285                 /* If the blob has been extracted to a staging file for a FUSE
286                  * mount, unlink the staging file.  (Note that there still may
287                  * be open file descriptors to it.)  */
288                 if (blob->blob_location == BLOB_IN_STAGING_FILE)
289                         unlinkat(blob->staging_dir_fd,
290                                  blob->staging_file_name, 0);
291         #endif
292         } else {
293                 if (!should_retain_blob(blob))
294                         blob_table_unlink(table, blob);
295         }
296
297         /* If FUSE mounts are enabled, then don't actually free the blob
298          * descriptor until the last file descriptor to it has been closed.  */
299 #ifdef WITH_FUSE
300         if (blob->num_opened_fds == 0)
301 #endif
302                 finalize_blob(blob);
303 }
304
305 #ifdef WITH_FUSE
306 void
307 blob_decrement_num_opened_fds(struct blob_descriptor *blob)
308 {
309         wimlib_assert(blob->num_opened_fds != 0);
310
311         if (--blob->num_opened_fds == 0 && blob->refcnt == 0)
312                 finalize_blob(blob);
313 }
314 #endif
315
316 static void
317 blob_table_insert_raw(struct blob_table *table, struct blob_descriptor *blob)
318 {
319         size_t i = blob->hash_short % table->capacity;
320
321         hlist_add_head(&blob->hash_list, &table->array[i]);
322 }
323
324 static void
325 enlarge_blob_table(struct blob_table *table)
326 {
327         size_t old_capacity, new_capacity;
328         struct hlist_head *old_array, *new_array;
329         struct blob_descriptor *blob;
330         struct hlist_node *cur, *tmp;
331         size_t i;
332
333         old_capacity = table->capacity;
334         new_capacity = old_capacity * 2;
335         new_array = CALLOC(new_capacity, sizeof(struct hlist_head));
336         if (new_array == NULL)
337                 return;
338         old_array = table->array;
339         table->array = new_array;
340         table->capacity = new_capacity;
341
342         for (i = 0; i < old_capacity; i++) {
343                 hlist_for_each_entry_safe(blob, cur, tmp, &old_array[i], hash_list) {
344                         hlist_del(&blob->hash_list);
345                         blob_table_insert_raw(table, blob);
346                 }
347         }
348         FREE(old_array);
349 }
350
351 /* Insert a blob descriptor into the blob table.  */
352 void
353 blob_table_insert(struct blob_table *table, struct blob_descriptor *blob)
354 {
355         blob_table_insert_raw(table, blob);
356         if (++table->num_blobs > table->capacity)
357                 enlarge_blob_table(table);
358 }
359
360 /* Unlinks a blob descriptor from the blob table; does not free it.  */
361 void
362 blob_table_unlink(struct blob_table *table, struct blob_descriptor *blob)
363 {
364         wimlib_assert(!blob->unhashed);
365         wimlib_assert(table->num_blobs != 0);
366
367         hlist_del(&blob->hash_list);
368         table->num_blobs--;
369 }
370
371 /* Given a SHA-1 message digest, return the corresponding blob descriptor from
372  * the specified blob table, or NULL if there is none.  */
373 struct blob_descriptor *
374 lookup_blob(const struct blob_table *table, const u8 *hash)
375 {
376         size_t i;
377         struct blob_descriptor *blob;
378         struct hlist_node *pos;
379
380         i = load_size_t_unaligned(hash) % table->capacity;
381         hlist_for_each_entry(blob, pos, &table->array[i], hash_list)
382                 if (hashes_equal(hash, blob->hash))
383                         return blob;
384         return NULL;
385 }
386
387 /* Call a function on all blob descriptors in the specified blob table.  Stop
388  * early and return nonzero if any call to the function returns nonzero.  */
389 int
390 for_blob_in_table(struct blob_table *table,
391                   int (*visitor)(struct blob_descriptor *, void *), void *arg)
392 {
393         struct blob_descriptor *blob;
394         struct hlist_node *pos, *tmp;
395         int ret;
396
397         for (size_t i = 0; i < table->capacity; i++) {
398                 hlist_for_each_entry_safe(blob, pos, tmp, &table->array[i],
399                                           hash_list)
400                 {
401                         ret = visitor(blob, arg);
402                         if (ret)
403                                 return ret;
404                 }
405         }
406         return 0;
407 }
408
409 /*
410  * This is a qsort() callback that sorts blobs into an order optimized for
411  * reading.  Sorting is done primarily by blob location, then secondarily by a
412  * location-dependent order.  For example, blobs in WIM resources are sorted
413  * such that the underlying WIM files will be read sequentially.  This is
414  * especially important for WIM files containing solid resources.
415  */
416 int
417 cmp_blobs_by_sequential_order(const void *p1, const void *p2)
418 {
419         const struct blob_descriptor *blob1, *blob2;
420         int v;
421         WIMStruct *wim1, *wim2;
422
423         blob1 = *(const struct blob_descriptor**)p1;
424         blob2 = *(const struct blob_descriptor**)p2;
425
426         v = (int)blob1->blob_location - (int)blob2->blob_location;
427
428         /* Different resource locations?  */
429         if (v)
430                 return v;
431
432         switch (blob1->blob_location) {
433         case BLOB_IN_WIM:
434                 wim1 = blob1->rdesc->wim;
435                 wim2 = blob2->rdesc->wim;
436
437                 /* Different (possibly split) WIMs?  */
438                 if (wim1 != wim2) {
439                         v = memcmp(wim1->hdr.guid, wim2->hdr.guid, WIM_GUID_LEN);
440                         if (v)
441                                 return v;
442                 }
443
444                 /* Different part numbers in the same WIM?  */
445                 v = (int)wim1->hdr.part_number - (int)wim2->hdr.part_number;
446                 if (v)
447                         return v;
448
449                 if (blob1->rdesc->offset_in_wim != blob2->rdesc->offset_in_wim)
450                         return cmp_u64(blob1->rdesc->offset_in_wim,
451                                        blob2->rdesc->offset_in_wim);
452
453                 return cmp_u64(blob1->offset_in_res, blob2->offset_in_res);
454
455         case BLOB_IN_FILE_ON_DISK:
456 #ifdef WITH_FUSE
457         case BLOB_IN_STAGING_FILE:
458 #endif
459 #ifdef __WIN32__
460         case BLOB_IN_WINNT_FILE_ON_DISK:
461         case BLOB_WIN32_ENCRYPTED:
462 #endif
463                 /* Compare files by path: just a heuristic that will place files
464                  * in the same directory next to each other.  */
465                 return tstrcmp(blob1->file_on_disk, blob2->file_on_disk);
466 #ifdef WITH_NTFS_3G
467         case BLOB_IN_NTFS_VOLUME:
468                 return tstrcmp(blob1->ntfs_loc->path, blob2->ntfs_loc->path);
469 #endif
470         default:
471                 /* No additional sorting order defined for this resource
472                  * location (e.g. BLOB_IN_ATTACHED_BUFFER); simply compare
473                  * everything equal to each other.  */
474                 return 0;
475         }
476 }
477
478 int
479 sort_blob_list(struct list_head *blob_list, size_t list_head_offset,
480                int (*compar)(const void *, const void*))
481 {
482         struct list_head *cur;
483         struct blob_descriptor **array;
484         size_t i;
485         size_t array_size;
486         size_t num_blobs = 0;
487
488         list_for_each(cur, blob_list)
489                 num_blobs++;
490
491         if (num_blobs <= 1)
492                 return 0;
493
494         array_size = num_blobs * sizeof(array[0]);
495         array = MALLOC(array_size);
496         if (array == NULL)
497                 return WIMLIB_ERR_NOMEM;
498
499         cur = blob_list->next;
500         for (i = 0; i < num_blobs; i++) {
501                 array[i] = (struct blob_descriptor*)((u8*)cur - list_head_offset);
502                 cur = cur->next;
503         }
504
505         qsort(array, num_blobs, sizeof(array[0]), compar);
506
507         INIT_LIST_HEAD(blob_list);
508         for (i = 0; i < num_blobs; i++) {
509                 list_add_tail((struct list_head*)
510                                ((u8*)array[i] + list_head_offset), blob_list);
511         }
512         FREE(array);
513         return 0;
514 }
515
516 /* Sort the specified list of blobs in an order optimized for sequential
517  * reading.  */
518 int
519 sort_blob_list_by_sequential_order(struct list_head *blob_list,
520                                    size_t list_head_offset)
521 {
522         return sort_blob_list(blob_list, list_head_offset,
523                               cmp_blobs_by_sequential_order);
524 }
525
526 static int
527 add_blob_to_array(struct blob_descriptor *blob, void *_pp)
528 {
529         struct blob_descriptor ***pp = _pp;
530         *(*pp)++ = blob;
531         return 0;
532 }
533
534 /* Iterate through the blob descriptors in the specified blob table in an order
535  * optimized for sequential reading.  */
536 int
537 for_blob_in_table_sorted_by_sequential_order(struct blob_table *table,
538                                              int (*visitor)(struct blob_descriptor *, void *),
539                                              void *arg)
540 {
541         struct blob_descriptor **blob_array, **p;
542         size_t num_blobs = table->num_blobs;
543         int ret;
544
545         blob_array = MALLOC(num_blobs * sizeof(blob_array[0]));
546         if (!blob_array)
547                 return WIMLIB_ERR_NOMEM;
548         p = blob_array;
549         for_blob_in_table(table, add_blob_to_array, &p);
550
551         wimlib_assert(p == blob_array + num_blobs);
552
553         qsort(blob_array, num_blobs, sizeof(blob_array[0]),
554               cmp_blobs_by_sequential_order);
555         ret = 0;
556         for (size_t i = 0; i < num_blobs; i++) {
557                 ret = visitor(blob_array[i], arg);
558                 if (ret)
559                         break;
560         }
561         FREE(blob_array);
562         return ret;
563 }
564
565 /* On-disk format of a blob descriptor in a WIM file.
566  *
567  * Note: if the WIM file contains solid resource(s), then this structure is
568  * sometimes overloaded to describe a "resource" rather than a "blob".  See the
569  * code for details.  */
570 struct blob_descriptor_disk {
571
572         /* Size, offset, and flags of the blob.  */
573         struct wim_reshdr_disk reshdr;
574
575         /* Which part of the split WIM this blob is in; indexed from 1. */
576         le16 part_number;
577
578         /* Reference count of this blob over all WIM images.  (But see comment
579          * above blob_decrement_refcnt().)  */
580         le32 refcnt;
581
582         /* SHA-1 message digest of the uncompressed data of this blob, or all
583          * zeroes if this blob is of zero length.  */
584         u8 hash[SHA1_HASH_SIZE];
585 } _packed_attribute;
586
587 /* Given a nonempty run of consecutive blob descriptors with the SOLID flag set,
588  * count how many specify resources (as opposed to blobs within those
589  * resources).
590  *
591  * Returns the resulting count.  */
592 static size_t
593 count_solid_resources(const struct blob_descriptor_disk *entries, size_t max)
594 {
595         size_t count = 0;
596         do {
597                 struct wim_reshdr reshdr;
598
599                 get_wim_reshdr(&(entries++)->reshdr, &reshdr);
600
601                 if (!(reshdr.flags & WIM_RESHDR_FLAG_SOLID)) {
602                         /* Run was terminated by a stand-alone blob entry.  */
603                         break;
604                 }
605
606                 if (reshdr.uncompressed_size == SOLID_RESOURCE_MAGIC_NUMBER) {
607                         /* This is a resource entry.  */
608                         count++;
609                 }
610         } while (--max);
611         return count;
612 }
613
614 /*
615  * Given a run of consecutive blob descriptors with the SOLID flag set and
616  * having @num_rdescs resource entries, load resource information from them into
617  * the resource descriptors in the @rdescs array.
618  *
619  * Returns 0 on success, or a nonzero error code on failure.
620  */
621 static int
622 do_load_solid_info(WIMStruct *wim, struct wim_resource_descriptor **rdescs,
623                    size_t num_rdescs,
624                    const struct blob_descriptor_disk *entries)
625 {
626         for (size_t i = 0; i < num_rdescs; i++) {
627                 struct wim_reshdr reshdr;
628                 struct alt_chunk_table_header_disk hdr;
629                 struct wim_resource_descriptor *rdesc;
630                 int ret;
631
632                 /* Advance to next resource entry.  */
633
634                 do {
635                         get_wim_reshdr(&(entries++)->reshdr, &reshdr);
636                 } while (reshdr.uncompressed_size != SOLID_RESOURCE_MAGIC_NUMBER);
637
638                 rdesc = rdescs[i];
639
640                 wim_res_hdr_to_desc(&reshdr, wim, rdesc);
641
642                 /* For solid resources, the uncompressed size, compression type,
643                  * and chunk size are stored in the resource itself, not in the
644                  * blob table.  */
645
646                 ret = full_pread(&wim->in_fd, &hdr,
647                                  sizeof(hdr), reshdr.offset_in_wim);
648                 if (ret) {
649                         ERROR("Failed to read header of solid resource "
650                               "(offset_in_wim=%"PRIu64")",
651                               reshdr.offset_in_wim);
652                         return ret;
653                 }
654
655                 rdesc->uncompressed_size = le64_to_cpu(hdr.res_usize);
656
657                 /* Compression format numbers must be the same as in
658                  * WIMGAPI to be compatible here.  */
659                 BUILD_BUG_ON(WIMLIB_COMPRESSION_TYPE_NONE != 0);
660                 BUILD_BUG_ON(WIMLIB_COMPRESSION_TYPE_XPRESS != 1);
661                 BUILD_BUG_ON(WIMLIB_COMPRESSION_TYPE_LZX != 2);
662                 BUILD_BUG_ON(WIMLIB_COMPRESSION_TYPE_LZMS != 3);
663                 rdesc->compression_type = le32_to_cpu(hdr.compression_format);
664
665                 rdesc->chunk_size = le32_to_cpu(hdr.chunk_size);
666
667                 DEBUG("Solid resource %zu/%zu: %"PRIu64" => %"PRIu64" "
668                       "(%"TS"/%"PRIu32") @ +%"PRIu64"",
669                       i + 1, num_rdescs,
670                       rdesc->uncompressed_size,
671                       rdesc->size_in_wim,
672                       wimlib_get_compression_type_string(rdesc->compression_type),
673                       rdesc->chunk_size,
674                       rdesc->offset_in_wim);
675         }
676         return 0;
677 }
678
679 /*
680  * Given a nonempty run of consecutive blob descriptors with the SOLID flag set,
681  * allocate a 'struct wim_resource_descriptor' for each resource within that
682  * run.
683  *
684  * Returns 0 on success, or a nonzero error code on failure.
685  * Returns the pointers and count in *rdescs_ret and *num_rdescs_ret.
686  */
687 static int
688 load_solid_info(WIMStruct *wim,
689                 const struct blob_descriptor_disk *entries,
690                 size_t num_remaining_entries,
691                 struct wim_resource_descriptor ***rdescs_ret,
692                 size_t *num_rdescs_ret)
693 {
694         size_t num_rdescs;
695         struct wim_resource_descriptor **rdescs;
696         size_t i;
697         int ret;
698
699         num_rdescs = count_solid_resources(entries, num_remaining_entries);
700         rdescs = CALLOC(num_rdescs, sizeof(rdescs[0]));
701         if (!rdescs)
702                 return WIMLIB_ERR_NOMEM;
703
704         for (i = 0; i < num_rdescs; i++) {
705                 rdescs[i] = MALLOC(sizeof(struct wim_resource_descriptor));
706                 if (!rdescs[i]) {
707                         ret = WIMLIB_ERR_NOMEM;
708                         goto out_free_rdescs;
709                 }
710         }
711
712         ret = do_load_solid_info(wim, rdescs, num_rdescs, entries);
713         if (ret)
714                 goto out_free_rdescs;
715
716         *rdescs_ret = rdescs;
717         *num_rdescs_ret = num_rdescs;
718         return 0;
719
720 out_free_rdescs:
721         for (i = 0; i < num_rdescs; i++)
722                 FREE(rdescs[i]);
723         FREE(rdescs);
724         return ret;
725 }
726
727 /* Given a 'struct blob_descriptor' allocated for an on-disk blob descriptor
728  * with the SOLID flag set, try to assign it to resource in the current solid
729  * run.  */
730 static int
731 assign_blob_to_solid_resource(const struct wim_reshdr *reshdr,
732                               struct blob_descriptor *blob,
733                               struct wim_resource_descriptor **rdescs,
734                               size_t num_rdescs)
735 {
736         u64 offset = reshdr->offset_in_wim;
737
738         /* XXX: This linear search will be slow in the degenerate case where the
739          * number of solid resources in the run is huge.  */
740         blob->size = reshdr->size_in_wim;
741         for (size_t i = 0; i < num_rdescs; i++) {
742                 if (offset + blob->size <= rdescs[i]->uncompressed_size) {
743                         blob_set_is_located_in_wim_resource(blob, rdescs[i], offset);
744                         return 0;
745                 }
746                 offset -= rdescs[i]->uncompressed_size;
747         }
748         ERROR("blob could not be assigned to a solid resource");
749         return WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY;
750 }
751
752 static void
753 free_solid_rdescs(struct wim_resource_descriptor **rdescs, size_t num_rdescs)
754 {
755         if (rdescs) {
756                 for (size_t i = 0; i < num_rdescs; i++)
757                         if (list_empty(&rdescs[i]->blob_list))
758                                 FREE(rdescs[i]);
759                 FREE(rdescs);
760         }
761 }
762
763 static int
764 cmp_blobs_by_offset_in_res(const void *p1, const void *p2)
765 {
766         const struct blob_descriptor *blob1, *blob2;
767
768         blob1 = *(const struct blob_descriptor**)p1;
769         blob2 = *(const struct blob_descriptor**)p2;
770
771         return cmp_u64(blob1->offset_in_res, blob2->offset_in_res);
772 }
773
774 /* Validate the size and location of a WIM resource.  */
775 static int
776 validate_resource(struct wim_resource_descriptor *rdesc)
777 {
778         struct blob_descriptor *blob;
779         bool out_of_order;
780         u64 expected_next_offset;
781         int ret;
782
783         /* Verify that the resource itself has a valid offset and size.  */
784         if (rdesc->offset_in_wim + rdesc->size_in_wim < rdesc->size_in_wim)
785                 goto invalid_due_to_overflow;
786
787         /* Verify that each blob in the resource has a valid offset and size.
788          */
789         expected_next_offset = 0;
790         out_of_order = false;
791         list_for_each_entry(blob, &rdesc->blob_list, rdesc_node) {
792                 if (blob->offset_in_res + blob->size < blob->size ||
793                     blob->offset_in_res + blob->size > rdesc->uncompressed_size)
794                         goto invalid_due_to_overflow;
795
796                 if (blob->offset_in_res >= expected_next_offset)
797                         expected_next_offset = blob->offset_in_res + blob->size;
798                 else
799                         out_of_order = true;
800         }
801
802         /* If the blobs were not located at strictly increasing positions (not
803          * allowing for overlap), sort them.  Then make sure that none overlap.
804          */
805         if (out_of_order) {
806                 ret = sort_blob_list(&rdesc->blob_list,
807                                      offsetof(struct blob_descriptor,
808                                               rdesc_node),
809                                      cmp_blobs_by_offset_in_res);
810                 if (ret)
811                         return ret;
812
813                 expected_next_offset = 0;
814                 list_for_each_entry(blob, &rdesc->blob_list, rdesc_node) {
815                         if (blob->offset_in_res >= expected_next_offset)
816                                 expected_next_offset = blob->offset_in_res + blob->size;
817                         else
818                                 goto invalid_due_to_overlap;
819                 }
820         }
821
822         return 0;
823
824 invalid_due_to_overflow:
825         ERROR("Invalid blob table (offset overflow)");
826         return WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY;
827
828 invalid_due_to_overlap:
829         ERROR("Invalid blob table (blobs in solid resource overlap)");
830         return WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY;
831 }
832
833 static int
834 finish_solid_rdescs(struct wim_resource_descriptor **rdescs, size_t num_rdescs)
835 {
836         int ret = 0;
837         for (size_t i = 0; i < num_rdescs; i++) {
838                 ret = validate_resource(rdescs[i]);
839                 if (ret)
840                         break;
841         }
842         free_solid_rdescs(rdescs, num_rdescs);
843         return ret;
844 }
845
846 /*
847  * read_blob_table() -
848  *
849  * Read the blob table from a WIM file.  Usually, each entry in this table
850  * describes a "blob", or equivalently a "resource", that the WIM file contains,
851  * along with its location and SHA-1 message digest.  Descriptors for
852  * non-metadata blobs will be saved in the in-memory blob table
853  * (wim->blob_table), whereas descriptors for metadata blobs will be saved in a
854  * special location per-image (the wim->image_metadata array).
855  *
856  * However, in WIM_VERSION_SOLID (3584) WIMs, a resource may contain multiple
857  * blobs that are compressed together.  Such a resource is called a "solid
858  * resource".  Solid resources are still described in the on-disk "blob table",
859  * although the format is not the most logical.  A consecutive sequence of
860  * entries that all have flag WIM_RESHDR_FLAG_SOLID (0x10) set is a "solid run".
861  * A solid run describes a set of solid resources, each of which contains a set
862  * of blobs.  In a solid run, a 'struct wim_reshdr_disk' with 'uncompressed_size
863  * = SOLID_RESOURCE_MAGIC_NUMBER (0x100000000)' specifies a solid resource,
864  * whereas any other 'struct wim_reshdr_disk' specifies a blob within a solid
865  * resource.  There are some oddities in how we need to determine which solid
866  * resource a blob is actually in; see the code for details.
867  *
868  * Possible return values:
869  *      WIMLIB_ERR_SUCCESS (0)
870  *      WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY
871  *      WIMLIB_ERR_NOMEM
872  *
873  *      Or an error code caused by failure to read the blob table from the WIM
874  *      file.
875  */
876 int
877 read_blob_table(WIMStruct *wim)
878 {
879         int ret;
880         size_t num_entries;
881         void *buf = NULL;
882         struct blob_table *table = NULL;
883         struct blob_descriptor *cur_blob = NULL;
884         size_t num_duplicate_blobs = 0;
885         size_t num_wrong_part_blobs = 0;
886         u32 image_index = 0;
887         struct wim_resource_descriptor **cur_solid_rdescs = NULL;
888         size_t cur_num_solid_rdescs = 0;
889
890         DEBUG("Reading blob table.");
891
892         /* Calculate the number of entries in the blob table.  */
893         num_entries = wim->hdr.blob_table_reshdr.uncompressed_size /
894                       sizeof(struct blob_descriptor_disk);
895
896         /* Read the blob table into a buffer.  */
897         ret = wim_reshdr_to_data(&wim->hdr.blob_table_reshdr, wim, &buf);
898         if (ret)
899                 goto out;
900
901         /* Allocate a hash table to map SHA-1 message digests into blob
902          * descriptors.  This is the in-memory "blob table".  */
903         table = new_blob_table(num_entries * 2 + 1);
904         if (!table)
905                 goto oom;
906
907         /* Allocate and initalize blob descriptors from the raw blob table
908          * buffer.  */
909         for (size_t i = 0; i < num_entries; i++) {
910                 const struct blob_descriptor_disk *disk_entry =
911                         &((const struct blob_descriptor_disk*)buf)[i];
912                 struct wim_reshdr reshdr;
913                 u16 part_number;
914
915                 /* Get the resource header  */
916                 get_wim_reshdr(&disk_entry->reshdr, &reshdr);
917
918                 DEBUG("reshdr: size_in_wim=%"PRIu64", "
919                       "uncompressed_size=%"PRIu64", "
920                       "offset_in_wim=%"PRIu64", "
921                       "flags=0x%02x",
922                       reshdr.size_in_wim, reshdr.uncompressed_size,
923                       reshdr.offset_in_wim, reshdr.flags);
924
925                 /* Ignore SOLID flag if it isn't supposed to be used in this WIM
926                  * version.  */
927                 if (wim->hdr.wim_version == WIM_VERSION_DEFAULT)
928                         reshdr.flags &= ~WIM_RESHDR_FLAG_SOLID;
929
930                 /* Allocate a new 'struct blob_descriptor'.  */
931                 cur_blob = new_blob_descriptor();
932                 if (!cur_blob)
933                         goto oom;
934
935                 /* Get the part number, reference count, and hash.  */
936                 part_number = le16_to_cpu(disk_entry->part_number);
937                 cur_blob->refcnt = le32_to_cpu(disk_entry->refcnt);
938                 copy_hash(cur_blob->hash, disk_entry->hash);
939
940                 if (reshdr.flags & WIM_RESHDR_FLAG_SOLID) {
941
942                         /* SOLID entry  */
943
944                         if (!cur_solid_rdescs) {
945                                 /* Starting new run  */
946                                 ret = load_solid_info(wim, disk_entry,
947                                                       num_entries - i,
948                                                       &cur_solid_rdescs,
949                                                       &cur_num_solid_rdescs);
950                                 if (ret)
951                                         goto out;
952                         }
953
954                         if (reshdr.uncompressed_size == SOLID_RESOURCE_MAGIC_NUMBER) {
955                                 /* Resource entry, not blob entry  */
956                                 goto free_cur_blob_and_continue;
957                         }
958
959                         /* Blob entry  */
960
961                         ret = assign_blob_to_solid_resource(&reshdr,
962                                                             cur_blob,
963                                                             cur_solid_rdescs,
964                                                             cur_num_solid_rdescs);
965                         if (ret)
966                                 goto out;
967
968                 } else {
969                         /* Normal blob/resource entry; SOLID not set.  */
970
971                         struct wim_resource_descriptor *rdesc;
972
973                         if (unlikely(cur_solid_rdescs)) {
974                                 /* This entry terminated a solid run.  */
975                                 ret = finish_solid_rdescs(cur_solid_rdescs,
976                                                           cur_num_solid_rdescs);
977                                 cur_solid_rdescs = NULL;
978                                 if (ret)
979                                         goto out;
980                         }
981
982                         /* How to handle an uncompressed resource with its
983                          * uncompressed size different from its compressed size?
984                          *
985                          * Based on a simple test, WIMGAPI seems to handle this
986                          * as follows:
987                          *
988                          * if (size_in_wim > uncompressed_size) {
989                          *      Ignore uncompressed_size; use size_in_wim
990                          *      instead.
991                          * } else {
992                          *      Honor uncompressed_size, but treat the part of
993                          *      the file data above size_in_wim as all zeros.
994                          * }
995                          *
996                          * So we will do the same.  */
997                         if (unlikely(!(reshdr.flags &
998                                        WIM_RESHDR_FLAG_COMPRESSED) &&
999                                      (reshdr.size_in_wim >
1000                                       reshdr.uncompressed_size)))
1001                         {
1002                                 reshdr.uncompressed_size = reshdr.size_in_wim;
1003                         }
1004
1005                         /* Set up a resource descriptor for this blob.  */
1006
1007                         rdesc = MALLOC(sizeof(struct wim_resource_descriptor));
1008                         if (!rdesc)
1009                                 goto oom;
1010
1011                         wim_res_hdr_to_desc(&reshdr, wim, rdesc);
1012
1013                         blob_set_is_located_in_nonsolid_wim_resource(cur_blob, rdesc);
1014                 }
1015
1016                 /* cur_blob is now a blob bound to a resource.  */
1017
1018                 /* Ignore entries with all zeroes in the hash field.  */
1019                 if (is_zero_hash(cur_blob->hash))
1020                         goto free_cur_blob_and_continue;
1021
1022                 /* Verify that the part number matches that of the underlying
1023                  * WIM file.  */
1024                 if (part_number != wim->hdr.part_number) {
1025                         num_wrong_part_blobs++;
1026                         goto free_cur_blob_and_continue;
1027                 }
1028
1029                 if (reshdr.flags & WIM_RESHDR_FLAG_METADATA) {
1030
1031                         cur_blob->is_metadata = 1;
1032
1033                         /* Blob table entry for a metadata resource.  */
1034
1035                         /* Metadata entries with no references must be ignored.
1036                          * See, for example, the WinPE WIMs from the WAIK v2.1.
1037                          */
1038                         if (cur_blob->refcnt == 0)
1039                                 goto free_cur_blob_and_continue;
1040
1041                         if (cur_blob->refcnt != 1) {
1042                                 /* We don't currently support this case due to
1043                                  * the complications of multiple images sharing
1044                                  * the same metadata resource or a metadata
1045                                  * resource also being referenced by files.  */
1046                                 ERROR("Found metadata resource with refcnt != 1");
1047                                 ret = WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY;
1048                                 goto out;
1049                         }
1050
1051                         if (wim->hdr.part_number != 1) {
1052                                 WARNING("Ignoring metadata resource found in a "
1053                                         "non-first part of the split WIM");
1054                                 goto free_cur_blob_and_continue;
1055                         }
1056
1057                         /* The number of entries in the blob table with
1058                          * WIM_RESHDR_FLAG_METADATA set should be the same as
1059                          * the image_count field in the WIM header.  */
1060                         if (image_index == wim->hdr.image_count) {
1061                                 WARNING("Found more metadata resources than images");
1062                                 goto free_cur_blob_and_continue;
1063                         }
1064
1065                         /* Notice very carefully:  We are assigning the metadata
1066                          * resources to images in the same order in which their
1067                          * blob table entries occur on disk.  (This is also the
1068                          * behavior of Microsoft's software.)  In particular,
1069                          * this overrides the actual locations of the metadata
1070                          * resources themselves in the WIM file as well as any
1071                          * information written in the XML data.  */
1072                         DEBUG("Found metadata resource for image %"PRIu32" at "
1073                               "offset %"PRIu64".",
1074                               image_index + 1,
1075                               reshdr.offset_in_wim);
1076
1077                         wim->image_metadata[image_index++]->metadata_blob = cur_blob;
1078                 } else {
1079                         /* Blob table entry for a non-metadata blob.  */
1080
1081                         /* Ignore this blob if it's a duplicate.  */
1082                         if (lookup_blob(table, cur_blob->hash)) {
1083                                 num_duplicate_blobs++;
1084                                 goto free_cur_blob_and_continue;
1085                         }
1086
1087                         /* Insert the blob into the in-memory blob table, keyed
1088                          * by its SHA-1 message digest.  */
1089                         blob_table_insert(table, cur_blob);
1090                 }
1091
1092                 continue;
1093
1094         free_cur_blob_and_continue:
1095                 if (cur_solid_rdescs &&
1096                     cur_blob->blob_location == BLOB_IN_WIM)
1097                         blob_unset_is_located_in_wim_resource(cur_blob);
1098                 free_blob_descriptor(cur_blob);
1099         }
1100         cur_blob = NULL;
1101
1102         if (cur_solid_rdescs) {
1103                 /* End of blob table terminated a solid run.  */
1104                 ret = finish_solid_rdescs(cur_solid_rdescs, cur_num_solid_rdescs);
1105                 cur_solid_rdescs = NULL;
1106                 if (ret)
1107                         goto out;
1108         }
1109
1110         if (wim->hdr.part_number == 1 && image_index != wim->hdr.image_count) {
1111                 WARNING("Could not find metadata resources for all images");
1112                 for (u32 i = image_index; i < wim->hdr.image_count; i++)
1113                         put_image_metadata(wim->image_metadata[i], NULL);
1114                 wim->hdr.image_count = image_index;
1115         }
1116
1117         if (num_duplicate_blobs > 0)
1118                 WARNING("Ignoring %zu duplicate blobs", num_duplicate_blobs);
1119
1120         if (num_wrong_part_blobs > 0) {
1121                 WARNING("Ignoring %zu blobs with wrong part number",
1122                         num_wrong_part_blobs);
1123         }
1124
1125         DEBUG("Done reading blob table.");
1126         wim->blob_table = table;
1127         ret = 0;
1128         goto out_free_buf;
1129
1130 oom:
1131         ERROR("Not enough memory to read blob table!");
1132         ret = WIMLIB_ERR_NOMEM;
1133 out:
1134         free_solid_rdescs(cur_solid_rdescs, cur_num_solid_rdescs);
1135         free_blob_descriptor(cur_blob);
1136         free_blob_table(table);
1137 out_free_buf:
1138         FREE(buf);
1139         return ret;
1140 }
1141
1142 static void
1143 write_blob_descriptor(struct blob_descriptor_disk *disk_entry,
1144                       const struct wim_reshdr *out_reshdr,
1145                       u16 part_number, u32 refcnt, const u8 *hash)
1146 {
1147         put_wim_reshdr(out_reshdr, &disk_entry->reshdr);
1148         disk_entry->part_number = cpu_to_le16(part_number);
1149         disk_entry->refcnt = cpu_to_le32(refcnt);
1150         copy_hash(disk_entry->hash, hash);
1151 }
1152
1153 /* Note: the list of blob descriptors must be sorted so that all entries for the
1154  * same solid resource are consecutive.  In addition, blob descriptors for
1155  * metadata resources must be in the same order as the indices of the underlying
1156  * images.  */
1157 int
1158 write_blob_table_from_blob_list(struct list_head *blob_list,
1159                                 struct filedes *out_fd,
1160                                 u16 part_number,
1161                                 struct wim_reshdr *out_reshdr,
1162                                 int write_resource_flags)
1163 {
1164         size_t table_size;
1165         struct blob_descriptor *blob;
1166         struct blob_descriptor_disk *table_buf;
1167         struct blob_descriptor_disk *table_buf_ptr;
1168         int ret;
1169         u64 prev_res_offset_in_wim = ~0ULL;
1170         u64 prev_uncompressed_size;
1171         u64 logical_offset;
1172
1173         table_size = 0;
1174         list_for_each_entry(blob, blob_list, blob_table_list) {
1175                 table_size += sizeof(struct blob_descriptor_disk);
1176
1177                 if (blob->out_reshdr.flags & WIM_RESHDR_FLAG_SOLID &&
1178                     blob->out_res_offset_in_wim != prev_res_offset_in_wim)
1179                 {
1180                         table_size += sizeof(struct blob_descriptor_disk);
1181                         prev_res_offset_in_wim = blob->out_res_offset_in_wim;
1182                 }
1183         }
1184
1185         DEBUG("Writing WIM blob table (size=%zu, offset=%"PRIu64")",
1186               table_size, out_fd->offset);
1187
1188         table_buf = MALLOC(table_size);
1189         if (table_buf == NULL) {
1190                 ERROR("Failed to allocate %zu bytes for temporary blob table",
1191                       table_size);
1192                 return WIMLIB_ERR_NOMEM;
1193         }
1194         table_buf_ptr = table_buf;
1195
1196         prev_res_offset_in_wim = ~0ULL;
1197         prev_uncompressed_size = 0;
1198         logical_offset = 0;
1199         list_for_each_entry(blob, blob_list, blob_table_list) {
1200                 if (blob->out_reshdr.flags & WIM_RESHDR_FLAG_SOLID) {
1201                         struct wim_reshdr tmp_reshdr;
1202
1203                         /* Eww.  When WIMGAPI sees multiple solid resources, it
1204                          * expects the offsets to be adjusted as if there were
1205                          * really only one solid resource.  */
1206
1207                         if (blob->out_res_offset_in_wim != prev_res_offset_in_wim) {
1208                                 /* Put the resource entry for solid resource  */
1209                                 tmp_reshdr.offset_in_wim = blob->out_res_offset_in_wim;
1210                                 tmp_reshdr.size_in_wim = blob->out_res_size_in_wim;
1211                                 tmp_reshdr.uncompressed_size = SOLID_RESOURCE_MAGIC_NUMBER;
1212                                 tmp_reshdr.flags = WIM_RESHDR_FLAG_SOLID;
1213
1214                                 write_blob_descriptor(table_buf_ptr++, &tmp_reshdr,
1215                                                       part_number, 1, zero_hash);
1216
1217                                 logical_offset += prev_uncompressed_size;
1218
1219                                 prev_res_offset_in_wim = blob->out_res_offset_in_wim;
1220                                 prev_uncompressed_size = blob->out_res_uncompressed_size;
1221                         }
1222                         tmp_reshdr = blob->out_reshdr;
1223                         tmp_reshdr.offset_in_wim += logical_offset;
1224                         write_blob_descriptor(table_buf_ptr++, &tmp_reshdr,
1225                                               part_number, blob->out_refcnt, blob->hash);
1226                 } else {
1227                         write_blob_descriptor(table_buf_ptr++, &blob->out_reshdr,
1228                                               part_number, blob->out_refcnt, blob->hash);
1229                 }
1230
1231         }
1232         wimlib_assert((u8*)table_buf_ptr - (u8*)table_buf == table_size);
1233
1234         /* Write the blob table uncompressed.  Although wimlib can handle a
1235          * compressed blob table, MS software cannot.  */
1236         ret = write_wim_resource_from_buffer(table_buf,
1237                                              table_size,
1238                                              true,
1239                                              out_fd,
1240                                              WIMLIB_COMPRESSION_TYPE_NONE,
1241                                              0,
1242                                              out_reshdr,
1243                                              NULL,
1244                                              write_resource_flags);
1245         FREE(table_buf);
1246         DEBUG("ret=%d", ret);
1247         return ret;
1248 }
1249
1250 /* Allocate a blob descriptor for the contents of the buffer, or re-use an
1251  * existing descriptor in @blob_table for an identical blob.  */
1252 struct blob_descriptor *
1253 new_blob_from_data_buffer(const void *buffer, size_t size,
1254                           struct blob_table *blob_table)
1255 {
1256         u8 hash[SHA1_HASH_SIZE];
1257         struct blob_descriptor *blob, *existing_blob;
1258
1259         sha1_buffer(buffer, size, hash);
1260         existing_blob = lookup_blob(blob_table, hash);
1261         if (existing_blob) {
1262                 wimlib_assert(existing_blob->size == size);
1263                 blob = existing_blob;
1264         } else {
1265                 void *buffer_copy;
1266                 blob = new_blob_descriptor();
1267                 if (blob == NULL)
1268                         return NULL;
1269                 buffer_copy = memdup(buffer, size);
1270                 if (buffer_copy == NULL) {
1271                         free_blob_descriptor(blob);
1272                         return NULL;
1273                 }
1274                 blob_set_is_located_in_attached_buffer(blob, buffer_copy, size);
1275                 copy_hash(blob->hash, hash);
1276                 blob_table_insert(blob_table, blob);
1277         }
1278         return blob;
1279 }
1280
1281 struct blob_descriptor *
1282 after_blob_hashed(struct blob_descriptor *blob,
1283                   struct blob_descriptor **back_ptr,
1284                   struct blob_table *blob_table)
1285 {
1286         struct blob_descriptor *duplicate_blob;
1287
1288         list_del(&blob->unhashed_list);
1289         blob->unhashed = 0;
1290
1291         /* Look for a duplicate blob  */
1292         duplicate_blob = lookup_blob(blob_table, blob->hash);
1293         if (duplicate_blob) {
1294                 /* We have a duplicate blob.  Transfer the reference counts from
1295                  * this blob to the duplicate and update the reference to this
1296                  * blob (from a stream) to point to the duplicate.  The caller
1297                  * is responsible for freeing @blob if needed.  */
1298                 wimlib_assert(duplicate_blob->size == blob->size);
1299                 duplicate_blob->refcnt += blob->refcnt;
1300                 blob->refcnt = 0;
1301                 *back_ptr = duplicate_blob;
1302                 return duplicate_blob;
1303         } else {
1304                 /* No duplicate blob, so we need to insert this blob into the
1305                  * blob table and treat it as a hashed blob.  */
1306                 blob_table_insert(blob_table, blob);
1307                 return blob;
1308         }
1309 }
1310
1311 /*
1312  * Calculate the SHA-1 message digest of a blob and move its descriptor from the
1313  * list of unhashed blobs to the blob table, possibly joining it with an
1314  * identical blob.
1315  *
1316  * @blob:
1317  *      The blob to hash
1318  * @blob_table:
1319  *      The blob table in which the blob needs to be indexed
1320  * @blob_ret:
1321  *      On success, a pointer to the resulting blob descriptor is written to
1322  *      this location.  This will be the same as @blob if it was inserted into
1323  *      the blob table, or different if a duplicate blob was found.
1324  *
1325  * Returns 0 on success; nonzero if there is an error reading the blob data.
1326  */
1327 int
1328 hash_unhashed_blob(struct blob_descriptor *blob, struct blob_table *blob_table,
1329                    struct blob_descriptor **blob_ret)
1330 {
1331         struct blob_descriptor **back_ptr;
1332         int ret;
1333
1334         back_ptr = retrieve_pointer_to_unhashed_blob(blob);
1335
1336         ret = sha1_blob(blob);
1337         if (ret)
1338                 return ret;
1339
1340         *blob_ret = after_blob_hashed(blob, back_ptr, blob_table);
1341         return 0;
1342 }
1343
1344 void
1345 blob_to_wimlib_resource_entry(const struct blob_descriptor *blob,
1346                               struct wimlib_resource_entry *wentry)
1347 {
1348         memset(wentry, 0, sizeof(*wentry));
1349
1350         wentry->uncompressed_size = blob->size;
1351         if (blob->blob_location == BLOB_IN_WIM) {
1352                 unsigned res_flags = blob->rdesc->flags;
1353
1354                 wentry->part_number = blob->rdesc->wim->hdr.part_number;
1355                 if (res_flags & WIM_RESHDR_FLAG_SOLID) {
1356                         wentry->offset = blob->offset_in_res;
1357                 } else {
1358                         wentry->compressed_size = blob->rdesc->size_in_wim;
1359                         wentry->offset = blob->rdesc->offset_in_wim;
1360                 }
1361                 wentry->raw_resource_offset_in_wim = blob->rdesc->offset_in_wim;
1362                 wentry->raw_resource_compressed_size = blob->rdesc->size_in_wim;
1363                 wentry->raw_resource_uncompressed_size = blob->rdesc->uncompressed_size;
1364
1365                 wentry->is_compressed = (res_flags & WIM_RESHDR_FLAG_COMPRESSED) != 0;
1366                 wentry->is_free = (res_flags & WIM_RESHDR_FLAG_FREE) != 0;
1367                 wentry->is_spanned = (res_flags & WIM_RESHDR_FLAG_SPANNED) != 0;
1368                 wentry->packed = (res_flags & WIM_RESHDR_FLAG_SOLID) != 0;
1369         }
1370         copy_hash(wentry->sha1_hash, blob->hash);
1371         wentry->reference_count = blob->refcnt;
1372         wentry->is_metadata = blob->is_metadata;
1373 }
1374
1375 struct iterate_blob_context {
1376         wimlib_iterate_lookup_table_callback_t cb;
1377         void *user_ctx;
1378 };
1379
1380 static int
1381 do_iterate_blob(struct blob_descriptor *blob, void *_ctx)
1382 {
1383         struct iterate_blob_context *ctx = _ctx;
1384         struct wimlib_resource_entry entry;
1385
1386         blob_to_wimlib_resource_entry(blob, &entry);
1387         return (*ctx->cb)(&entry, ctx->user_ctx);
1388 }
1389
1390 /* API function documented in wimlib.h  */
1391 WIMLIBAPI int
1392 wimlib_iterate_lookup_table(WIMStruct *wim, int flags,
1393                             wimlib_iterate_lookup_table_callback_t cb,
1394                             void *user_ctx)
1395 {
1396         if (flags != 0)
1397                 return WIMLIB_ERR_INVALID_PARAM;
1398
1399         struct iterate_blob_context ctx = {
1400                 .cb = cb,
1401                 .user_ctx = user_ctx,
1402         };
1403         if (wim_has_metadata(wim)) {
1404                 int ret;
1405                 for (int i = 0; i < wim->hdr.image_count; i++) {
1406                         ret = do_iterate_blob(wim->image_metadata[i]->metadata_blob,
1407                                               &ctx);
1408                         if (ret)
1409                                 return ret;
1410                 }
1411         }
1412         return for_blob_in_table(wim->blob_table, do_iterate_blob, &ctx);
1413 }