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