]> wimlib.net Git - wimlib/blob - src/resource.c
66360130229ea6931f906ed09ca5f9197c782635
[wimlib] / src / resource.c
1 /*
2  * resource.c
3  *
4  * Read uncompressed and compressed metadata and file resources.
5  */
6
7 /*
8  * Copyright (C) 2012 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 #include "config.h"
26
27 #include <stdlib.h>
28 #include <stdarg.h>
29
30 #include "dentry.h"
31
32 #include "wimlib_internal.h"
33 #include "lookup_table.h"
34 #include "buffer_io.h"
35 #include "lzx.h"
36 #include "xpress.h"
37 #include "sha1.h"
38 #include <unistd.h>
39 #include <errno.h>
40
41 #ifdef WITH_NTFS_3G
42 #include <time.h>
43 #include <ntfs-3g/attrib.h>
44 #include <ntfs-3g/inode.h>
45 #include <ntfs-3g/dir.h>
46 #endif
47
48
49 /*
50  * Reads all or part of a compressed resource into an in-memory buffer.
51  *
52  * @fp:                 The FILE* for the WIM file.
53  * @resource_compressed_size:    The compressed size of the resource.
54  * @resource_uncompressed_size:  The uncompressed size of the resource.
55  * @resource_offset:             The offset of the start of the resource from
56  *                                      the start of the stream @fp.
57  * @resource_ctype:     The compression type of the resource.
58  * @len:                The number of bytes of uncompressed data to read from
59  *                              the resource.
60  * @offset:             The offset of the bytes to read within the uncompressed
61  *                              resource.
62  * @contents_len:       An array into which the uncompressed data is written.
63  *                              It must be at least @len bytes long.
64  *
65  * Returns zero on success, nonzero on failure.
66  */
67 static int read_compressed_resource(FILE *fp, u64 resource_compressed_size,
68                                     u64 resource_uncompressed_size,
69                                     u64 resource_offset, int resource_ctype,
70                                     u64 len, u64 offset, u8  contents_ret[])
71 {
72
73         DEBUG2("comp size = %"PRIu64", uncomp size = %"PRIu64", "
74                "res offset = %"PRIu64"",
75                resource_compressed_size,
76                resource_uncompressed_size,
77                resource_offset);
78         DEBUG2("resource_ctype = %s, len = %"PRIu64", offset = %"PRIu64"",
79                wimlib_get_compression_type_string(resource_ctype), len, offset);
80         /* Trivial case */
81         if (len == 0)
82                 return 0;
83
84         int (*decompress)(const void *, unsigned, void *, unsigned);
85         /* Set the appropriate decompress function. */
86         if (resource_ctype == WIMLIB_COMPRESSION_TYPE_LZX)
87                 decompress = lzx_decompress;
88         else
89                 decompress = xpress_decompress;
90
91         /* The structure of a compressed resource consists of a table of chunk
92          * offsets followed by the chunks themselves.  Each chunk consists of
93          * compressed data, and there is one chunk for each WIM_CHUNK_SIZE =
94          * 32768 bytes of the uncompressed file, with the last chunk having any
95          * remaining bytes.
96          *
97          * The chunk offsets are measured relative to the end of the chunk
98          * table.  The first chunk is omitted from the table in the WIM file
99          * because its offset is implicitly given by the fact that it directly
100          * follows the chunk table and therefore must have an offset of 0.
101          */
102
103         /* Calculate how many chunks the resource conists of in its entirety. */
104         u64 num_chunks = (resource_uncompressed_size + WIM_CHUNK_SIZE - 1) /
105                                                                 WIM_CHUNK_SIZE;
106         /* As mentioned, the first chunk has no entry in the chunk table. */
107         u64 num_chunk_entries = num_chunks - 1;
108
109
110         /* The index of the chunk that the read starts at. */
111         u64 start_chunk = offset / WIM_CHUNK_SIZE;
112         /* The byte offset at which the read starts, within the start chunk. */
113         u64 start_chunk_offset = offset % WIM_CHUNK_SIZE;
114
115         /* The index of the chunk that contains the last byte of the read. */
116         u64 end_chunk   = (offset + len - 1) / WIM_CHUNK_SIZE;
117         /* The byte offset of the last byte of the read, within the end chunk */
118         u64 end_chunk_offset = (offset + len - 1) % WIM_CHUNK_SIZE;
119
120         /* Number of chunks that are actually needed to read the requested part
121          * of the file. */
122         u64 num_needed_chunks = end_chunk - start_chunk + 1;
123
124         /* If the end chunk is not the last chunk, an extra chunk entry is
125          * needed because we need to know the offset of the chunk after the last
126          * chunk read to figure out the size of the last read chunk. */
127         if (end_chunk != num_chunks - 1)
128                 num_needed_chunks++;
129
130         /* Declare the chunk table.  It will only contain offsets for the chunks
131          * that are actually needed for this read. */
132         u64 chunk_offsets[num_needed_chunks];
133
134         /* Set the implicit offset of the first chunk if it is included in the
135          * needed chunks.
136          *
137          * Note: M$'s documentation includes a picture that shows the first
138          * chunk starting right after the chunk entry table, labeled as offset
139          * 0x10.  However, in the actual file format, the offset is measured
140          * from the end of the chunk entry table, so the first chunk has an
141          * offset of 0. */
142         if (start_chunk == 0)
143                 chunk_offsets[0] = 0;
144
145         /* According to M$'s documentation, if the uncompressed size of
146          * the file is greater than 4 GB, the chunk entries are 8-byte
147          * integers.  Otherwise, they are 4-byte integers. */
148         u64 chunk_entry_size = (resource_uncompressed_size >= (u64)1 << 32) ?
149                                                                         8 : 4;
150
151         /* Size of the full chunk table in the WIM file. */
152         u64 chunk_table_size = chunk_entry_size * num_chunk_entries;
153
154         /* Read the needed chunk offsets from the table in the WIM file. */
155
156         /* Index, in the WIM file, of the first needed entry in the
157          * chunk table. */
158         u64 start_table_idx = (start_chunk == 0) ? 0 : start_chunk - 1;
159
160         /* Number of entries we need to actually read from the chunk
161          * table (excludes the implicit first chunk). */
162         u64 num_needed_chunk_entries = (start_chunk == 0) ?
163                                 num_needed_chunks - 1 : num_needed_chunks;
164
165         /* Skip over unneeded chunk table entries. */
166         u64 file_offset_of_needed_chunk_entries = resource_offset +
167                                 start_table_idx * chunk_entry_size;
168         if (fseeko(fp, file_offset_of_needed_chunk_entries, SEEK_SET) != 0) {
169                 ERROR_WITH_ERRNO("Failed to seek to byte %"PRIu64" to read "
170                                  "chunk table of compressed resource",
171                                  file_offset_of_needed_chunk_entries);
172                 return WIMLIB_ERR_READ;
173         }
174
175         /* Number of bytes we need to read from the chunk table. */
176         size_t size = num_needed_chunk_entries * chunk_entry_size;
177
178         u8 chunk_tab_buf[size];
179
180         if (fread(chunk_tab_buf, 1, size, fp) != size)
181                 goto err;
182
183         /* Now fill in chunk_offsets from the entries we have read in
184          * chunk_tab_buf. */
185
186         u64 *chunk_tab_p = chunk_offsets;
187         if (start_chunk == 0)
188                 chunk_tab_p++;
189
190         if (chunk_entry_size == 4) {
191                 u32 *entries = (u32*)chunk_tab_buf;
192                 while (num_needed_chunk_entries--)
193                         *chunk_tab_p++ = le32_to_cpu(*entries++);
194         } else {
195                 u64 *entries = (u64*)chunk_tab_buf;
196                 while (num_needed_chunk_entries--)
197                         *chunk_tab_p++ = le64_to_cpu(*entries++);
198         }
199
200         /* Done with the chunk table now.  We must now seek to the first chunk
201          * that is needed for the read. */
202
203         u64 file_offset_of_first_needed_chunk = resource_offset +
204                                 chunk_table_size + chunk_offsets[0];
205         if (fseeko(fp, file_offset_of_first_needed_chunk, SEEK_SET) != 0) {
206                 ERROR_WITH_ERRNO("Failed to seek to byte %"PRIu64" to read "
207                                  "first chunk of compressed resource",
208                                  file_offset_of_first_needed_chunk);
209                 return WIMLIB_ERR_READ;
210         }
211
212         /* Pointer to current position in the output buffer for uncompressed
213          * data. */
214         u8 *out_p = (u8*)contents_ret;
215
216         /* Buffer for compressed data.  While most compressed chunks will have a
217          * size much less than WIM_CHUNK_SIZE, WIM_CHUNK_SIZE - 1 is the maximum
218          * size in the worst-case.  This assumption is valid only if chunks that
219          * happen to compress to more than the uncompressed size (i.e. a
220          * sequence of random bytes) are always stored uncompressed. But this seems
221          * to be the case in M$'s WIM files, even though it is undocumented. */
222         u8 compressed_buf[WIM_CHUNK_SIZE - 1];
223
224
225         /* Decompress all the chunks. */
226         for (u64 i = start_chunk; i <= end_chunk; i++) {
227
228                 DEBUG2("Chunk %"PRIu64" (start %"PRIu64", end %"PRIu64").",
229                        i, start_chunk, end_chunk);
230
231                 /* Calculate the sizes of the compressed chunk and of the
232                  * uncompressed chunk. */
233                 unsigned compressed_chunk_size;
234                 unsigned uncompressed_chunk_size;
235                 if (i != num_chunks - 1) {
236                         /* All the chunks except the last one in the resource
237                          * expand to WIM_CHUNK_SIZE uncompressed, and the amount
238                          * of compressed data for the chunk is given by the
239                          * difference of offsets in the chunk offset table. */
240                         compressed_chunk_size = chunk_offsets[i + 1 - start_chunk] -
241                                                 chunk_offsets[i - start_chunk];
242                         uncompressed_chunk_size = WIM_CHUNK_SIZE;
243                 } else {
244                         /* The last compressed chunk consists of the remaining
245                          * bytes in the file resource, and the last uncompressed
246                          * chunk has size equal to however many bytes are left-
247                          * that is, the remainder of the uncompressed size when
248                          * divided by WIM_CHUNK_SIZE.
249                          *
250                          * Note that the resource_compressed_size includes the
251                          * chunk table, so the size of it must be subtracted. */
252                         compressed_chunk_size = resource_compressed_size -
253                                                 chunk_table_size -
254                                                 chunk_offsets[i - start_chunk];
255
256                         uncompressed_chunk_size = resource_uncompressed_size %
257                                                                 WIM_CHUNK_SIZE;
258
259                         /* If the remainder is 0, the last chunk actually
260                          * uncompresses to a full WIM_CHUNK_SIZE bytes. */
261                         if (uncompressed_chunk_size == 0)
262                                 uncompressed_chunk_size = WIM_CHUNK_SIZE;
263                 }
264
265                 DEBUG2("compressed_chunk_size = %u, "
266                        "uncompressed_chunk_size = %u",
267                        compressed_chunk_size, uncompressed_chunk_size);
268
269
270                 /* Figure out how much of this chunk we actually need to read */
271                 u64 start_offset;
272                 if (i == start_chunk)
273                         start_offset = start_chunk_offset;
274                 else
275                         start_offset = 0;
276                 u64 end_offset;
277                 if (i == end_chunk)
278                         end_offset = end_chunk_offset;
279                 else
280                         end_offset = WIM_CHUNK_SIZE - 1;
281
282                 u64 partial_chunk_size = end_offset + 1 - start_offset;
283                 bool is_partial_chunk = (partial_chunk_size !=
284                                                 uncompressed_chunk_size);
285
286                 DEBUG2("start_offset = %u, end_offset = %u", start_offset,
287                                         end_offset);
288                 DEBUG2("partial_chunk_size = %u", partial_chunk_size);
289
290                 /* This is undocumented, but chunks can be uncompressed.  This
291                  * appears to always be the case when the compressed chunk size
292                  * is equal to the uncompressed chunk size. */
293                 if (compressed_chunk_size == uncompressed_chunk_size) {
294                         /* Probably an uncompressed chunk */
295
296                         if (start_offset != 0) {
297                                 if (fseeko(fp, start_offset, SEEK_CUR) != 0) {
298                                         ERROR_WITH_ERRNO("Uncompressed partial "
299                                                          "chunk fseek() error");
300                                         return WIMLIB_ERR_READ;
301                                 }
302                         }
303                         if (fread(out_p, 1, partial_chunk_size, fp) !=
304                                         partial_chunk_size)
305                                 goto err;
306                 } else {
307                         /* Compressed chunk */
308                         int ret;
309
310                         /* Read the compressed data into compressed_buf. */
311                         if (fread(compressed_buf, 1, compressed_chunk_size,
312                                                 fp) != compressed_chunk_size)
313                                 goto err;
314
315                         /* For partial chunks we must buffer the uncompressed
316                          * data because we don't need all of it. */
317                         if (is_partial_chunk) {
318                                 u8 uncompressed_buf[uncompressed_chunk_size];
319
320                                 ret = decompress(compressed_buf,
321                                                 compressed_chunk_size,
322                                                 uncompressed_buf,
323                                                 uncompressed_chunk_size);
324                                 if (ret != 0)
325                                         return WIMLIB_ERR_DECOMPRESSION;
326                                 memcpy(out_p, uncompressed_buf + start_offset,
327                                                 partial_chunk_size);
328                         } else {
329                                 ret = decompress(compressed_buf,
330                                                 compressed_chunk_size,
331                                                 out_p,
332                                                 uncompressed_chunk_size);
333                                 if (ret != 0)
334                                         return WIMLIB_ERR_DECOMPRESSION;
335                         }
336                 }
337
338                 /* Advance the pointer into the uncompressed output data by the
339                  * number of uncompressed bytes that were written.  */
340                 out_p += partial_chunk_size;
341         }
342
343         return 0;
344
345 err:
346         if (feof(fp))
347                 ERROR("Unexpected EOF in compressed file resource");
348         else
349                 ERROR_WITH_ERRNO("Error reading compressed file resource");
350         return WIMLIB_ERR_READ;
351 }
352
353 /*
354  * Reads uncompressed data from an open file stream.
355  */
356 int read_uncompressed_resource(FILE *fp, u64 offset, u64 len,
357                                u8 contents_ret[])
358 {
359         if (fseeko(fp, offset, SEEK_SET) != 0) {
360                 ERROR("Failed to seek to byte %"PRIu64" of input file "
361                       "to read uncompressed resource (len = %"PRIu64")",
362                       offset, len);
363                 return WIMLIB_ERR_READ;
364         }
365         if (fread(contents_ret, 1, len, fp) != len) {
366                 if (feof(fp)) {
367                         ERROR("Unexpected EOF in uncompressed file resource");
368                 } else {
369                         ERROR("Failed to read %"PRIu64" bytes from "
370                               "uncompressed resource at offset %"PRIu64,
371                               len, offset);
372                 }
373                 return WIMLIB_ERR_READ;
374         }
375         return 0;
376 }
377
378
379
380
381 /* Reads the contents of a struct resource_entry, as represented in the on-disk
382  * format, from the memory pointed to by @p, and fills in the fields of @entry.
383  * A pointer to the byte after the memory read at @p is returned. */
384 const u8 *get_resource_entry(const u8 *p, struct resource_entry *entry)
385 {
386         u64 size;
387         u8 flags;
388
389         p = get_u56(p, &size);
390         p = get_u8(p, &flags);
391         entry->size = size;
392         entry->flags = flags;
393
394         /* offset and original_size are truncated to 62 bits to avoid possible
395          * overflows, when converting to a signed 64-bit integer (off_t) or when
396          * adding size or original_size.  This is okay since no one would ever
397          * actually have a WIM bigger than 4611686018427387903 bytes... */
398         p = get_u64(p, &entry->offset);
399         if (entry->offset & 0xc000000000000000ULL) {
400                 WARNING("Truncating offset in resource entry");
401                 entry->offset &= 0x3fffffffffffffffULL;
402         }
403         p = get_u64(p, &entry->original_size);
404         if (entry->original_size & 0xc000000000000000ULL) {
405                 WARNING("Truncating original_size in resource entry");
406                 entry->original_size &= 0x3fffffffffffffffULL;
407         }
408         return p;
409 }
410
411 /* Copies the struct resource_entry @entry to the memory pointed to by @p in the
412  * on-disk format.  A pointer to the byte after the memory written at @p is
413  * returned. */
414 u8 *put_resource_entry(u8 *p, const struct resource_entry *entry)
415 {
416         p = put_u56(p, entry->size);
417         p = put_u8(p, entry->flags);
418         p = put_u64(p, entry->offset);
419         p = put_u64(p, entry->original_size);
420         return p;
421 }
422
423 #ifdef WITH_FUSE
424 static FILE *wim_get_fp(WIMStruct *w)
425 {
426         pthread_mutex_lock(&w->fp_tab_mutex);
427         FILE *fp;
428
429         wimlib_assert(w->filename != NULL);
430
431         for (size_t i = 0; i < w->num_allocated_fps; i++) {
432                 if (w->fp_tab[i]) {
433                         fp = w->fp_tab[i];
434                         w->fp_tab[i] = NULL;
435                         goto out;
436                 }
437         }
438         DEBUG("Opening extra file descriptor to `%s'", w->filename);
439         fp = fopen(w->filename, "rb");
440         if (!fp)
441                 ERROR_WITH_ERRNO("Failed to open `%s'", w->filename);
442 out:
443         pthread_mutex_unlock(&w->fp_tab_mutex);
444         return fp;
445 }
446
447 static int wim_release_fp(WIMStruct *w, FILE *fp)
448 {
449         int ret = 0;
450         FILE **fp_tab;
451
452         pthread_mutex_lock(&w->fp_tab_mutex);
453
454         for (size_t i = 0; i < w->num_allocated_fps; i++) {
455                 if (w->fp_tab[i] == NULL) {
456                         w->fp_tab[i] = fp;
457                         goto out;
458                 }
459         }
460
461         fp_tab = REALLOC(w->fp_tab, sizeof(FILE*) * (w->num_allocated_fps + 4));
462         if (!fp_tab) {
463                 ret = WIMLIB_ERR_NOMEM;
464                 goto out;
465         }
466         w->fp_tab = fp_tab;
467         memset(&w->fp_tab[w->num_allocated_fps], 0, 4 * sizeof(FILE*));
468         w->fp_tab[w->num_allocated_fps] = fp;
469         w->num_allocated_fps += 4;
470 out:
471         pthread_mutex_unlock(&w->fp_tab_mutex);
472         return ret;
473 }
474 #endif
475
476 /*
477  * Reads some data from the resource corresponding to a WIM lookup table entry.
478  *
479  * @lte:        The WIM lookup table entry for the resource.
480  * @buf:        Buffer into which to write the data.
481  * @size:       Number of bytes to read.
482  * @offset:     Offset at which to start reading the resource.
483  *
484  * Returns zero on success, nonzero on failure.
485  */
486 int read_wim_resource(const struct lookup_table_entry *lte, u8 buf[],
487                       size_t size, u64 offset, int flags)
488 {
489         int ctype;
490         int ret = 0;
491         FILE *fp;
492
493         /* We shouldn't be allowing read over-runs in any part of the library.
494          * */
495         if (flags & WIMLIB_RESOURCE_FLAG_RAW)
496                 wimlib_assert(offset + size <= lte->resource_entry.size);
497         else
498                 wimlib_assert(offset + size <= lte->resource_entry.original_size);
499
500         switch (lte->resource_location) {
501         case RESOURCE_IN_WIM:
502                 /* The resource is in a WIM file, and its WIMStruct is given by
503                  * the lte->wim member.  The resource may be either compressed
504                  * or uncompressed. */
505                 wimlib_assert(lte->wim != NULL);
506
507                 #ifdef WITH_FUSE
508                 if (flags & WIMLIB_RESOURCE_FLAG_MULTITHREADED) {
509                         fp = wim_get_fp(lte->wim);
510                         if (!fp)
511                                 return WIMLIB_ERR_OPEN;
512                 } else
513                 #endif
514                 {
515                         wimlib_assert(!(flags & WIMLIB_RESOURCE_FLAG_MULTITHREADED));
516                         wimlib_assert(lte->wim->fp != NULL);
517                         fp = lte->wim->fp;
518                 }
519
520                 ctype = wim_resource_compression_type(lte);
521
522                 wimlib_assert(ctype != WIMLIB_COMPRESSION_TYPE_NONE ||
523                               (lte->resource_entry.original_size ==
524                                lte->resource_entry.size));
525
526                 if ((flags & WIMLIB_RESOURCE_FLAG_RAW)
527                     || ctype == WIMLIB_COMPRESSION_TYPE_NONE)
528                         ret = read_uncompressed_resource(fp,
529                                                          lte->resource_entry.offset + offset,
530                                                          size, buf);
531                 else
532                         ret = read_compressed_resource(fp,
533                                                        lte->resource_entry.size,
534                                                        lte->resource_entry.original_size,
535                                                        lte->resource_entry.offset,
536                                                        ctype, size, offset, buf);
537         #ifdef WITH_FUSE
538                 if (flags & WIMLIB_RESOURCE_FLAG_MULTITHREADED) {
539                         int ret2 = wim_release_fp(lte->wim, fp);
540                         if (ret == 0)
541                                 ret = ret2;
542                 }
543         #endif
544                 break;
545         case RESOURCE_IN_STAGING_FILE:
546         case RESOURCE_IN_FILE_ON_DISK:
547                 /* The resource is in some file on the external filesystem and
548                  * needs to be read uncompressed */
549                 wimlib_assert(lte->file_on_disk);
550                 wimlib_assert(&lte->file_on_disk == &lte->staging_file_name);
551                 /* Use existing file pointer if available; otherwise open one
552                  * temporarily */
553                 if (lte->file_on_disk_fp) {
554                         fp = lte->file_on_disk_fp;
555                 } else {
556                         fp = fopen(lte->file_on_disk, "rb");
557                         if (!fp) {
558                                 ERROR_WITH_ERRNO("Failed to open the file "
559                                                  "`%s'", lte->file_on_disk);
560                                 ret = WIMLIB_ERR_OPEN;
561                                 break;
562                         }
563                 }
564                 ret = read_uncompressed_resource(fp, offset, size, buf);
565                 if (fp != lte->file_on_disk_fp)
566                         fclose(fp);
567                 break;
568         case RESOURCE_IN_ATTACHED_BUFFER:
569                 /* The resource is directly attached uncompressed in an
570                  * in-memory buffer. */
571                 wimlib_assert(lte->attached_buffer != NULL);
572                 memcpy(buf, lte->attached_buffer + offset, size);
573                 break;
574 #ifdef WITH_NTFS_3G
575         case RESOURCE_IN_NTFS_VOLUME:
576                 wimlib_assert(lte->ntfs_loc != NULL);
577                 wimlib_assert(lte->attr != NULL);
578                 if (lte->ntfs_loc->is_reparse_point)
579                         offset += 8;
580                 if (ntfs_attr_pread(lte->attr, offset, size, buf) != size) {
581                         ERROR_WITH_ERRNO("Error reading NTFS attribute "
582                                          "at `%s'",
583                                          lte->ntfs_loc->path_utf8);
584                         ret = WIMLIB_ERR_NTFS_3G;
585                 }
586                 break;
587 #endif
588         default:
589                 wimlib_assert(0);
590                 ret = -1;
591                 break;
592         }
593         return ret;
594 }
595
596 /*
597  * Reads all the data from the resource corresponding to a WIM lookup table
598  * entry.
599  *
600  * @lte:        The WIM lookup table entry for the resource.
601  * @buf:        Buffer into which to write the data.  It must be at least
602  *              wim_resource_size(lte) bytes long.
603  *
604  * Returns 0 on success; nonzero on failure.
605  */
606 int read_full_wim_resource(const struct lookup_table_entry *lte, u8 buf[],
607                            int flags)
608 {
609         return read_wim_resource(lte, buf, wim_resource_size(lte), 0, flags);
610 }
611
612 /*
613  * Extracts the first @size bytes of the WIM resource specified by @lte to the
614  * open file descriptor @fd.
615  *
616  * Returns 0 on success; nonzero on failure.
617  */
618 int extract_wim_resource_to_fd(const struct lookup_table_entry *lte, int fd,
619                                u64 size)
620 {
621         u64 bytes_remaining = size;
622         u8 buf[min(WIM_CHUNK_SIZE, bytes_remaining)];
623         u64 offset = 0;
624         int ret = 0;
625         u8 hash[SHA1_HASH_SIZE];
626
627         SHA_CTX ctx;
628         sha1_init(&ctx);
629
630         while (bytes_remaining) {
631                 u64 to_read = min(bytes_remaining, WIM_CHUNK_SIZE);
632                 ret = read_wim_resource(lte, buf, to_read, offset, 0);
633                 if (ret != 0)
634                         break;
635                 sha1_update(&ctx, buf, to_read);
636                 if (full_write(fd, buf, to_read) < to_read) {
637                         ERROR_WITH_ERRNO("Error extracting WIM resource");
638                         return WIMLIB_ERR_WRITE;
639                 }
640                 bytes_remaining -= to_read;
641                 offset += to_read;
642         }
643         sha1_final(hash, &ctx);
644         if (!hashes_equal(hash, lte->hash)) {
645                 ERROR("Invalid checksum on a WIM resource "
646                       "(detected when extracting to external file)");
647                 ERROR("The following WIM resource is invalid:");
648                 print_lookup_table_entry(lte);
649                 return WIMLIB_ERR_INVALID_RESOURCE_HASH;
650         }
651         return 0;
652 }
653
654 /*
655  * Extracts the WIM resource specified by @lte to the open file descriptor @fd.
656  *
657  * Returns 0 on success; nonzero on failure.
658  */
659 int extract_full_wim_resource_to_fd(const struct lookup_table_entry *lte, int fd)
660 {
661         return extract_wim_resource_to_fd(lte, fd, wim_resource_size(lte));
662 }
663
664 /*
665  * Copies the file resource specified by the lookup table entry @lte from the
666  * input WIM to the output WIM that has its FILE * given by
667  * ((WIMStruct*)wim)->out_fp.
668  *
669  * The output_resource_entry, out_refcnt, and part_number fields of @lte are
670  * updated.
671  */
672 int copy_resource(struct lookup_table_entry *lte, void *wim)
673 {
674         WIMStruct *w = wim;
675         int ret;
676
677         if ((lte->resource_entry.flags & WIM_RESHDR_FLAG_METADATA) &&
678             !w->write_metadata)
679                 return 0;
680
681         ret = write_wim_resource(lte, w->out_fp,
682                                  wim_resource_compression_type(lte),
683                                  &lte->output_resource_entry, 0);
684         if (ret != 0)
685                 return ret;
686         lte->out_refcnt = lte->refcnt;
687         lte->part_number = w->hdr.part_number;
688         return 0;
689 }