]> wimlib.net Git - wimlib/blob - src/lookup_table.c
wimoptimize: Add --pack-streams option
[wimlib] / src / lookup_table.c
1 /*
2  * lookup_table.c
3  *
4  * Lookup table, implemented as a hash table, that maps SHA1 message digests to
5  * data streams; plus code to read and write the corresponding on-disk data.
6  */
7
8 /*
9  * Copyright (C) 2012, 2013 Eric Biggers
10  *
11  * This file is part of wimlib, a library for working with WIM files.
12  *
13  * wimlib is free software; you can redistribute it and/or modify it under the
14  * terms of the GNU General Public License as published by the Free
15  * Software Foundation; either version 3 of the License, or (at your option)
16  * any later version.
17  *
18  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
19  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20  * A PARTICULAR PURPOSE. See the GNU General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with wimlib; if not, see http://www.gnu.org/licenses/.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #  include "config.h"
29 #endif
30
31 #include "wimlib/endianness.h"
32 #include "wimlib/error.h"
33 #include "wimlib/file_io.h"
34 #include "wimlib/glob.h"
35 #include "wimlib/lookup_table.h"
36 #include "wimlib/metadata.h"
37 #include "wimlib/paths.h"
38 #include "wimlib/resource.h"
39 #include "wimlib/util.h"
40 #include "wimlib/write.h"
41
42 #include <errno.h>
43 #include <stdlib.h>
44 #ifdef WITH_FUSE
45 #  include <unistd.h> /* for unlink() */
46 #endif
47
48 struct wim_lookup_table *
49 new_lookup_table(size_t capacity)
50 {
51         struct wim_lookup_table *table;
52         struct hlist_head *array;
53
54         table = CALLOC(1, sizeof(struct wim_lookup_table));
55         if (table) {
56                 array = CALLOC(capacity, sizeof(array[0]));
57                 if (array) {
58                         table->num_entries = 0;
59                         table->capacity = capacity;
60                         table->array = array;
61                 } else {
62                         FREE(table);
63                         table = NULL;
64                         ERROR("Failed to allocate memory for lookup table "
65                               "with capacity %zu", capacity);
66                 }
67         }
68         return table;
69 }
70
71 struct wim_lookup_table_entry *
72 new_lookup_table_entry(void)
73 {
74         struct wim_lookup_table_entry *lte;
75
76         lte = CALLOC(1, sizeof(struct wim_lookup_table_entry));
77         if (lte == NULL) {
78                 ERROR("Out of memory (tried to allocate %zu bytes for "
79                       "lookup table entry)",
80                       sizeof(struct wim_lookup_table_entry));
81                 return NULL;
82         }
83         lte->refcnt = 1;
84         BUILD_BUG_ON(RESOURCE_NONEXISTENT != 0);
85         return lte;
86 }
87
88 struct wim_lookup_table_entry *
89 clone_lookup_table_entry(const struct wim_lookup_table_entry *old)
90 {
91         struct wim_lookup_table_entry *new;
92
93         new = memdup(old, sizeof(struct wim_lookup_table_entry));
94         if (new == NULL)
95                 return NULL;
96
97         new->extracted_file = NULL;
98         switch (new->resource_location) {
99         case RESOURCE_IN_WIM:
100                 list_add(&new->rspec_node, &new->rspec->stream_list);
101                 break;
102
103         case RESOURCE_IN_FILE_ON_DISK:
104 #ifdef __WIN32__
105         case RESOURCE_WIN32_ENCRYPTED:
106 #endif
107 #ifdef WITH_FUSE
108         case RESOURCE_IN_STAGING_FILE:
109                 BUILD_BUG_ON((void*)&old->file_on_disk !=
110                              (void*)&old->staging_file_name);
111 #endif
112                 new->file_on_disk = TSTRDUP(old->file_on_disk);
113                 if (new->file_on_disk == NULL)
114                         goto out_free;
115                 break;
116         case RESOURCE_IN_ATTACHED_BUFFER:
117                 new->attached_buffer = memdup(old->attached_buffer, old->size);
118                 if (new->attached_buffer == NULL)
119                         goto out_free;
120                 break;
121 #ifdef WITH_NTFS_3G
122         case RESOURCE_IN_NTFS_VOLUME:
123                 if (old->ntfs_loc) {
124                         struct ntfs_location *loc;
125                         loc = memdup(old->ntfs_loc, sizeof(struct ntfs_location));
126                         if (loc == NULL)
127                                 goto out_free;
128                         loc->path = NULL;
129                         loc->stream_name = NULL;
130                         new->ntfs_loc = loc;
131                         loc->path = STRDUP(old->ntfs_loc->path);
132                         if (loc->path == NULL)
133                                 goto out_free;
134                         if (loc->stream_name_nchars != 0) {
135                                 loc->stream_name = memdup(old->ntfs_loc->stream_name,
136                                                           loc->stream_name_nchars * 2);
137                                 if (loc->stream_name == NULL)
138                                         goto out_free;
139                         }
140                 }
141                 break;
142 #endif
143         default:
144                 break;
145         }
146         return new;
147 out_free:
148         free_lookup_table_entry(new);
149         return NULL;
150 }
151
152 void
153 free_lookup_table_entry(struct wim_lookup_table_entry *lte)
154 {
155         if (lte) {
156                 switch (lte->resource_location) {
157                 case RESOURCE_IN_WIM:
158                         list_del(&lte->rspec_node);
159                         if (list_empty(&lte->rspec->stream_list))
160                                 FREE(lte->rspec);
161                         break;
162                 case RESOURCE_IN_FILE_ON_DISK:
163         #ifdef __WIN32__
164                 case RESOURCE_WIN32_ENCRYPTED:
165         #endif
166         #ifdef WITH_FUSE
167                 case RESOURCE_IN_STAGING_FILE:
168                         BUILD_BUG_ON((void*)&lte->file_on_disk !=
169                                      (void*)&lte->staging_file_name);
170         #endif
171                 case RESOURCE_IN_ATTACHED_BUFFER:
172                         BUILD_BUG_ON((void*)&lte->file_on_disk !=
173                                      (void*)&lte->attached_buffer);
174                         FREE(lte->file_on_disk);
175                         break;
176 #ifdef WITH_NTFS_3G
177                 case RESOURCE_IN_NTFS_VOLUME:
178                         if (lte->ntfs_loc) {
179                                 FREE(lte->ntfs_loc->path);
180                                 FREE(lte->ntfs_loc->stream_name);
181                                 FREE(lte->ntfs_loc);
182                         }
183                         break;
184 #endif
185                 default:
186                         break;
187                 }
188                 FREE(lte);
189         }
190 }
191
192 static int
193 do_free_lookup_table_entry(struct wim_lookup_table_entry *entry, void *ignore)
194 {
195         free_lookup_table_entry(entry);
196         return 0;
197 }
198
199
200 void
201 free_lookup_table(struct wim_lookup_table *table)
202 {
203         DEBUG("Freeing lookup table.");
204         if (table) {
205                 if (table->array) {
206                         for_lookup_table_entry(table,
207                                                do_free_lookup_table_entry,
208                                                NULL);
209                         FREE(table->array);
210                 }
211                 FREE(table);
212         }
213 }
214
215 /*
216  * Inserts an entry into the lookup table.
217  *
218  * @table:      A pointer to the lookup table.
219  * @lte:        A pointer to the entry to insert.
220  */
221 void
222 lookup_table_insert(struct wim_lookup_table *table,
223                     struct wim_lookup_table_entry *lte)
224 {
225         size_t i = lte->hash_short % table->capacity;
226         hlist_add_head(&lte->hash_list, &table->array[i]);
227
228         /* XXX Make the table grow when too many entries have been inserted. */
229         table->num_entries++;
230 }
231
232 static void
233 finalize_lte(struct wim_lookup_table_entry *lte)
234 {
235         #ifdef WITH_FUSE
236         if (lte->resource_location == RESOURCE_IN_STAGING_FILE) {
237                 unlink(lte->staging_file_name);
238                 list_del(&lte->unhashed_list);
239         }
240         #endif
241         free_lookup_table_entry(lte);
242 }
243
244 /* Decrements the reference count for the lookup table entry @lte.  If its
245  * reference count reaches 0, it is unlinked from the lookup table.  If,
246  * furthermore, the entry has no opened file descriptors associated with it, the
247  * entry is freed.  */
248 void
249 lte_decrement_refcnt(struct wim_lookup_table_entry *lte,
250                      struct wim_lookup_table *table)
251 {
252         wimlib_assert(lte != NULL);
253         wimlib_assert(lte->refcnt != 0);
254         if (--lte->refcnt == 0) {
255                 if (lte->unhashed)
256                         list_del(&lte->unhashed_list);
257                 else
258                         lookup_table_unlink(table, lte);
259         #ifdef WITH_FUSE
260                 if (lte->num_opened_fds == 0)
261         #endif
262                         finalize_lte(lte);
263         }
264 }
265
266 #ifdef WITH_FUSE
267 void
268 lte_decrement_num_opened_fds(struct wim_lookup_table_entry *lte)
269 {
270         if (lte->num_opened_fds != 0)
271                 if (--lte->num_opened_fds == 0 && lte->refcnt == 0)
272                         finalize_lte(lte);
273 }
274 #endif
275
276 /* Calls a function on all the entries in the WIM lookup table.  Stop early and
277  * return nonzero if any call to the function returns nonzero. */
278 int
279 for_lookup_table_entry(struct wim_lookup_table *table,
280                        int (*visitor)(struct wim_lookup_table_entry *, void *),
281                        void *arg)
282 {
283         struct wim_lookup_table_entry *lte;
284         struct hlist_node *pos, *tmp;
285         int ret;
286
287         for (size_t i = 0; i < table->capacity; i++) {
288                 hlist_for_each_entry_safe(lte, pos, tmp, &table->array[i],
289                                           hash_list)
290                 {
291                         wimlib_assert2(!(lte->resource_entry.flags & WIM_RESHDR_FLAG_METADATA));
292                         ret = visitor(lte, arg);
293                         if (ret)
294                                 return ret;
295                 }
296         }
297         return 0;
298 }
299
300 /* qsort() callback that sorts streams (represented by `struct
301  * wim_lookup_table_entry's) into an order optimized for reading.
302  *
303  * Sorting is done primarily by resource location, then secondarily by a
304  * per-resource location order.  For example, resources in WIM files are sorted
305  * primarily by part number, then secondarily by offset, as to implement optimal
306  * reading of either a standalone or split WIM.  */
307 static int
308 cmp_streams_by_sequential_order(const void *p1, const void *p2)
309 {
310         const struct wim_lookup_table_entry *lte1, *lte2;
311         int v;
312         WIMStruct *wim1, *wim2;
313
314         lte1 = *(const struct wim_lookup_table_entry**)p1;
315         lte2 = *(const struct wim_lookup_table_entry**)p2;
316
317         v = (int)lte1->resource_location - (int)lte2->resource_location;
318
319         /* Different resource locations?  */
320         if (v)
321                 return v;
322
323         switch (lte1->resource_location) {
324         case RESOURCE_IN_WIM:
325                 wim1 = lte1->rspec->wim;
326                 wim2 = lte2->rspec->wim;
327
328                 /* Different (possibly split) WIMs?  */
329                 if (wim1 != wim2) {
330                         v = memcmp(wim1->hdr.guid, wim2->hdr.guid, WIM_GID_LEN);
331                         if (v)
332                                 return v;
333                 }
334
335                 /* Different part numbers in the same WIM?  */
336                 v = (int)wim1->hdr.part_number - (int)wim2->hdr.part_number;
337                 if (v)
338                         return v;
339
340                 if (lte1->rspec->offset_in_wim != lte2->rspec->offset_in_wim)
341                         return cmp_u64(lte1->rspec->offset_in_wim,
342                                        lte2->rspec->offset_in_wim);
343
344                 return cmp_u64(lte1->offset_in_res, lte2->offset_in_res);
345
346         case RESOURCE_IN_FILE_ON_DISK:
347 #ifdef WITH_FUSE
348         case RESOURCE_IN_STAGING_FILE:
349 #endif
350 #ifdef __WIN32__
351         case RESOURCE_WIN32_ENCRYPTED:
352 #endif
353                 /* Compare files by path: just a heuristic that will place files
354                  * in the same directory next to each other.  */
355                 return tstrcmp(lte1->file_on_disk, lte2->file_on_disk);
356 #ifdef WITH_NTFS_3G
357         case RESOURCE_IN_NTFS_VOLUME:
358                 return tstrcmp(lte1->ntfs_loc->path, lte2->ntfs_loc->path);
359 #endif
360         default:
361                 /* No additional sorting order defined for this resource
362                  * location (e.g. RESOURCE_IN_ATTACHED_BUFFER); simply compare
363                  * everything equal to each other.  */
364                 return 0;
365         }
366 }
367
368 int
369 sort_stream_list(struct list_head *stream_list,
370                  size_t list_head_offset,
371                  int (*compar)(const void *, const void*))
372 {
373         struct list_head *cur;
374         struct wim_lookup_table_entry **array;
375         size_t i;
376         size_t array_size;
377         size_t num_streams = 0;
378
379         list_for_each(cur, stream_list)
380                 num_streams++;
381
382         if (num_streams <= 1)
383                 return 0;
384
385         array_size = num_streams * sizeof(array[0]);
386         array = MALLOC(array_size);
387         if (array == NULL)
388                 return WIMLIB_ERR_NOMEM;
389
390         cur = stream_list->next;
391         for (i = 0; i < num_streams; i++) {
392                 array[i] = (struct wim_lookup_table_entry*)((u8*)cur -
393                                                             list_head_offset);
394                 cur = cur->next;
395         }
396
397         qsort(array, num_streams, sizeof(array[0]), compar);
398
399         INIT_LIST_HEAD(stream_list);
400         for (i = 0; i < num_streams; i++) {
401                 list_add_tail((struct list_head*)
402                                ((u8*)array[i] + list_head_offset),
403                               stream_list);
404         }
405         FREE(array);
406         return 0;
407 }
408
409 /* Sort the specified list of streams in an order optimized for reading.  */
410 int
411 sort_stream_list_by_sequential_order(struct list_head *stream_list,
412                                      size_t list_head_offset)
413 {
414         return sort_stream_list(stream_list, list_head_offset,
415                                 cmp_streams_by_sequential_order);
416 }
417
418
419 static int
420 add_lte_to_array(struct wim_lookup_table_entry *lte,
421                  void *_pp)
422 {
423         struct wim_lookup_table_entry ***pp = _pp;
424         *(*pp)++ = lte;
425         return 0;
426 }
427
428 /* Iterate through the lookup table entries, but first sort them by stream
429  * offset in the WIM.  Caution: this is intended to be used when the stream
430  * offset field has actually been set. */
431 int
432 for_lookup_table_entry_pos_sorted(struct wim_lookup_table *table,
433                                   int (*visitor)(struct wim_lookup_table_entry *,
434                                                  void *),
435                                   void *arg)
436 {
437         struct wim_lookup_table_entry **lte_array, **p;
438         size_t num_streams = table->num_entries;
439         int ret;
440
441         lte_array = MALLOC(num_streams * sizeof(lte_array[0]));
442         if (!lte_array)
443                 return WIMLIB_ERR_NOMEM;
444         p = lte_array;
445         for_lookup_table_entry(table, add_lte_to_array, &p);
446
447         wimlib_assert(p == lte_array + num_streams);
448
449         qsort(lte_array, num_streams, sizeof(lte_array[0]),
450               cmp_streams_by_sequential_order);
451         ret = 0;
452         for (size_t i = 0; i < num_streams; i++) {
453                 ret = visitor(lte_array[i], arg);
454                 if (ret)
455                         break;
456         }
457         FREE(lte_array);
458         return ret;
459 }
460
461 /* On-disk format of a WIM lookup table entry (stream entry). */
462 struct wim_lookup_table_entry_disk {
463         /* Size, offset, and flags of the stream.  */
464         struct wim_reshdr_disk reshdr;
465
466         /* Which part of the split WIM this stream is in; indexed from 1. */
467         le16 part_number;
468
469         /* Reference count of this stream over all WIM images. */
470         le32 refcnt;
471
472         /* SHA1 message digest of the uncompressed data of this stream, or
473          * optionally all zeroes if this stream is of zero length. */
474         u8 hash[SHA1_HASH_SIZE];
475 } _packed_attribute;
476
477 #define WIM_LOOKUP_TABLE_ENTRY_DISK_SIZE 50
478
479 /* Validate the size and location of a WIM resource.  */
480 static int
481 validate_resource(const struct wim_resource_spec *rspec)
482 {
483         struct wim_lookup_table_entry *lte;
484         u64 cur_offset;
485
486         /* Verify that calculating the offset of the end of the resource doesn't
487          * overflow.  */
488         if (rspec->offset_in_wim + rspec->size_in_wim < rspec->size_in_wim)
489                 goto invalid;
490
491         /* Verify that each stream in the resource has a valid offset and size,
492          * and that no streams overlap, and that the streams were added in order
493          * of increasing offset.  */
494         cur_offset = 0;
495         list_for_each_entry(lte, &rspec->stream_list, rspec_node) {
496                 if (lte->offset_in_res + lte->size < lte->size ||
497                     lte->offset_in_res + lte->size > rspec->uncompressed_size ||
498                     lte->offset_in_res < cur_offset)
499                         goto invalid;
500
501                 cur_offset = lte->offset_in_res + lte->size;
502         }
503         return 0;
504
505 invalid:
506
507         ERROR("Invalid resource entry!");
508         return WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY;
509 }
510
511 /*
512  * Reads the lookup table from a WIM file.  Each entry specifies a stream that
513  * the WIM file contains, along with its location and SHA1 message digest.
514  *
515  * Saves lookup table entries for non-metadata streams in a hash table, and
516  * saves the metadata entry for each image in a special per-image location (the
517  * image_metadata array).
518  *
519  * Return values:
520  *      WIMLIB_ERR_SUCCESS (0)
521  *      WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY
522  *      WIMLIB_ERR_RESOURCE_NOT_FOUND
523  *
524  *      Or an error code caused by failure to read the lookup table into memory.
525  */
526 int
527 read_wim_lookup_table(WIMStruct *wim)
528 {
529         int ret;
530         size_t i;
531         size_t num_entries;
532         struct wim_lookup_table *table;
533         struct wim_lookup_table_entry *cur_entry, *duplicate_entry;
534         struct wim_resource_spec *cur_rspec;
535         void *buf;
536         bool back_to_back_pack;
537
538         DEBUG("Reading lookup table.");
539
540         /* Sanity check: lookup table entries are 50 bytes each.  */
541         BUILD_BUG_ON(sizeof(struct wim_lookup_table_entry_disk) !=
542                      WIM_LOOKUP_TABLE_ENTRY_DISK_SIZE);
543
544         /* Calculate number of entries in the lookup table.  */
545         num_entries = wim->hdr.lookup_table_reshdr.uncompressed_size /
546                       sizeof(struct wim_lookup_table_entry_disk);
547
548         /* Read the lookup table into a buffer.  */
549         ret = wim_reshdr_to_data(&wim->hdr.lookup_table_reshdr, wim, &buf);
550         if (ret)
551                 goto out;
552
553         /* Allocate a hash table to map SHA1 message digests into stream
554          * specifications.  This is the in-memory "lookup table".  */
555         table = new_lookup_table(num_entries * 2 + 1);
556         if (table == NULL) {
557                 ERROR("Not enough memory to read lookup table.");
558                 ret = WIMLIB_ERR_NOMEM;
559                 goto out_free_buf;
560         }
561
562         /* Allocate and initalize stream entries from the raw lookup table
563          * buffer.  */
564         wim->current_image = 0;
565         cur_rspec = NULL;
566         for (i = 0; i < num_entries; i++) {
567                 const struct wim_lookup_table_entry_disk *disk_entry =
568                         &((const struct wim_lookup_table_entry_disk*)buf)[i];
569                 u16 part_number;
570                 struct wim_reshdr reshdr;
571
572                 get_wim_reshdr(&disk_entry->reshdr, &reshdr);
573
574                 DEBUG("reshdr: size_in_wim=%"PRIu64", "
575                       "uncompressed_size=%"PRIu64", "
576                       "offset_in_wim=%"PRIu64", "
577                       "flags=0x%02x",
578                       reshdr.size_in_wim, reshdr.uncompressed_size,
579                       reshdr.offset_in_wim, reshdr.flags);
580
581                 cur_entry = new_lookup_table_entry();
582                 if (cur_entry == NULL) {
583                         ERROR("Not enough memory to read lookup table!");
584                         ret = WIMLIB_ERR_NOMEM;
585                         goto out_free_lookup_table;
586                 }
587
588                 part_number = le16_to_cpu(disk_entry->part_number);
589                 cur_entry->refcnt = le32_to_cpu(disk_entry->refcnt);
590                 copy_hash(cur_entry->hash, disk_entry->hash);
591
592                 if (part_number != wim->hdr.part_number) {
593                         WARNING("A lookup table entry in part %hu of the WIM "
594                                 "points to part %hu (ignoring it)",
595                                 wim->hdr.part_number, part_number);
596                         free_lookup_table_entry(cur_entry);
597                         continue;
598                 }
599
600                 if (!(reshdr.flags & (WIM_RESHDR_FLAG_PACKED_STREAMS |
601                                       WIM_RESHDR_FLAG_COMPRESSED))) {
602                         if (reshdr.uncompressed_size != reshdr.size_in_wim) {
603                                 ERROR("Invalid resource entry!");
604                                 ret = WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY;
605                                 goto out_free_cur_entry;
606                         }
607                 }
608
609                 back_to_back_pack = false;
610                 if (!(reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) ||
611                     cur_rspec == NULL ||
612                     (back_to_back_pack =
613                      ((reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) &&
614                       reshdr.uncompressed_size == WIM_PACK_MAGIC_NUMBER &&
615                       cur_rspec != NULL &&
616                       cur_rspec->size_in_wim != 0)))
617                 {
618                         /* Starting new run of streams that share the same WIM
619                          * resource.  */
620                         struct wim_lookup_table_entry *prev_entry = NULL;
621
622                         if (back_to_back_pack) {
623                                 prev_entry = list_entry(cur_rspec->stream_list.prev,
624                                                         struct wim_lookup_table_entry,
625                                                         rspec_node);
626                                 lte_unbind_wim_resource_spec(prev_entry);
627                                 cur_rspec->uncompressed_size -= prev_entry->size;
628                         }
629                         if (cur_rspec != NULL) {
630                                 ret = validate_resource(cur_rspec);
631                                 if (ret)
632                                         goto out_free_cur_entry;
633                         }
634
635                         /* Allocate the resource specification and initialize it
636                          * with values from the current stream entry.  */
637                         cur_rspec = MALLOC(sizeof(*cur_rspec));
638                         if (cur_rspec == NULL) {
639                                 ERROR("Not enough memory to read lookup table!");
640                                 ret = WIMLIB_ERR_NOMEM;
641                                 goto out_free_cur_entry;
642                         }
643                         wim_res_hdr_to_spec(&reshdr, wim, cur_rspec);
644
645                         /* If this is a packed run, the current stream entry may
646                          * specify a stream within the resource, and not the
647                          * resource itself.  Zero possibly irrelevant data until
648                          * it is read for certain.  */
649                         if (reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
650                                 cur_rspec->size_in_wim = 0;
651                                 cur_rspec->uncompressed_size = 0;
652                                 cur_rspec->offset_in_wim = 0;
653                         }
654
655                         if (prev_entry) {
656                                 lte_bind_wim_resource_spec(prev_entry, cur_rspec);
657                                 cur_rspec->uncompressed_size = prev_entry->size;
658                         }
659                 }
660
661                 if ((reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) &&
662                     reshdr.uncompressed_size == WIM_PACK_MAGIC_NUMBER)
663                 {
664                         /* Found the specification for the packed resource.
665                          * Transfer the values to the `struct
666                          * wim_resource_spec', and discard the current stream
667                          * since this lookup table entry did not, in fact,
668                          * correspond to a "stream".  */
669
670                         cur_rspec->offset_in_wim = reshdr.offset_in_wim;
671                         cur_rspec->size_in_wim = reshdr.size_in_wim;
672                         cur_rspec->flags = reshdr.flags;
673                         DEBUG("Full pack is %"PRIu64" compressed bytes "
674                               "at file offset %"PRIu64" (flags 0x%02x)",
675                               cur_rspec->size_in_wim,
676                               cur_rspec->offset_in_wim,
677                               cur_rspec->flags);
678                         free_lookup_table_entry(cur_entry);
679                         continue;
680                 }
681
682                 if (is_zero_hash(cur_entry->hash)) {
683                         free_lookup_table_entry(cur_entry);
684                         continue;
685                 }
686
687                 if (reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
688                         /* Continuing the pack with another stream.  */
689                         DEBUG("Continuing packed run with stream: "
690                               "%"PRIu64" uncompressed bytes @ resource offset %"PRIu64")",
691                               reshdr.size_in_wim, reshdr.offset_in_wim);
692                         cur_rspec->uncompressed_size += reshdr.size_in_wim;
693                 }
694
695                 lte_bind_wim_resource_spec(cur_entry, cur_rspec);
696                 if (reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
697                         /* In packed runs, the offset field is used for
698                          * in-resource offset, not the in-WIM offset, and the
699                          * size field is used for the uncompressed size, not the
700                          * compressed size.  */
701                         cur_entry->offset_in_res = reshdr.offset_in_wim;
702                         cur_entry->size = reshdr.size_in_wim;
703                         cur_entry->flags = reshdr.flags;
704                 } else {
705                         /* Normal case: The stream corresponds one-to-one with
706                          * the resource entry.  */
707                         cur_entry->offset_in_res = 0;
708                         cur_entry->size = reshdr.uncompressed_size;
709                         cur_entry->flags = reshdr.flags;
710                         cur_rspec = NULL;
711                 }
712
713                 if (cur_entry->flags & WIM_RESHDR_FLAG_METADATA) {
714                         /* Lookup table entry for a metadata resource */
715
716                         /* Metadata entries with no references must be ignored;
717                          * see for example the WinPE WIMs from the WAIK v2.1.
718                          * */
719                         if (cur_entry->refcnt == 0) {
720                                 free_lookup_table_entry(cur_entry);
721                                 continue;
722                         }
723
724                         if (cur_entry->refcnt != 1) {
725                                 if (wimlib_print_errors) {
726                                         ERROR("Found metadata resource with refcnt != 1:");
727                                         print_lookup_table_entry(cur_entry, stderr);
728                                 }
729                                 ret = WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY;
730                                 goto out_free_cur_entry;
731                         }
732
733                         if (wim->hdr.part_number != 1) {
734                                 WARNING("Ignoring metadata resource found in a "
735                                         "non-first part of the split WIM");
736                                 free_lookup_table_entry(cur_entry);
737                                 continue;
738                         }
739                         if (wim->current_image == wim->hdr.image_count) {
740                                 WARNING("The WIM header says there are %u images "
741                                         "in the WIM, but we found more metadata "
742                                         "resources than this (ignoring the extra)",
743                                         wim->hdr.image_count);
744                                 free_lookup_table_entry(cur_entry);
745                                 continue;
746                         }
747
748                         /* Notice very carefully:  We are assigning the metadata
749                          * resources in the exact order mirrored by their lookup
750                          * table entries on disk, which is the behavior of
751                          * Microsoft's software.  In particular, this overrides
752                          * the actual locations of the metadata resources
753                          * themselves in the WIM file as well as any information
754                          * written in the XML data. */
755                         DEBUG("Found metadata resource for image %u at "
756                               "offset %"PRIu64".",
757                               wim->current_image + 1,
758                               cur_entry->rspec->offset_in_wim);
759                         wim->image_metadata[
760                                 wim->current_image++]->metadata_lte = cur_entry;
761                         continue;
762                 }
763
764                 /* Lookup table entry for a stream that is not a metadata
765                  * resource.  */
766                 duplicate_entry = lookup_resource(table, cur_entry->hash);
767                 if (duplicate_entry) {
768                         if (wimlib_print_errors) {
769                                 WARNING("The WIM lookup table contains two entries with the "
770                                       "same SHA1 message digest!");
771                                 WARNING("The first entry is:");
772                                 print_lookup_table_entry(duplicate_entry, stderr);
773                                 WARNING("The second entry is:");
774                                 print_lookup_table_entry(cur_entry, stderr);
775                         }
776                         free_lookup_table_entry(cur_entry);
777                         continue;
778                 }
779
780                 /* Finally, insert the stream into the lookup table, keyed by
781                  * its SHA1 message digest.  */
782                 lookup_table_insert(table, cur_entry);
783         }
784
785         /* Validate the last resource.  */
786         if (cur_rspec != NULL) {
787                 ret = validate_resource(cur_rspec);
788                 if (ret)
789                         goto out_free_lookup_table;
790         }
791
792         if (wim->hdr.part_number == 1 && wim->current_image != wim->hdr.image_count) {
793                 WARNING("The header of \"%"TS"\" says there are %u images in\n"
794                         "          the WIM, but we only found %d metadata resources!  Acting as if\n"
795                         "          the header specified only %d images instead.",
796                         wim->filename, wim->hdr.image_count,
797                         wim->current_image, wim->current_image);
798                 for (int i = wim->current_image; i < wim->hdr.image_count; i++)
799                         put_image_metadata(wim->image_metadata[i], NULL);
800                 wim->hdr.image_count = wim->current_image;
801         }
802         DEBUG("Done reading lookup table.");
803         wim->lookup_table = table;
804         ret = 0;
805         goto out_free_buf;
806
807 out_free_cur_entry:
808         FREE(cur_entry);
809 out_free_lookup_table:
810         free_lookup_table(table);
811 out_free_buf:
812         FREE(buf);
813 out:
814         wim->current_image = 0;
815         return ret;
816 }
817
818 static void
819 put_wim_lookup_table_entry(struct wim_lookup_table_entry_disk *disk_entry,
820                            const struct wim_reshdr *out_reshdr,
821                            u16 part_number, u32 refcnt, const u8 *hash)
822 {
823         put_wim_reshdr(out_reshdr, &disk_entry->reshdr);
824         disk_entry->part_number = cpu_to_le16(part_number);
825         disk_entry->refcnt = cpu_to_le32(refcnt);
826         copy_hash(disk_entry->hash, hash);
827 }
828
829 int
830 write_wim_lookup_table_from_stream_list(struct list_head *stream_list,
831                                         struct filedes *out_fd,
832                                         u16 part_number,
833                                         struct wim_reshdr *out_reshdr,
834                                         int write_resource_flags,
835                                         struct wimlib_lzx_context **comp_ctx)
836 {
837         size_t table_size;
838         struct wim_lookup_table_entry *lte;
839         struct wim_lookup_table_entry_disk *table_buf;
840         struct wim_lookup_table_entry_disk *table_buf_ptr;
841         int ret;
842         u64 prev_res_offset_in_wim = ~0ULL;
843
844         table_size = 0;
845         list_for_each_entry(lte, stream_list, lookup_table_list) {
846                 table_size += sizeof(struct wim_lookup_table_entry_disk);
847
848                 if (lte->out_reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS &&
849                     lte->out_res_offset_in_wim != prev_res_offset_in_wim)
850                 {
851                         table_size += sizeof(struct wim_lookup_table_entry_disk);
852                         prev_res_offset_in_wim = lte->out_res_offset_in_wim;
853                 }
854         }
855
856         DEBUG("Writing WIM lookup table (size=%zu, offset=%"PRIu64")",
857               table_size, out_fd->offset);
858
859         table_buf = MALLOC(table_size);
860         if (table_buf == NULL) {
861                 ERROR("Failed to allocate %zu bytes for temporary lookup table",
862                       table_size);
863                 return WIMLIB_ERR_NOMEM;
864         }
865         table_buf_ptr = table_buf;
866
867         prev_res_offset_in_wim = ~0ULL;
868         list_for_each_entry(lte, stream_list, lookup_table_list) {
869
870                 put_wim_lookup_table_entry(table_buf_ptr++,
871                                            &lte->out_reshdr,
872                                            part_number,
873                                            lte->out_refcnt,
874                                            lte->hash);
875                 if (lte->out_reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS &&
876                     lte->out_res_offset_in_wim != prev_res_offset_in_wim)
877                 {
878                         /* Put the main resource entry for the pack.  */
879
880                         struct wim_reshdr reshdr;
881
882                         reshdr.offset_in_wim = lte->out_res_offset_in_wim;
883                         reshdr.size_in_wim = lte->out_res_size_in_wim;
884                         reshdr.uncompressed_size = WIM_PACK_MAGIC_NUMBER;
885                         reshdr.flags = WIM_RESHDR_FLAG_PACKED_STREAMS;
886
887                         DEBUG("Putting main entry for pack: "
888                               "size_in_wim=%"PRIu64", "
889                               "offset_in_wim=%"PRIu64", "
890                               "uncompressed_size=%"PRIu64,
891                               reshdr.size_in_wim,
892                               reshdr.offset_in_wim,
893                               reshdr.uncompressed_size);
894
895                         put_wim_lookup_table_entry(table_buf_ptr++,
896                                                    &reshdr,
897                                                    part_number,
898                                                    1, zero_hash);
899                         prev_res_offset_in_wim = lte->out_res_offset_in_wim;
900                 }
901
902         }
903         wimlib_assert((u8*)table_buf_ptr - (u8*)table_buf == table_size);
904
905         /* Write the lookup table uncompressed.  Although wimlib can handle a
906          * compressed lookup table, MS software cannot.  */
907         ret = write_wim_resource_from_buffer(table_buf,
908                                              table_size,
909                                              WIM_RESHDR_FLAG_METADATA,
910                                              out_fd,
911                                              WIMLIB_COMPRESSION_TYPE_NONE,
912                                              0,
913                                              out_reshdr,
914                                              NULL,
915                                              write_resource_flags,
916                                              comp_ctx);
917         FREE(table_buf);
918         DEBUG("ret=%d", ret);
919         return ret;
920 }
921
922 int
923 lte_zero_real_refcnt(struct wim_lookup_table_entry *lte, void *_ignore)
924 {
925         lte->real_refcnt = 0;
926         return 0;
927 }
928
929 int
930 lte_zero_out_refcnt(struct wim_lookup_table_entry *lte, void *_ignore)
931 {
932         lte->out_refcnt = 0;
933         return 0;
934 }
935
936 int
937 lte_free_extracted_file(struct wim_lookup_table_entry *lte, void *_ignore)
938 {
939         if (lte->extracted_file != NULL) {
940                 FREE(lte->extracted_file);
941                 lte->extracted_file = NULL;
942         }
943         return 0;
944 }
945
946 void
947 print_lookup_table_entry(const struct wim_lookup_table_entry *lte, FILE *out)
948 {
949         if (lte == NULL) {
950                 tputc(T('\n'), out);
951                 return;
952         }
953
954
955         tprintf(T("Uncompressed size     = %"PRIu64" bytes\n"),
956                 lte->size);
957         if (lte->flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
958                 tprintf(T("Offset                = %"PRIu64" bytes\n"),
959                         lte->offset_in_res);
960
961                 tprintf(T("Raw uncompressed size = %"PRIu64" bytes\n"),
962                         lte->rspec->uncompressed_size);
963
964                 tprintf(T("Raw compressed size   = %"PRIu64" bytes\n"),
965                         lte->rspec->size_in_wim);
966
967                 tprintf(T("Raw offset            = %"PRIu64" bytes\n"),
968                         lte->rspec->offset_in_wim);
969         } else if (lte->resource_location == RESOURCE_IN_WIM) {
970                 tprintf(T("Compressed size       = %"PRIu64" bytes\n"),
971                         lte->rspec->size_in_wim);
972
973                 tprintf(T("Offset                = %"PRIu64" bytes\n"),
974                         lte->rspec->offset_in_wim);
975         }
976
977         tfprintf(out, T("Reference Count       = %u\n"), lte->refcnt);
978
979         if (lte->unhashed) {
980                 tfprintf(out, T("(Unhashed: inode %p, stream_id = %u)\n"),
981                          lte->back_inode, lte->back_stream_id);
982         } else {
983                 tfprintf(out, T("Hash                  = 0x"));
984                 print_hash(lte->hash, out);
985                 tputc(T('\n'), out);
986         }
987
988         tfprintf(out, T("Flags                 = "));
989         u8 flags = lte->flags;
990         if (flags & WIM_RESHDR_FLAG_COMPRESSED)
991                 tfputs(T("WIM_RESHDR_FLAG_COMPRESSED, "), out);
992         if (flags & WIM_RESHDR_FLAG_FREE)
993                 tfputs(T("WIM_RESHDR_FLAG_FREE, "), out);
994         if (flags & WIM_RESHDR_FLAG_METADATA)
995                 tfputs(T("WIM_RESHDR_FLAG_METADATA, "), out);
996         if (flags & WIM_RESHDR_FLAG_SPANNED)
997                 tfputs(T("WIM_RESHDR_FLAG_SPANNED, "), out);
998         if (flags & WIM_RESHDR_FLAG_PACKED_STREAMS)
999                 tfputs(T("WIM_RESHDR_FLAG_PACKED_STREAMS, "), out);
1000         tputc(T('\n'), out);
1001         switch (lte->resource_location) {
1002         case RESOURCE_IN_WIM:
1003                 if (lte->rspec->wim->filename) {
1004                         tfprintf(out, T("WIM file              = `%"TS"'\n"),
1005                                  lte->rspec->wim->filename);
1006                 }
1007                 break;
1008 #ifdef __WIN32__
1009         case RESOURCE_WIN32_ENCRYPTED:
1010 #endif
1011         case RESOURCE_IN_FILE_ON_DISK:
1012                 tfprintf(out, T("File on Disk          = `%"TS"'\n"),
1013                          lte->file_on_disk);
1014                 break;
1015 #ifdef WITH_FUSE
1016         case RESOURCE_IN_STAGING_FILE:
1017                 tfprintf(out, T("Staging File          = `%"TS"'\n"),
1018                                 lte->staging_file_name);
1019                 break;
1020 #endif
1021         default:
1022                 break;
1023         }
1024         tputc(T('\n'), out);
1025 }
1026
1027 void
1028 lte_to_wimlib_resource_entry(const struct wim_lookup_table_entry *lte,
1029                              struct wimlib_resource_entry *wentry)
1030 {
1031         memset(wentry, 0, sizeof(*wentry));
1032
1033         wentry->uncompressed_size = lte->size;
1034         if (lte->resource_location == RESOURCE_IN_WIM) {
1035                 wentry->part_number = lte->rspec->wim->hdr.part_number;
1036                 if (lte->flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
1037                         wentry->compressed_size = 0;
1038                         wentry->offset = lte->offset_in_res;
1039                 } else {
1040                         wentry->compressed_size = lte->rspec->size_in_wim;
1041                         wentry->offset = lte->rspec->offset_in_wim;
1042                 }
1043                 wentry->raw_resource_offset_in_wim = lte->rspec->offset_in_wim;
1044                 /*wentry->raw_resource_uncompressed_size = lte->rspec->uncompressed_size;*/
1045                 wentry->raw_resource_compressed_size = lte->rspec->size_in_wim;
1046         }
1047         copy_hash(wentry->sha1_hash, lte->hash);
1048         wentry->reference_count = lte->refcnt;
1049         wentry->is_compressed = (lte->flags & WIM_RESHDR_FLAG_COMPRESSED) != 0;
1050         wentry->is_metadata = (lte->flags & WIM_RESHDR_FLAG_METADATA) != 0;
1051         wentry->is_free = (lte->flags & WIM_RESHDR_FLAG_FREE) != 0;
1052         wentry->is_spanned = (lte->flags & WIM_RESHDR_FLAG_SPANNED) != 0;
1053         wentry->packed = (lte->flags & WIM_RESHDR_FLAG_PACKED_STREAMS) != 0;
1054 }
1055
1056 struct iterate_lte_context {
1057         wimlib_iterate_lookup_table_callback_t cb;
1058         void *user_ctx;
1059 };
1060
1061 static int
1062 do_iterate_lte(struct wim_lookup_table_entry *lte, void *_ctx)
1063 {
1064         struct iterate_lte_context *ctx = _ctx;
1065         struct wimlib_resource_entry entry;
1066
1067         lte_to_wimlib_resource_entry(lte, &entry);
1068         return (*ctx->cb)(&entry, ctx->user_ctx);
1069 }
1070
1071 /* API function documented in wimlib.h  */
1072 WIMLIBAPI int
1073 wimlib_iterate_lookup_table(WIMStruct *wim, int flags,
1074                             wimlib_iterate_lookup_table_callback_t cb,
1075                             void *user_ctx)
1076 {
1077         struct iterate_lte_context ctx = {
1078                 .cb = cb,
1079                 .user_ctx = user_ctx,
1080         };
1081         if (wim->hdr.part_number == 1) {
1082                 int ret;
1083                 for (int i = 0; i < wim->hdr.image_count; i++) {
1084                         ret = do_iterate_lte(wim->image_metadata[i]->metadata_lte,
1085                                              &ctx);
1086                         if (ret)
1087                                 return ret;
1088                 }
1089         }
1090         return for_lookup_table_entry(wim->lookup_table, do_iterate_lte, &ctx);
1091 }
1092
1093 /* Given a SHA1 message digest, return the corresponding entry in the WIM's
1094  * lookup table, or NULL if there is none.  */
1095 struct wim_lookup_table_entry *
1096 lookup_resource(const struct wim_lookup_table *table, const u8 hash[])
1097 {
1098         size_t i;
1099         struct wim_lookup_table_entry *lte;
1100         struct hlist_node *pos;
1101
1102         wimlib_assert(table != NULL);
1103         wimlib_assert(hash != NULL);
1104
1105         i = *(size_t*)hash % table->capacity;
1106         hlist_for_each_entry(lte, pos, &table->array[i], hash_list)
1107                 if (hashes_equal(hash, lte->hash))
1108                         return lte;
1109         return NULL;
1110 }
1111
1112 #ifdef WITH_FUSE
1113 /*
1114  * Finds the dentry, lookup table entry, and stream index for a WIM file stream,
1115  * given a path name.
1116  *
1117  * This is only for pre-resolved inodes.
1118  */
1119 int
1120 wim_pathname_to_stream(WIMStruct *wim,
1121                        const tchar *path,
1122                        int lookup_flags,
1123                        struct wim_dentry **dentry_ret,
1124                        struct wim_lookup_table_entry **lte_ret,
1125                        u16 *stream_idx_ret)
1126 {
1127         struct wim_dentry *dentry;
1128         struct wim_lookup_table_entry *lte;
1129         u16 stream_idx;
1130         const tchar *stream_name = NULL;
1131         struct wim_inode *inode;
1132         tchar *p = NULL;
1133
1134         if (lookup_flags & LOOKUP_FLAG_ADS_OK) {
1135                 stream_name = path_stream_name(path);
1136                 if (stream_name) {
1137                         p = (tchar*)stream_name - 1;
1138                         *p = T('\0');
1139                 }
1140         }
1141
1142         dentry = get_dentry(wim, path);
1143         if (p)
1144                 *p = T(':');
1145         if (!dentry)
1146                 return -errno;
1147
1148         inode = dentry->d_inode;
1149
1150         if (!inode->i_resolved)
1151                 if (inode_resolve_ltes(inode, wim->lookup_table, false))
1152                         return -EIO;
1153
1154         if (!(lookup_flags & LOOKUP_FLAG_DIRECTORY_OK)
1155               && inode_is_directory(inode))
1156                 return -EISDIR;
1157
1158         if (stream_name) {
1159                 struct wim_ads_entry *ads_entry;
1160                 u16 ads_idx;
1161                 ads_entry = inode_get_ads_entry(inode, stream_name,
1162                                                 &ads_idx);
1163                 if (ads_entry) {
1164                         stream_idx = ads_idx + 1;
1165                         lte = ads_entry->lte;
1166                         goto out;
1167                 } else {
1168                         return -ENOENT;
1169                 }
1170         } else {
1171                 lte = inode_unnamed_stream_resolved(inode, &stream_idx);
1172         }
1173 out:
1174         if (dentry_ret)
1175                 *dentry_ret = dentry;
1176         if (lte_ret)
1177                 *lte_ret = lte;
1178         if (stream_idx_ret)
1179                 *stream_idx_ret = stream_idx;
1180         return 0;
1181 }
1182 #endif
1183
1184 int
1185 resource_not_found_error(const struct wim_inode *inode, const u8 *hash)
1186 {
1187         if (wimlib_print_errors) {
1188                 ERROR("\"%"TS"\": resource not found", inode_first_full_path(inode));
1189                 tfprintf(stderr, T("        SHA-1 message digest of missing resource:\n        "));
1190                 print_hash(hash, stderr);
1191                 tputc(T('\n'), stderr);
1192         }
1193         return WIMLIB_ERR_RESOURCE_NOT_FOUND;
1194 }
1195
1196 /*
1197  * Resolve an inode's lookup table entries.
1198  *
1199  * This replaces the SHA1 hash fields (which are used to lookup an entry in the
1200  * lookup table) with pointers directly to the lookup table entries.
1201  *
1202  * If @force is %false:
1203  *      If any needed SHA1 message digests are not found in the lookup table,
1204  *      WIMLIB_ERR_RESOURCE_NOT_FOUND is returned and the inode is left
1205  *      unmodified.
1206  * If @force is %true:
1207  *      If any needed SHA1 message digests are not found in the lookup table,
1208  *      new entries are allocated and inserted into the lookup table.
1209  */
1210 int
1211 inode_resolve_ltes(struct wim_inode *inode, struct wim_lookup_table *table,
1212                    bool force)
1213 {
1214         const u8 *hash;
1215
1216         if (!inode->i_resolved) {
1217                 struct wim_lookup_table_entry *lte, *ads_lte;
1218
1219                 /* Resolve the default file stream */
1220                 lte = NULL;
1221                 hash = inode->i_hash;
1222                 if (!is_zero_hash(hash)) {
1223                         lte = lookup_resource(table, hash);
1224                         if (!lte) {
1225                                 if (force) {
1226                                         lte = new_lookup_table_entry();
1227                                         if (!lte)
1228                                                 return WIMLIB_ERR_NOMEM;
1229                                         copy_hash(lte->hash, hash);
1230                                         lookup_table_insert(table, lte);
1231                                 } else {
1232                                         goto resource_not_found;
1233                                 }
1234                         }
1235                 }
1236
1237                 /* Resolve the alternate data streams */
1238                 struct wim_lookup_table_entry *ads_ltes[inode->i_num_ads];
1239                 for (u16 i = 0; i < inode->i_num_ads; i++) {
1240                         struct wim_ads_entry *cur_entry;
1241
1242                         ads_lte = NULL;
1243                         cur_entry = &inode->i_ads_entries[i];
1244                         hash = cur_entry->hash;
1245                         if (!is_zero_hash(hash)) {
1246                                 ads_lte = lookup_resource(table, hash);
1247                                 if (!ads_lte) {
1248                                         if (force) {
1249                                                 ads_lte = new_lookup_table_entry();
1250                                                 if (!ads_lte)
1251                                                         return WIMLIB_ERR_NOMEM;
1252                                                 copy_hash(ads_lte->hash, hash);
1253                                                 lookup_table_insert(table, ads_lte);
1254                                         } else {
1255                                                 goto resource_not_found;
1256                                         }
1257                                 }
1258                         }
1259                         ads_ltes[i] = ads_lte;
1260                 }
1261                 inode->i_lte = lte;
1262                 for (u16 i = 0; i < inode->i_num_ads; i++)
1263                         inode->i_ads_entries[i].lte = ads_ltes[i];
1264                 inode->i_resolved = 1;
1265         }
1266         return 0;
1267
1268 resource_not_found:
1269         return resource_not_found_error(inode, hash);
1270 }
1271
1272 void
1273 inode_unresolve_ltes(struct wim_inode *inode)
1274 {
1275         if (inode->i_resolved) {
1276                 if (inode->i_lte)
1277                         copy_hash(inode->i_hash, inode->i_lte->hash);
1278                 else
1279                         zero_out_hash(inode->i_hash);
1280
1281                 for (u16 i = 0; i < inode->i_num_ads; i++) {
1282                         if (inode->i_ads_entries[i].lte)
1283                                 copy_hash(inode->i_ads_entries[i].hash,
1284                                           inode->i_ads_entries[i].lte->hash);
1285                         else
1286                                 zero_out_hash(inode->i_ads_entries[i].hash);
1287                 }
1288                 inode->i_resolved = 0;
1289         }
1290 }
1291
1292 /*
1293  * Returns the lookup table entry for stream @stream_idx of the inode, where
1294  * stream_idx = 0 means the default un-named file stream, and stream_idx >= 1
1295  * corresponds to an alternate data stream.
1296  *
1297  * This works for both resolved and un-resolved inodes.
1298  */
1299 struct wim_lookup_table_entry *
1300 inode_stream_lte(const struct wim_inode *inode, unsigned stream_idx,
1301                  const struct wim_lookup_table *table)
1302 {
1303         if (inode->i_resolved)
1304                 return inode_stream_lte_resolved(inode, stream_idx);
1305         else
1306                 return inode_stream_lte_unresolved(inode, stream_idx, table);
1307 }
1308
1309 struct wim_lookup_table_entry *
1310 inode_unnamed_stream_resolved(const struct wim_inode *inode, u16 *stream_idx_ret)
1311 {
1312         wimlib_assert(inode->i_resolved);
1313         for (unsigned i = 0; i <= inode->i_num_ads; i++) {
1314                 if (inode_stream_name_nbytes(inode, i) == 0 &&
1315                     !is_zero_hash(inode_stream_hash_resolved(inode, i)))
1316                 {
1317                         *stream_idx_ret = i;
1318                         return inode_stream_lte_resolved(inode, i);
1319                 }
1320         }
1321         *stream_idx_ret = 0;
1322         return NULL;
1323 }
1324
1325 struct wim_lookup_table_entry *
1326 inode_unnamed_lte_resolved(const struct wim_inode *inode)
1327 {
1328         u16 stream_idx;
1329         return inode_unnamed_stream_resolved(inode, &stream_idx);
1330 }
1331
1332 struct wim_lookup_table_entry *
1333 inode_unnamed_lte_unresolved(const struct wim_inode *inode,
1334                              const struct wim_lookup_table *table)
1335 {
1336         wimlib_assert(!inode->i_resolved);
1337         for (unsigned i = 0; i <= inode->i_num_ads; i++) {
1338                 if (inode_stream_name_nbytes(inode, i) == 0 &&
1339                     !is_zero_hash(inode_stream_hash_unresolved(inode, i)))
1340                 {
1341                         return inode_stream_lte_unresolved(inode, i, table);
1342                 }
1343         }
1344         return NULL;
1345 }
1346
1347 /* Return the lookup table entry for the unnamed data stream of an inode, or
1348  * NULL if there is none.
1349  *
1350  * You'd think this would be easier than it actually is, since the unnamed data
1351  * stream should be the one referenced from the inode itself.  Alas, if there
1352  * are named data streams, Microsoft's "imagex.exe" program will put the unnamed
1353  * data stream in one of the alternate data streams instead of inside the WIM
1354  * dentry itself.  So we need to check the alternate data streams too.
1355  *
1356  * Also, note that a dentry may appear to have more than one unnamed stream, but
1357  * if the SHA1 message digest is all 0's then the corresponding stream does not
1358  * really "count" (this is the case for the inode's own file stream when the
1359  * file stream that should be there is actually in one of the alternate stream
1360  * entries.).  This is despite the fact that we may need to extract such a
1361  * missing entry as an empty file or empty named data stream.
1362  */
1363 struct wim_lookup_table_entry *
1364 inode_unnamed_lte(const struct wim_inode *inode,
1365                   const struct wim_lookup_table *table)
1366 {
1367         if (inode->i_resolved)
1368                 return inode_unnamed_lte_resolved(inode);
1369         else
1370                 return inode_unnamed_lte_unresolved(inode, table);
1371 }
1372
1373 /* Returns the SHA1 message digest of the unnamed data stream of a WIM inode, or
1374  * 'zero_hash' if the unnamed data stream is missing has all zeroes in its SHA1
1375  * message digest field.  */
1376 const u8 *
1377 inode_unnamed_stream_hash(const struct wim_inode *inode)
1378 {
1379         const u8 *hash;
1380
1381         for (unsigned i = 0; i <= inode->i_num_ads; i++) {
1382                 if (inode_stream_name_nbytes(inode, i) == 0) {
1383                         hash = inode_stream_hash(inode, i);
1384                         if (!is_zero_hash(hash))
1385                                 return hash;
1386                 }
1387         }
1388         return zero_hash;
1389 }
1390
1391 struct wim_lookup_table_entry **
1392 retrieve_lte_pointer(struct wim_lookup_table_entry *lte)
1393 {
1394         wimlib_assert(lte->unhashed);
1395         struct wim_inode *inode = lte->back_inode;
1396         u32 stream_id = lte->back_stream_id;
1397         if (stream_id == 0)
1398                 return &inode->i_lte;
1399         else
1400                 for (u16 i = 0; i < inode->i_num_ads; i++)
1401                         if (inode->i_ads_entries[i].stream_id == stream_id)
1402                                 return &inode->i_ads_entries[i].lte;
1403         wimlib_assert(0);
1404         return NULL;
1405 }
1406
1407 /* Calculate the SHA1 message digest of a stream and move it from the list of
1408  * unhashed streams to the stream lookup table, possibly joining it with an
1409  * existing lookup table entry for an identical stream.
1410  *
1411  * @lte:  An unhashed lookup table entry.
1412  * @lookup_table:  Lookup table for the WIM.
1413  * @lte_ret:  On success, write a pointer to the resulting lookup table
1414  *            entry to this location.  This will be the same as @lte
1415  *            if it was inserted into the lookup table, or different if
1416  *            a duplicate stream was found.
1417  *
1418  * Returns 0 on success; nonzero if there is an error reading the stream.
1419  */
1420 int
1421 hash_unhashed_stream(struct wim_lookup_table_entry *lte,
1422                      struct wim_lookup_table *lookup_table,
1423                      struct wim_lookup_table_entry **lte_ret)
1424 {
1425         int ret;
1426         struct wim_lookup_table_entry *duplicate_lte;
1427         struct wim_lookup_table_entry **back_ptr;
1428
1429         wimlib_assert(lte->unhashed);
1430
1431         /* back_ptr must be saved because @back_inode and @back_stream_id are in
1432          * union with the SHA1 message digest and will no longer be valid once
1433          * the SHA1 has been calculated. */
1434         back_ptr = retrieve_lte_pointer(lte);
1435
1436         ret = sha1_stream(lte);
1437         if (ret)
1438                 return ret;
1439
1440         /* Look for a duplicate stream */
1441         duplicate_lte = lookup_resource(lookup_table, lte->hash);
1442         list_del(&lte->unhashed_list);
1443         if (duplicate_lte) {
1444                 /* We have a duplicate stream.  Transfer the reference counts
1445                  * from this stream to the duplicate and update the reference to
1446                  * this stream (in an inode or ads_entry) to point to the
1447                  * duplicate.  The caller is responsible for freeing @lte if
1448                  * needed.  */
1449                 wimlib_assert(!(duplicate_lte->unhashed));
1450                 wimlib_assert(duplicate_lte->size == lte->size);
1451                 duplicate_lte->refcnt += lte->refcnt;
1452                 lte->refcnt = 0;
1453                 *back_ptr = duplicate_lte;
1454                 lte = duplicate_lte;
1455         } else {
1456                 /* No duplicate stream, so we need to insert this stream into
1457                  * the lookup table and treat it as a hashed stream. */
1458                 lookup_table_insert(lookup_table, lte);
1459                 lte->unhashed = 0;
1460         }
1461         *lte_ret = lte;
1462         return 0;
1463 }
1464
1465 static int
1466 lte_clone_if_new(struct wim_lookup_table_entry *lte, void *_lookup_table)
1467 {
1468         struct wim_lookup_table *lookup_table = _lookup_table;
1469
1470         if (lookup_resource(lookup_table, lte->hash))
1471                 return 0;  /*  Resource already present.  */
1472
1473         lte = clone_lookup_table_entry(lte);
1474         if (lte == NULL)
1475                 return WIMLIB_ERR_NOMEM;
1476         lte->out_refcnt = 1;
1477         lookup_table_insert(lookup_table, lte);
1478         return 0;
1479 }
1480
1481 static int
1482 lte_delete_if_new(struct wim_lookup_table_entry *lte, void *_lookup_table)
1483 {
1484         struct wim_lookup_table *lookup_table = _lookup_table;
1485
1486         if (lte->out_refcnt) {
1487                 lookup_table_unlink(lookup_table, lte);
1488                 free_lookup_table_entry(lte);
1489         }
1490         return 0;
1491 }
1492
1493 /* API function documented in wimlib.h  */
1494 WIMLIBAPI int
1495 wimlib_reference_resources(WIMStruct *wim,
1496                            WIMStruct **resource_wims, unsigned num_resource_wims,
1497                            int ref_flags)
1498 {
1499         int ret;
1500         unsigned i;
1501
1502         if (wim == NULL)
1503                 return WIMLIB_ERR_INVALID_PARAM;
1504
1505         if (num_resource_wims != 0 && resource_wims == NULL)
1506                 return WIMLIB_ERR_INVALID_PARAM;
1507
1508         for (i = 0; i < num_resource_wims; i++)
1509                 if (resource_wims[i] == NULL)
1510                         return WIMLIB_ERR_INVALID_PARAM;
1511
1512         for_lookup_table_entry(wim->lookup_table, lte_zero_out_refcnt, NULL);
1513
1514         for (i = 0; i < num_resource_wims; i++) {
1515                 ret = for_lookup_table_entry(resource_wims[i]->lookup_table,
1516                                              lte_clone_if_new,
1517                                              wim->lookup_table);
1518                 if (ret)
1519                         goto out_rollback;
1520         }
1521         return 0;
1522
1523 out_rollback:
1524         for_lookup_table_entry(wim->lookup_table, lte_delete_if_new,
1525                                wim->lookup_table);
1526         return ret;
1527 }
1528
1529 static int
1530 reference_resource_paths(WIMStruct *wim,
1531                          const tchar * const *resource_wimfiles,
1532                          unsigned num_resource_wimfiles,
1533                          int ref_flags,
1534                          int open_flags,
1535                          wimlib_progress_func_t progress_func)
1536 {
1537         WIMStruct **resource_wims;
1538         unsigned i;
1539         int ret;
1540
1541         resource_wims = CALLOC(num_resource_wimfiles, sizeof(resource_wims[0]));
1542         if (!resource_wims)
1543                 return WIMLIB_ERR_NOMEM;
1544
1545         for (i = 0; i < num_resource_wimfiles; i++) {
1546                 DEBUG("Referencing resources from path \"%"TS"\"",
1547                       resource_wimfiles[i]);
1548                 ret = wimlib_open_wim(resource_wimfiles[i], open_flags,
1549                                       &resource_wims[i], progress_func);
1550                 if (ret)
1551                         goto out_free_resource_wims;
1552         }
1553
1554         ret = wimlib_reference_resources(wim, resource_wims,
1555                                          num_resource_wimfiles, ref_flags);
1556         if (ret)
1557                 goto out_free_resource_wims;
1558
1559         for (i = 0; i < num_resource_wimfiles; i++)
1560                 list_add_tail(&resource_wims[i]->subwim_node, &wim->subwims);
1561
1562         ret = 0;
1563         goto out_free_array;
1564
1565 out_free_resource_wims:
1566         for (i = 0; i < num_resource_wimfiles; i++)
1567                 wimlib_free(resource_wims[i]);
1568 out_free_array:
1569         FREE(resource_wims);
1570         return ret;
1571 }
1572
1573 static int
1574 reference_resource_glob(WIMStruct *wim, const tchar *refglob,
1575                         int ref_flags, int open_flags,
1576                         wimlib_progress_func_t progress_func)
1577 {
1578         glob_t globbuf;
1579         int ret;
1580
1581         /* Note: glob() is replaced in Windows native builds.  */
1582         ret = tglob(refglob, GLOB_ERR | GLOB_NOSORT, NULL, &globbuf);
1583         if (ret) {
1584                 if (ret == GLOB_NOMATCH) {
1585                         if (ref_flags & WIMLIB_REF_FLAG_GLOB_ERR_ON_NOMATCH) {
1586                                 ERROR("Found no files for glob \"%"TS"\"", refglob);
1587                                 return WIMLIB_ERR_GLOB_HAD_NO_MATCHES;
1588                         } else {
1589                                 return reference_resource_paths(wim,
1590                                                                 &refglob,
1591                                                                 1,
1592                                                                 ref_flags,
1593                                                                 open_flags,
1594                                                                 progress_func);
1595                         }
1596                 } else {
1597                         ERROR_WITH_ERRNO("Failed to process glob \"%"TS"\"", refglob);
1598                         if (ret == GLOB_NOSPACE)
1599                                 return WIMLIB_ERR_NOMEM;
1600                         else
1601                                 return WIMLIB_ERR_READ;
1602                 }
1603         }
1604
1605         ret = reference_resource_paths(wim,
1606                                        (const tchar * const *)globbuf.gl_pathv,
1607                                        globbuf.gl_pathc,
1608                                        ref_flags,
1609                                        open_flags,
1610                                        progress_func);
1611         globfree(&globbuf);
1612         return ret;
1613 }
1614
1615 /* API function documented in wimlib.h  */
1616 WIMLIBAPI int
1617 wimlib_reference_resource_files(WIMStruct *wim,
1618                                 const tchar * const * resource_wimfiles_or_globs,
1619                                 unsigned count,
1620                                 int ref_flags,
1621                                 int open_flags,
1622                                 wimlib_progress_func_t progress_func)
1623 {
1624         unsigned i;
1625         int ret;
1626
1627         if (ref_flags & WIMLIB_REF_FLAG_GLOB_ENABLE) {
1628                 for (i = 0; i < count; i++) {
1629                         ret = reference_resource_glob(wim,
1630                                                       resource_wimfiles_or_globs[i],
1631                                                       ref_flags,
1632                                                       open_flags,
1633                                                       progress_func);
1634                         if (ret)
1635                                 return ret;
1636                 }
1637                 return 0;
1638         } else {
1639                 return reference_resource_paths(wim, resource_wimfiles_or_globs,
1640                                                 count, ref_flags,
1641                                                 open_flags, progress_func);
1642         }
1643 }