]> wimlib.net Git - wimlib/blob - src/resource.c
892aff18dc0852909fda70a96103b0a6dd4f5c31
[wimlib] / src / resource.c
1 /*
2  * resource.c
3  *
4  * Read uncompressed and compressed metadata and file resources from a WIM file.
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/endianness.h"
31 #include "wimlib/error.h"
32 #include "wimlib/file_io.h"
33 #include "wimlib/lookup_table.h"
34 #include "wimlib/resource.h"
35 #include "wimlib/sha1.h"
36
37 #ifdef __WIN32__
38 /* for read_win32_file_prefix(), read_win32_encrypted_file_prefix() */
39 #  include "wimlib/win32.h"
40 #endif
41
42 #ifdef WITH_NTFS_3G
43 /* for read_ntfs_file_prefix() */
44 #  include "wimlib/ntfs_3g.h"
45 #endif
46
47 #ifdef HAVE_ALLOCA_H
48 #  include <alloca.h>
49 #endif
50 #include <errno.h>
51 #include <fcntl.h>
52 #include <stdlib.h>
53 #include <unistd.h>
54
55 /*
56  *                         Compressed WIM resources
57  *
58  * A compressed resource in a WIM consists of a number of compressed chunks,
59  * each of which decompresses to a fixed chunk size (given in the WIM header;
60  * usually 32768) except possibly the last, which always decompresses to any
61  * remaining bytes.  In addition, immediately before the chunks, a table (the
62  * "chunk table") provides the offset, in bytes relative to the end of the chunk
63  * table, of the start of each compressed chunk, except for the first chunk
64  * which is omitted as it always has an offset of 0.  Therefore, a compressed
65  * resource with N chunks will have a chunk table with N - 1 entries.
66  *
67  * Additional information:
68  *
69  * - Entries in the chunk table are 4 bytes each, except if the uncompressed
70  *   size of the resource is greater than 4 GiB, in which case the entries in
71  *   the chunk table are 8 bytes each.  In either case, the entries are unsigned
72  *   little-endian integers.
73  *
74  * - The chunk table is included in the compressed size of the resource provided
75  *   in the corresponding entry in the WIM's stream lookup table.
76  *
77  * - The compressed size of a chunk is never greater than the uncompressed size.
78  *   From the compressor's point of view, chunks that would have compressed to a
79  *   size greater than or equal to their original size are in fact stored
80  *   uncompressed.  From the decompresser's point of view, chunks with
81  *   compressed size equal to their uncompressed size are in fact uncompressed.
82  *
83  * Furthermore, wimlib supports its own "pipable" WIM format, and for this the
84  * structure of compressed resources was modified to allow piped reading and
85  * writing.  To make sequential writing possible, the chunk table is placed
86  * after the chunks rather than before the chunks, and to make sequential
87  * reading possible, each chunk is prefixed with a 4-byte header giving its
88  * compressed size as a 32-bit, unsigned, little-endian integer.  Otherwise the
89  * details are the same.
90  */
91
92
93 /* Decompress the specified chunk that uses the specified compression type
94  * @ctype, part of a WIM with default chunk size @wim_chunk_size.  For LZX the
95  * separate @wim_chunk_size is needed because it determines the window size used
96  * for LZX compression.  */
97 static int
98 decompress(const void *cchunk, unsigned clen,
99            void *uchunk, unsigned ulen,
100            int ctype, u32 wim_chunk_size)
101 {
102         switch (ctype) {
103         case WIMLIB_COMPRESSION_TYPE_XPRESS:
104                 return wimlib_xpress_decompress(cchunk,
105                                                 clen,
106                                                 uchunk,
107                                                 ulen);
108         case WIMLIB_COMPRESSION_TYPE_LZX:
109                 return wimlib_lzx_decompress2(cchunk,
110                                               clen,
111                                               uchunk,
112                                               ulen,
113                                               wim_chunk_size);
114         default:
115                 wimlib_assert(0);
116                 return -1;
117         }
118 }
119
120 /* Read data from a compressed WIM resource.  Assumes parameters were already
121  * verified by read_partial_wim_resource().  */
122 static int
123 read_compressed_wim_resource(const struct wim_lookup_table_entry * const lte,
124                              const u64 size, const consume_data_callback_t cb,
125                              const u32 cb_chunk_size, void * const ctx_or_buf,
126                              const int flags, const u64 offset)
127 {
128         int ret;
129         int errno_save;
130
131         const u32 orig_chunk_size = wim_resource_chunk_size(lte);
132         const u32 orig_chunk_order = bsr32(orig_chunk_size);
133
134         wimlib_assert(is_power_of_2(orig_chunk_size));
135
136         /* Handle the trivial case.  */
137         if (size == 0)
138                 return 0;
139
140         u64 *chunk_offsets = NULL;
141         u8 *out_buf = NULL;
142         u8 *tmp_buf = NULL;
143         void *compressed_buf = NULL;
144         bool chunk_offsets_malloced = false;
145         bool out_buf_malloced = false;
146         bool tmp_buf_malloced = false;
147         bool compressed_buf_malloced = false;
148
149         /* Get the file descriptor for the WIM.  */
150         struct filedes * const in_fd = &lte->wim->in_fd;
151
152         /* Determine if we're reading a pipable resource from a pipe or not.  */
153         const bool is_pipe_read = !filedes_is_seekable(in_fd);
154
155         /* Calculate the number of chunks the resource is divided into.  */
156         const u64 num_chunks = wim_resource_chunks(lte);
157
158         /* Calculate the 0-based index of the chunk at which the read starts.
159          */
160         const u64 start_chunk = offset >> orig_chunk_order;
161
162         /* For pipe reads, we always must start from the 0th chunk.  */
163         const u64 actual_start_chunk = (is_pipe_read ? 0 : start_chunk);
164
165         /* Calculate the offset, within the start chunk, of the first byte of
166          * the read.  */
167         const u32 start_offset_in_chunk = offset & (orig_chunk_size - 1);
168
169         /* Calculate the index of the chunk that contains the last byte of the
170          * read.  */
171         const u64 end_chunk = (offset + size - 1) >> orig_chunk_order;
172
173         /* Calculate the offset, within the end chunk, of the last byte of the
174          * read.  */
175         const u32 end_offset_in_chunk = (offset + size - 1) & (orig_chunk_size - 1);
176
177         /* Calculate the number of entries in the chunk table; it's one less
178          * than the number of chunks, since the first chunk has no entry.  */
179         const u64 num_chunk_entries = num_chunks - 1;
180
181         /* Set the size of each chunk table entry based on the resource's
182          * uncompressed size.  */
183         const u64 chunk_entry_size = (wim_resource_size(lte) > (1ULL << 32)) ? 8 : 4;
184
185         /* Calculate the size, in bytes, of the full chunk table.  */
186         const u64 chunk_table_size = num_chunk_entries * chunk_entry_size;
187
188         /* Current offset to read from.  */
189         u64 cur_read_offset = lte->resource_entry.offset;
190         if (!is_pipe_read) {
191                 /* Read the chunk table into memory.  */
192
193                 /* Calculate the number of chunk entries are actually needed to
194                  * read the requested part of the resource.  Include an entry
195                  * for the first chunk even though that doesn't exist in the
196                  * on-disk table, but take into account that if the last chunk
197                  * required for the read is not the last chunk of the resource,
198                  * an extra chunk entry is needed so that the compressed size of
199                  * the last chunk of the read can be determined.  */
200                 const u64 num_alloc_chunk_entries = end_chunk - start_chunk +
201                                                     1 + (end_chunk != num_chunks - 1);
202
203                 /* Allocate a buffer to hold a subset of the chunk table.  It
204                  * will only contain offsets for the chunks that are actually
205                  * needed for this read.  For speed, allocate the buffer on the
206                  * stack unless it's too large.  */
207                 if ((size_t)(num_alloc_chunk_entries * sizeof(u64)) !=
208                             (num_alloc_chunk_entries * sizeof(u64)))
209                         goto oom;
210
211                 if (num_alloc_chunk_entries <= STACK_MAX / sizeof(u64)) {
212                         chunk_offsets = alloca(num_alloc_chunk_entries * sizeof(u64));
213                 } else {
214                         chunk_offsets = MALLOC(num_alloc_chunk_entries * sizeof(u64));
215                         if (chunk_offsets == NULL)
216                                 goto oom;
217                         chunk_offsets_malloced = true;
218                 }
219
220                 /* Set the implicit offset of the first chunk if it's included
221                  * in the needed chunks.  */
222                 if (start_chunk == 0)
223                         chunk_offsets[0] = 0;
224
225                 /* Calculate the index of the first needed entry in the chunk
226                  * table.  */
227                 const u64 start_table_idx = (start_chunk == 0) ?
228                                 0 : start_chunk - 1;
229
230                 /* Calculate the number of entries that need to be read from the
231                  * chunk table.  */
232                 const u64 num_needed_chunk_entries = (start_chunk == 0) ?
233                                 num_alloc_chunk_entries - 1 : num_alloc_chunk_entries;
234
235                 /* Calculate the number of bytes of data that need to be read
236                  * from the chunk table.  */
237                 const size_t chunk_table_needed_size =
238                                 num_needed_chunk_entries * chunk_entry_size;
239
240                 /* Calculate the byte offset, in the WIM file, of the first
241                  * chunk table entry to read.  Take into account that if the WIM
242                  * file is in the special "pipable" format, then the chunk table
243                  * is at the end of the resource, not the beginning.  */
244                 const u64 file_offset_of_needed_chunk_entries =
245                         lte->resource_entry.offset
246                         + (start_table_idx * chunk_entry_size)
247                         + (lte->is_pipable ? (lte->resource_entry.size - chunk_table_size) : 0);
248
249                 /* Read the needed chunk table entries into the end of the
250                  * chunk_offsets buffer.  */
251                 void * const chunk_tab_data = (u8*)&chunk_offsets[num_alloc_chunk_entries] -
252                                               chunk_table_needed_size;
253                 ret = full_pread(in_fd, chunk_tab_data, chunk_table_needed_size,
254                                  file_offset_of_needed_chunk_entries);
255                 if (ret)
256                         goto read_error;
257
258                 /* Now fill in chunk_offsets from the entries we have read in
259                  * chunk_tab_data.  Careful: chunk_offsets aliases
260                  * chunk_tab_data, which breaks C's aliasing rules when we read
261                  * 32-bit integers and store 64-bit integers.  But since the
262                  * operations are safe as long as the compiler doesn't mess with
263                  * their order, we use the gcc may_alias extension to tell the
264                  * compiler that loads from the 32-bit integers may alias stores
265                  * to the 64-bit integers.  */
266                 {
267                         typedef le64 __attribute__((may_alias)) aliased_le64_t;
268                         typedef le32 __attribute__((may_alias)) aliased_le32_t;
269                         u64 * const chunk_offsets_p = chunk_offsets + (start_chunk == 0);
270                         u64 i;
271
272                         if (chunk_entry_size == 4) {
273                                 aliased_le32_t *raw_entries = (aliased_le32_t*)chunk_tab_data;
274                                 for (i = 0; i < num_needed_chunk_entries; i++)
275                                         chunk_offsets_p[i] = le32_to_cpu(raw_entries[i]);
276                         } else {
277                                 aliased_le64_t *raw_entries = (aliased_le64_t*)chunk_tab_data;
278                                 for (i = 0; i < num_needed_chunk_entries; i++)
279                                         chunk_offsets_p[i] = le64_to_cpu(raw_entries[i]);
280                         }
281                 }
282
283                 /* Set offset to beginning of first chunk to read.  */
284                 cur_read_offset += chunk_offsets[0];
285                 if (lte->is_pipable)
286                         cur_read_offset += start_chunk * sizeof(struct pwm_chunk_hdr);
287                 else
288                         cur_read_offset += chunk_table_size;
289         }
290
291         /* If using a callback function, allocate a temporary buffer that will
292          * hold data being passed to it.  If writing directly to a buffer
293          * instead, arrange to write data directly into it.  */
294         size_t out_buf_size;
295         u8 *out_buf_end, *out_p;
296         if (cb) {
297                 out_buf_size = max(cb_chunk_size, orig_chunk_size);
298                 if (out_buf_size <= STACK_MAX) {
299                         out_buf = alloca(out_buf_size);
300                 } else {
301                         out_buf = MALLOC(out_buf_size);
302                         if (out_buf == NULL)
303                                 goto oom;
304                         out_buf_malloced = true;
305                 }
306         } else {
307                 out_buf_size = size;
308                 out_buf = ctx_or_buf;
309         }
310         out_buf_end = out_buf + out_buf_size;
311         out_p = out_buf;
312
313         /* Unless the raw compressed data was requested, allocate a temporary
314          * buffer for reading compressed chunks, each of which can be at most
315          * @orig_chunk_size - 1 bytes.  This excludes compressed chunks that are
316          * a full @orig_chunk_size bytes, which are actually stored
317          * uncompressed.  */
318         if (!(flags & WIMLIB_READ_RESOURCE_FLAG_RAW_CHUNKS)) {
319                 if (orig_chunk_size - 1 <= STACK_MAX) {
320                         compressed_buf = alloca(orig_chunk_size - 1);
321                 } else {
322                         compressed_buf = MALLOC(orig_chunk_size - 1);
323                         if (compressed_buf == NULL)
324                                 goto oom;
325                         compressed_buf_malloced = true;
326                 }
327         }
328
329         /* Allocate yet another temporary buffer, this one for decompressing
330          * chunks for which only part of the data is needed.  */
331         if (start_offset_in_chunk != 0 ||
332             (end_offset_in_chunk != orig_chunk_size - 1 &&
333              offset + size != wim_resource_size(lte)))
334         {
335                 if (orig_chunk_size <= STACK_MAX) {
336                         tmp_buf = alloca(orig_chunk_size);
337                 } else {
338                         tmp_buf = MALLOC(orig_chunk_size);
339                         if (tmp_buf == NULL)
340                                 goto oom;
341                         tmp_buf_malloced = true;
342                 }
343         }
344
345         /* Read, and possibly decompress, each needed chunk, either writing the
346          * data directly into the @ctx_or_buf buffer or passing it to the @cb
347          * callback function.  */
348         for (u64 i = actual_start_chunk; i <= end_chunk; i++) {
349
350                 /* Calculate uncompressed size of next chunk.  */
351                 u32 chunk_usize;
352                 if ((i == num_chunks - 1) && (wim_resource_size(lte) & (orig_chunk_size - 1)))
353                         chunk_usize = (wim_resource_size(lte) & (orig_chunk_size - 1));
354                 else
355                         chunk_usize = orig_chunk_size;
356
357                 /* Calculate compressed size of next chunk.  */
358                 u32 chunk_csize;
359                 if (is_pipe_read) {
360                         struct pwm_chunk_hdr chunk_hdr;
361
362                         ret = full_pread(in_fd, &chunk_hdr,
363                                          sizeof(chunk_hdr), cur_read_offset);
364                         if (ret)
365                                 goto read_error;
366                         chunk_csize = le32_to_cpu(chunk_hdr.compressed_size);
367                 } else {
368                         if (i == num_chunks - 1) {
369                                 chunk_csize = lte->resource_entry.size -
370                                               chunk_table_size -
371                                               chunk_offsets[i - start_chunk];
372                                 if (lte->is_pipable)
373                                         chunk_csize -= num_chunks * sizeof(struct pwm_chunk_hdr);
374                         } else {
375                                 chunk_csize = chunk_offsets[i + 1 - start_chunk] -
376                                               chunk_offsets[i - start_chunk];
377                         }
378                 }
379                 if (chunk_csize == 0 || chunk_csize > chunk_usize) {
380                         ERROR("Invalid chunk size in compressed resource!");
381                         errno = EINVAL;
382                         ret = WIMLIB_ERR_DECOMPRESSION;
383                         goto out_free_memory;
384                 }
385                 if (lte->is_pipable)
386                         cur_read_offset += sizeof(struct pwm_chunk_hdr);
387
388                 if (i >= start_chunk) {
389                         /* Calculate how much of this chunk needs to be read.  */
390                         u32 chunk_needed_size;
391                         u32 start_offset = 0;
392                         u32 end_offset = orig_chunk_size - 1;
393
394                         if (flags & WIMLIB_READ_RESOURCE_FLAG_RAW_CHUNKS) {
395                                 chunk_needed_size = chunk_csize;
396                         } else {
397                                 if (i == start_chunk)
398                                         start_offset = start_offset_in_chunk;
399
400                                 if (i == end_chunk)
401                                         end_offset = end_offset_in_chunk;
402
403                                 chunk_needed_size = end_offset + 1 - start_offset;
404                         }
405
406                         if (chunk_csize == chunk_usize ||
407                             (flags & WIMLIB_READ_RESOURCE_FLAG_RAW_CHUNKS))
408                         {
409                                 /* Read the raw chunk data.  */
410
411                                 ret = full_pread(in_fd,
412                                                  out_p,
413                                                  chunk_needed_size,
414                                                  cur_read_offset + start_offset);
415                                 if (ret)
416                                         goto read_error;
417                         } else {
418                                 /* Read and decompress the chunk.  */
419
420                                 u8 *target;
421
422                                 ret = full_pread(in_fd,
423                                                  compressed_buf,
424                                                  chunk_csize,
425                                                  cur_read_offset);
426                                 if (ret)
427                                         goto read_error;
428
429                                 if (chunk_needed_size == chunk_usize)
430                                         target = out_p;
431                                 else
432                                         target = tmp_buf;
433
434                                 ret = decompress(compressed_buf,
435                                                  chunk_csize,
436                                                  target,
437                                                  chunk_usize,
438                                                  wim_resource_compression_type(lte),
439                                                  orig_chunk_size);
440                                 if (ret) {
441                                         ERROR("Failed to decompress data!");
442                                         ret = WIMLIB_ERR_DECOMPRESSION;
443                                         errno = EINVAL;
444                                         goto out_free_memory;
445                                 }
446                                 if (chunk_needed_size != chunk_usize)
447                                         memcpy(out_p, tmp_buf + start_offset,
448                                                chunk_needed_size);
449                         }
450
451                         out_p += chunk_needed_size;
452
453                         if (cb) {
454                                 /* Feed the data to the callback function.  */
455
456                                 if (flags & WIMLIB_READ_RESOURCE_FLAG_RAW_CHUNKS) {
457                                         ret = cb(out_buf, out_p - out_buf, ctx_or_buf);
458                                         if (ret)
459                                                 goto out_free_memory;
460                                         out_p = out_buf;
461                                 } else if (i == end_chunk || out_p == out_buf_end) {
462                                         size_t bytes_sent;
463                                         const u8 *p;
464
465                                         for (p = out_buf; p != out_p; p += bytes_sent) {
466                                                 bytes_sent = min(cb_chunk_size, out_p - p);
467                                                 ret = cb(p, bytes_sent, ctx_or_buf);
468                                                 if (ret)
469                                                         goto out_free_memory;
470                                         }
471                                         out_p = out_buf;
472                                 }
473                         }
474                         cur_read_offset += chunk_csize;
475                 } else {
476                         u8 dummy;
477
478                         /* Skip data only.  */
479                         cur_read_offset += chunk_csize;
480                         ret = full_pread(in_fd, &dummy, 1, cur_read_offset - 1);
481                         if (ret)
482                                 goto read_error;
483                 }
484         }
485
486         if (is_pipe_read
487             && size == lte->resource_entry.original_size
488             && chunk_table_size)
489         {
490                 u8 dummy;
491                 /* Skip chunk table at end of pipable resource.  */
492
493                 cur_read_offset += chunk_table_size;
494                 ret = full_pread(in_fd, &dummy, 1, cur_read_offset - 1);
495                 if (ret)
496                         goto read_error;
497         }
498         ret = 0;
499 out_free_memory:
500         errno_save = errno;
501         if (chunk_offsets_malloced)
502                 FREE(chunk_offsets);
503         if (out_buf_malloced)
504                 FREE(out_buf);
505         if (compressed_buf_malloced)
506                 FREE(compressed_buf);
507         if (tmp_buf_malloced)
508                 FREE(tmp_buf);
509         errno = errno_save;
510         return ret;
511
512 oom:
513         ERROR("Not enough memory available to read size=%"PRIu64" bytes "
514               "from compressed resource!", size);
515         errno = ENOMEM;
516         ret = WIMLIB_ERR_NOMEM;
517         goto out_free_memory;
518
519 read_error:
520         ERROR_WITH_ERRNO("Error reading compressed file resource!");
521         goto out_free_memory;
522 }
523
524 /* Read raw data from a file descriptor at the specified offset.  */
525 static int
526 read_raw_file_data(struct filedes *in_fd,
527                    u64 size,
528                    consume_data_callback_t cb,
529                    u32 cb_chunk_size,
530                    void *ctx_or_buf,
531                    u64 offset)
532 {
533         int ret;
534         u8 *tmp_buf;
535         bool tmp_buf_malloced = false;
536
537         if (cb) {
538                 /* Send data to callback function in chunks.  */
539                 if (cb_chunk_size <= STACK_MAX) {
540                         tmp_buf = alloca(cb_chunk_size);
541                 } else {
542                         tmp_buf = MALLOC(cb_chunk_size);
543                         if (tmp_buf == NULL) {
544                                 ret = WIMLIB_ERR_NOMEM;
545                                 goto out;
546                         }
547                         tmp_buf_malloced = true;
548                 }
549
550                 while (size) {
551                         size_t bytes_to_read = min(cb_chunk_size, size);
552                         ret = full_pread(in_fd, tmp_buf, bytes_to_read,
553                                          offset);
554                         if (ret)
555                                 goto read_error;
556                         ret = cb(tmp_buf, bytes_to_read, ctx_or_buf);
557                         if (ret)
558                                 goto out;
559                         size -= bytes_to_read;
560                         offset += bytes_to_read;
561                 }
562         } else {
563                 /* Read data directly into buffer.  */
564                 ret = full_pread(in_fd, ctx_or_buf, size, offset);
565                 if (ret)
566                         goto read_error;
567         }
568         ret = 0;
569         goto out;
570
571 read_error:
572         ERROR_WITH_ERRNO("Read error");
573 out:
574         if (tmp_buf_malloced)
575                 FREE(tmp_buf);
576         return ret;
577 }
578
579 /*
580  * read_partial_wim_resource()-
581  *
582  * Read a range of data from an uncompressed or compressed resource in a WIM
583  * file.  Data is written into a buffer or fed into a callback function, as
584  * documented in read_resource_prefix().
585  *
586  * By default, this function provides the uncompressed data of the resource, and
587  * @size and @offset and interpreted relative to the uncompressed contents of
588  * the resource.  This behavior can be modified by either of the following
589  * flags:
590  *
591  * WIMLIB_READ_RESOURCE_FLAG_RAW_FULL:
592  *      Read @size bytes at @offset of the raw contents of the compressed
593  *      resource.  In the case of pipable resources, this excludes the stream
594  *      header.  Exclusive with WIMLIB_READ_RESOURCE_FLAG_RAW_CHUNKS.
595  *
596  * WIMLIB_READ_RESOURCE_FLAG_RAW_CHUNKS:
597  *      Read the raw compressed chunks of the compressed resource.  @size must
598  *      be the full uncompressed size, @offset must be 0, and @cb_chunk_size
599  *      must be the resource chunk size.
600  *
601  * Return values:
602  *      WIMLIB_ERR_SUCCESS (0)
603  *      WIMLIB_ERR_READ                   (errno set)
604  *      WIMLIB_ERR_UNEXPECTED_END_OF_FILE (errno set to 0)
605  *      WIMLIB_ERR_NOMEM                  (errno set to ENOMEM)
606  *      WIMLIB_ERR_DECOMPRESSION          (errno set to EINVAL)
607  *
608  *      or other error code returned by the @cb function.
609  */
610 int
611 read_partial_wim_resource(const struct wim_lookup_table_entry *lte,
612                           u64 size, consume_data_callback_t cb,
613                           u32 cb_chunk_size,
614                           void *ctx_or_buf, int flags, u64 offset)
615 {
616         struct filedes *in_fd;
617
618         /* Verify parameters.  */
619         wimlib_assert(lte->resource_location == RESOURCE_IN_WIM);
620         in_fd = &lte->wim->in_fd;
621         if (cb)
622                 wimlib_assert(is_power_of_2(cb_chunk_size));
623         if (flags & WIMLIB_READ_RESOURCE_FLAG_RAW_CHUNKS) {
624                 /* Raw chunks mode is subject to the restrictions noted.  */
625                 wimlib_assert(!(flags & WIMLIB_READ_RESOURCE_FLAG_RAW_FULL));
626                 wimlib_assert(cb_chunk_size == wim_resource_chunk_size(lte));
627                 wimlib_assert(size == lte->resource_entry.original_size);
628                 wimlib_assert(offset == 0);
629         } else if (flags & WIMLIB_READ_RESOURCE_FLAG_RAW_FULL) {
630                 /* Raw full mode:  read must not overrun end of store size.  */
631                 wimlib_assert(offset + size >= size &&
632                               offset + size <= lte->resource_entry.size);
633         } else {
634                 /* Normal mode:  read must not overrun end of original size.  */
635                 wimlib_assert(offset + size >= size &&
636                               offset + size <= lte->resource_entry.original_size);
637         }
638
639         DEBUG("Reading WIM resource: %"PRIu64" @ +%"PRIu64" "
640               "from %"PRIu64"(%"PRIu64") @ +%"PRIu64" "
641               "(readflags 0x%08x, resflags 0x%02x%s)",
642               size, offset,
643               lte->resource_entry.size,
644               lte->resource_entry.original_size,
645               lte->resource_entry.offset,
646               flags, lte->resource_entry.flags,
647               (lte->is_pipable ? ", pipable" : ""));
648
649         if ((flags & WIMLIB_READ_RESOURCE_FLAG_RAW_FULL) ||
650             !resource_is_compressed(&lte->resource_entry)) {
651                 return read_raw_file_data(in_fd,
652                                           size,
653                                           cb,
654                                           cb_chunk_size,
655                                           ctx_or_buf,
656                                           offset + lte->resource_entry.offset);
657         } else {
658                 return read_compressed_wim_resource(lte, size, cb,
659                                                     cb_chunk_size,
660                                                     ctx_or_buf, flags, offset);
661         }
662 }
663
664 int
665 read_partial_wim_resource_into_buf(const struct wim_lookup_table_entry *lte,
666                                    size_t size, u64 offset, void *buf)
667 {
668         return read_partial_wim_resource(lte, size, NULL, 0, buf, 0, offset);
669 }
670
671 static int
672 read_wim_resource_prefix(const struct wim_lookup_table_entry *lte,
673                          u64 size,
674                          consume_data_callback_t cb,
675                          u32 cb_chunk_size,
676                          void *ctx_or_buf,
677                          int flags)
678 {
679         return read_partial_wim_resource(lte, size, cb, cb_chunk_size,
680                                          ctx_or_buf, flags, 0);
681 }
682
683 #ifndef __WIN32__
684 /* This function handles reading resource data that is located in an external
685  * file,  such as a file that has been added to the WIM image through execution
686  * of a wimlib_add_command.
687  *
688  * This assumes the file can be accessed using the standard POSIX open(),
689  * read(), and close().  On Windows this will not necessarily be the case (since
690  * the file may need FILE_FLAG_BACKUP_SEMANTICS to be opened, or the file may be
691  * encrypted), so Windows uses its own code for its equivalent case.
692  */
693 static int
694 read_file_on_disk_prefix(const struct wim_lookup_table_entry *lte,
695                          u64 size,
696                          consume_data_callback_t cb,
697                          u32 cb_chunk_size,
698                          void *ctx_or_buf,
699                          int _ignored_flags)
700 {
701         int ret;
702         int raw_fd;
703         struct filedes fd;
704
705         wimlib_assert(size <= wim_resource_size(lte));
706         DEBUG("Reading %"PRIu64" bytes from \"%"TS"\"", size, lte->file_on_disk);
707
708         raw_fd = open(lte->file_on_disk, O_BINARY | O_RDONLY);
709         if (raw_fd < 0) {
710                 ERROR_WITH_ERRNO("Can't open \"%"TS"\"", lte->file_on_disk);
711                 return WIMLIB_ERR_OPEN;
712         }
713         filedes_init(&fd, raw_fd);
714         ret = read_raw_file_data(&fd, size, cb, cb_chunk_size, ctx_or_buf, 0);
715         filedes_close(&fd);
716         return ret;
717 }
718 #endif /* !__WIN32__ */
719
720 /* This function handles the trivial case of reading resource data that is, in
721  * fact, already located in an in-memory buffer.  */
722 static int
723 read_buffer_prefix(const struct wim_lookup_table_entry *lte,
724                    u64 size, consume_data_callback_t cb,
725                    u32 cb_chunk_size,
726                    void *ctx_or_buf, int _ignored_flags)
727 {
728         wimlib_assert(size <= wim_resource_size(lte));
729
730         if (cb) {
731                 /* Feed the data into the callback function in
732                  * appropriately-sized chunks.  */
733                 int ret;
734                 u32 chunk_size;
735
736                 for (u64 offset = 0; offset < size; offset += chunk_size) {
737                         chunk_size = min(cb_chunk_size, size - offset);
738                         ret = cb((const u8*)lte->attached_buffer + offset,
739                                  chunk_size, ctx_or_buf);
740                         if (ret)
741                                 return ret;
742                 }
743         } else {
744                 /* Copy the data directly into the specified buffer.  */
745                 memcpy(ctx_or_buf, lte->attached_buffer, size);
746         }
747         return 0;
748 }
749
750 typedef int (*read_resource_prefix_handler_t)(const struct wim_lookup_table_entry *lte,
751                                               u64 size,
752                                               consume_data_callback_t cb,
753                                               u32 cb_chunk_size,
754                                               void *ctx_or_buf,
755                                               int flags);
756
757 /*
758  * read_resource_prefix()-
759  *
760  * Reads the first @size bytes from a generic "resource", which may be located
761  * in any one of several locations, such as in a WIM file (compressed or
762  * uncompressed), in an external file, or directly in an in-memory buffer.
763  *
764  * This function feeds the data either to a callback function (@cb != NULL,
765  * passing it @ctx_or_buf), or write it directly into a buffer (@cb == NULL,
766  * @ctx_or_buf specifies the buffer, which must have room for at least @size
767  * bytes).
768  *
769  * When (@cb != NULL), @cb_chunk_size specifies the maximum size of data chunks
770  * to feed the callback function.  @cb_chunk_size must be positive, and if the
771  * resource is in a WIM file, must be a power of 2.  All chunks, except possibly
772  * the last one, will be this size.  If (@cb == NULL), @cb_chunk_size is
773  * ignored.
774  *
775  * If the resource is located in a WIM file, @flags can be set as documented in
776  * read_partial_wim_resource().  Otherwise @flags are ignored.
777  *
778  * Returns 0 on success; nonzero on error.  A nonzero value will be returned if
779  * the resource data cannot be successfully read (for a number of different
780  * reasons, depending on the resource location), or if a callback function was
781  * specified and it returned nonzero.
782  */
783 int
784 read_resource_prefix(const struct wim_lookup_table_entry *lte,
785                      u64 size, consume_data_callback_t cb, u32 cb_chunk_size,
786                      void *ctx_or_buf, int flags)
787 {
788         /* This function merely verifies several preconditions, then passes
789          * control to an appropriate function for understanding each possible
790          * resource location.  */
791         static const read_resource_prefix_handler_t handlers[] = {
792                 [RESOURCE_IN_WIM]             = read_wim_resource_prefix,
793         #ifdef __WIN32__
794                 [RESOURCE_IN_FILE_ON_DISK]    = read_win32_file_prefix,
795         #else
796                 [RESOURCE_IN_FILE_ON_DISK]    = read_file_on_disk_prefix,
797         #endif
798                 [RESOURCE_IN_ATTACHED_BUFFER] = read_buffer_prefix,
799         #ifdef WITH_FUSE
800                 [RESOURCE_IN_STAGING_FILE]    = read_file_on_disk_prefix,
801         #endif
802         #ifdef WITH_NTFS_3G
803                 [RESOURCE_IN_NTFS_VOLUME]     = read_ntfs_file_prefix,
804         #endif
805         #ifdef __WIN32__
806                 [RESOURCE_WIN32_ENCRYPTED]    = read_win32_encrypted_file_prefix,
807         #endif
808         };
809         wimlib_assert(lte->resource_location < ARRAY_LEN(handlers)
810                       && handlers[lte->resource_location] != NULL);
811         wimlib_assert(cb == NULL || cb_chunk_size > 0);
812         return handlers[lte->resource_location](lte, size, cb, cb_chunk_size,
813                                                 ctx_or_buf, flags);
814 }
815
816 /* Read the full uncompressed data of the specified resource into the specified
817  * buffer, which must have space for at least lte->resource_entry.original_size
818  * bytes.  */
819 int
820 read_full_resource_into_buf(const struct wim_lookup_table_entry *lte,
821                             void *buf)
822 {
823         return read_resource_prefix(lte, wim_resource_size(lte),
824                                     NULL, 0, buf, 0);
825 }
826
827 /* Read the full uncompressed data of the specified resource.  A buffer
828  * sufficient to hold the data is allocated and returned in @buf_ret.  */
829 int
830 read_full_resource_into_alloc_buf(const struct wim_lookup_table_entry *lte,
831                                   void **buf_ret)
832 {
833         int ret;
834         void *buf;
835
836         if ((size_t)lte->resource_entry.original_size !=
837             lte->resource_entry.original_size)
838         {
839                 ERROR("Can't read %"PRIu64" byte resource into "
840                       "memory", lte->resource_entry.original_size);
841                 return WIMLIB_ERR_NOMEM;
842         }
843
844         buf = MALLOC(lte->resource_entry.original_size);
845         if (buf == NULL)
846                 return WIMLIB_ERR_NOMEM;
847
848         ret = read_full_resource_into_buf(lte, buf);
849         if (ret) {
850                 FREE(buf);
851                 return ret;
852         }
853
854         *buf_ret = buf;
855         return 0;
856 }
857
858 /* Retrieve the full uncompressed data of the specified WIM resource, provided
859  * as a raw `struct resource_entry'.  */
860 int
861 res_entry_to_data(const struct resource_entry *res_entry,
862                   WIMStruct *wim, void **buf_ret)
863 {
864         int ret;
865         struct wim_lookup_table_entry *lte;
866
867         lte = new_lookup_table_entry();
868         if (lte == NULL)
869                 return WIMLIB_ERR_NOMEM;
870
871         copy_resource_entry(&lte->resource_entry, res_entry);
872         lte->unhashed = 1;
873         lte->part_number = wim->hdr.part_number;
874         lte_init_wim(lte, wim);
875
876         ret = read_full_resource_into_alloc_buf(lte, buf_ret);
877         free_lookup_table_entry(lte);
878         return ret;
879 }
880
881 struct extract_ctx {
882         SHA_CTX sha_ctx;
883         consume_data_callback_t extract_chunk;
884         void *extract_chunk_arg;
885 };
886
887 static int
888 extract_chunk_sha1_wrapper(const void *chunk, size_t chunk_size,
889                            void *_ctx)
890 {
891         struct extract_ctx *ctx = _ctx;
892
893         sha1_update(&ctx->sha_ctx, chunk, chunk_size);
894         return ctx->extract_chunk(chunk, chunk_size, ctx->extract_chunk_arg);
895 }
896
897 /* Extracts the first @size bytes of a resource to somewhere.  In the process,
898  * the SHA1 message digest of the uncompressed resource is checked if the full
899  * resource is being extracted.
900  *
901  * @extract_chunk is a function that will be called to extract each chunk of the
902  * resource.  */
903 int
904 extract_wim_resource(const struct wim_lookup_table_entry *lte,
905                      u64 size,
906                      consume_data_callback_t extract_chunk,
907                      void *extract_chunk_arg)
908 {
909         int ret;
910         if (size == wim_resource_size(lte)) {
911                 /* Do SHA1 */
912                 struct extract_ctx ctx;
913                 ctx.extract_chunk = extract_chunk;
914                 ctx.extract_chunk_arg = extract_chunk_arg;
915                 sha1_init(&ctx.sha_ctx);
916                 ret = read_resource_prefix(lte, size,
917                                            extract_chunk_sha1_wrapper,
918                                            wim_resource_chunk_size(lte),
919                                            &ctx, 0);
920                 if (ret == 0) {
921                         u8 hash[SHA1_HASH_SIZE];
922                         sha1_final(hash, &ctx.sha_ctx);
923                         if (!hashes_equal(hash, lte->hash)) {
924                                 if (wimlib_print_errors) {
925                                         ERROR("Invalid SHA1 message digest "
926                                               "on the following WIM resource:");
927                                         print_lookup_table_entry(lte, stderr);
928                                         if (lte->resource_location == RESOURCE_IN_WIM)
929                                                 ERROR("The WIM file appears to be corrupt!");
930                                 }
931                                 ret = WIMLIB_ERR_INVALID_RESOURCE_HASH;
932                         }
933                 }
934         } else {
935                 /* Don't do SHA1 */
936                 ret = read_resource_prefix(lte, size, extract_chunk,
937                                            wim_resource_chunk_size(lte),
938                                            extract_chunk_arg, 0);
939         }
940         return ret;
941 }
942
943 static int
944 extract_wim_chunk_to_fd(const void *buf, size_t len, void *_fd_p)
945 {
946         struct filedes *fd = _fd_p;
947         int ret = full_write(fd, buf, len);
948         if (ret)
949                 ERROR_WITH_ERRNO("Error writing to file descriptor");
950         return ret;
951 }
952
953 /* Extract the first @size bytes of the specified resource to the specified file
954  * descriptor.  If @size is the full size of the resource, its SHA1 message
955  * digest is also checked.  */
956 int
957 extract_wim_resource_to_fd(const struct wim_lookup_table_entry *lte,
958                            struct filedes *fd, u64 size)
959 {
960         return extract_wim_resource(lte, size, extract_wim_chunk_to_fd, fd);
961 }
962
963
964 static int
965 sha1_chunk(const void *buf, size_t len, void *ctx)
966 {
967         sha1_update(ctx, buf, len);
968         return 0;
969 }
970
971 /* Calculate the SHA1 message digest of a resource, storing it in @lte->hash.  */
972 int
973 sha1_resource(struct wim_lookup_table_entry *lte)
974 {
975         int ret;
976         SHA_CTX sha_ctx;
977
978         sha1_init(&sha_ctx);
979         ret = read_resource_prefix(lte, wim_resource_size(lte),
980                                    sha1_chunk, wim_resource_chunk_size(lte),
981                                    &sha_ctx, 0);
982         if (ret == 0)
983                 sha1_final(lte->hash, &sha_ctx);
984
985         return ret;
986 }
987
988 /* Translates a WIM resource entry from the on-disk format into an in-memory
989  * format.  */
990 void
991 get_resource_entry(const struct resource_entry_disk *disk_entry,
992                    struct resource_entry *entry)
993 {
994         /* Note: disk_entry may not be 8 byte aligned--- in that case, the
995          * offset and original_size members will be unaligned.  (This is okay
996          * since `struct resource_entry_disk' is declared as packed.)  */
997
998         /* Read the size and flags into a bitfield portably... */
999         entry->size = (((u64)disk_entry->size[0] <<  0) |
1000                        ((u64)disk_entry->size[1] <<  8) |
1001                        ((u64)disk_entry->size[2] << 16) |
1002                        ((u64)disk_entry->size[3] << 24) |
1003                        ((u64)disk_entry->size[4] << 32) |
1004                        ((u64)disk_entry->size[5] << 40) |
1005                        ((u64)disk_entry->size[6] << 48));
1006         entry->flags = disk_entry->flags;
1007         entry->offset = le64_to_cpu(disk_entry->offset);
1008         entry->original_size = le64_to_cpu(disk_entry->original_size);
1009
1010         /* offset and original_size are truncated to 62 bits to avoid possible
1011          * overflows, when converting to a signed 64-bit integer (off_t) or when
1012          * adding size or original_size.  This is okay since no one would ever
1013          * actually have a WIM bigger than 4611686018427387903 bytes... */
1014         if (entry->offset & 0xc000000000000000ULL) {
1015                 WARNING("Truncating offset in resource entry");
1016                 entry->offset &= 0x3fffffffffffffffULL;
1017         }
1018         if (entry->original_size & 0xc000000000000000ULL) {
1019                 WARNING("Truncating original_size in resource entry");
1020                 entry->original_size &= 0x3fffffffffffffffULL;
1021         }
1022 }
1023
1024 /* Translates a WIM resource entry from an in-memory format into the on-disk
1025  * format. */
1026 void
1027 put_resource_entry(const struct resource_entry *entry,
1028                    struct resource_entry_disk *disk_entry)
1029 {
1030         /* Note: disk_entry may not be 8 byte aligned--- in that case, the
1031          * offset and original_size members will be unaligned.  (This is okay
1032          * since `struct resource_entry_disk' is declared as packed.)  */
1033         u64 size = entry->size;
1034
1035         disk_entry->size[0] = size >>  0;
1036         disk_entry->size[1] = size >>  8;
1037         disk_entry->size[2] = size >> 16;
1038         disk_entry->size[3] = size >> 24;
1039         disk_entry->size[4] = size >> 32;
1040         disk_entry->size[5] = size >> 40;
1041         disk_entry->size[6] = size >> 48;
1042         disk_entry->flags = entry->flags;
1043         disk_entry->offset = cpu_to_le64(entry->offset);
1044         disk_entry->original_size = cpu_to_le64(entry->original_size);
1045 }