]> wimlib.net Git - wimlib/blob - src/resource.c
2c04882eb30e60526e2700edbe122de08ba959eb
[wimlib] / src / resource.c
1 /*
2  * resource.c
3  *
4  * Code for reading blobs and resources, including compressed WIM resources.
5  */
6
7 /*
8  * Copyright (C) 2012, 2013, 2015 Eric Biggers
9  *
10  * This file is free software; you can redistribute it and/or modify it under
11  * the terms of the GNU Lesser General Public License as published by the Free
12  * Software Foundation; either version 3 of the License, or (at your option) any
13  * later version.
14  *
15  * This file is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with this file; if not, see http://www.gnu.org/licenses/.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include <errno.h>
29 #include <fcntl.h>
30 #include <unistd.h>
31
32 #include "wimlib/alloca.h"
33 #include "wimlib/assert.h"
34 #include "wimlib/bitops.h"
35 #include "wimlib/blob_table.h"
36 #include "wimlib/endianness.h"
37 #include "wimlib/error.h"
38 #include "wimlib/file_io.h"
39 #include "wimlib/resource.h"
40 #include "wimlib/sha1.h"
41 #include "wimlib/wim.h"
42
43 #ifdef __WIN32__
44 /* for read_winnt_stream_prefix(), read_win32_encrypted_file_prefix() */
45 #  include "wimlib/win32.h"
46 #endif
47
48 #ifdef WITH_NTFS_3G
49 /* for read_ntfs_attribute_prefix() */
50 #  include "wimlib/ntfs_3g.h"
51 #endif
52
53
54 /*
55  *                         Compressed WIM resources
56  *
57  * A compressed resource in a WIM consists of a number of compressed chunks,
58  * each of which decompresses to a fixed chunk size (given in the WIM header;
59  * usually 32768) except possibly the last, which always decompresses to any
60  * remaining bytes.  In addition, immediately before the chunks, a table (the
61  * "chunk table") provides the offset, in bytes relative to the end of the chunk
62  * table, of the start of each compressed chunk, except for the first chunk
63  * which is omitted as it always has an offset of 0.  Therefore, a compressed
64  * resource with N chunks will have a chunk table with N - 1 entries.
65  *
66  * Additional information:
67  *
68  * - Entries in the chunk table are 4 bytes each, except if the uncompressed
69  *   size of the resource is greater than 4 GiB, in which case the entries in
70  *   the chunk table are 8 bytes each.  In either case, the entries are unsigned
71  *   little-endian integers.
72  *
73  * - The chunk table is included in the compressed size of the resource provided
74  *   in the corresponding entry in the WIM's blob table.
75  *
76  * - The compressed size of a chunk is never greater than the uncompressed size.
77  *   From the compressor's point of view, chunks that would have compressed to a
78  *   size greater than or equal to their original size are in fact stored
79  *   uncompressed.  From the decompresser's point of view, chunks with
80  *   compressed size equal to their uncompressed size are in fact uncompressed.
81  *
82  * Furthermore, wimlib supports its own "pipable" WIM format, and for this the
83  * structure of compressed resources was modified to allow piped reading and
84  * writing.  To make sequential writing possible, the chunk table is placed
85  * after the chunks rather than before the chunks, and to make sequential
86  * reading possible, each chunk is prefixed with a 4-byte header giving its
87  * compressed size as a 32-bit, unsigned, little-endian integer.  Otherwise the
88  * details are the same.
89  */
90
91
92 struct data_range {
93         u64 offset;
94         u64 size;
95 };
96
97 /*
98  * read_compressed_wim_resource() -
99  *
100  * Read data from a compressed WIM resource.
101  *
102  * @rdesc
103  *      Description of the compressed WIM resource to read from.
104  * @ranges
105  *      Nonoverlapping, nonempty ranges of the uncompressed resource data to
106  *      read, sorted by increasing offset.
107  * @num_ranges
108  *      Number of ranges in @ranges; must be at least 1.
109  * @cb
110  *      Callback function to feed the data being read.  Each call provides the
111  *      next chunk of the requested data, uncompressed.  Each chunk will be of
112  *      nonzero size and will not cross range boundaries, but otherwise will be
113  *      of unspecified size.
114  * @cb_ctx
115  *      Parameter to pass to @cb_ctx.
116  *
117  * Possible return values:
118  *
119  *      WIMLIB_ERR_SUCCESS (0)
120  *      WIMLIB_ERR_READ                   (errno set)
121  *      WIMLIB_ERR_UNEXPECTED_END_OF_FILE (errno set to 0)
122  *      WIMLIB_ERR_NOMEM                  (errno set to ENOMEM)
123  *      WIMLIB_ERR_DECOMPRESSION          (errno set to EINVAL)
124  *
125  *      or other error code returned by the @cb function.
126  */
127 static int
128 read_compressed_wim_resource(const struct wim_resource_descriptor * const rdesc,
129                              const struct data_range * const ranges,
130                              const size_t num_ranges,
131                              const consume_data_callback_t cb,
132                              void * const cb_ctx)
133 {
134         int ret;
135         int errno_save;
136
137         u64 *chunk_offsets = NULL;
138         u8 *ubuf = NULL;
139         void *cbuf = NULL;
140         bool chunk_offsets_malloced = false;
141         bool ubuf_malloced = false;
142         bool cbuf_malloced = false;
143         struct wimlib_decompressor *decompressor = NULL;
144
145         /* Sanity checks  */
146         wimlib_assert(rdesc != NULL);
147         wimlib_assert(resource_is_compressed(rdesc));
148         wimlib_assert(cb != NULL);
149         wimlib_assert(num_ranges != 0);
150         for (size_t i = 0; i < num_ranges; i++) {
151                 DEBUG("Range %zu/%zu: %"PRIu64"@+%"PRIu64" / %"PRIu64,
152                       i + 1, num_ranges, ranges[i].size, ranges[i].offset,
153                       rdesc->uncompressed_size);
154                 wimlib_assert(ranges[i].size != 0);
155                 wimlib_assert(ranges[i].offset + ranges[i].size >= ranges[i].size);
156                 wimlib_assert(ranges[i].offset + ranges[i].size <= rdesc->uncompressed_size);
157         }
158         for (size_t i = 0; i < num_ranges - 1; i++)
159                 wimlib_assert(ranges[i].offset + ranges[i].size <= ranges[i + 1].offset);
160
161         /* Get the offsets of the first and last bytes of the read.  */
162         const u64 first_offset = ranges[0].offset;
163         const u64 last_offset = ranges[num_ranges - 1].offset + ranges[num_ranges - 1].size - 1;
164
165         /* Get the file descriptor for the WIM.  */
166         struct filedes * const in_fd = &rdesc->wim->in_fd;
167
168         /* Determine if we're reading a pipable resource from a pipe or not.  */
169         const bool is_pipe_read = (rdesc->is_pipable && !filedes_is_seekable(in_fd));
170
171         /* Determine if the chunk table is in an alternate format.  */
172         const bool alt_chunk_table = (rdesc->flags & WIM_RESHDR_FLAG_SOLID)
173                                         && !is_pipe_read;
174
175         /* Get the maximum size of uncompressed chunks in this resource, which
176          * we require be a power of 2.  */
177         u64 cur_read_offset = rdesc->offset_in_wim;
178         int ctype = rdesc->compression_type;
179         u32 chunk_size = rdesc->chunk_size;
180         if (alt_chunk_table) {
181                 /* Alternate chunk table format.  Its header specifies the chunk
182                  * size and compression format.  Note: it could be read here;
183                  * however, the relevant data was already loaded into @rdesc by
184                  * read_blob_table().  */
185                 cur_read_offset += sizeof(struct alt_chunk_table_header_disk);
186         }
187
188         if (!is_power_of_2(chunk_size)) {
189                 ERROR("Invalid compressed resource: "
190                       "expected power-of-2 chunk size (got %"PRIu32")",
191                       chunk_size);
192                 ret = WIMLIB_ERR_INVALID_CHUNK_SIZE;
193                 errno = EINVAL;
194                 goto out_free_memory;
195         }
196
197         /* Get valid decompressor.  */
198         if (ctype == rdesc->wim->decompressor_ctype &&
199             chunk_size == rdesc->wim->decompressor_max_block_size)
200         {
201                 /* Cached decompressor.  */
202                 decompressor = rdesc->wim->decompressor;
203                 rdesc->wim->decompressor_ctype = WIMLIB_COMPRESSION_TYPE_NONE;
204                 rdesc->wim->decompressor = NULL;
205         } else {
206                 ret = wimlib_create_decompressor(ctype, chunk_size,
207                                                  &decompressor);
208                 if (ret) {
209                         if (ret != WIMLIB_ERR_NOMEM)
210                                 errno = EINVAL;
211                         goto out_free_memory;
212                 }
213         }
214
215         const u32 chunk_order = fls32(chunk_size);
216
217         /* Calculate the total number of chunks the resource is divided into.  */
218         const u64 num_chunks = (rdesc->uncompressed_size + chunk_size - 1) >> chunk_order;
219
220         /* Calculate the 0-based indices of the first and last chunks containing
221          * data that needs to be passed to the callback.  */
222         const u64 first_needed_chunk = first_offset >> chunk_order;
223         const u64 last_needed_chunk = last_offset >> chunk_order;
224
225         /* Calculate the 0-based index of the first chunk that actually needs to
226          * be read.  This is normally first_needed_chunk, but for pipe reads we
227          * must always start from the 0th chunk.  */
228         const u64 read_start_chunk = (is_pipe_read ? 0 : first_needed_chunk);
229
230         /* Calculate the number of chunk offsets that are needed for the chunks
231          * being read.  */
232         const u64 num_needed_chunk_offsets =
233                 last_needed_chunk - read_start_chunk + 1 +
234                 (last_needed_chunk < num_chunks - 1);
235
236         /* Calculate the number of entries in the chunk table.  Normally, it's
237          * one less than the number of chunks, since the first chunk has no
238          * entry.  But in the alternate chunk table format, the chunk entries
239          * contain chunk sizes, not offsets, and there is one per chunk.  */
240         const u64 num_chunk_entries = (alt_chunk_table ? num_chunks : num_chunks - 1);
241
242         /* Set the size of each chunk table entry based on the resource's
243          * uncompressed size.  */
244         const u64 chunk_entry_size = get_chunk_entry_size(rdesc->uncompressed_size,
245                                                           alt_chunk_table);
246
247         /* Calculate the size of the chunk table in bytes.  */
248         const u64 chunk_table_size = num_chunk_entries * chunk_entry_size;
249
250         /* Calculate the size of the chunk table in bytes, including the header
251          * in the case of the alternate chunk table format.  */
252         const u64 chunk_table_full_size =
253                 (alt_chunk_table) ? chunk_table_size + sizeof(struct alt_chunk_table_header_disk)
254                                   : chunk_table_size;
255
256         if (!is_pipe_read) {
257                 /* Read the needed chunk table entries into memory and use them
258                  * to initialize the chunk_offsets array.  */
259
260                 u64 first_chunk_entry_to_read;
261                 u64 last_chunk_entry_to_read;
262
263                 if (alt_chunk_table) {
264                         /* The alternate chunk table contains chunk sizes, not
265                          * offsets, so we always must read all preceding entries
266                          * in order to determine offsets.  */
267                         first_chunk_entry_to_read = 0;
268                         last_chunk_entry_to_read = last_needed_chunk;
269                 } else {
270                         /* Here we must account for the fact that the first
271                          * chunk has no explicit chunk table entry.  */
272
273                         if (read_start_chunk == 0)
274                                 first_chunk_entry_to_read = 0;
275                         else
276                                 first_chunk_entry_to_read = read_start_chunk - 1;
277
278                         if (last_needed_chunk == 0)
279                                 last_chunk_entry_to_read = 0;
280                         else
281                                 last_chunk_entry_to_read = last_needed_chunk - 1;
282
283                         if (last_needed_chunk < num_chunks - 1)
284                                 last_chunk_entry_to_read++;
285                 }
286
287                 const u64 num_chunk_entries_to_read =
288                         last_chunk_entry_to_read - first_chunk_entry_to_read + 1;
289
290                 const u64 chunk_offsets_alloc_size =
291                         max(num_chunk_entries_to_read,
292                             num_needed_chunk_offsets) * sizeof(chunk_offsets[0]);
293
294                 if ((size_t)chunk_offsets_alloc_size != chunk_offsets_alloc_size)
295                         goto oom;
296
297                 if (chunk_offsets_alloc_size <= STACK_MAX) {
298                         chunk_offsets = alloca(chunk_offsets_alloc_size);
299                 } else {
300                         chunk_offsets = MALLOC(chunk_offsets_alloc_size);
301                         if (chunk_offsets == NULL)
302                                 goto oom;
303                         chunk_offsets_malloced = true;
304                 }
305
306                 const size_t chunk_table_size_to_read =
307                         num_chunk_entries_to_read * chunk_entry_size;
308
309                 const u64 file_offset_of_needed_chunk_entries =
310                         cur_read_offset
311                         + (first_chunk_entry_to_read * chunk_entry_size)
312                         + (rdesc->is_pipable ? (rdesc->size_in_wim - chunk_table_size) : 0);
313
314                 void * const chunk_table_data =
315                         (u8*)chunk_offsets +
316                         chunk_offsets_alloc_size -
317                         chunk_table_size_to_read;
318
319                 ret = full_pread(in_fd, chunk_table_data, chunk_table_size_to_read,
320                                  file_offset_of_needed_chunk_entries);
321                 if (ret)
322                         goto read_error;
323
324                 /* Now fill in chunk_offsets from the entries we have read in
325                  * chunk_tab_data.  We break aliasing rules here to avoid having
326                  * to allocate yet another array.  */
327                 typedef le64 _may_alias_attribute aliased_le64_t;
328                 typedef le32 _may_alias_attribute aliased_le32_t;
329                 u64 * chunk_offsets_p = chunk_offsets;
330
331                 if (alt_chunk_table) {
332                         u64 cur_offset = 0;
333                         aliased_le32_t *raw_entries = chunk_table_data;
334
335                         for (size_t i = 0; i < num_chunk_entries_to_read; i++) {
336                                 u32 entry = le32_to_cpu(raw_entries[i]);
337                                 if (i >= read_start_chunk)
338                                         *chunk_offsets_p++ = cur_offset;
339                                 cur_offset += entry;
340                         }
341                         if (last_needed_chunk < num_chunks - 1)
342                                 *chunk_offsets_p = cur_offset;
343                 } else {
344                         if (read_start_chunk == 0)
345                                 *chunk_offsets_p++ = 0;
346
347                         if (chunk_entry_size == 4) {
348                                 aliased_le32_t *raw_entries = chunk_table_data;
349                                 for (size_t i = 0; i < num_chunk_entries_to_read; i++)
350                                         *chunk_offsets_p++ = le32_to_cpu(raw_entries[i]);
351                         } else {
352                                 aliased_le64_t *raw_entries = chunk_table_data;
353                                 for (size_t i = 0; i < num_chunk_entries_to_read; i++)
354                                         *chunk_offsets_p++ = le64_to_cpu(raw_entries[i]);
355                         }
356                 }
357
358                 /* Set offset to beginning of first chunk to read.  */
359                 cur_read_offset += chunk_offsets[0];
360                 if (rdesc->is_pipable)
361                         cur_read_offset += read_start_chunk * sizeof(struct pwm_chunk_hdr);
362                 else
363                         cur_read_offset += chunk_table_size;
364         }
365
366         /* Allocate buffer for holding the uncompressed data of each chunk.  */
367         if (chunk_size <= STACK_MAX) {
368                 ubuf = alloca(chunk_size);
369         } else {
370                 ubuf = MALLOC(chunk_size);
371                 if (ubuf == NULL)
372                         goto oom;
373                 ubuf_malloced = true;
374         }
375
376         /* Allocate a temporary buffer for reading compressed chunks, each of
377          * which can be at most @chunk_size - 1 bytes.  This excludes compressed
378          * chunks that are a full @chunk_size bytes, which are actually stored
379          * uncompressed.  */
380         if (chunk_size - 1 <= STACK_MAX) {
381                 cbuf = alloca(chunk_size - 1);
382         } else {
383                 cbuf = MALLOC(chunk_size - 1);
384                 if (cbuf == NULL)
385                         goto oom;
386                 cbuf_malloced = true;
387         }
388
389         /* Set current data range.  */
390         const struct data_range *cur_range = ranges;
391         const struct data_range * const end_range = &ranges[num_ranges];
392         u64 cur_range_pos = cur_range->offset;
393         u64 cur_range_end = cur_range->offset + cur_range->size;
394
395         /* Read and process each needed chunk.  */
396         for (u64 i = read_start_chunk; i <= last_needed_chunk; i++) {
397
398                 /* Calculate uncompressed size of next chunk.  */
399                 u32 chunk_usize;
400                 if ((i == num_chunks - 1) && (rdesc->uncompressed_size & (chunk_size - 1)))
401                         chunk_usize = (rdesc->uncompressed_size & (chunk_size - 1));
402                 else
403                         chunk_usize = chunk_size;
404
405                 /* Calculate compressed size of next chunk.  */
406                 u32 chunk_csize;
407                 if (is_pipe_read) {
408                         struct pwm_chunk_hdr chunk_hdr;
409
410                         ret = full_pread(in_fd, &chunk_hdr,
411                                          sizeof(chunk_hdr), cur_read_offset);
412                         if (ret)
413                                 goto read_error;
414                         chunk_csize = le32_to_cpu(chunk_hdr.compressed_size);
415                 } else {
416                         if (i == num_chunks - 1) {
417                                 chunk_csize = rdesc->size_in_wim -
418                                               chunk_table_full_size -
419                                               chunk_offsets[i - read_start_chunk];
420                                 if (rdesc->is_pipable)
421                                         chunk_csize -= num_chunks * sizeof(struct pwm_chunk_hdr);
422                         } else {
423                                 chunk_csize = chunk_offsets[i + 1 - read_start_chunk] -
424                                               chunk_offsets[i - read_start_chunk];
425                         }
426                 }
427                 if (chunk_csize == 0 || chunk_csize > chunk_usize) {
428                         ERROR("Invalid chunk size in compressed resource!");
429                         errno = EINVAL;
430                         ret = WIMLIB_ERR_DECOMPRESSION;
431                         goto out_free_memory;
432                 }
433                 if (rdesc->is_pipable)
434                         cur_read_offset += sizeof(struct pwm_chunk_hdr);
435
436                 /* Offsets in the uncompressed resource at which this chunk
437                  * starts and ends.  */
438                 const u64 chunk_start_offset = i << chunk_order;
439                 const u64 chunk_end_offset = chunk_start_offset + chunk_usize;
440
441                 if (chunk_end_offset <= cur_range_pos) {
442
443                         /* The next range does not require data in this chunk,
444                          * so skip it.  */
445                         cur_read_offset += chunk_csize;
446                         if (is_pipe_read) {
447                                 u8 dummy;
448
449                                 ret = full_pread(in_fd, &dummy, 1, cur_read_offset - 1);
450                                 if (ret)
451                                         goto read_error;
452                         }
453                 } else {
454
455                         /* Read the chunk and feed data to the callback
456                          * function.  */
457                         u8 *read_buf;
458
459                         if (chunk_csize == chunk_usize)
460                                 read_buf = ubuf;
461                         else
462                                 read_buf = cbuf;
463
464                         ret = full_pread(in_fd,
465                                          read_buf,
466                                          chunk_csize,
467                                          cur_read_offset);
468                         if (ret)
469                                 goto read_error;
470
471                         if (read_buf == cbuf) {
472                                 DEBUG("Decompressing chunk %"PRIu64" "
473                                       "(csize=%"PRIu32" usize=%"PRIu32")",
474                                       i, chunk_csize, chunk_usize);
475                                 ret = wimlib_decompress(cbuf,
476                                                         chunk_csize,
477                                                         ubuf,
478                                                         chunk_usize,
479                                                         decompressor);
480                                 if (ret) {
481                                         ERROR("Failed to decompress data!");
482                                         ret = WIMLIB_ERR_DECOMPRESSION;
483                                         errno = EINVAL;
484                                         goto out_free_memory;
485                                 }
486                         }
487                         cur_read_offset += chunk_csize;
488
489                         /* At least one range requires data in this chunk.  */
490                         do {
491                                 size_t start, end, size;
492
493                                 /* Calculate how many bytes of data should be
494                                  * sent to the callback function, taking into
495                                  * account that data sent to the callback
496                                  * function must not overlap range boundaries.
497                                  */
498                                 start = cur_range_pos - chunk_start_offset;
499                                 end = min(cur_range_end, chunk_end_offset) - chunk_start_offset;
500                                 size = end - start;
501
502                                 ret = (*cb)(&ubuf[start], size, cb_ctx);
503
504                                 if (ret)
505                                         goto out_free_memory;
506
507                                 cur_range_pos += size;
508                                 if (cur_range_pos == cur_range_end) {
509                                         /* Advance to next range.  */
510                                         if (++cur_range == end_range) {
511                                                 cur_range_pos = ~0ULL;
512                                         } else {
513                                                 cur_range_pos = cur_range->offset;
514                                                 cur_range_end = cur_range->offset + cur_range->size;
515                                         }
516                                 }
517                         } while (cur_range_pos < chunk_end_offset);
518                 }
519         }
520
521         if (is_pipe_read &&
522             last_offset == rdesc->uncompressed_size - 1 &&
523             chunk_table_size)
524         {
525                 u8 dummy;
526                 /* If reading a pipable resource from a pipe and the full data
527                  * was requested, skip the chunk table at the end so that the
528                  * file descriptor is fully clear of the resource after this
529                  * returns.  */
530                 cur_read_offset += chunk_table_size;
531                 ret = full_pread(in_fd, &dummy, 1, cur_read_offset - 1);
532                 if (ret)
533                         goto read_error;
534         }
535         ret = 0;
536
537 out_free_memory:
538         errno_save = errno;
539         if (decompressor) {
540                 wimlib_free_decompressor(rdesc->wim->decompressor);
541                 rdesc->wim->decompressor = decompressor;
542                 rdesc->wim->decompressor_ctype = ctype;
543                 rdesc->wim->decompressor_max_block_size = chunk_size;
544         }
545         if (chunk_offsets_malloced)
546                 FREE(chunk_offsets);
547         if (ubuf_malloced)
548                 FREE(ubuf);
549         if (cbuf_malloced)
550                 FREE(cbuf);
551         errno = errno_save;
552         return ret;
553
554 oom:
555         ERROR("Not enough memory available to read size=%"PRIu64" bytes "
556               "from compressed WIM resource!", last_offset - first_offset + 1);
557         errno = ENOMEM;
558         ret = WIMLIB_ERR_NOMEM;
559         goto out_free_memory;
560
561 read_error:
562         ERROR_WITH_ERRNO("Error reading compressed WIM resource!");
563         goto out_free_memory;
564 }
565
566 static int
567 fill_zeroes(u64 size, consume_data_callback_t cb, void *cb_ctx)
568 {
569         if (unlikely(size)) {
570                 u8 buf[min(size, BUFFER_SIZE)];
571
572                 memset(buf, 0, sizeof(buf));
573
574                 do {
575                         size_t len;
576                         int ret;
577
578                         len = min(size, BUFFER_SIZE);
579                         ret = cb(buf, len, cb_ctx);
580                         if (ret)
581                                 return ret;
582                         size -= len;
583                 } while (size);
584         }
585         return 0;
586 }
587
588 /* Read raw data from a file descriptor at the specified offset, feeding the
589  * data it in chunks into the specified callback function.  */
590 static int
591 read_raw_file_data(struct filedes *in_fd, u64 offset, u64 size,
592                    consume_data_callback_t cb, void *cb_ctx)
593 {
594         u8 buf[BUFFER_SIZE];
595         size_t bytes_to_read;
596         int ret;
597
598         while (size) {
599                 bytes_to_read = min(sizeof(buf), size);
600                 ret = full_pread(in_fd, buf, bytes_to_read, offset);
601                 if (ret) {
602                         ERROR_WITH_ERRNO("Read error");
603                         return ret;
604                 }
605                 ret = cb(buf, bytes_to_read, cb_ctx);
606                 if (ret)
607                         return ret;
608                 size -= bytes_to_read;
609                 offset += bytes_to_read;
610         }
611         return 0;
612 }
613
614 /* A consume_data_callback_t implementation that simply concatenates all chunks
615  * into a buffer.  */
616 static int
617 bufferer_cb(const void *chunk, size_t size, void *_ctx)
618 {
619         u8 **buf_p = _ctx;
620
621         *buf_p = mempcpy(*buf_p, chunk, size);
622         return 0;
623 }
624
625 /*
626  * read_partial_wim_resource()-
627  *
628  * Read a range of data from an uncompressed or compressed resource in a WIM
629  * file.
630  *
631  * @rdesc
632  *      Description of the WIM resource to read from.
633  * @offset
634  *      Offset within the uncompressed resource at which to start reading.
635  * @size
636  *      Number of bytes to read.
637  * @cb
638  *      Callback function to feed the data being read.  Each call provides the
639  *      next chunk of the requested data, uncompressed.  Each chunk will be of
640  *      nonzero size and will not cross range boundaries, but otherwise will be
641  *      of unspecified size.
642  * @cb_ctx
643  *      Parameter to pass to @cb_ctx.
644  *
645  * Return values:
646  *      WIMLIB_ERR_SUCCESS (0)
647  *      WIMLIB_ERR_READ                   (errno set)
648  *      WIMLIB_ERR_UNEXPECTED_END_OF_FILE (errno set to 0)
649  *      WIMLIB_ERR_NOMEM                  (errno set to ENOMEM)
650  *      WIMLIB_ERR_DECOMPRESSION          (errno set to EINVAL)
651  *
652  *      or other error code returned by the @cb function.
653  */
654 static int
655 read_partial_wim_resource(const struct wim_resource_descriptor *rdesc,
656                           u64 offset, u64 size,
657                           consume_data_callback_t cb, void *cb_ctx)
658 {
659         /* Sanity checks.  */
660         wimlib_assert(offset + size >= offset);
661         wimlib_assert(offset + size <= rdesc->uncompressed_size);
662
663         DEBUG("Reading %"PRIu64" @ %"PRIu64" from WIM resource  "
664               "%"PRIu64" => %"PRIu64" @ %"PRIu64,
665               size, offset, rdesc->uncompressed_size,
666               rdesc->size_in_wim, rdesc->offset_in_wim);
667
668         /* Trivial case.  */
669         if (size == 0)
670                 return 0;
671
672         if (resource_is_compressed(rdesc)) {
673                 struct data_range range = {
674                         .offset = offset,
675                         .size = size,
676                 };
677                 return read_compressed_wim_resource(rdesc, &range, 1,
678                                                     cb, cb_ctx);
679         } else {
680                 /* Reading uncompressed resource.  For completeness, handle the
681                  * weird case where size_in_wim < uncompressed_size.  */
682
683                 u64 read_size;
684                 u64 zeroes_size;
685                 int ret;
686
687                 if (likely(offset + size <= rdesc->size_in_wim) ||
688                     rdesc->is_pipable)
689                 {
690                         read_size = size;
691                         zeroes_size = 0;
692                 } else {
693                         if (offset >= rdesc->size_in_wim) {
694                                 read_size = 0;
695                                 zeroes_size = size;
696                         } else {
697                                 read_size = rdesc->size_in_wim - offset;
698                                 zeroes_size = offset + size - rdesc->size_in_wim;
699                         }
700                 }
701
702                 ret = read_raw_file_data(&rdesc->wim->in_fd,
703                                          rdesc->offset_in_wim + offset,
704                                          read_size,
705                                          cb,
706                                          cb_ctx);
707                 if (ret)
708                         return ret;
709
710                 return fill_zeroes(zeroes_size, cb, cb_ctx);
711         }
712 }
713
714 /* Read the specified range of uncompressed data from the specified blob, which
715  * must be located into a WIM file, into the specified buffer.  */
716 int
717 read_partial_wim_blob_into_buf(const struct blob_descriptor *blob,
718                                size_t size, u64 offset, void *_buf)
719 {
720         u8 *buf = _buf;
721
722         wimlib_assert(blob->blob_location == BLOB_IN_WIM);
723
724         return read_partial_wim_resource(blob->rdesc,
725                                          blob->offset_in_res + offset,
726                                          size,
727                                          bufferer_cb,
728                                          &buf);
729 }
730
731 /* A consume_data_callback_t implementation that simply ignores the data
732  * received.  */
733 static int
734 skip_chunk_cb(const void *chunk, size_t size, void *_ctx)
735 {
736         return 0;
737 }
738
739 /* Skip over the data of the specified WIM resource.  */
740 int
741 skip_wim_resource(struct wim_resource_descriptor *rdesc)
742 {
743         DEBUG("Skipping resource (size=%"PRIu64")", rdesc->uncompressed_size);
744         return read_partial_wim_resource(rdesc, 0, rdesc->uncompressed_size,
745                                          skip_chunk_cb, NULL);
746 }
747
748 static int
749 read_wim_blob_prefix(const struct blob_descriptor *blob, u64 size,
750                      consume_data_callback_t cb, void *cb_ctx)
751 {
752         return read_partial_wim_resource(blob->rdesc, blob->offset_in_res, size,
753                                          cb, cb_ctx);
754 }
755
756 /* This function handles reading blob data that is located in an external file,
757  * such as a file that has been added to the WIM image through execution of a
758  * wimlib_add_command.
759  *
760  * This assumes the file can be accessed using the standard POSIX open(),
761  * read(), and close().  On Windows this will not necessarily be the case (since
762  * the file may need FILE_FLAG_BACKUP_SEMANTICS to be opened, or the file may be
763  * encrypted), so Windows uses its own code for its equivalent case.  */
764 static int
765 read_file_on_disk_prefix(const struct blob_descriptor *blob, u64 size,
766                          consume_data_callback_t cb, void *cb_ctx)
767 {
768         int ret;
769         int raw_fd;
770         struct filedes fd;
771
772         DEBUG("Reading %"PRIu64" bytes from \"%"TS"\"", size, blob->file_on_disk);
773
774         raw_fd = topen(blob->file_on_disk, O_BINARY | O_RDONLY);
775         if (raw_fd < 0) {
776                 ERROR_WITH_ERRNO("Can't open \"%"TS"\"", blob->file_on_disk);
777                 return WIMLIB_ERR_OPEN;
778         }
779         filedes_init(&fd, raw_fd);
780         ret = read_raw_file_data(&fd, 0, size, cb, cb_ctx);
781         filedes_close(&fd);
782         return ret;
783 }
784
785 #ifdef WITH_FUSE
786 static int
787 read_staging_file_prefix(const struct blob_descriptor *blob, u64 size,
788                          consume_data_callback_t cb, void *cb_ctx)
789 {
790         int raw_fd;
791         struct filedes fd;
792         int ret;
793
794         DEBUG("Reading %"PRIu64" bytes from staging file \"%s\"",
795               size, blob->staging_file_name);
796
797         raw_fd = openat(blob->staging_dir_fd, blob->staging_file_name,
798                         O_RDONLY | O_NOFOLLOW);
799         if (raw_fd < 0) {
800                 ERROR_WITH_ERRNO("Can't open staging file \"%s\"",
801                                  blob->staging_file_name);
802                 return WIMLIB_ERR_OPEN;
803         }
804         filedes_init(&fd, raw_fd);
805         ret = read_raw_file_data(&fd, 0, size, cb, cb_ctx);
806         filedes_close(&fd);
807         return ret;
808 }
809 #endif
810
811 /* This function handles the trivial case of reading blob data that is, in fact,
812  * already located in an in-memory buffer.  */
813 static int
814 read_buffer_prefix(const struct blob_descriptor *blob,
815                    u64 size, consume_data_callback_t cb, void *cb_ctx)
816 {
817         return (*cb)(blob->attached_buffer, size, cb_ctx);
818 }
819
820 typedef int (*read_blob_prefix_handler_t)(const struct blob_descriptor *blob,
821                                           u64 size,
822                                           consume_data_callback_t cb,
823                                           void *cb_ctx);
824
825 /*
826  * read_blob_prefix()-
827  *
828  * Reads the first @size bytes from a generic "blob", which may be located in
829  * any one of several locations, such as in a WIM file (compressed or
830  * uncompressed), in an external file, or directly in an in-memory buffer.
831  *
832  * This function feeds the data to a callback function @cb in chunks of
833  * unspecified size.
834  *
835  * Returns 0 on success; nonzero on error.  A nonzero value will be returned if
836  * the blob data cannot be successfully read (for a number of different reasons,
837  * depending on the blob location), or if @cb returned nonzero in which case
838  * that error code will be returned.
839  */
840 static int
841 read_blob_prefix(const struct blob_descriptor *blob, u64 size,
842                  consume_data_callback_t cb, void *cb_ctx)
843 {
844         static const read_blob_prefix_handler_t handlers[] = {
845                 [BLOB_IN_WIM] = read_wim_blob_prefix,
846                 [BLOB_IN_FILE_ON_DISK] = read_file_on_disk_prefix,
847                 [BLOB_IN_ATTACHED_BUFFER] = read_buffer_prefix,
848         #ifdef WITH_FUSE
849                 [BLOB_IN_STAGING_FILE] = read_staging_file_prefix,
850         #endif
851         #ifdef WITH_NTFS_3G
852                 [BLOB_IN_NTFS_VOLUME] = read_ntfs_attribute_prefix,
853         #endif
854         #ifdef __WIN32__
855                 [BLOB_IN_WINNT_FILE_ON_DISK] = read_winnt_stream_prefix,
856                 [BLOB_WIN32_ENCRYPTED] = read_win32_encrypted_file_prefix,
857         #endif
858         };
859         wimlib_assert(blob->blob_location < ARRAY_LEN(handlers)
860                       && handlers[blob->blob_location] != NULL);
861         wimlib_assert(size <= blob->size);
862         return handlers[blob->blob_location](blob, size, cb, cb_ctx);
863 }
864
865 /* Read the full uncompressed data of the specified blob into the specified
866  * buffer, which must have space for at least blob->size bytes.  */
867 int
868 read_full_blob_into_buf(const struct blob_descriptor *blob, void *_buf)
869 {
870         u8 *buf = _buf;
871         return read_blob_prefix(blob, blob->size, bufferer_cb, &buf);
872 }
873
874 /* Retrieve the full uncompressed data of the specified blob.  A buffer large
875  * enough hold the data is allocated and returned in @buf_ret.  */
876 int
877 read_full_blob_into_alloc_buf(const struct blob_descriptor *blob, void **buf_ret)
878 {
879         int ret;
880         void *buf;
881
882         if ((size_t)blob->size != blob->size) {
883                 ERROR("Can't read %"PRIu64" byte blob into memory", blob->size);
884                 return WIMLIB_ERR_NOMEM;
885         }
886
887         buf = MALLOC(blob->size);
888         if (buf == NULL)
889                 return WIMLIB_ERR_NOMEM;
890
891         ret = read_full_blob_into_buf(blob, buf);
892         if (ret) {
893                 FREE(buf);
894                 return ret;
895         }
896
897         *buf_ret = buf;
898         return 0;
899 }
900
901 /* Retrieve the full uncompressed data of a WIM resource specified as a raw
902  * `wim_reshdr' and the corresponding WIM file.  A buffer large enough hold the
903  * data is allocated and returned in @buf_ret.  */
904 int
905 wim_reshdr_to_data(const struct wim_reshdr *reshdr, WIMStruct *wim, void **buf_ret)
906 {
907         struct wim_resource_descriptor rdesc;
908         struct blob_descriptor blob;
909
910         wim_res_hdr_to_desc(reshdr, wim, &rdesc);
911         blob_set_is_located_in_nonsolid_wim_resource(&blob, &rdesc);
912
913         return read_full_blob_into_alloc_buf(&blob, buf_ret);
914 }
915
916 int
917 wim_reshdr_to_hash(const struct wim_reshdr *reshdr, WIMStruct *wim,
918                    u8 hash[SHA1_HASH_SIZE])
919 {
920         struct wim_resource_descriptor rdesc;
921         struct blob_descriptor blob;
922         int ret;
923
924         wim_res_hdr_to_desc(reshdr, wim, &rdesc);
925         blob_set_is_located_in_nonsolid_wim_resource(&blob, &rdesc);
926         blob.unhashed = 1;
927
928         ret = sha1_blob(&blob);
929         if (ret)
930                 return ret;
931         copy_hash(hash, blob.hash);
932         return 0;
933 }
934
935 struct blobifier_context {
936         struct read_blob_list_callbacks cbs;
937         struct blob_descriptor *cur_blob;
938         struct blob_descriptor *next_blob;
939         u64 cur_blob_offset;
940         struct blob_descriptor *final_blob;
941         size_t list_head_offset;
942 };
943
944 static struct blob_descriptor *
945 next_blob(struct blob_descriptor *blob, size_t list_head_offset)
946 {
947         struct list_head *cur;
948
949         cur = (struct list_head*)((u8*)blob + list_head_offset);
950
951         return (struct blob_descriptor*)((u8*)cur->next - list_head_offset);
952 }
953
954 /* A consume_data_callback_t implementation that translates raw resource data
955  * into blobs, calling the begin_blob, consume_chunk, and end_blob callback
956  * functions as appropriate.  */
957 static int
958 blobifier_cb(const void *chunk, size_t size, void *_ctx)
959 {
960         struct blobifier_context *ctx = _ctx;
961         int ret;
962
963         DEBUG("%zu bytes passed to blobifier", size);
964
965         wimlib_assert(ctx->cur_blob != NULL);
966         wimlib_assert(size <= ctx->cur_blob->size - ctx->cur_blob_offset);
967
968         if (ctx->cur_blob_offset == 0) {
969
970                 /* Starting a new blob.  */
971                 DEBUG("Begin new blob (size=%"PRIu64").", ctx->cur_blob->size);
972
973                 ret = (*ctx->cbs.begin_blob)(ctx->cur_blob,
974                                              ctx->cbs.begin_blob_ctx);
975                 if (ret)
976                         return ret;
977         }
978
979         /* Consume the chunk.  */
980         ret = (*ctx->cbs.consume_chunk)(chunk, size,
981                                         ctx->cbs.consume_chunk_ctx);
982         ctx->cur_blob_offset += size;
983         if (ret)
984                 return ret;
985
986         if (ctx->cur_blob_offset == ctx->cur_blob->size) {
987                 /* Finished reading all the data for a blob.  */
988
989                 ctx->cur_blob_offset = 0;
990
991                 DEBUG("End blob (size=%"PRIu64").", ctx->cur_blob->size);
992                 ret = (*ctx->cbs.end_blob)(ctx->cur_blob, 0,
993                                            ctx->cbs.end_blob_ctx);
994                 if (ret)
995                         return ret;
996
997                 /* Advance to next blob.  */
998                 ctx->cur_blob = ctx->next_blob;
999                 if (ctx->cur_blob != NULL) {
1000                         if (ctx->cur_blob != ctx->final_blob)
1001                                 ctx->next_blob = next_blob(ctx->cur_blob,
1002                                                            ctx->list_head_offset);
1003                         else
1004                                 ctx->next_blob = NULL;
1005                 }
1006         }
1007         return 0;
1008 }
1009
1010 struct hasher_context {
1011         SHA_CTX sha_ctx;
1012         int flags;
1013         struct read_blob_list_callbacks cbs;
1014 };
1015
1016 /* Callback for starting to read a blob while calculating its SHA-1 message
1017  * digest.  */
1018 static int
1019 hasher_begin_blob(struct blob_descriptor *blob, void *_ctx)
1020 {
1021         struct hasher_context *ctx = _ctx;
1022
1023         sha1_init(&ctx->sha_ctx);
1024
1025         if (ctx->cbs.begin_blob == NULL)
1026                 return 0;
1027         else
1028                 return (*ctx->cbs.begin_blob)(blob, ctx->cbs.begin_blob_ctx);
1029 }
1030
1031 /* A consume_data_callback_t implementation that continues calculating the SHA-1
1032  * message digest of the blob being read, then optionally passes the data on to
1033  * another consume_data_callback_t implementation.  This allows checking the
1034  * SHA-1 message digest of a blob being extracted, for example.  */
1035 static int
1036 hasher_consume_chunk(const void *chunk, size_t size, void *_ctx)
1037 {
1038         struct hasher_context *ctx = _ctx;
1039
1040         sha1_update(&ctx->sha_ctx, chunk, size);
1041         if (ctx->cbs.consume_chunk == NULL)
1042                 return 0;
1043         else
1044                 return (*ctx->cbs.consume_chunk)(chunk, size, ctx->cbs.consume_chunk_ctx);
1045 }
1046
1047 /* Callback for finishing reading a blob while calculating its SHA-1 message
1048  * digest.  */
1049 static int
1050 hasher_end_blob(struct blob_descriptor *blob, int status, void *_ctx)
1051 {
1052         struct hasher_context *ctx = _ctx;
1053         u8 hash[SHA1_HASH_SIZE];
1054         int ret;
1055
1056         if (status) {
1057                 /* Error occurred; the full blob may not have been read.  */
1058                 ret = status;
1059                 goto out_next_cb;
1060         }
1061
1062         /* Retrieve the final SHA-1 message digest.  */
1063         sha1_final(hash, &ctx->sha_ctx);
1064
1065         if (blob->unhashed) {
1066                 if (ctx->flags & COMPUTE_MISSING_BLOB_HASHES) {
1067                         /* No SHA-1 message digest was previously present for the
1068                          * blob.  Set it to the one just calculated.  */
1069                         DEBUG("Set SHA-1 message digest for blob "
1070                               "(size=%"PRIu64").", blob->size);
1071                         copy_hash(blob->hash, hash);
1072                 }
1073         } else {
1074                 if (ctx->flags & VERIFY_BLOB_HASHES) {
1075                         /* The blob already had a SHA-1 message digest present.
1076                          * Verify that it is the same as the calculated value.
1077                          */
1078                         if (!hashes_equal(hash, blob->hash)) {
1079                                 if (wimlib_print_errors) {
1080                                         tchar expected_hashstr[SHA1_HASH_SIZE * 2 + 1];
1081                                         tchar actual_hashstr[SHA1_HASH_SIZE * 2 + 1];
1082                                         sprint_hash(blob->hash, expected_hashstr);
1083                                         sprint_hash(hash, actual_hashstr);
1084                                         ERROR("The data is corrupted!\n"
1085                                               "        (Expected SHA-1=%"TS",\n"
1086                                               "              got SHA-1=%"TS")",
1087                                               expected_hashstr, actual_hashstr);
1088                                 }
1089                                 ret = WIMLIB_ERR_INVALID_RESOURCE_HASH;
1090                                 errno = EINVAL;
1091                                 goto out_next_cb;
1092                         }
1093                         DEBUG("SHA-1 message digest okay for "
1094                               "blob (size=%"PRIu64").", blob->size);
1095                 }
1096         }
1097         ret = 0;
1098 out_next_cb:
1099         if (ctx->cbs.end_blob == NULL)
1100                 return ret;
1101         else
1102                 return (*ctx->cbs.end_blob)(blob, ret, ctx->cbs.end_blob_ctx);
1103 }
1104
1105 static int
1106 read_full_blob_with_cbs(struct blob_descriptor *blob,
1107                         const struct read_blob_list_callbacks *cbs)
1108 {
1109         int ret;
1110
1111         ret = (*cbs->begin_blob)(blob, cbs->begin_blob_ctx);
1112         if (ret)
1113                 return ret;
1114
1115         ret = read_blob_prefix(blob, blob->size, cbs->consume_chunk,
1116                                cbs->consume_chunk_ctx);
1117
1118         return (*cbs->end_blob)(blob, ret, cbs->end_blob_ctx);
1119 }
1120
1121 /* Read the full data of the specified blob, passing the data into the specified
1122  * callbacks (all of which are optional) and either checking or computing the
1123  * SHA-1 message digest of the blob.  */
1124 static int
1125 read_full_blob_with_sha1(struct blob_descriptor *blob,
1126                          const struct read_blob_list_callbacks *cbs)
1127 {
1128         struct hasher_context hasher_ctx = {
1129                 .flags = VERIFY_BLOB_HASHES | COMPUTE_MISSING_BLOB_HASHES,
1130                 .cbs = *cbs,
1131         };
1132         struct read_blob_list_callbacks hasher_cbs = {
1133                 .begin_blob             = hasher_begin_blob,
1134                 .begin_blob_ctx         = &hasher_ctx,
1135                 .consume_chunk          = hasher_consume_chunk,
1136                 .consume_chunk_ctx      = &hasher_ctx,
1137                 .end_blob               = hasher_end_blob,
1138                 .end_blob_ctx           = &hasher_ctx,
1139         };
1140         return read_full_blob_with_cbs(blob, &hasher_cbs);
1141 }
1142
1143 static int
1144 read_blobs_in_solid_resource(struct blob_descriptor *first_blob,
1145                              struct blob_descriptor *last_blob,
1146                              u64 blob_count,
1147                              size_t list_head_offset,
1148                              const struct read_blob_list_callbacks *sink_cbs)
1149 {
1150         struct data_range *ranges;
1151         bool ranges_malloced;
1152         struct blob_descriptor *cur_blob;
1153         size_t i;
1154         int ret;
1155         u64 ranges_alloc_size;
1156
1157         DEBUG("Reading %"PRIu64" blobs combined in same WIM resource",
1158               blob_count);
1159
1160         /* Setup data ranges array (one range per blob to read); this way
1161          * read_compressed_wim_resource() does not need to be aware of blobs.
1162          */
1163
1164         ranges_alloc_size = blob_count * sizeof(ranges[0]);
1165
1166         if (unlikely((size_t)ranges_alloc_size != ranges_alloc_size)) {
1167                 ERROR("Too many blobs in one resource!");
1168                 return WIMLIB_ERR_NOMEM;
1169         }
1170         if (likely(ranges_alloc_size <= STACK_MAX)) {
1171                 ranges = alloca(ranges_alloc_size);
1172                 ranges_malloced = false;
1173         } else {
1174                 ranges = MALLOC(ranges_alloc_size);
1175                 if (ranges == NULL) {
1176                         ERROR("Too many blobs in one resource!");
1177                         return WIMLIB_ERR_NOMEM;
1178                 }
1179                 ranges_malloced = true;
1180         }
1181
1182         for (i = 0, cur_blob = first_blob;
1183              i < blob_count;
1184              i++, cur_blob = next_blob(cur_blob, list_head_offset))
1185         {
1186                 ranges[i].offset = cur_blob->offset_in_res;
1187                 ranges[i].size = cur_blob->size;
1188         }
1189
1190         struct blobifier_context blobifier_ctx = {
1191                 .cbs                    = *sink_cbs,
1192                 .cur_blob               = first_blob,
1193                 .next_blob              = next_blob(first_blob, list_head_offset),
1194                 .cur_blob_offset        = 0,
1195                 .final_blob             = last_blob,
1196                 .list_head_offset       = list_head_offset,
1197         };
1198
1199         ret = read_compressed_wim_resource(first_blob->rdesc,
1200                                            ranges,
1201                                            blob_count,
1202                                            blobifier_cb,
1203                                            &blobifier_ctx);
1204
1205         if (ranges_malloced)
1206                 FREE(ranges);
1207
1208         if (ret) {
1209                 if (blobifier_ctx.cur_blob_offset != 0) {
1210                         ret = (*blobifier_ctx.cbs.end_blob)
1211                                 (blobifier_ctx.cur_blob,
1212                                  ret,
1213                                  blobifier_ctx.cbs.end_blob_ctx);
1214                 }
1215         }
1216         return ret;
1217 }
1218
1219 /*
1220  * Read a list of blobs, each of which may be in any supported location (e.g.
1221  * in a WIM or in an external file).  This function optimizes the case where
1222  * multiple blobs are combined into a single solid compressed WIM resource by
1223  * reading the blobs in sequential order, only decompressing the solid resource
1224  * one time.
1225  *
1226  * @blob_list
1227  *      List of blobs to read.
1228  * @list_head_offset
1229  *      Offset of the `struct list_head' within each `struct blob_descriptor' that makes up
1230  *      the @blob_list.
1231  * @cbs
1232  *      Callback functions to accept the blob data.
1233  * @flags
1234  *      Bitwise OR of zero or more of the following flags:
1235  *
1236  *      VERIFY_BLOB_HASHES:
1237  *              For all blobs being read that have already had SHA-1 message
1238  *              digests computed, calculate the SHA-1 message digest of the read
1239  *              data and compare it with the previously computed value.  If they
1240  *              do not match, return WIMLIB_ERR_INVALID_RESOURCE_HASH.
1241  *
1242  *      COMPUTE_MISSING_BLOB_HASHES
1243  *              For all blobs being read that have not yet had their SHA-1
1244  *              message digests computed, calculate and save their SHA-1 message
1245  *              digests.
1246  *
1247  *      BLOB_LIST_ALREADY_SORTED
1248  *              @blob_list is already sorted in sequential order for reading.
1249  *
1250  * The callback functions are allowed to delete the current blob from the list
1251  * if necessary.
1252  *
1253  * Returns 0 on success; a nonzero error code on failure.  Failure can occur due
1254  * to an error reading the data or due to an error status being returned by any
1255  * of the callback functions.
1256  */
1257 int
1258 read_blob_list(struct list_head *blob_list,
1259                size_t list_head_offset,
1260                const struct read_blob_list_callbacks *cbs,
1261                int flags)
1262 {
1263         int ret;
1264         struct list_head *cur, *next;
1265         struct blob_descriptor *blob;
1266         struct hasher_context *hasher_ctx;
1267         struct read_blob_list_callbacks *sink_cbs;
1268
1269         if (!(flags & BLOB_LIST_ALREADY_SORTED)) {
1270                 ret = sort_blob_list_by_sequential_order(blob_list, list_head_offset);
1271                 if (ret)
1272                         return ret;
1273         }
1274
1275         if (flags & (VERIFY_BLOB_HASHES | COMPUTE_MISSING_BLOB_HASHES)) {
1276                 hasher_ctx = alloca(sizeof(*hasher_ctx));
1277                 *hasher_ctx = (struct hasher_context) {
1278                         .flags  = flags,
1279                         .cbs    = *cbs,
1280                 };
1281                 sink_cbs = alloca(sizeof(*sink_cbs));
1282                 *sink_cbs = (struct read_blob_list_callbacks) {
1283                         .begin_blob             = hasher_begin_blob,
1284                         .begin_blob_ctx         = hasher_ctx,
1285                         .consume_chunk          = hasher_consume_chunk,
1286                         .consume_chunk_ctx      = hasher_ctx,
1287                         .end_blob               = hasher_end_blob,
1288                         .end_blob_ctx           = hasher_ctx,
1289                 };
1290         } else {
1291                 sink_cbs = (struct read_blob_list_callbacks*)cbs;
1292         }
1293
1294         for (cur = blob_list->next, next = cur->next;
1295              cur != blob_list;
1296              cur = next, next = cur->next)
1297         {
1298                 blob = (struct blob_descriptor*)((u8*)cur - list_head_offset);
1299
1300                 if (blob->blob_location == BLOB_IN_WIM &&
1301                     blob->size != blob->rdesc->uncompressed_size)
1302                 {
1303                         struct blob_descriptor *blob_next, *blob_last;
1304                         struct list_head *next2;
1305                         u64 blob_count;
1306
1307                         /* The next blob is a proper sub-sequence of a WIM
1308                          * resource.  See if there are other blobs in the same
1309                          * resource that need to be read.  Since
1310                          * sort_blob_list_by_sequential_order() sorted the blobs
1311                          * by offset in the WIM, this can be determined by
1312                          * simply scanning forward in the list.  */
1313
1314                         blob_last = blob;
1315                         blob_count = 1;
1316                         for (next2 = next;
1317                              next2 != blob_list
1318                              && (blob_next = (struct blob_descriptor*)
1319                                                 ((u8*)next2 - list_head_offset),
1320                                  blob_next->blob_location == BLOB_IN_WIM
1321                                  && blob_next->rdesc == blob->rdesc);
1322                              next2 = next2->next)
1323                         {
1324                                 blob_last = blob_next;
1325                                 blob_count++;
1326                         }
1327                         if (blob_count > 1) {
1328                                 /* Reading multiple blobs combined into a single
1329                                  * WIM resource.  They are in the blob list,
1330                                  * sorted by offset; @blob specifies the first
1331                                  * blob in the resource that needs to be read
1332                                  * and @blob_last specifies the last blob in the
1333                                  * resource that needs to be read.  */
1334                                 next = next2;
1335                                 ret = read_blobs_in_solid_resource(blob, blob_last,
1336                                                                    blob_count,
1337                                                                    list_head_offset,
1338                                                                    sink_cbs);
1339                                 if (ret)
1340                                         return ret;
1341                                 continue;
1342                         }
1343                 }
1344
1345                 ret = read_full_blob_with_cbs(blob, sink_cbs);
1346                 if (ret && ret != BEGIN_BLOB_STATUS_SKIP_BLOB)
1347                         return ret;
1348         }
1349         return 0;
1350 }
1351
1352 /*
1353  * Extract the first @size bytes of the specified blob.
1354  *
1355  * If @size specifies the full uncompressed size of the blob, then the SHA-1
1356  * message digest of the uncompressed blob is checked while being extracted.
1357  *
1358  * The uncompressed data of the blob is passed in chunks of unspecified size to
1359  * the @extract_chunk function, passing it @extract_chunk_arg.
1360  */
1361 int
1362 extract_blob(struct blob_descriptor *blob, u64 size,
1363              consume_data_callback_t extract_chunk, void *extract_chunk_arg)
1364 {
1365         wimlib_assert(size <= blob->size);
1366         if (size == blob->size) {
1367                 /* Do SHA-1.  */
1368                 struct read_blob_list_callbacks cbs = {
1369                         .consume_chunk          = extract_chunk,
1370                         .consume_chunk_ctx      = extract_chunk_arg,
1371                 };
1372                 return read_full_blob_with_sha1(blob, &cbs);
1373         } else {
1374                 /* Don't do SHA-1.  */
1375                 return read_blob_prefix(blob, size, extract_chunk,
1376                                         extract_chunk_arg);
1377         }
1378 }
1379
1380 /* A consume_data_callback_t implementation that writes the chunk of data to a
1381  * file descriptor.  */
1382 static int
1383 extract_chunk_to_fd(const void *chunk, size_t size, void *_fd_p)
1384 {
1385         struct filedes *fd = _fd_p;
1386
1387         int ret = full_write(fd, chunk, size);
1388         if (ret) {
1389                 ERROR_WITH_ERRNO("Error writing to file descriptor");
1390                 return ret;
1391         }
1392         return 0;
1393 }
1394
1395 /* Extract the first @size bytes of the specified blob to the specified file
1396  * descriptor.  */
1397 int
1398 extract_blob_to_fd(struct blob_descriptor *blob, struct filedes *fd, u64 size)
1399 {
1400         return extract_blob(blob, size, extract_chunk_to_fd, fd);
1401 }
1402
1403 /* Extract the full uncompressed contents of the specified blob to the specified
1404  * file descriptor.  */
1405 int
1406 extract_full_blob_to_fd(struct blob_descriptor *blob, struct filedes *fd)
1407 {
1408         return extract_blob_to_fd(blob, fd, blob->size);
1409 }
1410
1411 /* Calculate the SHA-1 message digest of a blob and store it in @blob->hash.  */
1412 int
1413 sha1_blob(struct blob_descriptor *blob)
1414 {
1415         wimlib_assert(blob->unhashed);
1416         struct read_blob_list_callbacks cbs = {
1417         };
1418         return read_full_blob_with_sha1(blob, &cbs);
1419 }
1420
1421 /*
1422  * Convert a short WIM resource header to a stand-alone WIM resource descriptor.
1423  *
1424  * Note: for solid resources some fields still need to be overridden.
1425  */
1426 void
1427 wim_res_hdr_to_desc(const struct wim_reshdr *reshdr, WIMStruct *wim,
1428                     struct wim_resource_descriptor *rdesc)
1429 {
1430         rdesc->wim = wim;
1431         rdesc->offset_in_wim = reshdr->offset_in_wim;
1432         rdesc->size_in_wim = reshdr->size_in_wim;
1433         rdesc->uncompressed_size = reshdr->uncompressed_size;
1434         INIT_LIST_HEAD(&rdesc->blob_list);
1435         rdesc->flags = reshdr->flags;
1436         rdesc->is_pipable = wim_is_pipable(wim);
1437         if (rdesc->flags & WIM_RESHDR_FLAG_COMPRESSED) {
1438                 rdesc->compression_type = wim->compression_type;
1439                 rdesc->chunk_size = wim->chunk_size;
1440         } else {
1441                 rdesc->compression_type = WIMLIB_COMPRESSION_TYPE_NONE;
1442                 rdesc->chunk_size = 0;
1443         }
1444 }
1445
1446 /* Convert a stand-alone resource descriptor to a WIM resource header.  */
1447 void
1448 wim_res_desc_to_hdr(const struct wim_resource_descriptor *rdesc,
1449                     struct wim_reshdr *reshdr)
1450 {
1451         reshdr->offset_in_wim     = rdesc->offset_in_wim;
1452         reshdr->size_in_wim       = rdesc->size_in_wim;
1453         reshdr->flags             = rdesc->flags;
1454         reshdr->uncompressed_size = rdesc->uncompressed_size;
1455 }
1456
1457 /* Translates a WIM resource header from the on-disk format into an in-memory
1458  * format.  */
1459 void
1460 get_wim_reshdr(const struct wim_reshdr_disk *disk_reshdr,
1461                struct wim_reshdr *reshdr)
1462 {
1463         reshdr->offset_in_wim = le64_to_cpu(disk_reshdr->offset_in_wim);
1464         reshdr->size_in_wim = (((u64)disk_reshdr->size_in_wim[0] <<  0) |
1465                                ((u64)disk_reshdr->size_in_wim[1] <<  8) |
1466                                ((u64)disk_reshdr->size_in_wim[2] << 16) |
1467                                ((u64)disk_reshdr->size_in_wim[3] << 24) |
1468                                ((u64)disk_reshdr->size_in_wim[4] << 32) |
1469                                ((u64)disk_reshdr->size_in_wim[5] << 40) |
1470                                ((u64)disk_reshdr->size_in_wim[6] << 48));
1471         reshdr->uncompressed_size = le64_to_cpu(disk_reshdr->uncompressed_size);
1472         reshdr->flags = disk_reshdr->flags;
1473 }
1474
1475 /* Translates a WIM resource header from an in-memory format into the on-disk
1476  * format.  */
1477 void
1478 put_wim_reshdr(const struct wim_reshdr *reshdr,
1479                struct wim_reshdr_disk *disk_reshdr)
1480 {
1481         disk_reshdr->size_in_wim[0] = reshdr->size_in_wim  >>  0;
1482         disk_reshdr->size_in_wim[1] = reshdr->size_in_wim  >>  8;
1483         disk_reshdr->size_in_wim[2] = reshdr->size_in_wim  >> 16;
1484         disk_reshdr->size_in_wim[3] = reshdr->size_in_wim  >> 24;
1485         disk_reshdr->size_in_wim[4] = reshdr->size_in_wim  >> 32;
1486         disk_reshdr->size_in_wim[5] = reshdr->size_in_wim  >> 40;
1487         disk_reshdr->size_in_wim[6] = reshdr->size_in_wim  >> 48;
1488         disk_reshdr->flags = reshdr->flags;
1489         disk_reshdr->offset_in_wim = cpu_to_le64(reshdr->offset_in_wim);
1490         disk_reshdr->uncompressed_size = cpu_to_le64(reshdr->uncompressed_size);
1491 }