]> wimlib.net Git - wimlib/blob - src/write.c
Write uncompressible streams uncompressed in multithreaded code path
[wimlib] / src / write.c
1 /*
2  * write.c
3  *
4  * Support for writing WIM files; write a WIM file, overwrite a WIM file, write
5  * compressed file resources, etc.
6  */
7
8 /*
9  * Copyright (C) 2012, 2013 Eric Biggers
10  *
11  * This file is part of wimlib, a library for working with WIM files.
12  *
13  * wimlib is free software; you can redistribute it and/or modify it under the
14  * terms of the GNU General Public License as published by the Free
15  * Software Foundation; either version 3 of the License, or (at your option)
16  * any later version.
17  *
18  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
19  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20  * A PARTICULAR PURPOSE. See the GNU General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with wimlib; if not, see http://www.gnu.org/licenses/.
25  */
26
27 #include "config.h"
28
29 #if defined(HAVE_SYS_FILE_H) && defined(HAVE_FLOCK)
30 /* On BSD, this should be included before "list.h" so that "list.h" can
31  * overwrite the LIST_HEAD macro. */
32 #  include <sys/file.h>
33 #endif
34
35 #ifdef __WIN32__
36 #  include "win32.h"
37 #endif
38
39 #include "list.h"
40 #include "wimlib_internal.h"
41 #include "buffer_io.h"
42 #include "dentry.h"
43 #include "lookup_table.h"
44 #include "xml.h"
45
46 #ifdef ENABLE_MULTITHREADED_COMPRESSION
47 #  include <pthread.h>
48 #endif
49
50 #include <unistd.h>
51 #include <errno.h>
52
53 #ifdef WITH_NTFS_3G
54 #  include <time.h>
55 #  include <ntfs-3g/attrib.h>
56 #  include <ntfs-3g/inode.h>
57 #  include <ntfs-3g/dir.h>
58 #endif
59
60 #ifdef HAVE_ALLOCA_H
61 #  include <alloca.h>
62 #else
63 #  include <stdlib.h>
64 #endif
65
66 #include <limits.h>
67
68 #if defined(__WIN32__) && !defined(INVALID_HANDLE_VALUE)
69 #  define INVALID_HANDLE_VALUE ((HANDLE)(-1))
70 #endif
71
72 /* Chunk table that's located at the beginning of each compressed resource in
73  * the WIM.  (This is not the on-disk format; the on-disk format just has an
74  * array of offsets.) */
75 struct chunk_table {
76         off_t file_offset;
77         u64 num_chunks;
78         u64 original_resource_size;
79         u64 bytes_per_chunk_entry;
80         u64 table_disk_size;
81         u64 cur_offset;
82         u64 *cur_offset_p;
83         u64 offsets[0];
84 };
85
86 /*
87  * Allocates and initializes a chunk table, and reserves space for it in the
88  * output file.
89  */
90 static int
91 begin_wim_resource_chunk_tab(const struct wim_lookup_table_entry *lte,
92                              FILE *out_fp,
93                              off_t file_offset,
94                              struct chunk_table **chunk_tab_ret)
95 {
96         u64 size = wim_resource_size(lte);
97         u64 num_chunks = (size + WIM_CHUNK_SIZE - 1) / WIM_CHUNK_SIZE;
98         size_t alloc_size = sizeof(struct chunk_table) + num_chunks * sizeof(u64);
99         struct chunk_table *chunk_tab = CALLOC(1, alloc_size);
100
101         if (!chunk_tab) {
102                 ERROR("Failed to allocate chunk table for %"PRIu64" byte "
103                       "resource", size);
104                 return WIMLIB_ERR_NOMEM;
105         }
106         chunk_tab->file_offset = file_offset;
107         chunk_tab->num_chunks = num_chunks;
108         chunk_tab->original_resource_size = size;
109         chunk_tab->bytes_per_chunk_entry = (size >= (1ULL << 32)) ? 8 : 4;
110         chunk_tab->table_disk_size = chunk_tab->bytes_per_chunk_entry *
111                                      (num_chunks - 1);
112         chunk_tab->cur_offset = 0;
113         chunk_tab->cur_offset_p = chunk_tab->offsets;
114
115         if (fwrite(chunk_tab, 1, chunk_tab->table_disk_size, out_fp) !=
116                    chunk_tab->table_disk_size) {
117                 ERROR_WITH_ERRNO("Failed to write chunk table in compressed "
118                                  "file resource");
119                 FREE(chunk_tab);
120                 return WIMLIB_ERR_WRITE;
121         }
122         *chunk_tab_ret = chunk_tab;
123         return 0;
124 }
125
126 /*
127  * compress_func_t- Pointer to a function to compresses a chunk
128  *                  of a WIM resource.  This may be either
129  *                  wimlib_xpress_compress() (xpress-compress.c) or
130  *                  wimlib_lzx_compress() (lzx-compress.c).
131  *
132  * @chunk:        Uncompressed data of the chunk.
133  * @chunk_size:   Size of the uncompressed chunk, in bytes.
134  * @out:          Pointer to output buffer of size at least (@chunk_size - 1) bytes.
135  *
136  * Returns the size of the compressed data written to @out in bytes, or 0 if the
137  * data could not be compressed to (@chunk_size - 1) bytes or fewer.
138  *
139  * As a special requirement, the compression code is optimized for the WIM
140  * format and therefore requires (@chunk_size <= 32768).
141  *
142  * As another special requirement, the compression code will read up to 8 bytes
143  * off the end of the @chunk array for performance reasons.  The values of these
144  * bytes will not affect the output of the compression, but the calling code
145  * must make sure that the buffer holding the uncompressed chunk is actually at
146  * least (@chunk_size + 8) bytes, or at least that these extra bytes are in
147  * mapped memory that will not cause a memory access violation if accessed.
148  */
149 typedef unsigned (*compress_func_t)(const void *chunk, unsigned chunk_size,
150                                     void *out);
151
152 static compress_func_t
153 get_compress_func(int out_ctype)
154 {
155         if (out_ctype == WIMLIB_COMPRESSION_TYPE_LZX)
156                 return wimlib_lzx_compress;
157         else
158                 return wimlib_xpress_compress;
159 }
160
161 /*
162  * Writes a chunk of a WIM resource to an output file.
163  *
164  * @chunk:        Uncompressed data of the chunk.
165  * @chunk_size:   Size of the chunk (<= WIM_CHUNK_SIZE)
166  * @out_fp:       FILE * to write the chunk to.
167  * @compress:     Compression function to use (NULL if writing uncompressed
168  *                      data).
169  * @chunk_tab:    Pointer to chunk table being created.  It is updated with the
170  *                      offset of the chunk we write.
171  *
172  * Returns 0 on success; nonzero on failure.
173  */
174 static int
175 write_wim_resource_chunk(const void *chunk, unsigned chunk_size,
176                          FILE *out_fp, compress_func_t compress,
177                          struct chunk_table *chunk_tab)
178 {
179         const u8 *out_chunk;
180         unsigned out_chunk_size;
181         if (compress) {
182                 u8 *compressed_chunk = alloca(chunk_size);
183
184                 out_chunk_size = compress(chunk, chunk_size, compressed_chunk);
185                 if (out_chunk_size) {
186                         /* Write compressed */
187                         out_chunk = compressed_chunk;
188                 } else {
189                         /* Write uncompressed */
190                         out_chunk = chunk;
191                         out_chunk_size = chunk_size;
192                 }
193                 *chunk_tab->cur_offset_p++ = chunk_tab->cur_offset;
194                 chunk_tab->cur_offset += out_chunk_size;
195         } else {
196                 /* Write uncompressed */
197                 out_chunk = chunk;
198                 out_chunk_size = chunk_size;
199         }
200         if (fwrite(out_chunk, 1, out_chunk_size, out_fp) != out_chunk_size) {
201                 ERROR_WITH_ERRNO("Failed to write WIM resource chunk");
202                 return WIMLIB_ERR_WRITE;
203         }
204         return 0;
205 }
206
207 /*
208  * Finishes a WIM chunk table and writes it to the output file at the correct
209  * offset.
210  *
211  * The final size of the full compressed resource is returned in the
212  * @compressed_size_p.
213  */
214 static int
215 finish_wim_resource_chunk_tab(struct chunk_table *chunk_tab,
216                               FILE *out_fp, u64 *compressed_size_p)
217 {
218         size_t bytes_written;
219         if (fseeko(out_fp, chunk_tab->file_offset, SEEK_SET) != 0) {
220                 ERROR_WITH_ERRNO("Failed to seek to byte %"PRIu64" of output "
221                                  "WIM file", chunk_tab->file_offset);
222                 return WIMLIB_ERR_WRITE;
223         }
224
225         if (chunk_tab->bytes_per_chunk_entry == 8) {
226                 array_cpu_to_le64(chunk_tab->offsets, chunk_tab->num_chunks);
227         } else {
228                 for (u64 i = 0; i < chunk_tab->num_chunks; i++)
229                         ((u32*)chunk_tab->offsets)[i] =
230                                 cpu_to_le32(chunk_tab->offsets[i]);
231         }
232         bytes_written = fwrite((u8*)chunk_tab->offsets +
233                                         chunk_tab->bytes_per_chunk_entry,
234                                1, chunk_tab->table_disk_size, out_fp);
235         if (bytes_written != chunk_tab->table_disk_size) {
236                 ERROR_WITH_ERRNO("Failed to write chunk table in compressed "
237                                  "file resource");
238                 return WIMLIB_ERR_WRITE;
239         }
240         if (fseeko(out_fp, 0, SEEK_END) != 0) {
241                 ERROR_WITH_ERRNO("Failed to seek to end of output WIM file");
242                 return WIMLIB_ERR_WRITE;
243         }
244         *compressed_size_p = chunk_tab->cur_offset + chunk_tab->table_disk_size;
245         return 0;
246 }
247
248 static int
249 fflush_and_ftruncate(FILE *out_fp, off_t offset)
250 {
251         if (fseeko(out_fp, offset, SEEK_SET) ||
252             fflush(out_fp) ||
253             ftruncate(fileno(out_fp), offset))
254         {
255                 ERROR_WITH_ERRNO("Failed to flush and/or truncate "
256                                  "output WIM file");
257                 return WIMLIB_ERR_WRITE;
258         } else {
259                 return 0;
260         }
261 }
262
263 static int
264 finalize_and_check_sha1(SHA_CTX *sha_ctx, struct wim_lookup_table_entry *lte)
265 {
266         u8 md[SHA1_HASH_SIZE];
267         sha1_final(md, sha_ctx);
268         if (lte->unhashed) {
269                 copy_hash(lte->hash, md);
270         } else if (!hashes_equal(md, lte->hash)) {
271                 ERROR("WIM resource has incorrect hash!");
272                 if (lte_filename_valid(lte)) {
273                         ERROR("We were reading it from \"%"TS"\"; maybe "
274                               "it changed while we were reading it.",
275                               lte->file_on_disk);
276                 }
277                 return WIMLIB_ERR_INVALID_RESOURCE_HASH;
278         }
279         return 0;
280 }
281
282
283 struct write_resource_ctx {
284         compress_func_t compress;
285         struct chunk_table *chunk_tab;
286         FILE *out_fp;
287         SHA_CTX sha_ctx;
288         bool doing_sha;
289 };
290
291 static int
292 write_resource_cb(const void *chunk, size_t chunk_size, void *_ctx)
293 {
294         struct write_resource_ctx *ctx = _ctx;
295
296         if (ctx->doing_sha)
297                 sha1_update(&ctx->sha_ctx, chunk, chunk_size);
298
299         if (ctx->compress) {
300                 return write_wim_resource_chunk(chunk, chunk_size,
301                                                 ctx->out_fp, ctx->compress,
302                                                 ctx->chunk_tab);
303         } else {
304                 if (fwrite(chunk, 1, chunk_size, ctx->out_fp) != chunk_size) {
305                         ERROR_WITH_ERRNO("Error writing to output WIM");
306                         return WIMLIB_ERR_WRITE;
307                 } else {
308                         return 0;
309                 }
310         }
311 }
312
313 /*
314  * Write a resource to an output WIM.
315  *
316  * @lte:  Lookup table entry for the resource, which could be in another WIM,
317  *        in an external file, or in another location.
318  *
319  * @out_fp:  FILE * opened to the output WIM.
320  *
321  * @out_ctype:  One of the WIMLIB_COMPRESSION_TYPE_* constants to indicate
322  *              which compression algorithm to use.
323  *
324  * @out_res_entry:  On success, this is filled in with the offset, flags,
325  *                  compressed size, and uncompressed size of the resource
326  *                  in the output WIM.
327  *
328  * @flags:  WIMLIB_RESOURCE_FLAG_RECOMPRESS to force data to be recompressed
329  *          even if it could otherwise be copied directly from the input.
330  *
331  * Additional notes:  The SHA1 message digest of the uncompressed data is
332  * calculated (except when doing a raw copy --- see below).  If the @unhashed
333  * flag is set on the lookup table entry, this message digest is simply copied
334  * to it; otherwise, the message digest is compared with the existing one, and
335  * the function will fail if they do not match.
336  */
337 int
338 write_wim_resource(struct wim_lookup_table_entry *lte,
339                    FILE *out_fp, int out_ctype,
340                    struct resource_entry *out_res_entry,
341                    int flags)
342 {
343         struct write_resource_ctx write_ctx;
344         u64 read_size;
345         u64 new_size;
346         off_t offset;
347         int ret;
348
349         flags &= ~WIMLIB_RESOURCE_FLAG_RECOMPRESS;
350
351         /* Get current position in output WIM */
352         offset = ftello(out_fp);
353         if (offset == -1) {
354                 ERROR_WITH_ERRNO("Can't get position in output WIM");
355                 return WIMLIB_ERR_WRITE;
356         }
357
358         /* If we are not forcing the data to be recompressed, and the input
359          * resource is located in a WIM with the same compression type as that
360          * desired other than no compression, we can simply copy the compressed
361          * data without recompressing it.  This also means we must skip
362          * calculating the SHA1, as we never will see the uncompressed data. */
363         if (!(flags & WIMLIB_RESOURCE_FLAG_RECOMPRESS) &&
364             lte->resource_location == RESOURCE_IN_WIM &&
365             out_ctype != WIMLIB_COMPRESSION_TYPE_NONE &&
366             wimlib_get_compression_type(lte->wim) == out_ctype)
367         {
368                 flags |= WIMLIB_RESOURCE_FLAG_RAW;
369                 write_ctx.doing_sha = false;
370                 read_size = lte->resource_entry.size;
371         } else {
372                 write_ctx.doing_sha = true;
373                 sha1_init(&write_ctx.sha_ctx);
374                 read_size = lte->resource_entry.original_size;
375         }
376
377         /* Initialize the chunk table and set the compression function if
378          * compressing the resource. */
379         if (out_ctype == WIMLIB_COMPRESSION_TYPE_NONE ||
380             (flags & WIMLIB_RESOURCE_FLAG_RAW)) {
381                 write_ctx.compress = NULL;
382                 write_ctx.chunk_tab = NULL;
383         } else {
384                 write_ctx.compress = get_compress_func(out_ctype);
385                 ret = begin_wim_resource_chunk_tab(lte, out_fp,
386                                                    offset,
387                                                    &write_ctx.chunk_tab);
388                 if (ret)
389                         return ret;
390         }
391
392         /* Write the entire resource by reading the entire resource and feeding
393          * the data through the write_resource_cb function. */
394         write_ctx.out_fp = out_fp;
395 try_write_again:
396         ret = read_resource_prefix(lte, read_size,
397                                    write_resource_cb, &write_ctx, flags);
398         if (ret)
399                 goto out_free_chunk_tab;
400
401         /* Verify SHA1 message digest of the resource, or set the hash for the
402          * first time. */
403         if (write_ctx.doing_sha) {
404                 ret = finalize_and_check_sha1(&write_ctx.sha_ctx, lte);
405                 if (ret)
406                         goto out_free_chunk_tab;
407         }
408
409         out_res_entry->flags = lte->resource_entry.flags;
410         out_res_entry->original_size = wim_resource_size(lte);
411         out_res_entry->offset = offset;
412         if (flags & WIMLIB_RESOURCE_FLAG_RAW) {
413                 /* Doing a raw write:  The new compressed size is the same as
414                  * the compressed size in the other WIM. */
415                 new_size = lte->resource_entry.size;
416         } else if (out_ctype == WIMLIB_COMPRESSION_TYPE_NONE) {
417                 /* Using WIMLIB_COMPRESSION_TYPE_NONE:  The new compressed size
418                  * is the original size. */
419                 new_size = lte->resource_entry.original_size;
420                 out_res_entry->flags &= ~WIM_RESHDR_FLAG_COMPRESSED;
421         } else {
422                 /* Using a different compression type:  Call
423                  * finish_wim_resource_chunk_tab() and it will provide the new
424                  * compressed size. */
425                 ret = finish_wim_resource_chunk_tab(write_ctx.chunk_tab, out_fp,
426                                                     &new_size);
427                 if (ret)
428                         goto out_free_chunk_tab;
429                 if (new_size >= wim_resource_size(lte)) {
430                         /* Oops!  We compressed the resource to larger than the original
431                          * size.  Write the resource uncompressed instead. */
432                         DEBUG("Compressed %"PRIu64" => %"PRIu64" bytes; "
433                               "writing uncompressed instead",
434                               wim_resource_size(lte), new_size);
435                         ret = fflush_and_ftruncate(out_fp, offset);
436                         if (ret)
437                                 goto out_free_chunk_tab;
438                         write_ctx.compress = NULL;
439                         write_ctx.doing_sha = false;
440                         out_ctype = WIMLIB_COMPRESSION_TYPE_NONE;
441                         goto try_write_again;
442                 }
443                 out_res_entry->flags |= WIM_RESHDR_FLAG_COMPRESSED;
444         }
445         out_res_entry->size = new_size;
446         ret = 0;
447 out_free_chunk_tab:
448         FREE(write_ctx.chunk_tab);
449         return ret;
450 }
451
452 #ifdef ENABLE_MULTITHREADED_COMPRESSION
453
454 /* Blocking shared queue (solves the producer-consumer problem) */
455 struct shared_queue {
456         unsigned size;
457         unsigned front;
458         unsigned back;
459         unsigned filled_slots;
460         void **array;
461         pthread_mutex_t lock;
462         pthread_cond_t msg_avail_cond;
463         pthread_cond_t space_avail_cond;
464 };
465
466 static int
467 shared_queue_init(struct shared_queue *q, unsigned size)
468 {
469         wimlib_assert(size != 0);
470         q->array = CALLOC(sizeof(q->array[0]), size);
471         if (!q->array)
472                 goto err;
473         q->filled_slots = 0;
474         q->front = 0;
475         q->back = size - 1;
476         q->size = size;
477         if (pthread_mutex_init(&q->lock, NULL)) {
478                 ERROR_WITH_ERRNO("Failed to initialize mutex");
479                 goto err;
480         }
481         if (pthread_cond_init(&q->msg_avail_cond, NULL)) {
482                 ERROR_WITH_ERRNO("Failed to initialize condition variable");
483                 goto err_destroy_lock;
484         }
485         if (pthread_cond_init(&q->space_avail_cond, NULL)) {
486                 ERROR_WITH_ERRNO("Failed to initialize condition variable");
487                 goto err_destroy_msg_avail_cond;
488         }
489         return 0;
490 err_destroy_msg_avail_cond:
491         pthread_cond_destroy(&q->msg_avail_cond);
492 err_destroy_lock:
493         pthread_mutex_destroy(&q->lock);
494 err:
495         return WIMLIB_ERR_NOMEM;
496 }
497
498 static void
499 shared_queue_destroy(struct shared_queue *q)
500 {
501         FREE(q->array);
502         pthread_mutex_destroy(&q->lock);
503         pthread_cond_destroy(&q->msg_avail_cond);
504         pthread_cond_destroy(&q->space_avail_cond);
505 }
506
507 static void
508 shared_queue_put(struct shared_queue *q, void *obj)
509 {
510         pthread_mutex_lock(&q->lock);
511         while (q->filled_slots == q->size)
512                 pthread_cond_wait(&q->space_avail_cond, &q->lock);
513
514         q->back = (q->back + 1) % q->size;
515         q->array[q->back] = obj;
516         q->filled_slots++;
517
518         pthread_cond_broadcast(&q->msg_avail_cond);
519         pthread_mutex_unlock(&q->lock);
520 }
521
522 static void *
523 shared_queue_get(struct shared_queue *q)
524 {
525         void *obj;
526
527         pthread_mutex_lock(&q->lock);
528         while (q->filled_slots == 0)
529                 pthread_cond_wait(&q->msg_avail_cond, &q->lock);
530
531         obj = q->array[q->front];
532         q->array[q->front] = NULL;
533         q->front = (q->front + 1) % q->size;
534         q->filled_slots--;
535
536         pthread_cond_broadcast(&q->space_avail_cond);
537         pthread_mutex_unlock(&q->lock);
538         return obj;
539 }
540
541 struct compressor_thread_params {
542         struct shared_queue *res_to_compress_queue;
543         struct shared_queue *compressed_res_queue;
544         compress_func_t compress;
545 };
546
547 #define MAX_CHUNKS_PER_MSG 2
548
549 struct message {
550         struct wim_lookup_table_entry *lte;
551         u8 *uncompressed_chunks[MAX_CHUNKS_PER_MSG];
552         u8 *out_compressed_chunks[MAX_CHUNKS_PER_MSG];
553         u8 *compressed_chunks[MAX_CHUNKS_PER_MSG];
554         unsigned uncompressed_chunk_sizes[MAX_CHUNKS_PER_MSG];
555         unsigned compressed_chunk_sizes[MAX_CHUNKS_PER_MSG];
556         unsigned num_chunks;
557         struct list_head list;
558         bool complete;
559         u64 begin_chunk;
560 };
561
562 static void
563 compress_chunks(struct message *msg, compress_func_t compress)
564 {
565         for (unsigned i = 0; i < msg->num_chunks; i++) {
566                 unsigned len = compress(msg->uncompressed_chunks[i],
567                                         msg->uncompressed_chunk_sizes[i],
568                                         msg->compressed_chunks[i]);
569                 if (len) {
570                         /* To be written compressed */
571                         msg->out_compressed_chunks[i] = msg->compressed_chunks[i];
572                         msg->compressed_chunk_sizes[i] = len;
573                 } else {
574                         /* To be written uncompressed */
575                         msg->out_compressed_chunks[i] = msg->uncompressed_chunks[i];
576                         msg->compressed_chunk_sizes[i] = msg->uncompressed_chunk_sizes[i];
577
578                 }
579         }
580 }
581
582 /* Compressor thread routine.  This is a lot simpler than the main thread
583  * routine: just repeatedly get a group of chunks from the
584  * res_to_compress_queue, compress them, and put them in the
585  * compressed_res_queue.  A NULL pointer indicates that the thread should stop.
586  * */
587 static void *
588 compressor_thread_proc(void *arg)
589 {
590         struct compressor_thread_params *params = arg;
591         struct shared_queue *res_to_compress_queue = params->res_to_compress_queue;
592         struct shared_queue *compressed_res_queue = params->compressed_res_queue;
593         compress_func_t compress = params->compress;
594         struct message *msg;
595
596         DEBUG("Compressor thread ready");
597         while ((msg = shared_queue_get(res_to_compress_queue)) != NULL) {
598                 compress_chunks(msg, compress);
599                 shared_queue_put(compressed_res_queue, msg);
600         }
601         DEBUG("Compressor thread terminating");
602         return NULL;
603 }
604 #endif /* ENABLE_MULTITHREADED_COMPRESSION */
605
606 static void
607 do_write_streams_progress(union wimlib_progress_info *progress,
608                           wimlib_progress_func_t progress_func,
609                           uint64_t size_added)
610 {
611         progress->write_streams.completed_bytes += size_added;
612         progress->write_streams.completed_streams++;
613         if (progress_func &&
614             progress->write_streams.completed_bytes >= progress->write_streams._private)
615         {
616                 progress_func(WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
617                               progress);
618                 if (progress->write_streams._private == progress->write_streams.total_bytes) {
619                         progress->write_streams._private = ~0;
620                 } else {
621                         progress->write_streams._private =
622                                 min(progress->write_streams.total_bytes,
623                                     progress->write_streams.completed_bytes +
624                                         progress->write_streams.total_bytes / 100);
625                 }
626         }
627 }
628
629 struct serial_write_stream_ctx {
630         FILE *out_fp;
631         int out_ctype;
632         int write_resource_flags;
633 };
634
635 static int
636 serial_write_stream(struct wim_lookup_table_entry *lte, void *_ctx)
637 {
638         struct serial_write_stream_ctx *ctx = _ctx;
639         return write_wim_resource(lte, ctx->out_fp,
640                                   ctx->out_ctype, &lte->output_resource_entry,
641                                   ctx->write_resource_flags);
642 }
643
644 /* Write a list of streams, taking into account that some streams may be
645  * duplicates that are checksummed and discarded on the fly, and also delegating
646  * the actual writing of a stream to a function @write_stream_cb, which is
647  * passed the context @write_stream_ctx. */
648 static int
649 do_write_stream_list(struct list_head *stream_list,
650                      struct wim_lookup_table *lookup_table,
651                      int (*write_stream_cb)(struct wim_lookup_table_entry *, void *),
652                      void *write_stream_ctx,
653                      wimlib_progress_func_t progress_func,
654                      union wimlib_progress_info *progress)
655 {
656         int ret = 0;
657         struct wim_lookup_table_entry *lte;
658
659         /* For each stream in @stream_list ... */
660         while (!list_empty(stream_list)) {
661                 lte = container_of(stream_list->next,
662                                    struct wim_lookup_table_entry,
663                                    write_streams_list);
664                 list_del(&lte->write_streams_list);
665                 if (lte->unhashed && !lte->unique_size) {
666                         /* Unhashed stream that shares a size with some other
667                          * stream in the WIM we are writing.  The stream must be
668                          * checksummed to know if we need to write it or not. */
669                         struct wim_lookup_table_entry *tmp;
670                         u32 orig_refcnt = lte->out_refcnt;
671
672                         ret = hash_unhashed_stream(lte, lookup_table, &tmp);
673                         if (ret)
674                                 break;
675                         if (tmp != lte) {
676                                 lte = tmp;
677                                 /* We found a duplicate stream. */
678                                 if (orig_refcnt != tmp->out_refcnt) {
679                                         /* We have already written, or are going
680                                          * to write, the duplicate stream.  So
681                                          * just skip to the next stream. */
682                                         DEBUG("Discarding duplicate stream of length %"PRIu64,
683                                               wim_resource_size(lte));
684                                         goto skip_to_progress;
685                                 }
686                         }
687                 }
688
689                 /* Here, @lte is either a hashed stream or an unhashed stream
690                  * with a unique size.  In either case we know that the stream
691                  * has to be written.  In either case the SHA1 message digest
692                  * will be calculated over the stream while writing it; however,
693                  * in the former case this is done merely to check the data,
694                  * while in the latter case this is done because we do not have
695                  * the SHA1 message digest yet.  */
696                 wimlib_assert(lte->out_refcnt != 0);
697                 lte->deferred = 0;
698                 ret = (*write_stream_cb)(lte, write_stream_ctx);
699                 if (ret)
700                         break;
701                 /* In parallel mode, some streams are deferred for later,
702                  * serialized processing; ignore them here. */
703                 if (lte->deferred)
704                         continue;
705                 if (lte->unhashed) {
706                         list_del(&lte->unhashed_list);
707                         lookup_table_insert(lookup_table, lte);
708                         lte->unhashed = 0;
709                 }
710         skip_to_progress:
711                 if (progress_func) {
712                         do_write_streams_progress(progress,
713                                                   progress_func,
714                                                   wim_resource_size(lte));
715                 }
716         }
717         return ret;
718 }
719
720 static int
721 do_write_stream_list_serial(struct list_head *stream_list,
722                             struct wim_lookup_table *lookup_table,
723                             FILE *out_fp,
724                             int out_ctype,
725                             int write_resource_flags,
726                             wimlib_progress_func_t progress_func,
727                             union wimlib_progress_info *progress)
728 {
729         struct serial_write_stream_ctx ctx = {
730                 .out_fp = out_fp,
731                 .out_ctype = out_ctype,
732                 .write_resource_flags = write_resource_flags,
733         };
734         return do_write_stream_list(stream_list,
735                                     lookup_table,
736                                     serial_write_stream,
737                                     &ctx,
738                                     progress_func,
739                                     progress);
740 }
741
742 static inline int
743 write_flags_to_resource_flags(int write_flags)
744 {
745         return (write_flags & WIMLIB_WRITE_FLAG_RECOMPRESS) ?
746                         WIMLIB_RESOURCE_FLAG_RECOMPRESS : 0;
747 }
748
749 static int
750 write_stream_list_serial(struct list_head *stream_list,
751                          struct wim_lookup_table *lookup_table,
752                          FILE *out_fp,
753                          int out_ctype,
754                          int write_resource_flags,
755                          wimlib_progress_func_t progress_func,
756                          union wimlib_progress_info *progress)
757 {
758         DEBUG("Writing stream list (serial version)");
759         progress->write_streams.num_threads = 1;
760         if (progress_func)
761                 progress_func(WIMLIB_PROGRESS_MSG_WRITE_STREAMS, progress);
762         return do_write_stream_list_serial(stream_list,
763                                            lookup_table,
764                                            out_fp,
765                                            out_ctype,
766                                            write_resource_flags,
767                                            progress_func,
768                                            progress);
769 }
770
771 #ifdef ENABLE_MULTITHREADED_COMPRESSION
772 static int
773 write_wim_chunks(struct message *msg, FILE *out_fp,
774                  struct chunk_table *chunk_tab)
775 {
776         for (unsigned i = 0; i < msg->num_chunks; i++) {
777                 unsigned chunk_csize = msg->compressed_chunk_sizes[i];
778
779                 if (fwrite(msg->out_compressed_chunks[i], 1, chunk_csize, out_fp)
780                     != chunk_csize)
781                 {
782                         ERROR_WITH_ERRNO("Failed to write WIM chunk");
783                         return WIMLIB_ERR_WRITE;
784                 }
785
786                 *chunk_tab->cur_offset_p++ = chunk_tab->cur_offset;
787                 chunk_tab->cur_offset += chunk_csize;
788         }
789         return 0;
790 }
791
792 struct main_writer_thread_ctx {
793         struct list_head *stream_list;
794         struct wim_lookup_table *lookup_table;
795         FILE *out_fp;
796         int out_ctype;
797         int write_resource_flags;
798         struct shared_queue *res_to_compress_queue;
799         struct shared_queue *compressed_res_queue;
800         size_t num_messages;
801         wimlib_progress_func_t progress_func;
802         union wimlib_progress_info *progress;
803
804         struct list_head available_msgs;
805         struct list_head outstanding_streams;
806         struct list_head serial_streams;
807         size_t num_outstanding_messages;
808
809         SHA_CTX next_sha_ctx;
810         u64 next_chunk;
811         u64 next_num_chunks;
812         struct wim_lookup_table_entry *next_lte;
813
814         struct message *msgs;
815         struct message *next_msg;
816         struct chunk_table *cur_chunk_tab;
817 };
818
819 static int
820 init_message(struct message *msg)
821 {
822         for (size_t i = 0; i < MAX_CHUNKS_PER_MSG; i++) {
823                 msg->compressed_chunks[i] = MALLOC(WIM_CHUNK_SIZE);
824                 msg->uncompressed_chunks[i] = MALLOC(WIM_CHUNK_SIZE);
825                 if (msg->compressed_chunks[i] == NULL ||
826                     msg->uncompressed_chunks[i] == NULL)
827                         return WIMLIB_ERR_NOMEM;
828         }
829         return 0;
830 }
831
832 static void
833 destroy_message(struct message *msg)
834 {
835         for (size_t i = 0; i < MAX_CHUNKS_PER_MSG; i++) {
836                 FREE(msg->compressed_chunks[i]);
837                 FREE(msg->uncompressed_chunks[i]);
838         }
839 }
840
841 static void
842 free_messages(struct message *msgs, size_t num_messages)
843 {
844         if (msgs) {
845                 for (size_t i = 0; i < num_messages; i++)
846                         destroy_message(&msgs[i]);
847                 FREE(msgs);
848         }
849 }
850
851 static struct message *
852 allocate_messages(size_t num_messages)
853 {
854         struct message *msgs;
855
856         msgs = CALLOC(num_messages, sizeof(struct message));
857         if (!msgs)
858                 return NULL;
859         for (size_t i = 0; i < num_messages; i++) {
860                 if (init_message(&msgs[i])) {
861                         free_messages(msgs, num_messages);
862                         return NULL;
863                 }
864         }
865         return msgs;
866 }
867
868 static void
869 main_writer_thread_destroy_ctx(struct main_writer_thread_ctx *ctx)
870 {
871         while (ctx->num_outstanding_messages--)
872                 shared_queue_get(ctx->compressed_res_queue);
873         free_messages(ctx->msgs, ctx->num_messages);
874         FREE(ctx->cur_chunk_tab);
875 }
876
877 static int
878 main_writer_thread_init_ctx(struct main_writer_thread_ctx *ctx)
879 {
880         /* Pre-allocate all the buffers that will be needed to do the chunk
881          * compression. */
882         ctx->msgs = allocate_messages(ctx->num_messages);
883         if (!ctx->msgs)
884                 return WIMLIB_ERR_NOMEM;
885
886         /* Initially, all the messages are available to use. */
887         INIT_LIST_HEAD(&ctx->available_msgs);
888         for (size_t i = 0; i < ctx->num_messages; i++)
889                 list_add_tail(&ctx->msgs[i].list, &ctx->available_msgs);
890
891         /* outstanding_streams is the list of streams that currently have had
892          * chunks sent off for compression.
893          *
894          * The first stream in outstanding_streams is the stream that is
895          * currently being written.
896          *
897          * The last stream in outstanding_streams is the stream that is
898          * currently being read and having chunks fed to the compressor threads.
899          * */
900         INIT_LIST_HEAD(&ctx->outstanding_streams);
901         ctx->num_outstanding_messages = 0;
902
903         ctx->next_msg = NULL;
904
905         /* Resources that don't need any chunks compressed are added to this
906          * list and written directly by the main thread. */
907         INIT_LIST_HEAD(&ctx->serial_streams);
908
909         ctx->cur_chunk_tab = NULL;
910
911         return 0;
912 }
913
914 static int
915 receive_compressed_chunks(struct main_writer_thread_ctx *ctx)
916 {
917         struct message *msg;
918         struct wim_lookup_table_entry *cur_lte;
919         int ret;
920
921         wimlib_assert(!list_empty(&ctx->outstanding_streams));
922         wimlib_assert(ctx->num_outstanding_messages != 0);
923
924         cur_lte = container_of(ctx->outstanding_streams.next,
925                                struct wim_lookup_table_entry,
926                                being_compressed_list);
927
928         /* Get the next message from the queue and process it.
929          * The message will contain 1 or more data chunks that have been
930          * compressed. */
931         msg = shared_queue_get(ctx->compressed_res_queue);
932         msg->complete = true;
933         --ctx->num_outstanding_messages;
934
935         /* Is this the next chunk in the current resource?  If it's not
936          * (i.e., an earlier chunk in a same or different resource
937          * hasn't been compressed yet), do nothing, and keep this
938          * message around until all earlier chunks are received.
939          *
940          * Otherwise, write all the chunks we can. */
941         while (cur_lte != NULL &&
942                !list_empty(&cur_lte->msg_list)
943                && (msg = container_of(cur_lte->msg_list.next,
944                                       struct message,
945                                       list))->complete)
946         {
947                 list_move(&msg->list, &ctx->available_msgs);
948                 if (msg->begin_chunk == 0) {
949                         /* This is the first set of chunks.  Leave space
950                          * for the chunk table in the output file. */
951                         off_t cur_offset = ftello(ctx->out_fp);
952                         if (cur_offset == -1)
953                                 return WIMLIB_ERR_WRITE;
954                         ret = begin_wim_resource_chunk_tab(cur_lte,
955                                                            ctx->out_fp,
956                                                            cur_offset,
957                                                            &ctx->cur_chunk_tab);
958                         if (ret)
959                                 return ret;
960                 }
961
962                 /* Write the compressed chunks from the message. */
963                 ret = write_wim_chunks(msg, ctx->out_fp, ctx->cur_chunk_tab);
964                 if (ret)
965                         return ret;
966
967                 /* Was this the last chunk of the stream?  If so, finish
968                  * it. */
969                 if (list_empty(&cur_lte->msg_list) &&
970                     msg->begin_chunk + msg->num_chunks == ctx->cur_chunk_tab->num_chunks)
971                 {
972                         u64 res_csize;
973                         off_t offset;
974
975                         ret = finish_wim_resource_chunk_tab(ctx->cur_chunk_tab,
976                                                             ctx->out_fp,
977                                                             &res_csize);
978                         if (ret)
979                                 return ret;
980
981                         list_del(&cur_lte->being_compressed_list);
982
983                         /* Grab the offset of this stream in the output file
984                          * from the chunk table before we free it. */
985                         offset = ctx->cur_chunk_tab->file_offset;
986
987                         FREE(ctx->cur_chunk_tab);
988                         ctx->cur_chunk_tab = NULL;
989
990                         if (res_csize >= wim_resource_size(cur_lte)) {
991                                 /* Oops!  We compressed the resource to
992                                  * larger than the original size.  Write
993                                  * the resource uncompressed instead. */
994                                 DEBUG("Compressed %"PRIu64" => %"PRIu64" bytes; "
995                                       "writing uncompressed instead",
996                                       wim_resource_size(cur_lte), res_csize);
997                                 ret = fflush_and_ftruncate(ctx->out_fp, offset);
998                                 if (ret)
999                                         return ret;
1000                                 ret = write_wim_resource(cur_lte,
1001                                                          ctx->out_fp,
1002                                                          WIMLIB_COMPRESSION_TYPE_NONE,
1003                                                          &cur_lte->output_resource_entry,
1004                                                          ctx->write_resource_flags);
1005                                 if (ret)
1006                                         return ret;
1007                         } else {
1008                                 cur_lte->output_resource_entry.size =
1009                                         res_csize;
1010
1011                                 cur_lte->output_resource_entry.original_size =
1012                                         cur_lte->resource_entry.original_size;
1013
1014                                 cur_lte->output_resource_entry.offset =
1015                                         offset;
1016
1017                                 cur_lte->output_resource_entry.flags =
1018                                         cur_lte->resource_entry.flags |
1019                                                 WIM_RESHDR_FLAG_COMPRESSED;
1020                         }
1021
1022                         do_write_streams_progress(ctx->progress,
1023                                                   ctx->progress_func,
1024                                                   wim_resource_size(cur_lte));
1025
1026                         /* Since we just finished writing a stream, write any
1027                          * streams that have been added to the serial_streams
1028                          * list for direct writing by the main thread (e.g.
1029                          * resources that don't need to be compressed because
1030                          * the desired compression type is the same as the
1031                          * previous compression type). */
1032                         if (!list_empty(&ctx->serial_streams)) {
1033                                 ret = do_write_stream_list_serial(&ctx->serial_streams,
1034                                                                   ctx->lookup_table,
1035                                                                   ctx->out_fp,
1036                                                                   ctx->out_ctype,
1037                                                                   ctx->write_resource_flags,
1038                                                                   ctx->progress_func,
1039                                                                   ctx->progress);
1040                                 if (ret)
1041                                         return ret;
1042                         }
1043
1044                         /* Advance to the next stream to write. */
1045                         if (list_empty(&ctx->outstanding_streams)) {
1046                                 cur_lte = NULL;
1047                         } else {
1048                                 cur_lte = container_of(ctx->outstanding_streams.next,
1049                                                        struct wim_lookup_table_entry,
1050                                                        being_compressed_list);
1051                         }
1052                 }
1053         }
1054         return 0;
1055 }
1056
1057 /* Called when the main thread has read a new chunk of data. */
1058 static int
1059 main_writer_thread_cb(const void *chunk, size_t chunk_size, void *_ctx)
1060 {
1061         struct main_writer_thread_ctx *ctx = _ctx;
1062         int ret;
1063         struct message *next_msg;
1064         u64 next_chunk_in_msg;
1065
1066         /* Update SHA1 message digest for the stream currently being read by the
1067          * main thread. */
1068         sha1_update(&ctx->next_sha_ctx, chunk, chunk_size);
1069
1070         /* We send chunks of data to the compressor chunks in batches which we
1071          * refer to as "messages".  @next_msg is the message that is currently
1072          * being prepared to send off.  If it is NULL, that indicates that we
1073          * need to start a new message. */
1074         next_msg = ctx->next_msg;
1075         if (!next_msg) {
1076                 /* We need to start a new message.  First check to see if there
1077                  * is a message available in the list of available messages.  If
1078                  * so, we can just take one.  If not, all the messages (there is
1079                  * a fixed number of them, proportional to the number of
1080                  * threads) have been sent off to the compressor threads, so we
1081                  * receive messages from the compressor threads containing
1082                  * compressed chunks of data.
1083                  *
1084                  * We may need to receive multiple messages before one is
1085                  * actually available to use because messages received that are
1086                  * *not* for the very next set of chunks to compress must be
1087                  * buffered until it's time to write those chunks. */
1088                 while (list_empty(&ctx->available_msgs)) {
1089                         ret = receive_compressed_chunks(ctx);
1090                         if (ret)
1091                                 return ret;
1092                 }
1093
1094                 next_msg = container_of(ctx->available_msgs.next,
1095                                         struct message, list);
1096                 list_del(&next_msg->list);
1097                 next_msg->complete = false;
1098                 next_msg->begin_chunk = ctx->next_chunk;
1099                 next_msg->num_chunks = min(MAX_CHUNKS_PER_MSG,
1100                                            ctx->next_num_chunks - ctx->next_chunk);
1101                 ctx->next_msg = next_msg;
1102         }
1103
1104         /* Fill in the next chunk to compress */
1105         next_chunk_in_msg = ctx->next_chunk - next_msg->begin_chunk;
1106
1107         next_msg->uncompressed_chunk_sizes[next_chunk_in_msg] = chunk_size;
1108         memcpy(next_msg->uncompressed_chunks[next_chunk_in_msg],
1109                chunk, chunk_size);
1110         ctx->next_chunk++;
1111         if (++next_chunk_in_msg == next_msg->num_chunks) {
1112                 /* Send off an array of chunks to compress */
1113                 list_add_tail(&next_msg->list, &ctx->next_lte->msg_list);
1114                 shared_queue_put(ctx->res_to_compress_queue, next_msg);
1115                 ++ctx->num_outstanding_messages;
1116                 ctx->next_msg = NULL;
1117         }
1118         return 0;
1119 }
1120
1121 static int
1122 main_writer_thread_finish(void *_ctx)
1123 {
1124         struct main_writer_thread_ctx *ctx = _ctx;
1125         int ret;
1126         while (ctx->num_outstanding_messages != 0) {
1127                 ret = receive_compressed_chunks(ctx);
1128                 if (ret)
1129                         return ret;
1130         }
1131         wimlib_assert(list_empty(&ctx->outstanding_streams));
1132         return do_write_stream_list_serial(&ctx->serial_streams,
1133                                            ctx->lookup_table,
1134                                            ctx->out_fp,
1135                                            ctx->out_ctype,
1136                                            ctx->write_resource_flags,
1137                                            ctx->progress_func,
1138                                            ctx->progress);
1139 }
1140
1141 static int
1142 submit_stream_for_compression(struct wim_lookup_table_entry *lte,
1143                               struct main_writer_thread_ctx *ctx)
1144 {
1145         int ret;
1146
1147         /* Read the entire stream @lte, feeding its data chunks to the
1148          * compressor threads.  Also SHA1-sum the stream; this is required in
1149          * the case that @lte is unhashed, and a nice additional verification
1150          * when @lte is already hashed. */
1151         sha1_init(&ctx->next_sha_ctx);
1152         ctx->next_chunk = 0;
1153         ctx->next_num_chunks = wim_resource_chunks(lte);
1154         ctx->next_lte = lte;
1155         INIT_LIST_HEAD(&lte->msg_list);
1156         list_add_tail(&lte->being_compressed_list, &ctx->outstanding_streams);
1157         ret = read_resource_prefix(lte, wim_resource_size(lte),
1158                                    main_writer_thread_cb, ctx, 0);
1159         if (ret == 0) {
1160                 wimlib_assert(ctx->next_chunk == ctx->next_num_chunks);
1161                 ret = finalize_and_check_sha1(&ctx->next_sha_ctx, lte);
1162         }
1163         return ret;
1164 }
1165
1166 static int
1167 main_thread_process_next_stream(struct wim_lookup_table_entry *lte, void *_ctx)
1168 {
1169         struct main_writer_thread_ctx *ctx = _ctx;
1170         int ret;
1171
1172         if (wim_resource_size(lte) < 1000 ||
1173             ctx->out_ctype == WIMLIB_COMPRESSION_TYPE_NONE ||
1174             (lte->resource_location == RESOURCE_IN_WIM &&
1175              !(ctx->write_resource_flags & WIMLIB_RESOURCE_FLAG_RECOMPRESS) &&
1176              wimlib_get_compression_type(lte->wim) == ctx->out_ctype))
1177         {
1178                 /* Stream is too small or isn't being compressed.  Process it by
1179                  * the main thread when we have a chance.  We can't necessarily
1180                  * process it right here, as the main thread could be in the
1181                  * middle of writing a different stream. */
1182                 list_add_tail(&lte->write_streams_list, &ctx->serial_streams);
1183                 lte->deferred = 1;
1184                 ret = 0;
1185         } else {
1186                 ret = submit_stream_for_compression(lte, ctx);
1187         }
1188         return ret;
1189 }
1190
1191 static long
1192 get_default_num_threads()
1193 {
1194 #ifdef __WIN32__
1195         return win32_get_number_of_processors();
1196 #else
1197         return sysconf(_SC_NPROCESSORS_ONLN);
1198 #endif
1199 }
1200
1201 /* Equivalent to write_stream_list_serial(), except this takes a @num_threads
1202  * parameter and will perform compression using that many threads.  Falls
1203  * back to write_stream_list_serial() on certain errors, such as a failure to
1204  * create the number of threads requested.
1205  *
1206  * High level description of the algorithm for writing compressed streams in
1207  * parallel:  We perform compression on chunks of size WIM_CHUNK_SIZE bytes
1208  * rather than on full files.  The currently executing thread becomes the main
1209  * thread and is entirely in charge of reading the data to compress (which may
1210  * be in any location understood by the resource code--- such as in an external
1211  * file being captured, or in another WIM file from which an image is being
1212  * exported) and actually writing the compressed data to the output file.
1213  * Additional threads are "compressor threads" and all execute the
1214  * compressor_thread_proc, where they repeatedly retrieve buffers of data from
1215  * the main thread, compress them, and hand them back to the main thread.
1216  *
1217  * Certain streams, such as streams that do not need to be compressed (e.g.
1218  * input compression type same as output compression type) or streams of very
1219  * small size are placed in a list (main_writer_thread_ctx.serial_list) and
1220  * handled entirely by the main thread at an appropriate time.
1221  *
1222  * At any given point in time, multiple streams may be having chunks compressed
1223  * concurrently.  The stream that the main thread is currently *reading* may be
1224  * later in the list that the stream that the main thread is currently
1225  * *writing*.
1226  */
1227 static int
1228 write_stream_list_parallel(struct list_head *stream_list,
1229                            struct wim_lookup_table *lookup_table,
1230                            FILE *out_fp,
1231                            int out_ctype,
1232                            int write_resource_flags,
1233                            wimlib_progress_func_t progress_func,
1234                            union wimlib_progress_info *progress,
1235                            unsigned num_threads)
1236 {
1237         int ret;
1238         struct shared_queue res_to_compress_queue;
1239         struct shared_queue compressed_res_queue;
1240         pthread_t *compressor_threads = NULL;
1241
1242         if (num_threads == 0) {
1243                 long nthreads = get_default_num_threads();
1244                 if (nthreads < 1 || nthreads > UINT_MAX) {
1245                         WARNING("Could not determine number of processors! Assuming 1");
1246                         goto out_serial;
1247                 } else if (nthreads == 1) {
1248                         goto out_serial_quiet;
1249                 } else {
1250                         num_threads = nthreads;
1251                 }
1252         }
1253
1254         DEBUG("Writing stream list (parallel version, num_threads=%u)",
1255               num_threads);
1256
1257         progress->write_streams.num_threads = num_threads;
1258
1259         static const size_t MESSAGES_PER_THREAD = 2;
1260         size_t queue_size = (size_t)(num_threads * MESSAGES_PER_THREAD);
1261
1262         DEBUG("Initializing shared queues (queue_size=%zu)", queue_size);
1263
1264         ret = shared_queue_init(&res_to_compress_queue, queue_size);
1265         if (ret)
1266                 goto out_serial;
1267
1268         ret = shared_queue_init(&compressed_res_queue, queue_size);
1269         if (ret)
1270                 goto out_destroy_res_to_compress_queue;
1271
1272         struct compressor_thread_params params;
1273         params.res_to_compress_queue = &res_to_compress_queue;
1274         params.compressed_res_queue = &compressed_res_queue;
1275         params.compress = get_compress_func(out_ctype);
1276
1277         compressor_threads = MALLOC(num_threads * sizeof(pthread_t));
1278         if (!compressor_threads) {
1279                 ret = WIMLIB_ERR_NOMEM;
1280                 goto out_destroy_compressed_res_queue;
1281         }
1282
1283         for (unsigned i = 0; i < num_threads; i++) {
1284                 DEBUG("pthread_create thread %u of %u", i + 1, num_threads);
1285                 ret = pthread_create(&compressor_threads[i], NULL,
1286                                      compressor_thread_proc, &params);
1287                 if (ret != 0) {
1288                         ret = -1;
1289                         ERROR_WITH_ERRNO("Failed to create compressor "
1290                                          "thread %u of %u",
1291                                          i + 1, num_threads);
1292                         num_threads = i;
1293                         goto out_join;
1294                 }
1295         }
1296
1297         if (progress_func)
1298                 progress_func(WIMLIB_PROGRESS_MSG_WRITE_STREAMS, progress);
1299
1300         struct main_writer_thread_ctx ctx;
1301         ctx.stream_list           = stream_list;
1302         ctx.lookup_table          = lookup_table;
1303         ctx.out_fp                = out_fp;
1304         ctx.out_ctype             = out_ctype;
1305         ctx.res_to_compress_queue = &res_to_compress_queue;
1306         ctx.compressed_res_queue  = &compressed_res_queue;
1307         ctx.num_messages          = queue_size;
1308         ctx.write_resource_flags  = write_resource_flags | WIMLIB_RESOURCE_FLAG_THREADSAFE_READ;
1309         ctx.progress_func         = progress_func;
1310         ctx.progress              = progress;
1311         ret = main_writer_thread_init_ctx(&ctx);
1312         if (ret)
1313                 goto out_join;
1314         ret = do_write_stream_list(stream_list, lookup_table,
1315                                    main_thread_process_next_stream,
1316                                    &ctx, NULL, NULL);
1317         if (ret)
1318                 goto out_destroy_ctx;
1319
1320         /* The main thread has finished reading all streams that are going to be
1321          * compressed in parallel, and it now needs to wait for all remaining
1322          * chunks to be compressed so that the remaining streams can actually be
1323          * written to the output file.  Furthermore, any remaining streams that
1324          * had processing deferred to the main thread need to be handled.  These
1325          * tasks are done by the main_writer_thread_finish() function. */
1326         ret = main_writer_thread_finish(&ctx);
1327 out_destroy_ctx:
1328         main_writer_thread_destroy_ctx(&ctx);
1329 out_join:
1330         for (unsigned i = 0; i < num_threads; i++)
1331                 shared_queue_put(&res_to_compress_queue, NULL);
1332
1333         for (unsigned i = 0; i < num_threads; i++) {
1334                 if (pthread_join(compressor_threads[i], NULL)) {
1335                         WARNING_WITH_ERRNO("Failed to join compressor "
1336                                            "thread %u of %u",
1337                                            i + 1, num_threads);
1338                 }
1339         }
1340         FREE(compressor_threads);
1341 out_destroy_compressed_res_queue:
1342         shared_queue_destroy(&compressed_res_queue);
1343 out_destroy_res_to_compress_queue:
1344         shared_queue_destroy(&res_to_compress_queue);
1345         if (ret >= 0 && ret != WIMLIB_ERR_NOMEM)
1346                 return ret;
1347 out_serial:
1348         WARNING("Falling back to single-threaded compression");
1349 out_serial_quiet:
1350         return write_stream_list_serial(stream_list,
1351                                         lookup_table,
1352                                         out_fp,
1353                                         out_ctype,
1354                                         write_resource_flags,
1355                                         progress_func,
1356                                         progress);
1357
1358 }
1359 #endif
1360
1361 /*
1362  * Write a list of streams to a WIM (@out_fp) using the compression type
1363  * @out_ctype and up to @num_threads compressor threads.
1364  */
1365 static int
1366 write_stream_list(struct list_head *stream_list,
1367                   struct wim_lookup_table *lookup_table,
1368                   FILE *out_fp, int out_ctype, int write_flags,
1369                   unsigned num_threads, wimlib_progress_func_t progress_func)
1370 {
1371         struct wim_lookup_table_entry *lte;
1372         size_t num_streams = 0;
1373         u64 total_bytes = 0;
1374         u64 total_compression_bytes = 0;
1375         union wimlib_progress_info progress;
1376         int ret;
1377         int write_resource_flags;
1378
1379         if (list_empty(stream_list))
1380                 return 0;
1381
1382         write_resource_flags = write_flags_to_resource_flags(write_flags);
1383
1384         /* Calculate the total size of the streams to be written.  Note: this
1385          * will be the uncompressed size, as we may not know the compressed size
1386          * yet, and also this will assume that every unhashed stream will be
1387          * written (which will not necessarily be the case). */
1388         list_for_each_entry(lte, stream_list, write_streams_list) {
1389                 num_streams++;
1390                 total_bytes += wim_resource_size(lte);
1391                 if (out_ctype != WIMLIB_COMPRESSION_TYPE_NONE
1392                        && (wim_resource_compression_type(lte) != out_ctype ||
1393                            (write_resource_flags & WIMLIB_RESOURCE_FLAG_RECOMPRESS)))
1394                 {
1395                         total_compression_bytes += wim_resource_size(lte);
1396                 }
1397         }
1398         progress.write_streams.total_bytes       = total_bytes;
1399         progress.write_streams.total_streams     = num_streams;
1400         progress.write_streams.completed_bytes   = 0;
1401         progress.write_streams.completed_streams = 0;
1402         progress.write_streams.num_threads       = num_threads;
1403         progress.write_streams.compression_type  = out_ctype;
1404         progress.write_streams._private          = 0;
1405
1406 #ifdef ENABLE_MULTITHREADED_COMPRESSION
1407         if (total_compression_bytes >= 1000000 && num_threads != 1)
1408                 ret = write_stream_list_parallel(stream_list,
1409                                                  lookup_table,
1410                                                  out_fp,
1411                                                  out_ctype,
1412                                                  write_resource_flags,
1413                                                  progress_func,
1414                                                  &progress,
1415                                                  num_threads);
1416         else
1417 #endif
1418                 ret = write_stream_list_serial(stream_list,
1419                                                lookup_table,
1420                                                out_fp,
1421                                                out_ctype,
1422                                                write_resource_flags,
1423                                                progress_func,
1424                                                &progress);
1425         return ret;
1426 }
1427
1428 struct stream_size_table {
1429         struct hlist_head *array;
1430         size_t num_entries;
1431         size_t capacity;
1432 };
1433
1434 static int
1435 init_stream_size_table(struct stream_size_table *tab, size_t capacity)
1436 {
1437         tab->array = CALLOC(capacity, sizeof(tab->array[0]));
1438         if (!tab->array)
1439                 return WIMLIB_ERR_NOMEM;
1440         tab->num_entries = 0;
1441         tab->capacity = capacity;
1442         return 0;
1443 }
1444
1445 static void
1446 destroy_stream_size_table(struct stream_size_table *tab)
1447 {
1448         FREE(tab->array);
1449 }
1450
1451 static int
1452 stream_size_table_insert(struct wim_lookup_table_entry *lte, void *_tab)
1453 {
1454         struct stream_size_table *tab = _tab;
1455         size_t pos;
1456         struct wim_lookup_table_entry *same_size_lte;
1457         struct hlist_node *tmp;
1458
1459         pos = hash_u64(wim_resource_size(lte)) % tab->capacity;
1460         lte->unique_size = 1;
1461         hlist_for_each_entry(same_size_lte, tmp, &tab->array[pos], hash_list_2) {
1462                 if (wim_resource_size(same_size_lte) == wim_resource_size(lte)) {
1463                         lte->unique_size = 0;
1464                         same_size_lte->unique_size = 0;
1465                         break;
1466                 }
1467         }
1468
1469         hlist_add_head(&lte->hash_list_2, &tab->array[pos]);
1470         tab->num_entries++;
1471         return 0;
1472 }
1473
1474
1475 struct lte_overwrite_prepare_args {
1476         WIMStruct *wim;
1477         off_t end_offset;
1478         struct list_head stream_list;
1479         struct stream_size_table stream_size_tab;
1480 };
1481
1482 /* First phase of preparing streams for an in-place overwrite.  This is called
1483  * on all streams, both hashed and unhashed, except the metadata resources. */
1484 static int
1485 lte_overwrite_prepare(struct wim_lookup_table_entry *lte, void *_args)
1486 {
1487         struct lte_overwrite_prepare_args *args = _args;
1488
1489         wimlib_assert(!(lte->resource_entry.flags & WIM_RESHDR_FLAG_METADATA));
1490         if (lte->resource_location != RESOURCE_IN_WIM || lte->wim != args->wim)
1491                 list_add_tail(&lte->write_streams_list, &args->stream_list);
1492         lte->out_refcnt = lte->refcnt;
1493         stream_size_table_insert(lte, &args->stream_size_tab);
1494         return 0;
1495 }
1496
1497 /* Second phase of preparing streams for an in-place overwrite.  This is called
1498  * on existing metadata resources and hashed streams, but not unhashed streams.
1499  *
1500  * NOTE: lte->output_resource_entry is in union with lte->hash_list_2, so
1501  * lte_overwrite_prepare_2() must be called after lte_overwrite_prepare(), as
1502  * the latter uses lte->hash_list_2, while the former expects to set
1503  * lte->output_resource_entry. */
1504 static int
1505 lte_overwrite_prepare_2(struct wim_lookup_table_entry *lte, void *_args)
1506 {
1507         struct lte_overwrite_prepare_args *args = _args;
1508
1509         if (lte->resource_location == RESOURCE_IN_WIM && lte->wim == args->wim) {
1510                 /* We can't do an in place overwrite on the WIM if there are
1511                  * streams after the XML data. */
1512                 if (lte->resource_entry.offset +
1513                     lte->resource_entry.size > args->end_offset)
1514                 {
1515                 #ifdef ENABLE_ERROR_MESSAGES
1516                         ERROR("The following resource is after the XML data:");
1517                         print_lookup_table_entry(lte, stderr);
1518                 #endif
1519                         return WIMLIB_ERR_RESOURCE_ORDER;
1520                 }
1521                 copy_resource_entry(&lte->output_resource_entry,
1522                                     &lte->resource_entry);
1523         }
1524         return 0;
1525 }
1526
1527 /* Given a WIM that we are going to overwrite in place with zero or more
1528  * additional streams added, construct a list the list of new unique streams
1529  * ('struct wim_lookup_table_entry's) that must be written, plus any unhashed
1530  * streams that need to be added but may be identical to other hashed or
1531  * unhashed streams.  These unhashed streams are checksummed while the streams
1532  * are being written.  To aid this process, the member @unique_size is set to 1
1533  * on streams that have a unique size and therefore must be written.
1534  *
1535  * The out_refcnt member of each 'struct wim_lookup_table_entry' is set to
1536  * indicate the number of times the stream is referenced in only the streams
1537  * that are being written; this may still be adjusted later when unhashed
1538  * streams are being resolved.
1539  */
1540 static int
1541 prepare_streams_for_overwrite(WIMStruct *wim, off_t end_offset,
1542                               struct list_head *stream_list)
1543 {
1544         int ret;
1545         struct lte_overwrite_prepare_args args;
1546         unsigned i;
1547
1548         args.wim = wim;
1549         args.end_offset = end_offset;
1550         ret = init_stream_size_table(&args.stream_size_tab,
1551                                      wim->lookup_table->capacity);
1552         if (ret)
1553                 return ret;
1554
1555         INIT_LIST_HEAD(&args.stream_list);
1556         for (i = 0; i < wim->hdr.image_count; i++) {
1557                 struct wim_image_metadata *imd;
1558                 struct wim_lookup_table_entry *lte;
1559
1560                 imd = wim->image_metadata[i];
1561                 image_for_each_unhashed_stream(lte, imd)
1562                         lte_overwrite_prepare(lte, &args);
1563         }
1564         for_lookup_table_entry(wim->lookup_table, lte_overwrite_prepare, &args);
1565         list_transfer(&args.stream_list, stream_list);
1566
1567         for (i = 0; i < wim->hdr.image_count; i++) {
1568                 ret = lte_overwrite_prepare_2(wim->image_metadata[i]->metadata_lte,
1569                                               &args);
1570                 if (ret)
1571                         goto out_destroy_stream_size_table;
1572         }
1573         ret = for_lookup_table_entry(wim->lookup_table,
1574                                      lte_overwrite_prepare_2, &args);
1575 out_destroy_stream_size_table:
1576         destroy_stream_size_table(&args.stream_size_tab);
1577         return ret;
1578 }
1579
1580
1581 struct find_streams_ctx {
1582         struct list_head stream_list;
1583         struct stream_size_table stream_size_tab;
1584 };
1585
1586 static void
1587 inode_find_streams_to_write(struct wim_inode *inode,
1588                             struct wim_lookup_table *table,
1589                             struct list_head *stream_list,
1590                             struct stream_size_table *tab)
1591 {
1592         struct wim_lookup_table_entry *lte;
1593         for (unsigned i = 0; i <= inode->i_num_ads; i++) {
1594                 lte = inode_stream_lte(inode, i, table);
1595                 if (lte) {
1596                         if (lte->out_refcnt == 0) {
1597                                 if (lte->unhashed)
1598                                         stream_size_table_insert(lte, tab);
1599                                 list_add_tail(&lte->write_streams_list, stream_list);
1600                         }
1601                         lte->out_refcnt += inode->i_nlink;
1602                 }
1603         }
1604 }
1605
1606 static int
1607 image_find_streams_to_write(WIMStruct *w)
1608 {
1609         struct find_streams_ctx *ctx;
1610         struct wim_image_metadata *imd;
1611         struct wim_inode *inode;
1612         struct wim_lookup_table_entry *lte;
1613
1614         ctx = w->private;
1615         imd = wim_get_current_image_metadata(w);
1616
1617         image_for_each_unhashed_stream(lte, imd)
1618                 lte->out_refcnt = 0;
1619
1620         /* Go through this image's inodes to find any streams that have not been
1621          * found yet. */
1622         image_for_each_inode(inode, imd) {
1623                 inode_find_streams_to_write(inode, w->lookup_table,
1624                                             &ctx->stream_list,
1625                                             &ctx->stream_size_tab);
1626         }
1627         return 0;
1628 }
1629
1630 /* Given a WIM that from which one or all of the images is being written, build
1631  * the list of unique streams ('struct wim_lookup_table_entry's) that must be
1632  * written, plus any unhashed streams that need to be written but may be
1633  * identical to other hashed or unhashed streams being written.  These unhashed
1634  * streams are checksummed while the streams are being written.  To aid this
1635  * process, the member @unique_size is set to 1 on streams that have a unique
1636  * size and therefore must be written.
1637  *
1638  * The out_refcnt member of each 'struct wim_lookup_table_entry' is set to
1639  * indicate the number of times the stream is referenced in only the streams
1640  * that are being written; this may still be adjusted later when unhashed
1641  * streams are being resolved.
1642  */
1643 static int
1644 prepare_stream_list(WIMStruct *wim, int image, struct list_head *stream_list)
1645 {
1646         int ret;
1647         struct find_streams_ctx ctx;
1648
1649         for_lookup_table_entry(wim->lookup_table, lte_zero_out_refcnt, NULL);
1650         ret = init_stream_size_table(&ctx.stream_size_tab,
1651                                      wim->lookup_table->capacity);
1652         if (ret)
1653                 return ret;
1654         for_lookup_table_entry(wim->lookup_table, stream_size_table_insert,
1655                                &ctx.stream_size_tab);
1656         INIT_LIST_HEAD(&ctx.stream_list);
1657         wim->private = &ctx;
1658         ret = for_image(wim, image, image_find_streams_to_write);
1659         destroy_stream_size_table(&ctx.stream_size_tab);
1660         if (ret == 0)
1661                 list_transfer(&ctx.stream_list, stream_list);
1662         return ret;
1663 }
1664
1665 /* Writes the streams for the specified @image in @wim to @wim->out_fp.
1666  */
1667 static int
1668 write_wim_streams(WIMStruct *wim, int image, int write_flags,
1669                   unsigned num_threads,
1670                   wimlib_progress_func_t progress_func)
1671 {
1672         int ret;
1673         struct list_head stream_list;
1674
1675         ret = prepare_stream_list(wim, image, &stream_list);
1676         if (ret)
1677                 return ret;
1678         return write_stream_list(&stream_list,
1679                                  wim->lookup_table,
1680                                  wim->out_fp,
1681                                  wimlib_get_compression_type(wim),
1682                                  write_flags,
1683                                  num_threads,
1684                                  progress_func);
1685 }
1686
1687 /*
1688  * Finish writing a WIM file: write the lookup table, xml data, and integrity
1689  * table (optional), then overwrite the WIM header.
1690  *
1691  * write_flags is a bitwise OR of the following:
1692  *
1693  *      (public)  WIMLIB_WRITE_FLAG_CHECK_INTEGRITY:
1694  *              Include an integrity table.
1695  *
1696  *      (public)  WIMLIB_WRITE_FLAG_SHOW_PROGRESS:
1697  *              Show progress information when (if) writing the integrity table.
1698  *
1699  *      (private) WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE:
1700  *              Don't write the lookup table.
1701  *
1702  *      (private) WIMLIB_WRITE_FLAG_REUSE_INTEGRITY_TABLE:
1703  *              When (if) writing the integrity table, re-use entries from the
1704  *              existing integrity table, if possible.
1705  *
1706  *      (private) WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML:
1707  *              After writing the XML data but before writing the integrity
1708  *              table, write a temporary WIM header and flush the stream so that
1709  *              the WIM is less likely to become corrupted upon abrupt program
1710  *              termination.
1711  *
1712  *      (private) WIMLIB_WRITE_FLAG_FSYNC:
1713  *              fsync() the output file before closing it.
1714  *
1715  */
1716 int
1717 finish_write(WIMStruct *w, int image, int write_flags,
1718              wimlib_progress_func_t progress_func)
1719 {
1720         int ret;
1721         struct wim_header hdr;
1722         FILE *out = w->out_fp;
1723
1724         /* @hdr will be the header for the new WIM.  First copy all the data
1725          * from the header in the WIMStruct; then set all the fields that may
1726          * have changed, including the resource entries, boot index, and image
1727          * count.  */
1728         memcpy(&hdr, &w->hdr, sizeof(struct wim_header));
1729
1730         /* Set image count and boot index correctly for single image writes */
1731         if (image != WIMLIB_ALL_IMAGES) {
1732                 hdr.image_count = 1;
1733                 if (hdr.boot_idx == image)
1734                         hdr.boot_idx = 1;
1735                 else
1736                         hdr.boot_idx = 0;
1737         }
1738
1739         /* In the WIM header, there is room for the resource entry for a
1740          * metadata resource labeled as the "boot metadata".  This entry should
1741          * be zeroed out if there is no bootable image (boot_idx 0).  Otherwise,
1742          * it should be a copy of the resource entry for the image that is
1743          * marked as bootable.  This is not well documented...  */
1744         if (hdr.boot_idx == 0) {
1745                 zero_resource_entry(&hdr.boot_metadata_res_entry);
1746         } else {
1747                 copy_resource_entry(&hdr.boot_metadata_res_entry,
1748                             &w->image_metadata[ hdr.boot_idx- 1
1749                                         ]->metadata_lte->output_resource_entry);
1750         }
1751
1752         if (!(write_flags & WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE)) {
1753                 ret = write_lookup_table(w, image, &hdr.lookup_table_res_entry);
1754                 if (ret)
1755                         goto out_close_wim;
1756         }
1757
1758         ret = write_xml_data(w->wim_info, image, out,
1759                              (write_flags & WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE) ?
1760                               wim_info_get_total_bytes(w->wim_info) : 0,
1761                              &hdr.xml_res_entry);
1762         if (ret)
1763                 goto out_close_wim;
1764
1765         if (write_flags & WIMLIB_WRITE_FLAG_CHECK_INTEGRITY) {
1766                 if (write_flags & WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML) {
1767                         struct wim_header checkpoint_hdr;
1768                         memcpy(&checkpoint_hdr, &hdr, sizeof(struct wim_header));
1769                         zero_resource_entry(&checkpoint_hdr.integrity);
1770                         if (fseeko(out, 0, SEEK_SET)) {
1771                                 ERROR_WITH_ERRNO("Failed to seek to beginning "
1772                                                  "of WIM being written");
1773                                 ret = WIMLIB_ERR_WRITE;
1774                                 goto out_close_wim;
1775                         }
1776                         ret = write_header(&checkpoint_hdr, out);
1777                         if (ret)
1778                                 goto out_close_wim;
1779
1780                         if (fflush(out) != 0) {
1781                                 ERROR_WITH_ERRNO("Can't write data to WIM");
1782                                 ret = WIMLIB_ERR_WRITE;
1783                                 goto out_close_wim;
1784                         }
1785
1786                         if (fseeko(out, 0, SEEK_END) != 0) {
1787                                 ERROR_WITH_ERRNO("Failed to seek to end "
1788                                                  "of WIM being written");
1789                                 ret = WIMLIB_ERR_WRITE;
1790                                 goto out_close_wim;
1791                         }
1792                 }
1793
1794                 off_t old_lookup_table_end;
1795                 off_t new_lookup_table_end;
1796                 if (write_flags & WIMLIB_WRITE_FLAG_REUSE_INTEGRITY_TABLE) {
1797                         old_lookup_table_end = w->hdr.lookup_table_res_entry.offset +
1798                                                w->hdr.lookup_table_res_entry.size;
1799                 } else {
1800                         old_lookup_table_end = 0;
1801                 }
1802                 new_lookup_table_end = hdr.lookup_table_res_entry.offset +
1803                                        hdr.lookup_table_res_entry.size;
1804
1805                 ret = write_integrity_table(out,
1806                                             &hdr.integrity,
1807                                             new_lookup_table_end,
1808                                             old_lookup_table_end,
1809                                             progress_func);
1810                 if (ret)
1811                         goto out_close_wim;
1812         } else {
1813                 zero_resource_entry(&hdr.integrity);
1814         }
1815
1816         if (fseeko(out, 0, SEEK_SET) != 0) {
1817                 ERROR_WITH_ERRNO("Failed to seek to beginning of WIM "
1818                                  "being written");
1819                 ret = WIMLIB_ERR_WRITE;
1820                 goto out_close_wim;
1821         }
1822
1823         ret = write_header(&hdr, out);
1824         if (ret)
1825                 goto out_close_wim;
1826
1827         if (write_flags & WIMLIB_WRITE_FLAG_FSYNC) {
1828                 if (fflush(out) != 0
1829                     || fsync(fileno(out)) != 0)
1830                 {
1831                         ERROR_WITH_ERRNO("Error flushing data to WIM file");
1832                         ret = WIMLIB_ERR_WRITE;
1833                 }
1834         }
1835 out_close_wim:
1836         if (fclose(out) != 0) {
1837                 ERROR_WITH_ERRNO("Failed to close the output WIM file");
1838                 if (ret == 0)
1839                         ret = WIMLIB_ERR_WRITE;
1840         }
1841         w->out_fp = NULL;
1842         return ret;
1843 }
1844
1845 #if defined(HAVE_SYS_FILE_H) && defined(HAVE_FLOCK)
1846 int
1847 lock_wim(WIMStruct *w, FILE *fp)
1848 {
1849         int ret = 0;
1850         if (fp && !w->wim_locked) {
1851                 ret = flock(fileno(fp), LOCK_EX | LOCK_NB);
1852                 if (ret != 0) {
1853                         if (errno == EWOULDBLOCK) {
1854                                 ERROR("`%"TS"' is already being modified or has been "
1855                                       "mounted read-write\n"
1856                                       "        by another process!", w->filename);
1857                                 ret = WIMLIB_ERR_ALREADY_LOCKED;
1858                         } else {
1859                                 WARNING_WITH_ERRNO("Failed to lock `%"TS"'",
1860                                                    w->filename);
1861                                 ret = 0;
1862                         }
1863                 } else {
1864                         w->wim_locked = 1;
1865                 }
1866         }
1867         return ret;
1868 }
1869 #endif
1870
1871 static int
1872 open_wim_writable(WIMStruct *w, const tchar *path,
1873                   bool trunc, bool also_readable)
1874 {
1875         const tchar *mode;
1876         if (trunc)
1877                 if (also_readable)
1878                         mode = T("w+b");
1879                 else
1880                         mode = T("wb");
1881         else
1882                 mode = T("r+b");
1883
1884         wimlib_assert(w->out_fp == NULL);
1885         w->out_fp = tfopen(path, mode);
1886         if (w->out_fp) {
1887                 return 0;
1888         } else {
1889                 ERROR_WITH_ERRNO("Failed to open `%"TS"' for writing", path);
1890                 return WIMLIB_ERR_OPEN;
1891         }
1892 }
1893
1894
1895 void
1896 close_wim_writable(WIMStruct *w)
1897 {
1898         if (w->out_fp) {
1899                 if (fclose(w->out_fp) != 0) {
1900                         WARNING_WITH_ERRNO("Failed to close output WIM");
1901                 }
1902                 w->out_fp = NULL;
1903         }
1904 }
1905
1906 /* Open file stream and write dummy header for WIM. */
1907 int
1908 begin_write(WIMStruct *w, const tchar *path, int write_flags)
1909 {
1910         int ret;
1911         ret = open_wim_writable(w, path, true,
1912                                 (write_flags & WIMLIB_WRITE_FLAG_CHECK_INTEGRITY) != 0);
1913         if (ret)
1914                 return ret;
1915         /* Write dummy header. It will be overwritten later. */
1916         return write_header(&w->hdr, w->out_fp);
1917 }
1918
1919 /* Writes a stand-alone WIM to a file.  */
1920 WIMLIBAPI int
1921 wimlib_write(WIMStruct *w, const tchar *path,
1922              int image, int write_flags, unsigned num_threads,
1923              wimlib_progress_func_t progress_func)
1924 {
1925         int ret;
1926
1927         if (!path)
1928                 return WIMLIB_ERR_INVALID_PARAM;
1929
1930         write_flags &= WIMLIB_WRITE_MASK_PUBLIC;
1931
1932         if (image != WIMLIB_ALL_IMAGES &&
1933              (image < 1 || image > w->hdr.image_count))
1934                 return WIMLIB_ERR_INVALID_IMAGE;
1935
1936         if (w->hdr.total_parts != 1) {
1937                 ERROR("Cannot call wimlib_write() on part of a split WIM");
1938                 return WIMLIB_ERR_SPLIT_UNSUPPORTED;
1939         }
1940
1941         ret = begin_write(w, path, write_flags);
1942         if (ret)
1943                 goto out_close_wim;
1944
1945         ret = write_wim_streams(w, image, write_flags, num_threads,
1946                                 progress_func);
1947         if (ret)
1948                 goto out_close_wim;
1949
1950         if (progress_func)
1951                 progress_func(WIMLIB_PROGRESS_MSG_WRITE_METADATA_BEGIN, NULL);
1952
1953         ret = for_image(w, image, write_metadata_resource);
1954         if (ret)
1955                 goto out_close_wim;
1956
1957         if (progress_func)
1958                 progress_func(WIMLIB_PROGRESS_MSG_WRITE_METADATA_END, NULL);
1959
1960         ret = finish_write(w, image, write_flags, progress_func);
1961         /* finish_write() closed the WIM for us */
1962         goto out;
1963 out_close_wim:
1964         close_wim_writable(w);
1965 out:
1966         DEBUG("wimlib_write(path=%"TS") = %d", path, ret);
1967         return ret;
1968 }
1969
1970 static bool
1971 any_images_modified(WIMStruct *w)
1972 {
1973         for (int i = 0; i < w->hdr.image_count; i++)
1974                 if (w->image_metadata[i]->modified)
1975                         return true;
1976         return false;
1977 }
1978
1979 /*
1980  * Overwrite a WIM, possibly appending streams to it.
1981  *
1982  * A WIM looks like (or is supposed to look like) the following:
1983  *
1984  *                   Header (212 bytes)
1985  *                   Streams and metadata resources (variable size)
1986  *                   Lookup table (variable size)
1987  *                   XML data (variable size)
1988  *                   Integrity table (optional) (variable size)
1989  *
1990  * If we are not adding any streams or metadata resources, the lookup table is
1991  * unchanged--- so we only need to overwrite the XML data, integrity table, and
1992  * header.  This operation is potentially unsafe if the program is abruptly
1993  * terminated while the XML data or integrity table are being overwritten, but
1994  * before the new header has been written.  To partially alleviate this problem,
1995  * a special flag (WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML) is passed to
1996  * finish_write() to cause a temporary WIM header to be written after the XML
1997  * data has been written.  This may prevent the WIM from becoming corrupted if
1998  * the program is terminated while the integrity table is being calculated (but
1999  * no guarantees, due to write re-ordering...).
2000  *
2001  * If we are adding new streams or images (metadata resources), the lookup table
2002  * needs to be changed, and those streams need to be written.  In this case, we
2003  * try to perform a safe update of the WIM file by writing the streams *after*
2004  * the end of the previous WIM, then writing the new lookup table, XML data, and
2005  * (optionally) integrity table following the new streams.  This will produce a
2006  * layout like the following:
2007  *
2008  *                   Header (212 bytes)
2009  *                   (OLD) Streams and metadata resources (variable size)
2010  *                   (OLD) Lookup table (variable size)
2011  *                   (OLD) XML data (variable size)
2012  *                   (OLD) Integrity table (optional) (variable size)
2013  *                   (NEW) Streams and metadata resources (variable size)
2014  *                   (NEW) Lookup table (variable size)
2015  *                   (NEW) XML data (variable size)
2016  *                   (NEW) Integrity table (optional) (variable size)
2017  *
2018  * At all points, the WIM is valid as nothing points to the new data yet.  Then,
2019  * the header is overwritten to point to the new lookup table, XML data, and
2020  * integrity table, to produce the following layout:
2021  *
2022  *                   Header (212 bytes)
2023  *                   Streams and metadata resources (variable size)
2024  *                   Nothing (variable size)
2025  *                   More Streams and metadata resources (variable size)
2026  *                   Lookup table (variable size)
2027  *                   XML data (variable size)
2028  *                   Integrity table (optional) (variable size)
2029  *
2030  * This method allows an image to be appended to a large WIM very quickly, and
2031  * is is crash-safe except in the case of write re-ordering, but the
2032  * disadvantage is that a small hole is left in the WIM where the old lookup
2033  * table, xml data, and integrity table were.  (These usually only take up a
2034  * small amount of space compared to the streams, however.)
2035  */
2036 static int
2037 overwrite_wim_inplace(WIMStruct *w, int write_flags,
2038                       unsigned num_threads,
2039                       wimlib_progress_func_t progress_func)
2040 {
2041         int ret;
2042         struct list_head stream_list;
2043         off_t old_wim_end;
2044         u64 old_lookup_table_end, old_xml_begin, old_xml_end;
2045
2046         DEBUG("Overwriting `%"TS"' in-place", w->filename);
2047
2048         /* Make sure that the integrity table (if present) is after the XML
2049          * data, and that there are no stream resources, metadata resources, or
2050          * lookup tables after the XML data.  Otherwise, these data would be
2051          * overwritten. */
2052         old_xml_begin = w->hdr.xml_res_entry.offset;
2053         old_xml_end = old_xml_begin + w->hdr.xml_res_entry.size;
2054         old_lookup_table_end = w->hdr.lookup_table_res_entry.offset +
2055                                w->hdr.lookup_table_res_entry.size;
2056         if (w->hdr.integrity.offset != 0 && w->hdr.integrity.offset < old_xml_end) {
2057                 ERROR("Didn't expect the integrity table to be before the XML data");
2058                 return WIMLIB_ERR_RESOURCE_ORDER;
2059         }
2060
2061         if (old_lookup_table_end > old_xml_begin) {
2062                 ERROR("Didn't expect the lookup table to be after the XML data");
2063                 return WIMLIB_ERR_RESOURCE_ORDER;
2064         }
2065
2066         /* Set @old_wim_end, which indicates the point beyond which we don't
2067          * allow any file and metadata resources to appear without returning
2068          * WIMLIB_ERR_RESOURCE_ORDER (due to the fact that we would otherwise
2069          * overwrite these resources). */
2070         if (!w->deletion_occurred && !any_images_modified(w)) {
2071                 /* If no images have been modified and no images have been
2072                  * deleted, a new lookup table does not need to be written.  We
2073                  * shall write the new XML data and optional integrity table
2074                  * immediately after the lookup table.  Note that this may
2075                  * overwrite an existing integrity table. */
2076                 DEBUG("Skipping writing lookup table "
2077                       "(no images modified or deleted)");
2078                 old_wim_end = old_lookup_table_end;
2079                 write_flags |= WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE |
2080                                WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML;
2081         } else if (w->hdr.integrity.offset) {
2082                 /* Old WIM has an integrity table; begin writing new streams
2083                  * after it. */
2084                 old_wim_end = w->hdr.integrity.offset + w->hdr.integrity.size;
2085         } else {
2086                 /* No existing integrity table; begin writing new streams after
2087                  * the old XML data. */
2088                 old_wim_end = old_xml_end;
2089         }
2090
2091         ret = prepare_streams_for_overwrite(w, old_wim_end, &stream_list);
2092         if (ret)
2093                 return ret;
2094
2095         ret = open_wim_writable(w, w->filename, false,
2096                                 (write_flags & WIMLIB_WRITE_FLAG_CHECK_INTEGRITY) != 0);
2097         if (ret)
2098                 return ret;
2099
2100         ret = lock_wim(w, w->out_fp);
2101         if (ret) {
2102                 close_wim_writable(w);
2103                 return ret;
2104         }
2105
2106         if (fseeko(w->out_fp, old_wim_end, SEEK_SET) != 0) {
2107                 ERROR_WITH_ERRNO("Can't seek to end of WIM");
2108                 close_wim_writable(w);
2109                 w->wim_locked = 0;
2110                 return WIMLIB_ERR_WRITE;
2111         }
2112
2113         DEBUG("Writing newly added streams (offset = %"PRIu64")",
2114               old_wim_end);
2115         ret = write_stream_list(&stream_list,
2116                                 w->lookup_table,
2117                                 w->out_fp,
2118                                 wimlib_get_compression_type(w),
2119                                 write_flags,
2120                                 num_threads,
2121                                 progress_func);
2122         if (ret)
2123                 goto out_truncate;
2124
2125         for (int i = 0; i < w->hdr.image_count; i++) {
2126                 if (w->image_metadata[i]->modified) {
2127                         select_wim_image(w, i + 1);
2128                         ret = write_metadata_resource(w);
2129                         if (ret)
2130                                 goto out_truncate;
2131                 }
2132         }
2133         write_flags |= WIMLIB_WRITE_FLAG_REUSE_INTEGRITY_TABLE;
2134         ret = finish_write(w, WIMLIB_ALL_IMAGES, write_flags,
2135                            progress_func);
2136 out_truncate:
2137         close_wim_writable(w);
2138         if (ret != 0 && !(write_flags & WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE)) {
2139                 WARNING("Truncating `%"TS"' to its original size (%"PRIu64" bytes)",
2140                         w->filename, old_wim_end);
2141                 /* Return value of truncate() is ignored because this is already
2142                  * an error path. */
2143                 (void)ttruncate(w->filename, old_wim_end);
2144         }
2145         w->wim_locked = 0;
2146         return ret;
2147 }
2148
2149 static int
2150 overwrite_wim_via_tmpfile(WIMStruct *w, int write_flags,
2151                           unsigned num_threads,
2152                           wimlib_progress_func_t progress_func)
2153 {
2154         size_t wim_name_len;
2155         int ret;
2156
2157         DEBUG("Overwriting `%"TS"' via a temporary file", w->filename);
2158
2159         /* Write the WIM to a temporary file in the same directory as the
2160          * original WIM. */
2161         wim_name_len = tstrlen(w->filename);
2162         tchar tmpfile[wim_name_len + 10];
2163         tmemcpy(tmpfile, w->filename, wim_name_len);
2164         randomize_char_array_with_alnum(tmpfile + wim_name_len, 9);
2165         tmpfile[wim_name_len + 9] = T('\0');
2166
2167         ret = wimlib_write(w, tmpfile, WIMLIB_ALL_IMAGES,
2168                            write_flags | WIMLIB_WRITE_FLAG_FSYNC,
2169                            num_threads, progress_func);
2170         if (ret) {
2171                 ERROR("Failed to write the WIM file `%"TS"'", tmpfile);
2172                 goto out_unlink;
2173         }
2174
2175         DEBUG("Renaming `%"TS"' to `%"TS"'", tmpfile, w->filename);
2176
2177 #ifdef __WIN32__
2178         /* Windows won't let you delete open files unless FILE_SHARE_DELETE was
2179          * specified to CreateFile().  The WIM was opened with fopen(), which
2180          * didn't provided this flag to CreateFile, so the handle must be closed
2181          * before executing the rename(). */
2182         if (w->fp != NULL) {
2183                 fclose(w->fp);
2184                 w->fp = NULL;
2185         }
2186 #endif
2187
2188         /* Rename the new file to the old file .*/
2189         if (trename(tmpfile, w->filename) != 0) {
2190                 ERROR_WITH_ERRNO("Failed to rename `%"TS"' to `%"TS"'",
2191                                  tmpfile, w->filename);
2192                 ret = WIMLIB_ERR_RENAME;
2193                 goto out_unlink;
2194         }
2195
2196         if (progress_func) {
2197                 union wimlib_progress_info progress;
2198                 progress.rename.from = tmpfile;
2199                 progress.rename.to = w->filename;
2200                 progress_func(WIMLIB_PROGRESS_MSG_RENAME, &progress);
2201         }
2202
2203         /* Close the original WIM file that was opened for reading. */
2204         if (w->fp != NULL) {
2205                 fclose(w->fp);
2206                 w->fp = NULL;
2207         }
2208
2209         /* Re-open the WIM read-only. */
2210         w->fp = tfopen(w->filename, T("rb"));
2211         if (w->fp == NULL) {
2212                 ret = WIMLIB_ERR_REOPEN;
2213                 WARNING_WITH_ERRNO("Failed to re-open `%"TS"' read-only",
2214                                    w->filename);
2215                 FREE(w->filename);
2216                 w->filename = NULL;
2217         }
2218         goto out;
2219 out_unlink:
2220         /* Remove temporary file. */
2221         if (tunlink(tmpfile) != 0)
2222                 WARNING_WITH_ERRNO("Failed to remove `%"TS"'", tmpfile);
2223 out:
2224         return ret;
2225 }
2226
2227 /*
2228  * Writes a WIM file to the original file that it was read from, overwriting it.
2229  */
2230 WIMLIBAPI int
2231 wimlib_overwrite(WIMStruct *w, int write_flags,
2232                  unsigned num_threads,
2233                  wimlib_progress_func_t progress_func)
2234 {
2235         write_flags &= WIMLIB_WRITE_MASK_PUBLIC;
2236
2237         if (!w->filename)
2238                 return WIMLIB_ERR_NO_FILENAME;
2239
2240         if (w->hdr.total_parts != 1) {
2241                 ERROR("Cannot modify a split WIM");
2242                 return WIMLIB_ERR_SPLIT_UNSUPPORTED;
2243         }
2244
2245         if ((!w->deletion_occurred || (write_flags & WIMLIB_WRITE_FLAG_SOFT_DELETE))
2246             && !(write_flags & WIMLIB_WRITE_FLAG_REBUILD))
2247         {
2248                 int ret;
2249                 ret = overwrite_wim_inplace(w, write_flags, num_threads,
2250                                             progress_func);
2251                 if (ret == WIMLIB_ERR_RESOURCE_ORDER)
2252                         WARNING("Falling back to re-building entire WIM");
2253                 else
2254                         return ret;
2255         }
2256         return overwrite_wim_via_tmpfile(w, write_flags, num_threads,
2257                                          progress_func);
2258 }