]> wimlib.net Git - wimlib/blob - src/write.c
0aacdf13e04fc57e5abd3574c7321a929201c99c
[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 #ifdef HAVE_CONFIG_H
28 #  include "config.h"
29 #endif
30
31 #if defined(HAVE_SYS_FILE_H) && defined(HAVE_FLOCK)
32 /* On BSD, this should be included before "wimlib/list.h" so that "wimlib/list.h" can
33  * overwrite the LIST_HEAD macro. */
34 #  include <sys/file.h>
35 #endif
36
37 #include "wimlib/chunk_compressor.h"
38 #include "wimlib/endianness.h"
39 #include "wimlib/error.h"
40 #include "wimlib/file_io.h"
41 #include "wimlib/header.h"
42 #include "wimlib/integrity.h"
43 #include "wimlib/lookup_table.h"
44 #include "wimlib/metadata.h"
45 #include "wimlib/resource.h"
46 #ifdef __WIN32__
47 #  include "wimlib/win32.h" /* win32_rename_replacement() */
48 #endif
49 #include "wimlib/write.h"
50 #include "wimlib/xml.h"
51
52 #include <errno.h>
53 #include <fcntl.h>
54 #include <stdlib.h>
55 #include <unistd.h>
56
57 #ifdef HAVE_ALLOCA_H
58 #  include <alloca.h>
59 #endif
60
61 /* wimlib internal flags used when writing resources.  */
62 #define WRITE_RESOURCE_FLAG_RECOMPRESS          0x00000001
63 #define WRITE_RESOURCE_FLAG_PIPABLE             0x00000002
64 #define WRITE_RESOURCE_FLAG_PACK_STREAMS        0x00000004
65
66 static inline int
67 write_flags_to_resource_flags(int write_flags)
68 {
69         int write_resource_flags = 0;
70
71         if (write_flags & WIMLIB_WRITE_FLAG_RECOMPRESS)
72                 write_resource_flags |= WRITE_RESOURCE_FLAG_RECOMPRESS;
73         if (write_flags & WIMLIB_WRITE_FLAG_PIPABLE)
74                 write_resource_flags |= WRITE_RESOURCE_FLAG_PIPABLE;
75         if (write_flags & WIMLIB_WRITE_FLAG_PACK_STREAMS)
76                 write_resource_flags |= WRITE_RESOURCE_FLAG_PACK_STREAMS;
77         return write_resource_flags;
78 }
79
80 struct filter_context {
81         int write_flags;
82         WIMStruct *wim;
83 };
84
85 /* Determine specified stream should be filtered out from the write.
86  *
87  * Return values:
88  *
89  *  < 0 : The stream should be hard-filtered; that is, not included in the
90  *        output WIM at all.
91  *    0 : The stream should not be filtered out.
92  *  > 0 : The stream should be soft-filtered; that is, it already exists in the
93  *        WIM file and may not need to be written again.
94  */
95 static int
96 stream_filtered(const struct wim_lookup_table_entry *lte,
97                 const struct filter_context *ctx)
98 {
99         int write_flags = ctx->write_flags;
100         WIMStruct *wim = ctx->wim;
101
102         if (ctx == NULL)
103                 return 0;
104
105         if (write_flags & WIMLIB_WRITE_FLAG_OVERWRITE &&
106             lte->resource_location == RESOURCE_IN_WIM &&
107             lte->rspec->wim == wim)
108                 return 1;
109
110         if (write_flags & WIMLIB_WRITE_FLAG_SKIP_EXTERNAL_WIMS &&
111             lte->resource_location == RESOURCE_IN_WIM &&
112             lte->rspec->wim != wim)
113                 return -1;
114
115         return 0;
116 }
117
118 static bool
119 stream_hard_filtered(const struct wim_lookup_table_entry *lte,
120                      struct filter_context *ctx)
121 {
122         return stream_filtered(lte, ctx) < 0;
123 }
124
125 static inline int
126 may_soft_filter_streams(const struct filter_context *ctx)
127 {
128         if (ctx == NULL)
129                 return 0;
130         return ctx->write_flags & WIMLIB_WRITE_FLAG_OVERWRITE;
131 }
132
133 static inline int
134 may_hard_filter_streams(const struct filter_context *ctx)
135 {
136         if (ctx == NULL)
137                 return 0;
138         return ctx->write_flags & WIMLIB_WRITE_FLAG_SKIP_EXTERNAL_WIMS;
139 }
140
141 static inline int
142 may_filter_streams(const struct filter_context *ctx)
143 {
144         return (may_soft_filter_streams(ctx) ||
145                 may_hard_filter_streams(ctx));
146 }
147
148
149 /* Return true if the specified resource is compressed and the compressed data
150  * can be reused with the specified output parameters.  */
151 static bool
152 can_raw_copy(const struct wim_lookup_table_entry *lte,
153              int write_resource_flags, int out_ctype, u32 out_chunk_size)
154 {
155         const struct wim_resource_spec *rspec;
156
157         if (write_resource_flags & WRITE_RESOURCE_FLAG_RECOMPRESS)
158                 return false;
159
160         if (out_ctype == WIMLIB_COMPRESSION_TYPE_NONE)
161                 return false;
162
163         if (lte->resource_location != RESOURCE_IN_WIM)
164                 return false;
165
166         rspec = lte->rspec;
167
168         if (rspec->is_pipable != !!(write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE))
169                 return false;
170
171
172         if (rspec->flags & WIM_RESHDR_FLAG_COMPRESSED) {
173                 /* Normal compressed resource: Must use same compression type
174                  * and chunk size.  */
175                 return (rspec->wim->compression_type == out_ctype &&
176                         rspec->wim->chunk_size == out_chunk_size);
177         }
178
179         if ((rspec->flags & WIM_RESHDR_FLAG_PACKED_STREAMS) &&
180             (write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS))
181         {
182                 /* Packed resource: Such resources may contain multiple streams,
183                  * and in general only a subset of them need to be written.  As
184                  * a heuristic, re-use the raw data if at least half the
185                  * uncompressed size is being written.  */
186
187                 /* Note: packed resources contain a header that specifies the
188                  * compression type and chunk size; therefore we don't need to
189                  * check if they are compatible with @out_ctype and
190                  * @out_chunk_size.  */
191
192                 struct wim_lookup_table_entry *res_stream;
193                 u64 write_size = 0;
194
195                 list_for_each_entry(res_stream, &rspec->stream_list, rspec_node)
196                         if (res_stream->will_be_in_output_wim)
197                                 write_size += res_stream->size;
198
199                 return (write_size > rspec->uncompressed_size / 2);
200         }
201         return false;
202 }
203
204 static u8
205 filter_resource_flags(u8 flags)
206 {
207         return (flags & ~(WIM_RESHDR_FLAG_PACKED_STREAMS |
208                           WIM_RESHDR_FLAG_COMPRESSED |
209                           WIM_RESHDR_FLAG_SPANNED |
210                           WIM_RESHDR_FLAG_FREE));
211 }
212
213 static void
214 stream_set_out_reshdr_for_reuse(struct wim_lookup_table_entry *lte)
215 {
216         const struct wim_resource_spec *rspec;
217
218         wimlib_assert(lte->resource_location == RESOURCE_IN_WIM);
219         rspec = lte->rspec;
220
221         if (rspec->flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
222
223                 wimlib_assert(lte->flags & WIM_RESHDR_FLAG_PACKED_STREAMS);
224
225                 lte->out_reshdr.offset_in_wim = lte->offset_in_res;
226                 lte->out_reshdr.uncompressed_size = 0;
227                 lte->out_reshdr.size_in_wim = lte->size;
228
229                 lte->out_res_offset_in_wim = rspec->offset_in_wim;
230                 lte->out_res_size_in_wim = rspec->size_in_wim;
231                 /*lte->out_res_uncompressed_size = rspec->uncompressed_size;*/
232         } else {
233                 wimlib_assert(!(lte->flags & WIM_RESHDR_FLAG_PACKED_STREAMS));
234
235                 lte->out_reshdr.offset_in_wim = rspec->offset_in_wim;
236                 lte->out_reshdr.uncompressed_size = rspec->uncompressed_size;
237                 lte->out_reshdr.size_in_wim = rspec->size_in_wim;
238         }
239         lte->out_reshdr.flags = lte->flags;
240 }
241
242
243 /* Write the header for a stream in a pipable WIM.  */
244 static int
245 write_pwm_stream_header(const struct wim_lookup_table_entry *lte,
246                         struct filedes *out_fd,
247                         int additional_reshdr_flags)
248 {
249         struct pwm_stream_hdr stream_hdr;
250         u32 reshdr_flags;
251         int ret;
252
253         stream_hdr.magic = cpu_to_le64(PWM_STREAM_MAGIC);
254         stream_hdr.uncompressed_size = cpu_to_le64(lte->size);
255         if (additional_reshdr_flags & PWM_RESHDR_FLAG_UNHASHED) {
256                 zero_out_hash(stream_hdr.hash);
257         } else {
258                 wimlib_assert(!lte->unhashed);
259                 copy_hash(stream_hdr.hash, lte->hash);
260         }
261
262         reshdr_flags = filter_resource_flags(lte->flags);
263         reshdr_flags |= additional_reshdr_flags;
264         stream_hdr.flags = cpu_to_le32(reshdr_flags);
265         ret = full_write(out_fd, &stream_hdr, sizeof(stream_hdr));
266         if (ret)
267                 ERROR_WITH_ERRNO("Write error");
268         return ret;
269 }
270
271 struct write_streams_progress_data {
272         wimlib_progress_func_t progress_func;
273         union wimlib_progress_info progress;
274         uint64_t next_progress;
275         WIMStruct *prev_wim_part;
276 };
277
278 static void
279 do_write_streams_progress(struct write_streams_progress_data *progress_data,
280                           u64 size,
281                           bool discarded,
282                           struct wim_lookup_table_entry *cur_stream)
283 {
284         union wimlib_progress_info *progress = &progress_data->progress;
285         bool new_wim_part;
286
287         if (discarded) {
288                 progress->write_streams.total_bytes -= size;
289                 if (progress_data->next_progress != ~(uint64_t)0 &&
290                     progress_data->next_progress > progress->write_streams.total_bytes)
291                 {
292                         progress_data->next_progress = progress->write_streams.total_bytes;
293                 }
294         } else {
295                 progress->write_streams.completed_bytes += size;
296         }
297         new_wim_part = false;
298         if (cur_stream->resource_location == RESOURCE_IN_WIM &&
299             cur_stream->rspec->wim != progress_data->prev_wim_part)
300         {
301                 if (progress_data->prev_wim_part) {
302                         new_wim_part = true;
303                         progress->write_streams.completed_parts++;
304                 }
305                 progress_data->prev_wim_part = cur_stream->rspec->wim;
306         }
307         progress->write_streams.completed_streams++;
308         if (progress_data->progress_func
309             && (progress->write_streams.completed_bytes >= progress_data->next_progress
310                 || new_wim_part))
311         {
312                 progress_data->progress_func(WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
313                                              progress);
314                 if (progress_data->next_progress == progress->write_streams.total_bytes) {
315                         progress_data->next_progress = ~(uint64_t)0;
316                 } else {
317                         progress_data->next_progress =
318                                 min(progress->write_streams.total_bytes,
319                                     progress->write_streams.completed_bytes +
320                                         progress->write_streams.total_bytes / 100);
321                 }
322         }
323 }
324
325 struct write_streams_ctx {
326         /* File descriptor the streams are being written to.  */
327         struct filedes *out_fd;
328
329         /* Lookup table for the WIMStruct on whose behalf the streams are being
330          * written.  */
331         struct wim_lookup_table *lookup_table;
332
333         /* Compression format to use.  */
334         int out_ctype;
335
336         /* Maximum uncompressed chunk size in compressed resources to use.  */
337         u32 out_chunk_size;
338
339         /* Flags that affect how the streams will be written.  */
340         int write_resource_flags;
341
342         /* Data used for issuing WRITE_STREAMS progress.  */
343         struct write_streams_progress_data progress_data;
344
345         struct filter_context *filter_ctx;
346
347         /* Upper bound on the total number of bytes that need to be compressed.
348          * */
349         u64 num_bytes_to_compress;
350
351         /* Pointer to the chunk_compressor implementation being used for
352          * compressing chunks of data, or NULL if chunks are being written
353          * uncompressed.  */
354         struct chunk_compressor *compressor;
355
356         /* Buffer for dividing the read data into chunks of size
357          * @out_chunk_size.  */
358         u8 *chunk_buf;
359
360         /* Number of bytes in @chunk_buf that are currently filled.  */
361         size_t chunk_buf_filled;
362
363         /* List of streams that currently have chunks being compressed.  */
364         struct list_head pending_streams;
365
366         /* Set to true if the stream currently being read was a duplicate, and
367          * therefore the corresponding stream entry needs to be freed once the
368          * read finishes.  (In this case we add the duplicate entry to
369          * pending_streams rather than the entry being read.)  */
370         bool stream_was_duplicate;
371
372         /* Current uncompressed offset in the resource being read.  */
373         u64 cur_read_res_offset;
374
375         /* Uncompressed size of the resource currently being read.  */
376         u64 cur_read_res_size;
377
378         /* Current uncompressed offset in the resource being written.  */
379         u64 cur_write_res_offset;
380
381         /* Uncompressed size of resource currently being written.  */
382         u64 cur_write_res_size;
383
384         /* Array that is filled in with compressed chunk sizes as a resource is
385          * being written.  */
386         u64 *chunk_csizes;
387
388         /* Index of next entry in @chunk_csizes to fill in.  */
389         size_t chunk_index;
390
391         /* Number of entries in @chunk_csizes currently allocated.  */
392         size_t num_alloc_chunks;
393
394         /* Offset in the output file of the start of the chunks of the resource
395          * currently being written.  */
396         u64 chunks_start_offset;
397 };
398
399 static u64
400 get_chunk_entry_size(u64 res_size, int write_resource_flags)
401 {
402         if (res_size <= UINT32_MAX ||
403             (write_resource_flags & WIM_RESHDR_FLAG_PACKED_STREAMS))
404                 return 4;
405         else
406                 return 8;
407 }
408
409 /* Reserve space for the chunk table and prepare to accumulate the chunk table
410  * in memory.  */
411 static int
412 begin_chunk_table(struct write_streams_ctx *ctx, u64 res_expected_size)
413 {
414         u64 expected_num_chunks;
415         u64 expected_num_chunk_entries;
416         size_t reserve_size;
417         int ret;
418
419         /* Calculate the number of chunks and chunk entries that should be
420          * needed for the resource.  These normally will be the final values,
421          * but in PACKED_STREAMS mode some of the streams we're planning to
422          * write into the resource may be duplicates, and therefore discarded,
423          * potentially decreasing the number of chunk entries needed.  */
424         expected_num_chunks = DIV_ROUND_UP(res_expected_size, ctx->out_chunk_size);
425         expected_num_chunk_entries = expected_num_chunks;
426         if (!(ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS))
427                 expected_num_chunk_entries--;
428
429         /* Make sure the chunk_csizes array is long enough to store the
430          * compressed size of each chunk.  */
431         if (expected_num_chunks > ctx->num_alloc_chunks) {
432                 u64 new_length = expected_num_chunks + 50;
433
434                 if ((size_t)new_length != new_length) {
435                         ERROR("Resource size too large (%"PRIu64" bytes!",
436                               res_expected_size);
437                         return WIMLIB_ERR_NOMEM;
438                 }
439
440                 FREE(ctx->chunk_csizes);
441                 ctx->chunk_csizes = MALLOC(new_length * sizeof(ctx->chunk_csizes[0]));
442                 if (ctx->chunk_csizes == NULL) {
443                         ctx->num_alloc_chunks = 0;
444                         return WIMLIB_ERR_NOMEM;
445                 }
446                 ctx->num_alloc_chunks = new_length;
447         }
448
449         ctx->chunk_index = 0;
450
451         if (!(ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE)) {
452                 /* Reserve space for the chunk table in the output file.  In the
453                  * case of packed resources this reserves the upper bound for
454                  * the needed space, not necessarily the exact space which will
455                  * prove to be needed.  At this point, we just use @chunk_csizes
456                  * for a buffer of 0's because the actual compressed chunk sizes
457                  * are unknown.  */
458                 reserve_size = expected_num_chunk_entries *
459                                get_chunk_entry_size(res_expected_size,
460                                                     ctx->write_resource_flags);
461                 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS)
462                         reserve_size += sizeof(struct alt_chunk_table_header_disk);
463                 memset(ctx->chunk_csizes, 0, reserve_size);
464                 ret = full_write(ctx->out_fd, ctx->chunk_csizes, reserve_size);
465                 if (ret)
466                         return ret;
467         }
468         return 0;
469 }
470
471 static int
472 begin_write_resource(struct write_streams_ctx *ctx, u64 res_expected_size)
473 {
474         int ret;
475
476         wimlib_assert(res_expected_size != 0);
477
478         if (ctx->compressor != NULL) {
479                 ret = begin_chunk_table(ctx, res_expected_size);
480                 if (ret)
481                         return ret;
482         }
483
484         /* Output file descriptor is now positioned at the offset at which to
485          * write the first chunk of the resource.  */
486         ctx->chunks_start_offset = ctx->out_fd->offset;
487         ctx->cur_write_res_offset = 0;
488         ctx->cur_write_res_size = res_expected_size;
489         return 0;
490 }
491
492 static int
493 end_chunk_table(struct write_streams_ctx *ctx, u64 res_actual_size,
494                 u64 *res_start_offset_ret, u64 *res_store_size_ret)
495 {
496         size_t actual_num_chunks;
497         size_t actual_num_chunk_entries;
498         size_t chunk_entry_size;
499         int ret;
500
501         actual_num_chunks = ctx->chunk_index;
502         actual_num_chunk_entries = actual_num_chunks;
503         if (!(ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS))
504                 actual_num_chunk_entries--;
505
506         chunk_entry_size = get_chunk_entry_size(res_actual_size,
507                                                 ctx->write_resource_flags);
508
509         typedef le64 __attribute__((may_alias)) aliased_le64_t;
510         typedef le32 __attribute__((may_alias)) aliased_le32_t;
511
512         if (chunk_entry_size == 4) {
513                 aliased_le32_t *entries = (aliased_le32_t*)ctx->chunk_csizes;
514
515                 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS) {
516                         for (size_t i = 0; i < actual_num_chunk_entries; i++)
517                                 entries[i] = cpu_to_le32(ctx->chunk_csizes[i]);
518                 } else {
519                         u32 offset = ctx->chunk_csizes[0];
520                         for (size_t i = 0; i < actual_num_chunk_entries; i++) {
521                                 u32 next_size = ctx->chunk_csizes[i + 1];
522                                 entries[i] = cpu_to_le32(offset);
523                                 offset += next_size;
524                         }
525                 }
526         } else {
527                 aliased_le64_t *entries = (aliased_le64_t*)ctx->chunk_csizes;
528
529                 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS) {
530                         for (size_t i = 0; i < actual_num_chunk_entries; i++)
531                                 entries[i] = cpu_to_le64(ctx->chunk_csizes[i]);
532                 } else {
533                         u64 offset = ctx->chunk_csizes[0];
534                         for (size_t i = 0; i < actual_num_chunk_entries; i++) {
535                                 u64 next_size = ctx->chunk_csizes[i + 1];
536                                 entries[i] = cpu_to_le64(offset);
537                                 offset += next_size;
538                         }
539                 }
540         }
541
542         size_t chunk_table_size = actual_num_chunk_entries * chunk_entry_size;
543         u64 res_start_offset;
544         u64 res_end_offset;
545
546         if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE) {
547                 ret = full_write(ctx->out_fd, ctx->chunk_csizes, chunk_table_size);
548                 if (ret)
549                         goto error;
550                 res_end_offset = ctx->out_fd->offset;
551                 res_start_offset = ctx->chunks_start_offset;
552         } else {
553                 res_end_offset = ctx->out_fd->offset;
554
555                 u64 chunk_table_offset;
556
557                 chunk_table_offset = ctx->chunks_start_offset - chunk_table_size;
558
559                 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS) {
560                         struct alt_chunk_table_header_disk hdr;
561
562                         hdr.res_usize = cpu_to_le64(res_actual_size);
563                         hdr.chunk_size = cpu_to_le32(ctx->out_chunk_size);
564                         hdr.compression_format = cpu_to_le32(ctx->out_ctype);
565
566                         BUILD_BUG_ON(WIMLIB_COMPRESSION_TYPE_LZX != 1);
567                         BUILD_BUG_ON(WIMLIB_COMPRESSION_TYPE_XPRESS != 2);
568                         BUILD_BUG_ON(WIMLIB_COMPRESSION_TYPE_LZMS != 3);
569
570                         ret = full_pwrite(ctx->out_fd, &hdr, sizeof(hdr),
571                                           chunk_table_offset - sizeof(hdr));
572                         if (ret)
573                                 goto error;
574                         res_start_offset = chunk_table_offset - sizeof(hdr);
575                 } else {
576                         res_start_offset = chunk_table_offset;
577                 }
578
579                 ret = full_pwrite(ctx->out_fd, ctx->chunk_csizes,
580                                   chunk_table_size, chunk_table_offset);
581                 if (ret)
582                         goto error;
583         }
584
585         *res_start_offset_ret = res_start_offset;
586         *res_store_size_ret = res_end_offset - res_start_offset;
587
588         return 0;
589
590 error:
591         ERROR_WITH_ERRNO("Write error");
592         return ret;
593 }
594
595 /* Finish writing a WIM resource by writing or updating the chunk table (if not
596  * writing the data uncompressed) and loading its metadata into @out_reshdr.  */
597 static int
598 end_write_resource(struct write_streams_ctx *ctx, struct wim_reshdr *out_reshdr)
599 {
600         int ret;
601         u64 res_size_in_wim;
602         u64 res_uncompressed_size;
603         u64 res_offset_in_wim;
604
605         wimlib_assert(ctx->cur_write_res_size == ctx->cur_write_res_offset);
606         res_uncompressed_size = ctx->cur_write_res_size;
607
608         if (ctx->compressor) {
609                 ret = end_chunk_table(ctx, res_uncompressed_size,
610                                       &res_offset_in_wim, &res_size_in_wim);
611                 if (ret)
612                         return ret;
613         } else {
614                 res_offset_in_wim = ctx->chunks_start_offset;
615                 res_size_in_wim = ctx->out_fd->offset - res_offset_in_wim;
616         }
617         out_reshdr->uncompressed_size = res_uncompressed_size;
618         out_reshdr->size_in_wim = res_size_in_wim;
619         out_reshdr->offset_in_wim = res_offset_in_wim;
620         DEBUG("Finished writing resource: %"PRIu64" => %"PRIu64" @ %"PRIu64"",
621               res_uncompressed_size, res_size_in_wim, res_offset_in_wim);
622         return 0;
623 }
624
625 /* Begin processing a stream for writing.  */
626 static int
627 write_stream_begin_read(struct wim_lookup_table_entry *lte,
628                         bool is_partial_res, void *_ctx)
629 {
630         struct write_streams_ctx *ctx = _ctx;
631         int ret;
632
633         wimlib_assert(lte->size > 0);
634
635         ctx->cur_read_res_offset = 0;
636         ctx->cur_read_res_size = lte->size;
637
638         /* As an optimization, we allow some streams to be "unhashed", meaning
639          * their SHA1 message digests are unknown.  This is the case with
640          * streams that are added by scanning a directry tree with
641          * wimlib_add_image(), for example.  Since WIM uses single-instance
642          * streams, we don't know whether such each such stream really need to
643          * written until it is actually checksummed, unless it has a unique
644          * size.  In such cases we read and checksum the stream in this
645          * function, thereby advancing ahead of read_stream_list(), which will
646          * still provide the data again to write_stream_process_chunk().  This
647          * is okay because an unhashed stream cannot be in a WIM resource, which
648          * might be costly to decompress.  */
649         ctx->stream_was_duplicate = false;
650         if (ctx->lookup_table != NULL && lte->unhashed && !lte->unique_size) {
651
652                 wimlib_assert(!is_partial_res);
653
654                 struct wim_lookup_table_entry *lte_new;
655
656                 ret = hash_unhashed_stream(lte, ctx->lookup_table, &lte_new);
657                 if (ret)
658                         return ret;
659                 if (lte_new != lte) {
660                         /* Duplicate stream detected.  */
661
662                         if (lte_new->will_be_in_output_wim ||
663                             stream_filtered(lte_new, ctx->filter_ctx))
664                         {
665                                 /* The duplicate stream is already being
666                                  * included in the output WIM, or it would be
667                                  * filtered out if it had been.  Skip writing
668                                  * this stream (and reading it again) entirely,
669                                  * passing its output reference count to the
670                                  * duplicate stream in the former case.  */
671                                 DEBUG("Discarding duplicate stream of "
672                                       "length %"PRIu64, lte->size);
673                                 do_write_streams_progress(&ctx->progress_data,
674                                                           lte->size, true, lte);
675                                 list_del(&lte->write_streams_list);
676                                 list_del(&lte->lookup_table_list);
677                                 if (lte_new->will_be_in_output_wim)
678                                         lte_new->out_refcnt += lte->out_refcnt;
679                                 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS)
680                                         ctx->cur_write_res_size -= lte->size;
681                                 free_lookup_table_entry(lte);
682                                 return BEGIN_STREAM_STATUS_SKIP_STREAM;
683                         } else {
684                                 /* The duplicate stream can validly be written,
685                                  * but was not marked as such.  Discard the
686                                  * current stream entry and use the duplicate,
687                                  * but actually freeing the current entry must
688                                  * wait until read_stream_list() has finished
689                                  * reading its data.  */
690                                 DEBUG("Stream duplicate, but not already "
691                                       "selected for writing.");
692                                 list_replace(&lte->write_streams_list,
693                                              &lte_new->write_streams_list);
694                                 list_replace(&lte->lookup_table_list,
695                                              &lte_new->lookup_table_list);
696                                 lte_new->out_refcnt = lte->out_refcnt;
697                                 lte_new->will_be_in_output_wim = 1;
698                                 ctx->stream_was_duplicate = true;
699                                 lte = lte_new;
700                         }
701                 }
702         }
703         list_move_tail(&lte->write_streams_list, &ctx->pending_streams);
704         return 0;
705 }
706
707 static int
708 write_stream_uncompressed(struct wim_lookup_table_entry *lte,
709                           struct filedes *out_fd)
710 {
711         int ret;
712
713         if (-1 == lseek(out_fd->fd, lte->out_reshdr.offset_in_wim, SEEK_SET) ||
714             0 != ftruncate(out_fd->fd, lte->out_reshdr.offset_in_wim))
715         {
716                 ERROR_WITH_ERRNO("Can't truncate output file to "
717                                  "offset %"PRIu64, lte->out_reshdr.offset_in_wim);
718                 return WIMLIB_ERR_WRITE;
719         }
720
721         out_fd->offset = lte->out_reshdr.offset_in_wim;
722
723         ret = extract_stream_to_fd(lte, out_fd, lte->size);
724         if (ret)
725                 return ret;
726
727         wimlib_assert(out_fd->offset - lte->out_reshdr.offset_in_wim == lte->size);
728         lte->out_reshdr.size_in_wim = lte->size;
729         lte->out_reshdr.flags &= ~(WIM_RESHDR_FLAG_COMPRESSED |
730                                    WIM_RESHDR_FLAG_PACKED_STREAMS);
731         return 0;
732 }
733
734 /* Write the next chunk of (typically compressed) data to the output WIM,
735  * handling the writing of the chunk table.  */
736 static int
737 write_chunk(struct write_streams_ctx *ctx, const void *cchunk,
738             size_t csize, size_t usize)
739 {
740         int ret;
741
742         struct wim_lookup_table_entry *lte;
743
744         lte = list_entry(ctx->pending_streams.next,
745                          struct wim_lookup_table_entry, write_streams_list);
746
747         if (ctx->cur_write_res_offset == 0 &&
748             !(ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS))
749         {
750                 /* Starting to write a new stream in non-packed mode.  */
751
752                 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE) {
753                         int additional_reshdr_flags = 0;
754                         if (ctx->compressor != NULL)
755                                 additional_reshdr_flags |= WIM_RESHDR_FLAG_COMPRESSED;
756
757                         DEBUG("Writing pipable WIM stream header "
758                               "(offset=%"PRIu64")", ctx->out_fd->offset);
759
760                         ret = write_pwm_stream_header(lte, ctx->out_fd,
761                                                       additional_reshdr_flags);
762                         if (ret)
763                                 return ret;
764                 }
765
766                 ret = begin_write_resource(ctx, lte->size);
767                 if (ret)
768                         return ret;
769         }
770
771         if (ctx->compressor != NULL) {
772                 /* Record the compresed chunk size.  */
773                 wimlib_assert(ctx->chunk_index < ctx->num_alloc_chunks);
774                 ctx->chunk_csizes[ctx->chunk_index++] = csize;
775
776                /* If writing a pipable WIM, before the chunk data write a chunk
777                 * header that provides the compressed chunk size.  */
778                 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE) {
779                         struct pwm_chunk_hdr chunk_hdr = {
780                                 .compressed_size = cpu_to_le32(csize),
781                         };
782                         ret = full_write(ctx->out_fd, &chunk_hdr,
783                                          sizeof(chunk_hdr));
784                         if (ret)
785                                 goto error;
786                 }
787         }
788
789         /* Write the chunk data.  */
790         ret = full_write(ctx->out_fd, cchunk, csize);
791         if (ret)
792                 goto error;
793
794         ctx->cur_write_res_offset += usize;
795
796         do_write_streams_progress(&ctx->progress_data,
797                                   usize, false, lte);
798
799         if (ctx->cur_write_res_offset == ctx->cur_write_res_size &&
800             !(ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS))
801         {
802                 struct wim_lookup_table_entry *lte;
803
804                 lte = list_entry(ctx->pending_streams.next,
805                                  struct wim_lookup_table_entry, write_streams_list);
806                 wimlib_assert(ctx->cur_write_res_offset == lte->size);
807
808                 /* Finished writing a stream in non-packed mode.  */
809
810                 ret = end_write_resource(ctx, &lte->out_reshdr);
811                 if (ret)
812                         return ret;
813
814                 lte->out_reshdr.flags = filter_resource_flags(lte->flags);
815                 if (ctx->compressor != NULL)
816                         lte->out_reshdr.flags |= WIM_RESHDR_FLAG_COMPRESSED;
817
818                 if (ctx->compressor != NULL &&
819                     lte->out_reshdr.size_in_wim >= lte->out_reshdr.uncompressed_size &&
820                     !(ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE) &&
821                     !(lte->flags & WIM_RESHDR_FLAG_PACKED_STREAMS))
822                 {
823                         /* Stream did not compress to less than its original
824                          * size.  If we're not writing a pipable WIM (which
825                          * could mean the output file descriptor is
826                          * non-seekable), and the stream isn't located in a
827                          * resource pack (which would make reading it again
828                          * costly), truncate the file to the start of the stream
829                          * and write it uncompressed instead.  */
830                         DEBUG("Stream of size %"PRIu64" did not compress to "
831                               "less than original size; writing uncompressed.",
832                               lte->size);
833                         ret = write_stream_uncompressed(lte, ctx->out_fd);
834                         if (ret)
835                                 return ret;
836                 }
837
838                 wimlib_assert(lte->out_reshdr.uncompressed_size == lte->size);
839
840                 list_del(&lte->write_streams_list);
841                 ctx->cur_write_res_offset = 0;
842         }
843
844         return 0;
845
846 error:
847         ERROR_WITH_ERRNO("Write error");
848         return ret;
849 }
850
851 static int
852 submit_chunk_for_compression(struct write_streams_ctx *ctx,
853                              const void *chunk, size_t size)
854 {
855         /* While we are unable to submit the chunk for compression (due to too
856          * many chunks already outstanding), retrieve and write the next
857          * compressed chunk.  */
858         while (!ctx->compressor->submit_chunk(ctx->compressor, chunk, size)) {
859                 const void *cchunk;
860                 unsigned csize;
861                 unsigned usize;
862                 bool bret;
863                 int ret;
864
865                 bret = ctx->compressor->get_chunk(ctx->compressor,
866                                                   &cchunk, &csize, &usize);
867
868                 wimlib_assert(bret);
869
870                 ret = write_chunk(ctx, cchunk, csize, usize);
871                 if (ret)
872                         return ret;
873         }
874         return 0;
875 }
876
877 /* Process the next chunk of data to be written to a WIM resource.  */
878 static int
879 write_stream_process_chunk(const void *chunk, size_t size, void *_ctx)
880 {
881         struct write_streams_ctx *ctx = _ctx;
882         int ret;
883         const u8 *chunkptr, *chunkend;
884
885         wimlib_assert(size != 0);
886
887         if (ctx->compressor == NULL) {
888                 /* Write chunk uncompressed.  */
889                  ret = write_chunk(ctx, chunk, size, size);
890                  if (ret)
891                          return ret;
892                  ctx->cur_read_res_offset += size;
893                  return 0;
894         }
895
896         /* Submit the chunk for compression, but take into account that the
897          * @size the chunk was provided in may not correspond to the
898          * @out_chunk_size being used for compression.  */
899         chunkptr = chunk;
900         chunkend = chunkptr + size;
901         do {
902                 const u8 *resized_chunk;
903                 size_t needed_chunk_size;
904
905                 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS) {
906                         needed_chunk_size = ctx->out_chunk_size;
907                 } else {
908                         u64 res_bytes_remaining;
909
910                         res_bytes_remaining = ctx->cur_read_res_size -
911                                               ctx->cur_read_res_offset;
912                         needed_chunk_size = min(ctx->out_chunk_size,
913                                                 ctx->chunk_buf_filled +
914                                                         res_bytes_remaining);
915                 }
916
917                 if (ctx->chunk_buf_filled == 0 &&
918                     chunkend - chunkptr >= needed_chunk_size)
919                 {
920                         /* No intermediate buffering needed.  */
921                         resized_chunk = chunkptr;
922                         chunkptr += needed_chunk_size;
923                         ctx->cur_read_res_offset += needed_chunk_size;
924                 } else {
925                         /* Intermediate buffering needed.  */
926                         size_t bytes_consumed;
927
928                         bytes_consumed = min(chunkend - chunkptr,
929                                              needed_chunk_size - ctx->chunk_buf_filled);
930
931                         memcpy(&ctx->chunk_buf[ctx->chunk_buf_filled],
932                                chunkptr, bytes_consumed);
933
934                         resized_chunk = ctx->chunk_buf;
935
936                         chunkptr += bytes_consumed;
937                         ctx->cur_read_res_offset += bytes_consumed;
938                         ctx->chunk_buf_filled += bytes_consumed;
939                         if (ctx->chunk_buf_filled == needed_chunk_size) {
940                                 resized_chunk = ctx->chunk_buf;
941                                 ctx->chunk_buf_filled = 0;
942                         } else {
943                                 break;
944                         }
945
946                 }
947
948                 ret = submit_chunk_for_compression(ctx, resized_chunk,
949                                                    needed_chunk_size);
950                 if (ret)
951                         return ret;
952
953         } while (chunkptr != chunkend);
954         return 0;
955 }
956
957 /* Finish processing a stream for writing.  It may not have been completely
958  * written yet, as the chunk_compressor implementation may still have chunks
959  * buffered or being compressed.  */
960 static int
961 write_stream_end_read(struct wim_lookup_table_entry *lte, int status, void *_ctx)
962 {
963         struct write_streams_ctx *ctx = _ctx;
964         if (status == 0)
965                 wimlib_assert(ctx->cur_read_res_offset == ctx->cur_read_res_size);
966         if (ctx->stream_was_duplicate) {
967                 free_lookup_table_entry(lte);
968         } else if (lte->unhashed && ctx->lookup_table != NULL) {
969                 list_del(&lte->unhashed_list);
970                 lookup_table_insert(ctx->lookup_table, lte);
971                 lte->unhashed = 0;
972         }
973         return status;
974 }
975
976 /* Compute statistics about a list of streams that will be written.
977  *
978  * Assumes the streams are sorted such that all streams located in each distinct
979  * WIM (specified by WIMStruct) are together.  */
980 static void
981 compute_stream_list_stats(struct list_head *stream_list,
982                           struct write_streams_ctx *ctx)
983 {
984         struct wim_lookup_table_entry *lte;
985         u64 total_bytes = 0;
986         u64 num_streams = 0;
987         u64 total_parts = 0;
988         WIMStruct *prev_wim_part = NULL;
989
990         list_for_each_entry(lte, stream_list, write_streams_list) {
991                 num_streams++;
992                 total_bytes += lte->size;
993                 if (lte->resource_location == RESOURCE_IN_WIM) {
994                         if (prev_wim_part != lte->rspec->wim) {
995                                 prev_wim_part = lte->rspec->wim;
996                                 total_parts++;
997                         }
998                 }
999         }
1000         ctx->progress_data.progress.write_streams.total_bytes       = total_bytes;
1001         ctx->progress_data.progress.write_streams.total_streams     = num_streams;
1002         ctx->progress_data.progress.write_streams.completed_bytes   = 0;
1003         ctx->progress_data.progress.write_streams.completed_streams = 0;
1004         ctx->progress_data.progress.write_streams.compression_type  = ctx->out_ctype;
1005         ctx->progress_data.progress.write_streams.total_parts       = total_parts;
1006         ctx->progress_data.progress.write_streams.completed_parts   = 0;
1007         ctx->progress_data.next_progress = 0;
1008         ctx->progress_data.prev_wim_part = NULL;
1009 }
1010
1011 /* Find streams in @stream_list that can be copied to the output WIM in raw form
1012  * rather than compressed.  Delete these streams from @stream_list, and move one
1013  * per resource to @raw_copy_resources.  Return the total uncompressed size of
1014  * the streams that need to be compressed.  */
1015 static u64
1016 find_raw_copy_resources(struct list_head *stream_list,
1017                         int write_resource_flags,
1018                         int out_ctype,
1019                         u32 out_chunk_size,
1020                         struct list_head *raw_copy_resources)
1021 {
1022         struct wim_lookup_table_entry *lte, *tmp;
1023         u64 num_bytes_to_compress = 0;
1024
1025         INIT_LIST_HEAD(raw_copy_resources);
1026
1027         /* Initialize temporary raw_copy_ok flag.  */
1028         list_for_each_entry(lte, stream_list, write_streams_list)
1029                 if (lte->resource_location == RESOURCE_IN_WIM)
1030                         lte->rspec->raw_copy_ok = 0;
1031
1032         list_for_each_entry_safe(lte, tmp, stream_list, write_streams_list) {
1033                 if (lte->resource_location == RESOURCE_IN_WIM &&
1034                     lte->rspec->raw_copy_ok)
1035                 {
1036                         list_del(&lte->write_streams_list);
1037                 } else if (can_raw_copy(lte, write_resource_flags,
1038                                  out_ctype, out_chunk_size))
1039                 {
1040                         lte->rspec->raw_copy_ok = 1;
1041                         list_move_tail(&lte->write_streams_list,
1042                                        raw_copy_resources);
1043                 } else {
1044                         num_bytes_to_compress += lte->size;
1045                 }
1046         }
1047
1048         return num_bytes_to_compress;
1049 }
1050
1051 /* Copy a raw compressed resource located in another WIM file to the WIM file
1052  * being written.  */
1053 static int
1054 write_raw_copy_resource(struct wim_resource_spec *in_rspec,
1055                         struct filedes *out_fd)
1056 {
1057         u64 cur_read_offset;
1058         u64 end_read_offset;
1059         u8 buf[BUFFER_SIZE];
1060         size_t bytes_to_read;
1061         int ret;
1062         struct filedes *in_fd;
1063         struct wim_lookup_table_entry *lte;
1064         u64 out_offset_in_wim;
1065
1066         DEBUG("Copying raw compressed data (size_in_wim=%"PRIu64", "
1067               "uncompressed_size=%"PRIu64")",
1068               in_rspec->size_in_wim, in_rspec->uncompressed_size);
1069
1070         /* Copy the raw data.  */
1071         cur_read_offset = in_rspec->offset_in_wim;
1072         end_read_offset = cur_read_offset + in_rspec->size_in_wim;
1073
1074         out_offset_in_wim = out_fd->offset;
1075
1076         if (in_rspec->is_pipable) {
1077                 if (cur_read_offset < sizeof(struct pwm_stream_hdr))
1078                         return WIMLIB_ERR_INVALID_PIPABLE_WIM;
1079                 cur_read_offset -= sizeof(struct pwm_stream_hdr);
1080                 out_offset_in_wim += sizeof(struct pwm_stream_hdr);
1081         }
1082         in_fd = &in_rspec->wim->in_fd;
1083         wimlib_assert(cur_read_offset != end_read_offset);
1084         do {
1085
1086                 bytes_to_read = min(sizeof(buf), end_read_offset - cur_read_offset);
1087
1088                 ret = full_pread(in_fd, buf, bytes_to_read, cur_read_offset);
1089                 if (ret)
1090                         return ret;
1091
1092                 ret = full_write(out_fd, buf, bytes_to_read);
1093                 if (ret)
1094                         return ret;
1095
1096                 cur_read_offset += bytes_to_read;
1097
1098         } while (cur_read_offset != end_read_offset);
1099
1100         list_for_each_entry(lte, &in_rspec->stream_list, rspec_node) {
1101                 if (lte->will_be_in_output_wim) {
1102                         stream_set_out_reshdr_for_reuse(lte);
1103                         if (in_rspec->flags & WIM_RESHDR_FLAG_PACKED_STREAMS)
1104                                 lte->out_res_offset_in_wim = out_offset_in_wim;
1105                         else
1106                                 lte->out_reshdr.offset_in_wim = out_offset_in_wim;
1107
1108                 }
1109         }
1110         return 0;
1111 }
1112
1113 /* Copy a list of raw compressed resources located other WIM file(s) to the WIM
1114  * file being written.  */
1115 static int
1116 write_raw_copy_resources(struct list_head *raw_copy_resources,
1117                          struct filedes *out_fd,
1118                          struct write_streams_progress_data *progress_data)
1119 {
1120         struct wim_lookup_table_entry *lte;
1121         int ret;
1122
1123         list_for_each_entry(lte, raw_copy_resources, write_streams_list) {
1124                 ret = write_raw_copy_resource(lte->rspec, out_fd);
1125                 if (ret)
1126                         return ret;
1127                 do_write_streams_progress(progress_data, lte->size, false, lte);
1128         }
1129         return 0;
1130 }
1131
1132 /* Wait for and write all chunks pending in the compressor.  */
1133 static int
1134 finish_remaining_chunks(struct write_streams_ctx *ctx)
1135 {
1136         const void *cdata;
1137         unsigned csize;
1138         unsigned usize;
1139         int ret;
1140
1141         if (ctx->compressor == NULL)
1142                 return 0;
1143
1144         if (ctx->chunk_buf_filled != 0) {
1145                 ret = submit_chunk_for_compression(ctx, ctx->chunk_buf,
1146                                                    ctx->chunk_buf_filled);
1147                 if (ret)
1148                         return ret;
1149         }
1150
1151         while (ctx->compressor->get_chunk(ctx->compressor, &cdata, &csize, &usize)) {
1152                 ret = write_chunk(ctx, cdata, csize, usize);
1153                 if (ret)
1154                         return ret;
1155         }
1156         return 0;
1157 }
1158
1159 static void
1160 remove_zero_length_streams(struct list_head *stream_list)
1161 {
1162         struct wim_lookup_table_entry *lte, *tmp;
1163
1164         list_for_each_entry_safe(lte, tmp, stream_list, write_streams_list) {
1165                 wimlib_assert(lte->will_be_in_output_wim);
1166                 if (lte->size == 0) {
1167                         list_del(&lte->write_streams_list);
1168                         lte->out_reshdr.offset_in_wim = 0;
1169                         lte->out_reshdr.size_in_wim = 0;
1170                         lte->out_reshdr.uncompressed_size = 0;
1171                         lte->out_reshdr.flags = filter_resource_flags(lte->flags);
1172                 }
1173         }
1174 }
1175
1176 /*
1177  * Write a list of streams to the output WIM file.
1178  *
1179  * @stream_list
1180  *      The list of streams to write, specifies a list of `struct
1181  *      wim_lookup_table_entry's linked by the 'write_streams_list' member.
1182  *
1183  * @out_fd
1184  *      The file descriptor, opened for writing, to which to write the streams.
1185  *
1186  * @write_resource_flags
1187  *      Flags to modify how the streams are written:
1188  *
1189  *      WRITE_RESOURCE_FLAG_RECOMPRESS:
1190  *              Force compression of all resources, even if they could otherwise
1191  *              be re-used by caping the raw data, due to being located in a WIM
1192  *              file with compatible compression parameters.
1193  *
1194  *      WRITE_RESOURCE_FLAG_PIPABLE:
1195  *              Write the resources in the wimlib-specific pipable format, and
1196  *              furthermore do so in such a way that no seeking backwards in
1197  *              @out_fd will be performed (so it may be a pipe, contrary to the
1198  *              default behavior).
1199  *
1200  *      WRITE_RESOURCE_FLAG_PACK_STREAMS:
1201  *              Pack all the streams into a single resource rather than writing
1202  *              them in separate resources.  This format is only valid if the
1203  *              WIM version number is WIM_VERSION_PACKED_STREAMS.  This flag
1204  *              currently may not be combined with WRITE_RESOURCE_FLAG_PIPABLE.
1205  *
1206  * @out_ctype
1207  *      Compression format to use to write the output streams, specified as one
1208  *      of the WIMLIB_COMPRESSION_TYPE_* constants, excepting
1209  *      WIMLIB_COMPRESSION_TYPE_INVALID but including
1210  *      WIMLIB_COMPRESSION_TYPE_NONE.
1211  *
1212  * @out_chunk_size
1213  *      Chunk size to use to write the streams.  It must be a valid chunk size
1214  *      for the specified compression format @out_ctype, unless @out_ctype is
1215  *      WIMLIB_COMPRESSION_TYPE_NONE, in which case this parameter is ignored.
1216  *
1217  * @num_threads
1218  *      Number of threads to use to compress data.  If 0, a default number of
1219  *      threads will be chosen.  The number of threads still may be decreased
1220  *      from the specified value if insufficient memory is detected.
1221  *
1222  * @lookup_table
1223  *      If on-the-fly deduplication of unhashed streams is desired, this
1224  *      parameter must be pointer to the lookup table for the WIMStruct on whose
1225  *      behalf the streams are being written.  Otherwise, this parameter can be
1226  *      NULL.
1227  *
1228  * @filter_ctx
1229  *      If on-the-fly deduplication of unhashed streams is desired, this
1230  *      parameter can be a pointer to a context for stream filtering used to
1231  *      detect whether the duplicate stream has been hard-filtered or not.  If
1232  *      no streams are hard-filtered or no streams are unhashed, this parameter
1233  *      can be NULL.
1234  *
1235  * @progress_func
1236  *      If non-NULL, a progress function that will be called periodically with
1237  *      WIMLIB_PROGRESS_MSG_WRITE_STREAMS messages.  Note that on-the-fly
1238  *      deduplication of unhashed streams may result in the total bytes provided
1239  *      in the progress data to decrease from one message to the next.
1240  *
1241  * This function will write the streams in @stream_list to resources in
1242  * consecutive positions in the output WIM file, or to a single packed resource
1243  * if WRITE_RESOURCE_FLAG_PACK_STREAMS was specified in @write_resource_flags.
1244  * In both cases, the @out_reshdr of the `struct wim_lookup_table_entry' for
1245  * each stream written will be updated to specify its location, size, and flags
1246  * in the output WIM.  In the packed resource case,
1247  * WIM_RESHDR_FLAG_PACKED_STREAMS shall be set in the @flags field of the
1248  * @out_reshdr, and @out_res_offset_in_wim and @out_res_size_in_wim will also
1249  * be set to the offset and size, respectively, in the output WIM of the full
1250  * packed resource containing the corresponding stream.
1251  *
1252  * Each of the streams to write may be in any location supported by the
1253  * resource-handling code (specifically, read_stream_list()), such as the
1254  * contents of external file that has been logically added to the output WIM, or
1255  * a stream in another WIM file that has been imported, or even stream in the
1256  * "same" WIM file of which a modified copy is being written.  In the case that
1257  * a stream is already in a WIM file and uses compatible compression parameters,
1258  * by default this function will re-use the raw data instead of decompressing
1259  * it, then recompressing it; however, with WRITE_RESOURCE_FLAG_RECOMPRESS
1260  * specified in @write_resource_flags, this is not done.
1261  *
1262  * As a further requirement, this function requires that the
1263  * @will_be_in_output_wim member be set on all streams in @stream_list as well
1264  * as any other streams not in @stream_list that will be in the output WIM file,
1265  * but not on any other streams in the output WIM's lookup table or sharing a
1266  * packed resource with a stream in @stream_list.  Still furthermore, if
1267  * on-the-fly deduplication of streams is possible, then all streams in
1268  * @stream_list must also be linked by @lookup_table_list along with any other
1269  * streams that have @will_be_in_output_wim set.
1270  *
1271  * This function handles on-the-fly deduplication of streams for which SHA1
1272  * message digests have not yet been calculated and it is therefore known
1273  * whether such streams are already in @stream_list or in the WIM's lookup table
1274  * at all.  If @lookup_table is non-NULL, then each stream in @stream_list that
1275  * has @unhashed set but not @unique_size set is checksummed immediately before
1276  * it would otherwise be read for writing in order to determine if it is
1277  * identical to another stream already being written or one that would be
1278  * filtered out of the output WIM using stream_filtered() with the context
1279  * @filter_ctx.  Each such duplicate stream will be removed from @stream_list, its
1280  * reference count transfered to the pre-existing duplicate stream, its memory
1281  * freed, and will not be written.  Alternatively, if a stream in @stream_list
1282  * is a duplicate with any stream in @lookup_table that has not been marked for
1283  * writing or would not be hard-filtered, it is freed and the pre-existing
1284  * duplicate is written instead, taking ownership of the reference count and
1285  * slot in the @lookup_table_list.
1286  *
1287  * Returns 0 if all streams were written successfully (or did not need to be
1288  * written); otherwise a non-zero error code.
1289  */
1290 static int
1291 write_stream_list(struct list_head *stream_list,
1292                   struct filedes *out_fd,
1293                   int write_resource_flags,
1294                   int out_ctype,
1295                   u32 out_chunk_size,
1296                   unsigned num_threads,
1297                   struct wim_lookup_table *lookup_table,
1298                   struct filter_context *filter_ctx,
1299                   wimlib_progress_func_t progress_func)
1300 {
1301         int ret;
1302         struct write_streams_ctx ctx;
1303         struct list_head raw_copy_resources;
1304
1305         wimlib_assert((write_resource_flags &
1306                        (WRITE_RESOURCE_FLAG_PACK_STREAMS |
1307                         WRITE_RESOURCE_FLAG_PIPABLE)) !=
1308                                 (WRITE_RESOURCE_FLAG_PACK_STREAMS |
1309                                  WRITE_RESOURCE_FLAG_PIPABLE));
1310
1311         remove_zero_length_streams(stream_list);
1312
1313         if (list_empty(stream_list)) {
1314                 DEBUG("No streams to write.");
1315                 return 0;
1316         }
1317
1318         memset(&ctx, 0, sizeof(ctx));
1319
1320         /* Pre-sorting the streams is required for compute_stream_list_stats().
1321          * Afterwards, read_stream_list() need not sort them again.  */
1322         ret = sort_stream_list_by_sequential_order(stream_list,
1323                                                    offsetof(struct wim_lookup_table_entry,
1324                                                             write_streams_list));
1325         if (ret)
1326                 return ret;
1327
1328         ctx.out_fd = out_fd;
1329         ctx.lookup_table = lookup_table;
1330         ctx.out_ctype = out_ctype;
1331         ctx.out_chunk_size = out_chunk_size;
1332         ctx.write_resource_flags = write_resource_flags;
1333         ctx.filter_ctx = filter_ctx;
1334
1335         if (out_chunk_size != 0) {
1336                 if (out_chunk_size <= STACK_MAX) {
1337                         ctx.chunk_buf = alloca(out_chunk_size);
1338                 } else {
1339                         ctx.chunk_buf = MALLOC(out_chunk_size);
1340                         if (ctx.chunk_buf == NULL) {
1341                                 ret = WIMLIB_ERR_NOMEM;
1342                                 goto out_destroy_context;
1343                         }
1344                 }
1345         }
1346         ctx.chunk_buf_filled = 0;
1347
1348         compute_stream_list_stats(stream_list, &ctx);
1349
1350         ctx.progress_data.progress_func = progress_func;
1351
1352         ctx.num_bytes_to_compress = find_raw_copy_resources(stream_list,
1353                                                             write_resource_flags,
1354                                                             out_ctype,
1355                                                             out_chunk_size,
1356                                                             &raw_copy_resources);
1357
1358         DEBUG("Writing stream list "
1359               "(offset = %"PRIu64", write_resource_flags=0x%08x, "
1360               "out_ctype=%d, out_chunk_size=%u, num_threads=%u, "
1361               "total_bytes=%"PRIu64", num_bytes_to_compress=%"PRIu64")",
1362               out_fd->offset, write_resource_flags,
1363               out_ctype, out_chunk_size, num_threads,
1364               ctx.progress_data.progress.write_streams.total_bytes,
1365               ctx.num_bytes_to_compress);
1366
1367         if (ctx.num_bytes_to_compress == 0) {
1368                 DEBUG("No compression needed; skipping to raw copy!");
1369                 goto out_write_raw_copy_resources;
1370         }
1371
1372         /* Unless uncompressed output was required, allocate a chunk_compressor
1373          * to do compression.  There are serial and parallel implementations of
1374          * the chunk_compressor interface.  We default to parallel using the
1375          * specified number of threads, unless the upper bound on the number
1376          * bytes needing to be compressed is less 2000000 (heuristic value).  */
1377         if (out_ctype != WIMLIB_COMPRESSION_TYPE_NONE) {
1378
1379                 if (out_ctype == WIMLIB_COMPRESSION_TYPE_LZMS &&
1380                     ctx.lookup_table != NULL) {
1381                         WARNING("LZMS compression not implemented; data will "
1382                                 "actually be written uncompressed.");
1383                 }
1384
1385         #ifdef ENABLE_MULTITHREADED_COMPRESSION
1386                 if (ctx.num_bytes_to_compress >= 2000000) {
1387                         ret = new_parallel_chunk_compressor(out_ctype,
1388                                                             out_chunk_size,
1389                                                             num_threads, 0,
1390                                                             &ctx.compressor);
1391                         if (ret) {
1392                                 DEBUG("Couldn't create parallel chunk compressor "
1393                                       "(status %d)", ret);
1394                         }
1395                 }
1396         #endif
1397
1398                 if (ctx.compressor == NULL) {
1399                         ret = new_serial_chunk_compressor(out_ctype, out_chunk_size,
1400                                                           &ctx.compressor);
1401                         if (ret)
1402                                 goto out_destroy_context;
1403                 }
1404         }
1405
1406         if (ctx.compressor)
1407                 ctx.progress_data.progress.write_streams.num_threads = ctx.compressor->num_threads;
1408         else
1409                 ctx.progress_data.progress.write_streams.num_threads = 1;
1410
1411         DEBUG("Actually using %u threads",
1412               ctx.progress_data.progress.write_streams.num_threads);
1413
1414         INIT_LIST_HEAD(&ctx.pending_streams);
1415
1416         if (ctx.progress_data.progress_func) {
1417                 (*ctx.progress_data.progress_func)(WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
1418                                                    &ctx.progress_data.progress);
1419         }
1420
1421         if (write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS) {
1422                 ret = begin_write_resource(&ctx, ctx.num_bytes_to_compress);
1423                 if (ret)
1424                         goto out_destroy_context;
1425         }
1426
1427         /* Read the list of streams needing to be compressed, using the
1428          * specified callbacks to execute processing of the data.  */
1429
1430         struct read_stream_list_callbacks cbs = {
1431                 .begin_stream           = write_stream_begin_read,
1432                 .begin_stream_ctx       = &ctx,
1433                 .consume_chunk          = write_stream_process_chunk,
1434                 .consume_chunk_ctx      = &ctx,
1435                 .end_stream             = write_stream_end_read,
1436                 .end_stream_ctx         = &ctx,
1437         };
1438
1439         ret = read_stream_list(stream_list,
1440                                offsetof(struct wim_lookup_table_entry, write_streams_list),
1441                                &cbs,
1442                                STREAM_LIST_ALREADY_SORTED |
1443                                         VERIFY_STREAM_HASHES |
1444                                         COMPUTE_MISSING_STREAM_HASHES);
1445
1446         if (ret)
1447                 goto out_destroy_context;
1448
1449         ret = finish_remaining_chunks(&ctx);
1450         if (ret)
1451                 goto out_destroy_context;
1452
1453         if (write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS) {
1454                 struct wim_reshdr reshdr;
1455                 struct wim_lookup_table_entry *lte;
1456                 u64 offset_in_res;
1457
1458                 ret = end_write_resource(&ctx, &reshdr);
1459                 if (ret)
1460                         goto out_destroy_context;
1461
1462                 DEBUG("Ending packed resource: %lu %lu %lu.",
1463                       reshdr.offset_in_wim,
1464                       reshdr.size_in_wim,
1465                       reshdr.uncompressed_size);
1466
1467                 offset_in_res = 0;
1468                 list_for_each_entry(lte, &ctx.pending_streams, write_streams_list) {
1469                         lte->out_reshdr.size_in_wim = lte->size;
1470                         lte->out_reshdr.flags = filter_resource_flags(lte->flags);
1471                         lte->out_reshdr.flags |= WIM_RESHDR_FLAG_PACKED_STREAMS;
1472                         lte->out_reshdr.uncompressed_size = 0;
1473                         lte->out_reshdr.offset_in_wim = offset_in_res;
1474                         lte->out_res_offset_in_wim = reshdr.offset_in_wim;
1475                         lte->out_res_size_in_wim = reshdr.size_in_wim;
1476                         /*lte->out_res_uncompressed_size = reshdr.uncompressed_size;*/
1477                         offset_in_res += lte->size;
1478                 }
1479                 wimlib_assert(offset_in_res == reshdr.uncompressed_size);
1480         }
1481
1482 out_write_raw_copy_resources:
1483         /* Copy any compressed resources for which the raw data can be reused
1484          * without decompression.  */
1485         ret = write_raw_copy_resources(&raw_copy_resources, ctx.out_fd,
1486                                        &ctx.progress_data);
1487
1488 out_destroy_context:
1489         if (out_chunk_size > STACK_MAX)
1490                 FREE(ctx.chunk_buf);
1491         FREE(ctx.chunk_csizes);
1492         if (ctx.compressor)
1493                 ctx.compressor->destroy(ctx.compressor);
1494         DEBUG("Done (ret=%d)", ret);
1495         return ret;
1496 }
1497
1498 static int
1499 write_wim_resource(struct wim_lookup_table_entry *lte,
1500                    struct filedes *out_fd,
1501                    int out_ctype,
1502                    u32 out_chunk_size,
1503                    int write_resource_flags)
1504 {
1505         LIST_HEAD(stream_list);
1506         list_add(&lte->write_streams_list, &stream_list);
1507         lte->will_be_in_output_wim = 1;
1508         return write_stream_list(&stream_list,
1509                                  out_fd,
1510                                  write_resource_flags & ~WRITE_RESOURCE_FLAG_PACK_STREAMS,
1511                                  out_ctype,
1512                                  out_chunk_size,
1513                                  1,
1514                                  NULL,
1515                                  NULL,
1516                                  NULL);
1517 }
1518
1519 int
1520 write_wim_resource_from_buffer(const void *buf, size_t buf_size,
1521                                int reshdr_flags, struct filedes *out_fd,
1522                                int out_ctype,
1523                                u32 out_chunk_size,
1524                                struct wim_reshdr *out_reshdr,
1525                                u8 *hash,
1526                                int write_resource_flags)
1527 {
1528         int ret;
1529         struct wim_lookup_table_entry *lte;
1530
1531         /* Set up a temporary lookup table entry to provide to
1532          * write_wim_resource().  */
1533
1534         lte = new_lookup_table_entry();
1535         if (lte == NULL)
1536                 return WIMLIB_ERR_NOMEM;
1537
1538         lte->resource_location  = RESOURCE_IN_ATTACHED_BUFFER;
1539         lte->attached_buffer    = (void*)buf;
1540         lte->size               = buf_size;
1541         lte->flags              = reshdr_flags;
1542
1543         if (write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE) {
1544                 sha1_buffer(buf, buf_size, lte->hash);
1545                 lte->unhashed = 0;
1546         } else {
1547                 lte->unhashed = 1;
1548         }
1549
1550         ret = write_wim_resource(lte, out_fd, out_ctype, out_chunk_size,
1551                                  write_resource_flags);
1552         if (ret)
1553                 goto out_free_lte;
1554
1555         copy_reshdr(out_reshdr, &lte->out_reshdr);
1556
1557         if (hash)
1558                 copy_hash(hash, lte->hash);
1559         ret = 0;
1560 out_free_lte:
1561         lte->resource_location = RESOURCE_NONEXISTENT;
1562         free_lookup_table_entry(lte);
1563         return ret;
1564 }
1565
1566 struct stream_size_table {
1567         struct hlist_head *array;
1568         size_t num_entries;
1569         size_t capacity;
1570 };
1571
1572 static int
1573 init_stream_size_table(struct stream_size_table *tab, size_t capacity)
1574 {
1575         tab->array = CALLOC(capacity, sizeof(tab->array[0]));
1576         if (tab->array == NULL)
1577                 return WIMLIB_ERR_NOMEM;
1578         tab->num_entries = 0;
1579         tab->capacity = capacity;
1580         return 0;
1581 }
1582
1583 static void
1584 destroy_stream_size_table(struct stream_size_table *tab)
1585 {
1586         FREE(tab->array);
1587 }
1588
1589 static int
1590 stream_size_table_insert(struct wim_lookup_table_entry *lte, void *_tab)
1591 {
1592         struct stream_size_table *tab = _tab;
1593         size_t pos;
1594         struct wim_lookup_table_entry *same_size_lte;
1595         struct hlist_node *tmp;
1596
1597         pos = hash_u64(lte->size) % tab->capacity;
1598         lte->unique_size = 1;
1599         hlist_for_each_entry(same_size_lte, tmp, &tab->array[pos], hash_list_2) {
1600                 if (same_size_lte->size == lte->size) {
1601                         lte->unique_size = 0;
1602                         same_size_lte->unique_size = 0;
1603                         break;
1604                 }
1605         }
1606
1607         hlist_add_head(&lte->hash_list_2, &tab->array[pos]);
1608         tab->num_entries++;
1609         return 0;
1610 }
1611
1612 struct find_streams_ctx {
1613         WIMStruct *wim;
1614         int write_flags;
1615         struct list_head stream_list;
1616         struct stream_size_table stream_size_tab;
1617 };
1618
1619 static void
1620 reference_stream_for_write(struct wim_lookup_table_entry *lte,
1621                            struct list_head *stream_list, u32 nref)
1622 {
1623         if (!lte->will_be_in_output_wim) {
1624                 lte->out_refcnt = 0;
1625                 list_add_tail(&lte->write_streams_list, stream_list);
1626                 lte->will_be_in_output_wim = 1;
1627         }
1628         lte->out_refcnt += nref;
1629 }
1630
1631 static int
1632 fully_reference_stream_for_write(struct wim_lookup_table_entry *lte,
1633                                  void *_stream_list)
1634 {
1635         struct list_head *stream_list = _stream_list;
1636         lte->will_be_in_output_wim = 0;
1637         reference_stream_for_write(lte, stream_list, lte->refcnt);
1638         return 0;
1639 }
1640
1641 static int
1642 inode_find_streams_to_reference(const struct wim_inode *inode,
1643                                 const struct wim_lookup_table *table,
1644                                 struct list_head *stream_list)
1645 {
1646         struct wim_lookup_table_entry *lte;
1647         unsigned i;
1648
1649         wimlib_assert(inode->i_nlink > 0);
1650
1651         for (i = 0; i <= inode->i_num_ads; i++) {
1652                 lte = inode_stream_lte(inode, i, table);
1653                 if (lte)
1654                         reference_stream_for_write(lte, stream_list,
1655                                                    inode->i_nlink);
1656                 else if (!is_zero_hash(inode_stream_hash(inode, i)))
1657                         return WIMLIB_ERR_RESOURCE_NOT_FOUND;
1658         }
1659         return 0;
1660 }
1661
1662 static int
1663 do_stream_set_not_in_output_wim(struct wim_lookup_table_entry *lte, void *_ignore)
1664 {
1665         lte->will_be_in_output_wim = 0;
1666         return 0;
1667 }
1668
1669 static int
1670 image_find_streams_to_reference(WIMStruct *wim)
1671 {
1672         struct wim_image_metadata *imd;
1673         struct wim_inode *inode;
1674         struct wim_lookup_table_entry *lte;
1675         struct list_head *stream_list;
1676         int ret;
1677
1678         imd = wim_get_current_image_metadata(wim);
1679
1680         image_for_each_unhashed_stream(lte, imd)
1681                 lte->will_be_in_output_wim = 0;
1682
1683         stream_list = wim->private;
1684         image_for_each_inode(inode, imd) {
1685                 ret = inode_find_streams_to_reference(inode,
1686                                                       wim->lookup_table,
1687                                                       stream_list);
1688                 if (ret)
1689                         return ret;
1690         }
1691         return 0;
1692 }
1693
1694 static int
1695 prepare_unfiltered_list_of_streams_in_output_wim(WIMStruct *wim,
1696                                                  int image,
1697                                                  int streams_ok,
1698                                                  struct list_head *stream_list_ret)
1699 {
1700         int ret;
1701
1702         INIT_LIST_HEAD(stream_list_ret);
1703
1704         if (streams_ok && (image == WIMLIB_ALL_IMAGES ||
1705                            (image == 1 && wim->hdr.image_count == 1)))
1706         {
1707                 /* Fast case:  Assume that all streams are being written and
1708                  * that the reference counts are correct.  */
1709                 struct wim_lookup_table_entry *lte;
1710                 struct wim_image_metadata *imd;
1711                 unsigned i;
1712
1713                 for_lookup_table_entry(wim->lookup_table,
1714                                        fully_reference_stream_for_write,
1715                                        stream_list_ret);
1716
1717                 for (i = 0; i < wim->hdr.image_count; i++) {
1718                         imd = wim->image_metadata[i];
1719                         image_for_each_unhashed_stream(lte, imd)
1720                                 fully_reference_stream_for_write(lte, stream_list_ret);
1721                 }
1722         } else {
1723                 /* Slow case:  Walk through the images being written and
1724                  * determine the streams referenced.  */
1725                 for_lookup_table_entry(wim->lookup_table,
1726                                        do_stream_set_not_in_output_wim, NULL);
1727                 wim->private = stream_list_ret;
1728                 ret = for_image(wim, image, image_find_streams_to_reference);
1729                 if (ret)
1730                         return ret;
1731         }
1732
1733         return 0;
1734 }
1735
1736 struct insert_other_if_hard_filtered_ctx {
1737         struct stream_size_table *tab;
1738         struct filter_context *filter_ctx;
1739 };
1740
1741 static int
1742 insert_other_if_hard_filtered(struct wim_lookup_table_entry *lte, void *_ctx)
1743 {
1744         struct insert_other_if_hard_filtered_ctx *ctx = _ctx;
1745
1746         if (!lte->will_be_in_output_wim &&
1747             stream_hard_filtered(lte, ctx->filter_ctx))
1748                 stream_size_table_insert(lte, ctx->tab);
1749         return 0;
1750 }
1751
1752 static int
1753 determine_stream_size_uniquity(struct list_head *stream_list,
1754                                struct wim_lookup_table *lt,
1755                                struct filter_context *filter_ctx)
1756 {
1757         int ret;
1758         struct stream_size_table tab;
1759         struct wim_lookup_table_entry *lte;
1760
1761         ret = init_stream_size_table(&tab, lt->capacity);
1762         if (ret)
1763                 return ret;
1764
1765         if (may_hard_filter_streams(filter_ctx)) {
1766                 struct insert_other_if_hard_filtered_ctx ctx = {
1767                         .tab = &tab,
1768                         .filter_ctx = filter_ctx,
1769                 };
1770                 for_lookup_table_entry(lt, insert_other_if_hard_filtered, &ctx);
1771         }
1772
1773         list_for_each_entry(lte, stream_list, write_streams_list)
1774                 stream_size_table_insert(lte, &tab);
1775
1776         destroy_stream_size_table(&tab);
1777         return 0;
1778 }
1779
1780 static void
1781 filter_stream_list_for_write(struct list_head *stream_list,
1782                              struct filter_context *filter_ctx)
1783 {
1784         struct wim_lookup_table_entry *lte, *tmp;
1785
1786         list_for_each_entry_safe(lte, tmp,
1787                                  stream_list, write_streams_list)
1788         {
1789                 int status = stream_filtered(lte, filter_ctx);
1790
1791                 if (status == 0) {
1792                         /* Not filtered.  */
1793                         continue;
1794                 } else {
1795                         if (status > 0) {
1796                                 /* Soft filtered.  */
1797                         } else {
1798                                 /* Hard filtered.  */
1799                                 lte->will_be_in_output_wim = 0;
1800                                 list_del(&lte->lookup_table_list);
1801                         }
1802                         list_del(&lte->write_streams_list);
1803                 }
1804         }
1805 }
1806
1807 /*
1808  * prepare_stream_list_for_write() -
1809  *
1810  * Prepare the list of streams to write for writing a WIM containing the
1811  * specified image(s) with the specified write flags.
1812  *
1813  * @wim
1814  *      The WIMStruct on whose behalf the write is occurring.
1815  *
1816  * @image
1817  *      Image(s) from the WIM to write; may be WIMLIB_ALL_IMAGES.
1818  *
1819  * @write_flags
1820  *      WIMLIB_WRITE_FLAG_* flags for the write operation:
1821  *
1822  *      STREAMS_OK:  For writes of all images, assume that all streams in the
1823  *      lookup table of @wim and the per-image lists of unhashed streams should
1824  *      be taken as-is, and image metadata should not be searched for
1825  *      references.  This does not exclude filtering with OVERWRITE and
1826  *      SKIP_EXTERNAL_WIMS, below.
1827  *
1828  *      OVERWRITE:  Streams already present in @wim shall not be returned in
1829  *      @stream_list_ret.
1830  *
1831  *      SKIP_EXTERNAL_WIMS:  Streams already present in a WIM file, but not
1832  *      @wim, shall be be returned in neither @stream_list_ret nor
1833  *      @lookup_table_list_ret.
1834  *
1835  * @stream_list_ret
1836  *      List of streams, linked by write_streams_list, that need to be written
1837  *      will be returned here.
1838  *
1839  *      Note that this function assumes that unhashed streams will be written;
1840  *      it does not take into account that they may become duplicates when
1841  *      actually hashed.
1842  *
1843  * @lookup_table_list_ret
1844  *      List of streams, linked by lookup_table_list, that need to be included
1845  *      in the WIM's lookup table will be returned here.  This will be a
1846  *      superset of the streams in @stream_list_ret.
1847  *
1848  *      This list will be a proper superset of @stream_list_ret if and only if
1849  *      WIMLIB_WRITE_FLAG_OVERWRITE was specified in @write_flags and some of
1850  *      the streams that would otherwise need to be written were already located
1851  *      in the WIM file.
1852  *
1853  *      All streams in this list will have @out_refcnt set to the number of
1854  *      references to the stream in the output WIM.  If
1855  *      WIMLIB_WRITE_FLAG_STREAMS_OK was specified in @write_flags, @out_refcnt
1856  *      may be as low as 0.
1857  *
1858  * @filter_ctx_ret
1859  *      A context for queries of stream filter status with stream_filtered() is
1860  *      returned in this location.
1861  *
1862  * In addition, @will_be_in_output_wim will be set to 1 in all stream entries
1863  * inserted into @lookup_table_list_ret and to 0 in all stream entries in the
1864  * lookup table of @wim not inserted into @lookup_table_list_ret.
1865  *
1866  * Still furthermore, @unique_size will be set to 1 on all stream entries in
1867  * @stream_list_ret that have unique size among all stream entries in
1868  * @stream_list_ret and among all stream entries in the lookup table of @wim
1869  * that are ineligible for being written due to filtering.
1870  *
1871  * Returns 0 on success; nonzero on read error, memory allocation error, or
1872  * otherwise.
1873  */
1874 static int
1875 prepare_stream_list_for_write(WIMStruct *wim, int image,
1876                               int write_flags,
1877                               struct list_head *stream_list_ret,
1878                               struct list_head *lookup_table_list_ret,
1879                               struct filter_context *filter_ctx_ret)
1880 {
1881         int ret;
1882         struct wim_lookup_table_entry *lte;
1883
1884         filter_ctx_ret->write_flags = write_flags;
1885         filter_ctx_ret->wim = wim;
1886
1887         ret = prepare_unfiltered_list_of_streams_in_output_wim(
1888                                 wim,
1889                                 image,
1890                                 write_flags & WIMLIB_WRITE_FLAG_STREAMS_OK,
1891                                 stream_list_ret);
1892         if (ret)
1893                 return ret;
1894
1895         INIT_LIST_HEAD(lookup_table_list_ret);
1896         list_for_each_entry(lte, stream_list_ret, write_streams_list)
1897                 list_add_tail(&lte->lookup_table_list, lookup_table_list_ret);
1898
1899         ret = determine_stream_size_uniquity(stream_list_ret, wim->lookup_table,
1900                                              filter_ctx_ret);
1901         if (ret)
1902                 return ret;
1903
1904         if (may_filter_streams(filter_ctx_ret))
1905                 filter_stream_list_for_write(stream_list_ret, filter_ctx_ret);
1906
1907         return 0;
1908 }
1909
1910 static int
1911 write_wim_streams(WIMStruct *wim, int image, int write_flags,
1912                   unsigned num_threads,
1913                   wimlib_progress_func_t progress_func,
1914                   struct list_head *stream_list_override,
1915                   struct list_head *lookup_table_list_ret)
1916 {
1917         int ret;
1918         struct list_head _stream_list;
1919         struct list_head *stream_list;
1920         struct wim_lookup_table_entry *lte;
1921         struct filter_context _filter_ctx;
1922         struct filter_context *filter_ctx;
1923
1924         if (stream_list_override == NULL) {
1925                 /* Normal case: prepare stream list from image(s) being written.
1926                  */
1927                 stream_list = &_stream_list;
1928                 filter_ctx = &_filter_ctx;
1929                 ret = prepare_stream_list_for_write(wim, image, write_flags,
1930                                                     stream_list,
1931                                                     lookup_table_list_ret,
1932                                                     filter_ctx);
1933                 if (ret)
1934                         return ret;
1935         } else {
1936                 /* Currently only as a result of wimlib_split() being called:
1937                  * use stream list already explicitly provided.  Use existing
1938                  * reference counts.  */
1939                 stream_list = stream_list_override;
1940                 filter_ctx = NULL;
1941                 INIT_LIST_HEAD(lookup_table_list_ret);
1942                 list_for_each_entry(lte, stream_list, write_streams_list) {
1943                         lte->out_refcnt = lte->refcnt;
1944                         lte->will_be_in_output_wim = 1;
1945                         lte->unique_size = 0;
1946                         list_add_tail(&lte->lookup_table_list, lookup_table_list_ret);
1947                 }
1948         }
1949
1950         return write_stream_list(stream_list,
1951                                  &wim->out_fd,
1952                                  write_flags_to_resource_flags(write_flags),
1953                                  wim->out_compression_type,
1954                                  wim->out_chunk_size,
1955                                  num_threads,
1956                                  wim->lookup_table,
1957                                  filter_ctx,
1958                                  progress_func);
1959 }
1960
1961 static int
1962 write_wim_metadata_resources(WIMStruct *wim, int image, int write_flags,
1963                              wimlib_progress_func_t progress_func)
1964 {
1965         int ret;
1966         int start_image;
1967         int end_image;
1968         int write_resource_flags;
1969
1970         if (write_flags & WIMLIB_WRITE_FLAG_NO_METADATA) {
1971                 DEBUG("Not writing any metadata resources.");
1972                 return 0;
1973         }
1974
1975         write_resource_flags = write_flags_to_resource_flags(write_flags);
1976
1977         write_resource_flags &= ~WRITE_RESOURCE_FLAG_PACK_STREAMS;
1978
1979         DEBUG("Writing metadata resources (offset=%"PRIu64")",
1980               wim->out_fd.offset);
1981
1982         if (progress_func)
1983                 progress_func(WIMLIB_PROGRESS_MSG_WRITE_METADATA_BEGIN, NULL);
1984
1985         if (image == WIMLIB_ALL_IMAGES) {
1986                 start_image = 1;
1987                 end_image = wim->hdr.image_count;
1988         } else {
1989                 start_image = image;
1990                 end_image = image;
1991         }
1992
1993         for (int i = start_image; i <= end_image; i++) {
1994                 struct wim_image_metadata *imd;
1995
1996                 imd = wim->image_metadata[i - 1];
1997                 /* Build a new metadata resource only if image was modified from
1998                  * the original (or was newly added).  Otherwise just copy the
1999                  * existing one.  */
2000                 if (imd->modified) {
2001                         DEBUG("Image %u was modified; building and writing new "
2002                               "metadata resource", i);
2003                         ret = write_metadata_resource(wim, i,
2004                                                       write_resource_flags);
2005                 } else if (write_flags & WIMLIB_WRITE_FLAG_OVERWRITE) {
2006                         DEBUG("Image %u was not modified; re-using existing "
2007                               "metadata resource.", i);
2008                         stream_set_out_reshdr_for_reuse(imd->metadata_lte);
2009                         ret = 0;
2010                 } else {
2011                         DEBUG("Image %u was not modified; copying existing "
2012                               "metadata resource.", i);
2013                         ret = write_wim_resource(imd->metadata_lte,
2014                                                  &wim->out_fd,
2015                                                  wim->out_compression_type,
2016                                                  wim->out_chunk_size,
2017                                                  write_resource_flags);
2018                 }
2019                 if (ret)
2020                         return ret;
2021         }
2022         if (progress_func)
2023                 progress_func(WIMLIB_PROGRESS_MSG_WRITE_METADATA_END, NULL);
2024         return 0;
2025 }
2026
2027 static int
2028 open_wim_writable(WIMStruct *wim, const tchar *path, int open_flags)
2029 {
2030         int raw_fd;
2031         DEBUG("Opening \"%"TS"\" for writing.", path);
2032
2033         raw_fd = topen(path, open_flags | O_BINARY, 0644);
2034         if (raw_fd < 0) {
2035                 ERROR_WITH_ERRNO("Failed to open \"%"TS"\" for writing", path);
2036                 return WIMLIB_ERR_OPEN;
2037         }
2038         filedes_init(&wim->out_fd, raw_fd);
2039         return 0;
2040 }
2041
2042 static int
2043 close_wim_writable(WIMStruct *wim, int write_flags)
2044 {
2045         int ret = 0;
2046
2047         if (!(write_flags & WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR)) {
2048                 DEBUG("Closing WIM file.");
2049                 if (filedes_valid(&wim->out_fd))
2050                         if (filedes_close(&wim->out_fd))
2051                                 ret = WIMLIB_ERR_WRITE;
2052         }
2053         filedes_invalidate(&wim->out_fd);
2054         return ret;
2055 }
2056
2057 static int
2058 cmp_streams_by_out_rspec(const void *p1, const void *p2)
2059 {
2060         const struct wim_lookup_table_entry *lte1, *lte2;
2061
2062         lte1 = *(const struct wim_lookup_table_entry**)p1;
2063         lte2 = *(const struct wim_lookup_table_entry**)p2;
2064
2065         if (lte1->out_reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
2066                 if (lte2->out_reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
2067                         if (lte1->out_res_offset_in_wim != lte2->out_res_offset_in_wim)
2068                                 return cmp_u64(lte1->out_res_offset_in_wim,
2069                                                lte2->out_res_offset_in_wim);
2070                 } else {
2071                         return 1;
2072                 }
2073         } else {
2074                 if (lte2->out_reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS)
2075                         return -1;
2076         }
2077         return cmp_u64(lte1->out_reshdr.offset_in_wim,
2078                        lte2->out_reshdr.offset_in_wim);
2079 }
2080
2081 static int
2082 write_wim_lookup_table(WIMStruct *wim, int image, int write_flags,
2083                        struct wim_reshdr *out_reshdr,
2084                        struct list_head *lookup_table_list)
2085 {
2086         int ret;
2087
2088         /* Set output resource metadata for streams already present in WIM.  */
2089         if (write_flags & WIMLIB_WRITE_FLAG_OVERWRITE) {
2090                 struct wim_lookup_table_entry *lte;
2091                 list_for_each_entry(lte, lookup_table_list, lookup_table_list)
2092                 {
2093                         if (lte->resource_location == RESOURCE_IN_WIM &&
2094                             lte->rspec->wim == wim)
2095                         {
2096                                 stream_set_out_reshdr_for_reuse(lte);
2097                         }
2098                 }
2099         }
2100
2101         ret = sort_stream_list(lookup_table_list,
2102                                offsetof(struct wim_lookup_table_entry, lookup_table_list),
2103                                cmp_streams_by_out_rspec);
2104         if (ret)
2105                 return ret;
2106
2107         /* Add entries for metadata resources.  */
2108         if (!(write_flags & WIMLIB_WRITE_FLAG_NO_METADATA)) {
2109                 int start_image;
2110                 int end_image;
2111
2112                 if (image == WIMLIB_ALL_IMAGES) {
2113                         start_image = 1;
2114                         end_image = wim->hdr.image_count;
2115                 } else {
2116                         start_image = image;
2117                         end_image = image;
2118                 }
2119
2120                 /* Push metadata resource lookup table entries onto the front of
2121                  * the list in reverse order, so that they're written in order.
2122                  */
2123                 for (int i = end_image; i >= start_image; i--) {
2124                         struct wim_lookup_table_entry *metadata_lte;
2125
2126                         metadata_lte = wim->image_metadata[i - 1]->metadata_lte;
2127                         wimlib_assert(metadata_lte->out_reshdr.flags & WIM_RESHDR_FLAG_METADATA);
2128                         metadata_lte->out_refcnt = 1;
2129                         list_add(&metadata_lte->lookup_table_list, lookup_table_list);
2130                 }
2131         }
2132
2133         return write_wim_lookup_table_from_stream_list(lookup_table_list,
2134                                                        &wim->out_fd,
2135                                                        wim->hdr.part_number,
2136                                                        out_reshdr,
2137                                                        write_flags_to_resource_flags(write_flags));
2138 }
2139
2140 /*
2141  * finish_write():
2142  *
2143  * Finish writing a WIM file: write the lookup table, xml data, and integrity
2144  * table, then overwrite the WIM header.  By default, closes the WIM file
2145  * descriptor (@wim->out_fd) if successful.
2146  *
2147  * write_flags is a bitwise OR of the following:
2148  *
2149  *      (public) WIMLIB_WRITE_FLAG_CHECK_INTEGRITY:
2150  *              Include an integrity table.
2151  *
2152  *      (public) WIMLIB_WRITE_FLAG_FSYNC:
2153  *              fsync() the output file before closing it.
2154  *
2155  *      (public) WIMLIB_WRITE_FLAG_PIPABLE:
2156  *              Writing a pipable WIM, possibly to a pipe; include pipable WIM
2157  *              stream headers before the lookup table and XML data, and also
2158  *              write the WIM header at the end instead of seeking to the
2159  *              beginning.  Can't be combined with
2160  *              WIMLIB_WRITE_FLAG_CHECK_INTEGRITY.
2161  *
2162  *      (private) WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE:
2163  *              Don't write the lookup table.
2164  *
2165  *      (private) WIMLIB_WRITE_FLAG_REUSE_INTEGRITY_TABLE:
2166  *              When (if) writing the integrity table, re-use entries from the
2167  *              existing integrity table, if possible.
2168  *
2169  *      (private) WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML:
2170  *              After writing the XML data but before writing the integrity
2171  *              table, write a temporary WIM header and flush the stream so that
2172  *              the WIM is less likely to become corrupted upon abrupt program
2173  *              termination.
2174  *      (private) WIMLIB_WRITE_FLAG_HEADER_AT_END:
2175  *              Instead of overwriting the WIM header at the beginning of the
2176  *              file, simply append it to the end of the file.  (Used when
2177  *              writing to pipe.)
2178  *      (private) WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR:
2179  *              Do not close the file descriptor @wim->out_fd on either success
2180  *              on failure.
2181  *      (private) WIMLIB_WRITE_FLAG_USE_EXISTING_TOTALBYTES:
2182  *              Use the existing <TOTALBYTES> stored in the in-memory XML
2183  *              information, rather than setting it to the offset of the XML
2184  *              data being written.
2185  */
2186 static int
2187 finish_write(WIMStruct *wim, int image, int write_flags,
2188              wimlib_progress_func_t progress_func,
2189              struct list_head *lookup_table_list)
2190 {
2191         int ret;
2192         off_t hdr_offset;
2193         int write_resource_flags;
2194         off_t old_lookup_table_end;
2195         off_t new_lookup_table_end;
2196         u64 xml_totalbytes;
2197
2198         DEBUG("image=%d, write_flags=%08x", image, write_flags);
2199
2200         write_resource_flags = write_flags_to_resource_flags(write_flags);
2201
2202         /* In the WIM header, there is room for the resource entry for a
2203          * metadata resource labeled as the "boot metadata".  This entry should
2204          * be zeroed out if there is no bootable image (boot_idx 0).  Otherwise,
2205          * it should be a copy of the resource entry for the image that is
2206          * marked as bootable.  This is not well documented...  */
2207         if (wim->hdr.boot_idx == 0) {
2208                 zero_reshdr(&wim->hdr.boot_metadata_reshdr);
2209         } else {
2210                 copy_reshdr(&wim->hdr.boot_metadata_reshdr,
2211                             &wim->image_metadata[
2212                                 wim->hdr.boot_idx - 1]->metadata_lte->out_reshdr);
2213         }
2214
2215         /* Write lookup table.  (Save old position first.)  */
2216         old_lookup_table_end = wim->hdr.lookup_table_reshdr.offset_in_wim +
2217                                wim->hdr.lookup_table_reshdr.size_in_wim;
2218         if (!(write_flags & WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE)) {
2219                 ret = write_wim_lookup_table(wim, image, write_flags,
2220                                              &wim->hdr.lookup_table_reshdr,
2221                                              lookup_table_list);
2222                 if (ret)
2223                         return ret;
2224         }
2225
2226         /* Write XML data.  */
2227         xml_totalbytes = wim->out_fd.offset;
2228         if (write_flags & WIMLIB_WRITE_FLAG_USE_EXISTING_TOTALBYTES)
2229                 xml_totalbytes = WIM_TOTALBYTES_USE_EXISTING;
2230         ret = write_wim_xml_data(wim, image, xml_totalbytes,
2231                                  &wim->hdr.xml_data_reshdr,
2232                                  write_resource_flags);
2233         if (ret)
2234                 return ret;
2235
2236         /* Write integrity table (optional).  */
2237         if (write_flags & WIMLIB_WRITE_FLAG_CHECK_INTEGRITY) {
2238                 if (write_flags & WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML) {
2239                         struct wim_header checkpoint_hdr;
2240                         memcpy(&checkpoint_hdr, &wim->hdr, sizeof(struct wim_header));
2241                         zero_reshdr(&checkpoint_hdr.integrity_table_reshdr);
2242                         checkpoint_hdr.flags |= WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2243                         ret = write_wim_header_at_offset(&checkpoint_hdr,
2244                                                          &wim->out_fd, 0);
2245                         if (ret)
2246                                 return ret;
2247                 }
2248
2249                 if (!(write_flags & WIMLIB_WRITE_FLAG_REUSE_INTEGRITY_TABLE))
2250                         old_lookup_table_end = 0;
2251
2252                 new_lookup_table_end = wim->hdr.lookup_table_reshdr.offset_in_wim +
2253                                        wim->hdr.lookup_table_reshdr.size_in_wim;
2254
2255                 ret = write_integrity_table(wim,
2256                                             new_lookup_table_end,
2257                                             old_lookup_table_end,
2258                                             progress_func);
2259                 if (ret)
2260                         return ret;
2261         } else {
2262                 /* No integrity table.  */
2263                 zero_reshdr(&wim->hdr.integrity_table_reshdr);
2264         }
2265
2266         /* Now that all information in the WIM header has been determined, the
2267          * preliminary header written earlier can be overwritten, the header of
2268          * the existing WIM file can be overwritten, or the final header can be
2269          * written to the end of the pipable WIM.  */
2270         wim->hdr.flags &= ~WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2271         hdr_offset = 0;
2272         if (write_flags & WIMLIB_WRITE_FLAG_HEADER_AT_END)
2273                 hdr_offset = wim->out_fd.offset;
2274         DEBUG("Writing new header @ %"PRIu64".", hdr_offset);
2275         ret = write_wim_header_at_offset(&wim->hdr, &wim->out_fd, hdr_offset);
2276         if (ret)
2277                 return ret;
2278
2279         /* Possibly sync file data to disk before closing.  On POSIX systems, it
2280          * is necessary to do this before using rename() to overwrite an
2281          * existing file with a new file.  Otherwise, data loss would occur if
2282          * the system is abruptly terminated when the metadata for the rename
2283          * operation has been written to disk, but the new file data has not.
2284          */
2285         if (write_flags & WIMLIB_WRITE_FLAG_FSYNC) {
2286                 DEBUG("Syncing WIM file.");
2287                 if (fsync(wim->out_fd.fd)) {
2288                         ERROR_WITH_ERRNO("Error syncing data to WIM file");
2289                         return WIMLIB_ERR_WRITE;
2290                 }
2291         }
2292
2293         if (close_wim_writable(wim, write_flags)) {
2294                 ERROR_WITH_ERRNO("Failed to close the output WIM file");
2295                 return WIMLIB_ERR_WRITE;
2296         }
2297
2298         return 0;
2299 }
2300
2301 #if defined(HAVE_SYS_FILE_H) && defined(HAVE_FLOCK)
2302 int
2303 lock_wim(WIMStruct *wim, int fd)
2304 {
2305         int ret = 0;
2306         if (fd != -1 && !wim->wim_locked) {
2307                 ret = flock(fd, LOCK_EX | LOCK_NB);
2308                 if (ret != 0) {
2309                         if (errno == EWOULDBLOCK) {
2310                                 ERROR("`%"TS"' is already being modified or has been "
2311                                       "mounted read-write\n"
2312                                       "        by another process!", wim->filename);
2313                                 ret = WIMLIB_ERR_ALREADY_LOCKED;
2314                         } else {
2315                                 WARNING_WITH_ERRNO("Failed to lock `%"TS"'",
2316                                                    wim->filename);
2317                                 ret = 0;
2318                         }
2319                 } else {
2320                         wim->wim_locked = 1;
2321                 }
2322         }
2323         return ret;
2324 }
2325 #endif
2326
2327 /*
2328  * write_pipable_wim():
2329  *
2330  * Perform the intermediate stages of creating a "pipable" WIM (i.e. a WIM
2331  * capable of being applied from a pipe).
2332  *
2333  * Pipable WIMs are a wimlib-specific modification of the WIM format such that
2334  * images can be applied from them sequentially when the file data is sent over
2335  * a pipe.  In addition, a pipable WIM can be written sequentially to a pipe.
2336  * The modifications made to the WIM format for pipable WIMs are:
2337  *
2338  * - Magic characters in header are "WLPWM\0\0\0" (wimlib pipable WIM) instead
2339  *   of "MSWIM\0\0\0".  This lets wimlib know that the WIM is pipable and also
2340  *   stops other software from trying to read the file as a normal WIM.
2341  *
2342  * - The header at the beginning of the file does not contain all the normal
2343  *   information; in particular it will have all 0's for the lookup table and
2344  *   XML data resource entries.  This is because this information cannot be
2345  *   determined until the lookup table and XML data have been written.
2346  *   Consequently, wimlib will write the full header at the very end of the
2347  *   file.  The header at the end, however, is only used when reading the WIM
2348  *   from a seekable file (not a pipe).
2349  *
2350  * - An extra copy of the XML data is placed directly after the header.  This
2351  *   allows image names and sizes to be determined at an appropriate time when
2352  *   reading the WIM from a pipe.  This copy of the XML data is ignored if the
2353  *   WIM is read from a seekable file (not a pipe).
2354  *
2355  * - The format of resources, or streams, has been modified to allow them to be
2356  *   used before the "lookup table" has been read.  Each stream is prefixed with
2357  *   a `struct pwm_stream_hdr' that is basically an abbreviated form of `struct
2358  *   wim_lookup_table_entry_disk' that only contains the SHA1 message digest,
2359  *   uncompressed stream size, and flags that indicate whether the stream is
2360  *   compressed.  The data of uncompressed streams then follows literally, while
2361  *   the data of compressed streams follows in a modified format.  Compressed
2362  *   streams do not begin with a chunk table, since the chunk table cannot be
2363  *   written until all chunks have been compressed.  Instead, each compressed
2364  *   chunk is prefixed by a `struct pwm_chunk_hdr' that gives its size.
2365  *   Furthermore, the chunk table is written at the end of the resource instead
2366  *   of the start.  Note: chunk offsets are given in the chunk table as if the
2367  *   `struct pwm_chunk_hdr's were not present; also, the chunk table is only
2368  *   used if the WIM is being read from a seekable file (not a pipe).
2369  *
2370  * - Metadata resources always come before other file resources (streams).
2371  *   (This does not by itself constitute an incompatibility with normal WIMs,
2372  *   since this is valid in normal WIMs.)
2373  *
2374  * - At least up to the end of the file resources, all components must be packed
2375  *   as tightly as possible; there cannot be any "holes" in the WIM.  (This does
2376  *   not by itself consititute an incompatibility with normal WIMs, since this
2377  *   is valid in normal WIMs.)
2378  *
2379  * Note: the lookup table, XML data, and header at the end are not used when
2380  * applying from a pipe.  They exist to support functionality such as image
2381  * application and export when the WIM is *not* read from a pipe.
2382  *
2383  *   Layout of pipable WIM:
2384  *
2385  * ---------+----------+--------------------+----------------+--------------+-----------+--------+
2386  * | Header | XML data | Metadata resources | File resources | Lookup table | XML data  | Header |
2387  * ---------+----------+--------------------+----------------+--------------+-----------+--------+
2388  *
2389  *   Layout of normal WIM:
2390  *
2391  * +--------+-----------------------------+-------------------------+
2392  * | Header | File and metadata resources | Lookup table | XML data |
2393  * +--------+-----------------------------+-------------------------+
2394  *
2395  * An optional integrity table can follow the final XML data in both normal and
2396  * pipable WIMs.  However, due to implementation details, wimlib currently can
2397  * only include an integrity table in a pipable WIM when writing it to a
2398  * seekable file (not a pipe).
2399  *
2400  * Do note that since pipable WIMs are not supported by Microsoft's software,
2401  * wimlib does not create them unless explicitly requested (with
2402  * WIMLIB_WRITE_FLAG_PIPABLE) and as stated above they use different magic
2403  * characters to identify the file.
2404  */
2405 static int
2406 write_pipable_wim(WIMStruct *wim, int image, int write_flags,
2407                   unsigned num_threads, wimlib_progress_func_t progress_func,
2408                   struct list_head *stream_list_override,
2409                   struct list_head *lookup_table_list_ret)
2410 {
2411         int ret;
2412         struct wim_reshdr xml_reshdr;
2413
2414         WARNING("Creating a pipable WIM, which will "
2415                 "be incompatible\n"
2416                 "          with Microsoft's software (wimgapi/imagex/Dism).");
2417
2418         /* At this point, the header at the beginning of the file has already
2419          * been written.  */
2420
2421         /* For efficiency, when wimlib adds an image to the WIM with
2422          * wimlib_add_image(), the SHA1 message digests of files is not
2423          * calculated; instead, they are calculated while the files are being
2424          * written.  However, this does not work when writing a pipable WIM,
2425          * since when writing a stream to a pipable WIM, its SHA1 message digest
2426          * needs to be known before the stream data is written.  Therefore,
2427          * before getting much farther, we need to pre-calculate the SHA1
2428          * message digests of all streams that will be written.  */
2429         ret = wim_checksum_unhashed_streams(wim);
2430         if (ret)
2431                 return ret;
2432
2433         /* Write extra copy of the XML data.  */
2434         ret = write_wim_xml_data(wim, image, WIM_TOTALBYTES_OMIT,
2435                                  &xml_reshdr,
2436                                  WRITE_RESOURCE_FLAG_PIPABLE);
2437         if (ret)
2438                 return ret;
2439
2440         /* Write metadata resources for the image(s) being included in the
2441          * output WIM.  */
2442         ret = write_wim_metadata_resources(wim, image, write_flags,
2443                                            progress_func);
2444         if (ret)
2445                 return ret;
2446
2447         /* Write streams needed for the image(s) being included in the output
2448          * WIM, or streams needed for the split WIM part.  */
2449         return write_wim_streams(wim, image, write_flags, num_threads,
2450                                  progress_func, stream_list_override,
2451                                  lookup_table_list_ret);
2452
2453         /* The lookup table, XML data, and header at end are handled by
2454          * finish_write().  */
2455 }
2456
2457 /* Write a standalone WIM or split WIM (SWM) part to a new file or to a file
2458  * descriptor.  */
2459 int
2460 write_wim_part(WIMStruct *wim,
2461                const void *path_or_fd,
2462                int image,
2463                int write_flags,
2464                unsigned num_threads,
2465                wimlib_progress_func_t progress_func,
2466                unsigned part_number,
2467                unsigned total_parts,
2468                struct list_head *stream_list_override,
2469                const u8 *guid)
2470 {
2471         int ret;
2472         struct wim_header hdr_save;
2473         struct list_head lookup_table_list;
2474
2475         if (total_parts == 1)
2476                 DEBUG("Writing standalone WIM.");
2477         else
2478                 DEBUG("Writing split WIM part %u/%u", part_number, total_parts);
2479         if (image == WIMLIB_ALL_IMAGES)
2480                 DEBUG("Including all images.");
2481         else
2482                 DEBUG("Including image %d only.", image);
2483         if (write_flags & WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR)
2484                 DEBUG("File descriptor: %d", *(const int*)path_or_fd);
2485         else
2486                 DEBUG("Path: \"%"TS"\"", (const tchar*)path_or_fd);
2487         DEBUG("Write flags: 0x%08x", write_flags);
2488
2489         if (write_flags & WIMLIB_WRITE_FLAG_CHECK_INTEGRITY)
2490                 DEBUG("\tCHECK_INTEGRITY");
2491
2492         if (write_flags & WIMLIB_WRITE_FLAG_REBUILD)
2493                 DEBUG("\tREBUILD");
2494
2495         if (write_flags & WIMLIB_WRITE_FLAG_RECOMPRESS)
2496                 DEBUG("\tRECOMPRESS");
2497
2498         if (write_flags & WIMLIB_WRITE_FLAG_FSYNC)
2499                 DEBUG("\tFSYNC");
2500
2501         if (write_flags & WIMLIB_WRITE_FLAG_SOFT_DELETE)
2502                 DEBUG("\tFSYNC");
2503
2504         if (write_flags & WIMLIB_WRITE_FLAG_IGNORE_READONLY_FLAG)
2505                 DEBUG("\tIGNORE_READONLY_FLAG");
2506
2507         if (write_flags & WIMLIB_WRITE_FLAG_PIPABLE)
2508                 DEBUG("\tPIPABLE");
2509
2510         if (write_flags & WIMLIB_WRITE_FLAG_NOT_PIPABLE)
2511                 DEBUG("\tNOT_PIPABLE");
2512
2513         if (write_flags & WIMLIB_WRITE_FLAG_PACK_STREAMS)
2514                 DEBUG("\tPACK_STREAMS");
2515
2516         if (write_flags & WIMLIB_WRITE_FLAG_NO_PACK_STREAMS)
2517                 DEBUG("\tNO_PACK_STREAMS");
2518
2519         if (write_flags & WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR)
2520                 DEBUG("\tFILE_DESCRIPTOR");
2521
2522         if (write_flags & WIMLIB_WRITE_FLAG_NO_METADATA)
2523                 DEBUG("\tNO_METADATA");
2524
2525         if (write_flags & WIMLIB_WRITE_FLAG_USE_EXISTING_TOTALBYTES)
2526                 DEBUG("\tUSE_EXISTING_TOTALBYTES");
2527
2528         if (num_threads == 0)
2529                 DEBUG("Number of threads: autodetect");
2530         else
2531                 DEBUG("Number of threads: %u", num_threads);
2532         DEBUG("Progress function: %s", (progress_func ? "yes" : "no"));
2533         DEBUG("Stream list:       %s", (stream_list_override ? "specified" : "autodetect"));
2534         DEBUG("GUID:              %s", ((guid || wim->guid_set_explicitly) ?
2535                                         "specified" : "generate new"));
2536
2537         /* Internally, this is always called with a valid part number and total
2538          * parts.  */
2539         wimlib_assert(total_parts >= 1);
2540         wimlib_assert(part_number >= 1 && part_number <= total_parts);
2541
2542         /* A valid image (or all images) must be specified.  */
2543         if (image != WIMLIB_ALL_IMAGES &&
2544              (image < 1 || image > wim->hdr.image_count))
2545                 return WIMLIB_ERR_INVALID_IMAGE;
2546
2547         /* If we need to write metadata resources, make sure the ::WIMStruct has
2548          * the needed information attached (e.g. is not a resource-only WIM,
2549          * such as a non-first part of a split WIM).  */
2550         if (!wim_has_metadata(wim) &&
2551             !(write_flags & WIMLIB_WRITE_FLAG_NO_METADATA))
2552                 return WIMLIB_ERR_METADATA_NOT_FOUND;
2553
2554         /* Check for contradictory flags.  */
2555         if ((write_flags & (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
2556                             WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY))
2557                                 == (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
2558                                     WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY))
2559                 return WIMLIB_ERR_INVALID_PARAM;
2560
2561         if ((write_flags & (WIMLIB_WRITE_FLAG_PIPABLE |
2562                             WIMLIB_WRITE_FLAG_NOT_PIPABLE))
2563                                 == (WIMLIB_WRITE_FLAG_PIPABLE |
2564                                     WIMLIB_WRITE_FLAG_NOT_PIPABLE))
2565                 return WIMLIB_ERR_INVALID_PARAM;
2566
2567         if ((write_flags & (WIMLIB_WRITE_FLAG_PACK_STREAMS |
2568                             WIMLIB_WRITE_FLAG_NO_PACK_STREAMS))
2569                                 == (WIMLIB_WRITE_FLAG_PACK_STREAMS |
2570                                     WIMLIB_WRITE_FLAG_NO_PACK_STREAMS))
2571                 return WIMLIB_ERR_INVALID_PARAM;
2572
2573         /* Save previous header, then start initializing the new one.  */
2574         memcpy(&hdr_save, &wim->hdr, sizeof(struct wim_header));
2575
2576         /* Set default integrity, pipable, and packed stream flags.  */
2577         if (!(write_flags & (WIMLIB_WRITE_FLAG_PIPABLE |
2578                              WIMLIB_WRITE_FLAG_NOT_PIPABLE)))
2579                 if (wim_is_pipable(wim)) {
2580                         DEBUG("WIM is pipable; default to PIPABLE.");
2581                         write_flags |= WIMLIB_WRITE_FLAG_PIPABLE;
2582                 }
2583
2584         if (!(write_flags & (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
2585                              WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY)))
2586                 if (wim_has_integrity_table(wim)) {
2587                         DEBUG("Integrity table present; default to CHECK_INTEGRITY.");
2588                         write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
2589                 }
2590
2591         if (!(write_flags & (WIMLIB_WRITE_FLAG_PACK_STREAMS |
2592                              WIMLIB_WRITE_FLAG_NO_PACK_STREAMS)))
2593                 if (wim->hdr.wim_version == WIM_VERSION_PACKED_STREAMS) {
2594                         DEBUG("WIM version 3584; default to PACK_STREAMS.");
2595                         write_flags |= WIMLIB_WRITE_FLAG_PACK_STREAMS;
2596                 }
2597
2598         if ((write_flags & (WIMLIB_WRITE_FLAG_PIPABLE |
2599                             WIMLIB_WRITE_FLAG_PACK_STREAMS))
2600                                     == (WIMLIB_WRITE_FLAG_PIPABLE |
2601                                         WIMLIB_WRITE_FLAG_PACK_STREAMS))
2602         {
2603                 ERROR("Cannot specify both PIPABLE and PACK_STREAMS!");
2604                 return WIMLIB_ERR_INVALID_PARAM;
2605         }
2606
2607         /* Set appropriate magic number.  */
2608         if (write_flags & WIMLIB_WRITE_FLAG_PIPABLE)
2609                 wim->hdr.magic = PWM_MAGIC;
2610         else
2611                 wim->hdr.magic = WIM_MAGIC;
2612
2613         /* Set appropriate version number.  */
2614         if (write_flags & WIMLIB_WRITE_FLAG_PACK_STREAMS)
2615                 wim->hdr.wim_version = WIM_VERSION_PACKED_STREAMS;
2616         else
2617                 wim->hdr.wim_version = WIM_VERSION_DEFAULT;
2618
2619         /* Clear header flags that will be set automatically.  */
2620         wim->hdr.flags &= ~(WIM_HDR_FLAG_METADATA_ONLY          |
2621                             WIM_HDR_FLAG_RESOURCE_ONLY          |
2622                             WIM_HDR_FLAG_SPANNED                |
2623                             WIM_HDR_FLAG_WRITE_IN_PROGRESS);
2624
2625         /* Set SPANNED header flag if writing part of a split WIM.  */
2626         if (total_parts != 1)
2627                 wim->hdr.flags |= WIM_HDR_FLAG_SPANNED;
2628
2629         /* Set part number and total parts of split WIM.  This will be 1 and 1
2630          * if the WIM is standalone.  */
2631         wim->hdr.part_number = part_number;
2632         wim->hdr.total_parts = total_parts;
2633
2634         /* Set compression type if different.  */
2635         if (wim->compression_type != wim->out_compression_type) {
2636                 ret = set_wim_hdr_cflags(wim->out_compression_type, &wim->hdr);
2637                 wimlib_assert(ret == 0);
2638         }
2639
2640         /* Set chunk size if different.  */
2641         wim->hdr.chunk_size = wim->out_chunk_size;
2642
2643         /* Use GUID if specified; otherwise generate a new one.  */
2644         if (guid)
2645                 memcpy(wim->hdr.guid, guid, WIMLIB_GUID_LEN);
2646         else if (!wim->guid_set_explicitly)
2647                 randomize_byte_array(wim->hdr.guid, WIMLIB_GUID_LEN);
2648
2649         /* Clear references to resources that have not been written yet.  */
2650         zero_reshdr(&wim->hdr.lookup_table_reshdr);
2651         zero_reshdr(&wim->hdr.xml_data_reshdr);
2652         zero_reshdr(&wim->hdr.boot_metadata_reshdr);
2653         zero_reshdr(&wim->hdr.integrity_table_reshdr);
2654
2655         /* Set image count and boot index correctly for single image writes.  */
2656         if (image != WIMLIB_ALL_IMAGES) {
2657                 wim->hdr.image_count = 1;
2658                 if (wim->hdr.boot_idx == image)
2659                         wim->hdr.boot_idx = 1;
2660                 else
2661                         wim->hdr.boot_idx = 0;
2662         }
2663
2664         /* Split WIMs can't be bootable.  */
2665         if (total_parts != 1)
2666                 wim->hdr.boot_idx = 0;
2667
2668         /* Initialize output file descriptor.  */
2669         if (write_flags & WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR) {
2670                 /* File descriptor was explicitly provided.  Return error if
2671                  * file descriptor is not seekable, unless writing a pipable WIM
2672                  * was requested.  */
2673                 wim->out_fd.fd = *(const int*)path_or_fd;
2674                 wim->out_fd.offset = 0;
2675                 if (!filedes_is_seekable(&wim->out_fd)) {
2676                         ret = WIMLIB_ERR_INVALID_PARAM;
2677                         if (!(write_flags & WIMLIB_WRITE_FLAG_PIPABLE))
2678                                 goto out_restore_hdr;
2679                         if (write_flags & WIMLIB_WRITE_FLAG_CHECK_INTEGRITY) {
2680                                 ERROR("Can't include integrity check when "
2681                                       "writing pipable WIM to pipe!");
2682                                 goto out_restore_hdr;
2683                         }
2684                 }
2685
2686         } else {
2687                 /* Filename of WIM to write was provided; open file descriptor
2688                  * to it.  */
2689                 ret = open_wim_writable(wim, (const tchar*)path_or_fd,
2690                                         O_TRUNC | O_CREAT | O_RDWR);
2691                 if (ret)
2692                         goto out_restore_hdr;
2693         }
2694
2695         /* Write initial header.  This is merely a "dummy" header since it
2696          * doesn't have all the information yet, so it will be overwritten later
2697          * (unless writing a pipable WIM).  */
2698         if (!(write_flags & WIMLIB_WRITE_FLAG_PIPABLE))
2699                 wim->hdr.flags |= WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2700         ret = write_wim_header(&wim->hdr, &wim->out_fd);
2701         wim->hdr.flags &= ~WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2702         if (ret)
2703                 goto out_restore_hdr;
2704
2705         /* Write metadata resources and streams.  */
2706         if (!(write_flags & WIMLIB_WRITE_FLAG_PIPABLE)) {
2707                 /* Default case: create a normal (non-pipable) WIM.  */
2708                 ret = write_wim_streams(wim, image, write_flags, num_threads,
2709                                         progress_func, stream_list_override,
2710                                         &lookup_table_list);
2711                 if (ret)
2712                         goto out_restore_hdr;
2713
2714                 ret = write_wim_metadata_resources(wim, image, write_flags,
2715                                                    progress_func);
2716                 if (ret)
2717                         goto out_restore_hdr;
2718         } else {
2719                 /* Non-default case: create pipable WIM.  */
2720                 ret = write_pipable_wim(wim, image, write_flags, num_threads,
2721                                         progress_func, stream_list_override,
2722                                         &lookup_table_list);
2723                 if (ret)
2724                         goto out_restore_hdr;
2725                 write_flags |= WIMLIB_WRITE_FLAG_HEADER_AT_END;
2726         }
2727
2728
2729         /* Write lookup table, XML data, and (optional) integrity table.  */
2730         ret = finish_write(wim, image, write_flags, progress_func,
2731                            &lookup_table_list);
2732 out_restore_hdr:
2733         memcpy(&wim->hdr, &hdr_save, sizeof(struct wim_header));
2734         (void)close_wim_writable(wim, write_flags);
2735         DEBUG("ret=%d", ret);
2736         return ret;
2737 }
2738
2739 /* Write a standalone WIM to a file or file descriptor.  */
2740 static int
2741 write_standalone_wim(WIMStruct *wim, const void *path_or_fd,
2742                      int image, int write_flags, unsigned num_threads,
2743                      wimlib_progress_func_t progress_func)
2744 {
2745         return write_wim_part(wim, path_or_fd, image, write_flags,
2746                               num_threads, progress_func, 1, 1, NULL, NULL);
2747 }
2748
2749 /* API function documented in wimlib.h  */
2750 WIMLIBAPI int
2751 wimlib_write(WIMStruct *wim, const tchar *path,
2752              int image, int write_flags, unsigned num_threads,
2753              wimlib_progress_func_t progress_func)
2754 {
2755         if (!path)
2756                 return WIMLIB_ERR_INVALID_PARAM;
2757
2758         write_flags &= WIMLIB_WRITE_MASK_PUBLIC;
2759
2760         return write_standalone_wim(wim, path, image, write_flags,
2761                                     num_threads, progress_func);
2762 }
2763
2764 /* API function documented in wimlib.h  */
2765 WIMLIBAPI int
2766 wimlib_write_to_fd(WIMStruct *wim, int fd,
2767                    int image, int write_flags, unsigned num_threads,
2768                    wimlib_progress_func_t progress_func)
2769 {
2770         if (fd < 0)
2771                 return WIMLIB_ERR_INVALID_PARAM;
2772
2773         write_flags &= WIMLIB_WRITE_MASK_PUBLIC;
2774         write_flags |= WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR;
2775
2776         return write_standalone_wim(wim, &fd, image, write_flags,
2777                                     num_threads, progress_func);
2778 }
2779
2780 static bool
2781 any_images_modified(WIMStruct *wim)
2782 {
2783         for (int i = 0; i < wim->hdr.image_count; i++)
2784                 if (wim->image_metadata[i]->modified)
2785                         return true;
2786         return false;
2787 }
2788
2789 static int
2790 check_resource_offset(struct wim_lookup_table_entry *lte, void *_wim)
2791 {
2792         const WIMStruct *wim = _wim;
2793         off_t end_offset = *(const off_t*)wim->private;
2794
2795         if (lte->resource_location == RESOURCE_IN_WIM && lte->rspec->wim == wim &&
2796             lte->rspec->offset_in_wim + lte->rspec->size_in_wim > end_offset)
2797                 return WIMLIB_ERR_RESOURCE_ORDER;
2798         return 0;
2799 }
2800
2801 /* Make sure no file or metadata resources are located after the XML data (or
2802  * integrity table if present)--- otherwise we can't safely overwrite the WIM in
2803  * place and we return WIMLIB_ERR_RESOURCE_ORDER.  */
2804 static int
2805 check_resource_offsets(WIMStruct *wim, off_t end_offset)
2806 {
2807         int ret;
2808         unsigned i;
2809
2810         wim->private = &end_offset;
2811         ret = for_lookup_table_entry(wim->lookup_table, check_resource_offset, wim);
2812         if (ret)
2813                 return ret;
2814
2815         for (i = 0; i < wim->hdr.image_count; i++) {
2816                 ret = check_resource_offset(wim->image_metadata[i]->metadata_lte, wim);
2817                 if (ret)
2818                         return ret;
2819         }
2820         return 0;
2821 }
2822
2823 /*
2824  * Overwrite a WIM, possibly appending streams to it.
2825  *
2826  * A WIM looks like (or is supposed to look like) the following:
2827  *
2828  *                   Header (212 bytes)
2829  *                   Streams and metadata resources (variable size)
2830  *                   Lookup table (variable size)
2831  *                   XML data (variable size)
2832  *                   Integrity table (optional) (variable size)
2833  *
2834  * If we are not adding any streams or metadata resources, the lookup table is
2835  * unchanged--- so we only need to overwrite the XML data, integrity table, and
2836  * header.  This operation is potentially unsafe if the program is abruptly
2837  * terminated while the XML data or integrity table are being overwritten, but
2838  * before the new header has been written.  To partially alleviate this problem,
2839  * a special flag (WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML) is passed to
2840  * finish_write() to cause a temporary WIM header to be written after the XML
2841  * data has been written.  This may prevent the WIM from becoming corrupted if
2842  * the program is terminated while the integrity table is being calculated (but
2843  * no guarantees, due to write re-ordering...).
2844  *
2845  * If we are adding new streams or images (metadata resources), the lookup table
2846  * needs to be changed, and those streams need to be written.  In this case, we
2847  * try to perform a safe update of the WIM file by writing the streams *after*
2848  * the end of the previous WIM, then writing the new lookup table, XML data, and
2849  * (optionally) integrity table following the new streams.  This will produce a
2850  * layout like the following:
2851  *
2852  *                   Header (212 bytes)
2853  *                   (OLD) Streams and metadata resources (variable size)
2854  *                   (OLD) Lookup table (variable size)
2855  *                   (OLD) XML data (variable size)
2856  *                   (OLD) Integrity table (optional) (variable size)
2857  *                   (NEW) Streams and metadata resources (variable size)
2858  *                   (NEW) Lookup table (variable size)
2859  *                   (NEW) XML data (variable size)
2860  *                   (NEW) Integrity table (optional) (variable size)
2861  *
2862  * At all points, the WIM is valid as nothing points to the new data yet.  Then,
2863  * the header is overwritten to point to the new lookup table, XML data, and
2864  * integrity table, to produce the following layout:
2865  *
2866  *                   Header (212 bytes)
2867  *                   Streams and metadata resources (variable size)
2868  *                   Nothing (variable size)
2869  *                   More Streams and metadata resources (variable size)
2870  *                   Lookup table (variable size)
2871  *                   XML data (variable size)
2872  *                   Integrity table (optional) (variable size)
2873  *
2874  * This method allows an image to be appended to a large WIM very quickly, and
2875  * is is crash-safe except in the case of write re-ordering, but the
2876  * disadvantage is that a small hole is left in the WIM where the old lookup
2877  * table, xml data, and integrity table were.  (These usually only take up a
2878  * small amount of space compared to the streams, however.)
2879  */
2880 static int
2881 overwrite_wim_inplace(WIMStruct *wim, int write_flags,
2882                       unsigned num_threads,
2883                       wimlib_progress_func_t progress_func)
2884 {
2885         int ret;
2886         off_t old_wim_end;
2887         u64 old_lookup_table_end, old_xml_begin, old_xml_end;
2888         struct wim_header hdr_save;
2889         struct list_head stream_list;
2890         struct list_head lookup_table_list;
2891         struct filter_context filter_ctx;
2892
2893         DEBUG("Overwriting `%"TS"' in-place", wim->filename);
2894
2895         /* Save original header so it can be restored in case of error  */
2896         memcpy(&hdr_save, &wim->hdr, sizeof(struct wim_header));
2897
2898         /* Set default integrity flag.  */
2899         if (!(write_flags & (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
2900                              WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY)))
2901                 if (wim_has_integrity_table(wim))
2902                         write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
2903
2904         /* Set default packed flag.  */
2905         if (!(write_flags & (WIMLIB_WRITE_FLAG_PACK_STREAMS |
2906                              WIMLIB_WRITE_FLAG_NO_PACK_STREAMS)))
2907         {
2908         #if 0
2909                 if (wim->hdr.wim_version == WIM_VERSION_PACKED_STREAMS)
2910                         write_flags |= WIMLIB_WRITE_FLAG_PACK_STREAMS;
2911         #endif
2912                 /* wimlib allows multiple packs in a single WIM, but they don't
2913                  * seem to be compatible with WIMGAPI.  Write new streams
2914                  * unpacked.  */
2915         } else if (write_flags & WIMLIB_WRITE_FLAG_PACK_STREAMS) {
2916                 wim->hdr.wim_version = WIM_VERSION_PACKED_STREAMS;
2917         }
2918
2919         /* Set additional flags for overwrite.  */
2920         write_flags |= WIMLIB_WRITE_FLAG_OVERWRITE |
2921                        WIMLIB_WRITE_FLAG_STREAMS_OK;
2922
2923         /* Make sure that the integrity table (if present) is after the XML
2924          * data, and that there are no stream resources, metadata resources, or
2925          * lookup tables after the XML data.  Otherwise, these data would be
2926          * overwritten. */
2927         old_xml_begin = wim->hdr.xml_data_reshdr.offset_in_wim;
2928         old_xml_end = old_xml_begin + wim->hdr.xml_data_reshdr.size_in_wim;
2929         old_lookup_table_end = wim->hdr.lookup_table_reshdr.offset_in_wim +
2930                                wim->hdr.lookup_table_reshdr.size_in_wim;
2931         if (wim->hdr.integrity_table_reshdr.offset_in_wim != 0 &&
2932             wim->hdr.integrity_table_reshdr.offset_in_wim < old_xml_end) {
2933                 WARNING("Didn't expect the integrity table to be before the XML data");
2934                 ret = WIMLIB_ERR_RESOURCE_ORDER;
2935                 goto out_restore_memory_hdr;
2936         }
2937
2938         if (old_lookup_table_end > old_xml_begin) {
2939                 WARNING("Didn't expect the lookup table to be after the XML data");
2940                 ret = WIMLIB_ERR_RESOURCE_ORDER;
2941                 goto out_restore_memory_hdr;
2942         }
2943
2944         /* Set @old_wim_end, which indicates the point beyond which we don't
2945          * allow any file and metadata resources to appear without returning
2946          * WIMLIB_ERR_RESOURCE_ORDER (due to the fact that we would otherwise
2947          * overwrite these resources). */
2948         if (!wim->deletion_occurred && !any_images_modified(wim)) {
2949                 /* If no images have been modified and no images have been
2950                  * deleted, a new lookup table does not need to be written.  We
2951                  * shall write the new XML data and optional integrity table
2952                  * immediately after the lookup table.  Note that this may
2953                  * overwrite an existing integrity table. */
2954                 DEBUG("Skipping writing lookup table "
2955                       "(no images modified or deleted)");
2956                 old_wim_end = old_lookup_table_end;
2957                 write_flags |= WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE |
2958                                WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML;
2959         } else if (wim->hdr.integrity_table_reshdr.offset_in_wim != 0) {
2960                 /* Old WIM has an integrity table; begin writing new streams
2961                  * after it. */
2962                 old_wim_end = wim->hdr.integrity_table_reshdr.offset_in_wim +
2963                               wim->hdr.integrity_table_reshdr.size_in_wim;
2964         } else {
2965                 /* No existing integrity table; begin writing new streams after
2966                  * the old XML data. */
2967                 old_wim_end = old_xml_end;
2968         }
2969
2970         ret = check_resource_offsets(wim, old_wim_end);
2971         if (ret)
2972                 goto out_restore_memory_hdr;
2973
2974         ret = prepare_stream_list_for_write(wim, WIMLIB_ALL_IMAGES, write_flags,
2975                                             &stream_list, &lookup_table_list,
2976                                             &filter_ctx);
2977         if (ret)
2978                 goto out_restore_memory_hdr;
2979
2980         ret = open_wim_writable(wim, wim->filename, O_RDWR);
2981         if (ret)
2982                 goto out_restore_memory_hdr;
2983
2984         ret = lock_wim(wim, wim->out_fd.fd);
2985         if (ret)
2986                 goto out_close_wim;
2987
2988         /* Set WIM_HDR_FLAG_WRITE_IN_PROGRESS flag in header. */
2989         wim->hdr.flags |= WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2990         ret = write_wim_header_flags(wim->hdr.flags, &wim->out_fd);
2991         if (ret) {
2992                 ERROR_WITH_ERRNO("Error updating WIM header flags");
2993                 goto out_unlock_wim;
2994         }
2995
2996         if (filedes_seek(&wim->out_fd, old_wim_end) == -1) {
2997                 ERROR_WITH_ERRNO("Can't seek to end of WIM");
2998                 ret = WIMLIB_ERR_WRITE;
2999                 goto out_restore_physical_hdr;
3000         }
3001
3002         ret = write_stream_list(&stream_list,
3003                                 &wim->out_fd,
3004                                 write_flags_to_resource_flags(write_flags),
3005                                 wim->compression_type,
3006                                 wim->chunk_size,
3007                                 num_threads,
3008                                 wim->lookup_table,
3009                                 &filter_ctx,
3010                                 progress_func);
3011         if (ret)
3012                 goto out_truncate;
3013
3014         ret = write_wim_metadata_resources(wim, WIMLIB_ALL_IMAGES,
3015                                            write_flags, progress_func);
3016         if (ret)
3017                 goto out_truncate;
3018
3019         write_flags |= WIMLIB_WRITE_FLAG_REUSE_INTEGRITY_TABLE;
3020         ret = finish_write(wim, WIMLIB_ALL_IMAGES, write_flags,
3021                            progress_func, &lookup_table_list);
3022         if (ret)
3023                 goto out_truncate;
3024
3025         wim->wim_locked = 0;
3026         return 0;
3027
3028 out_truncate:
3029         if (!(write_flags & WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE)) {
3030                 WARNING("Truncating `%"TS"' to its original size (%"PRIu64" bytes)",
3031                         wim->filename, old_wim_end);
3032                 /* Return value of ftruncate() is ignored because this is
3033                  * already an error path.  */
3034                 (void)ftruncate(wim->out_fd.fd, old_wim_end);
3035         }
3036 out_restore_physical_hdr:
3037         (void)write_wim_header_flags(hdr_save.flags, &wim->out_fd);
3038 out_unlock_wim:
3039         wim->wim_locked = 0;
3040 out_close_wim:
3041         (void)close_wim_writable(wim, write_flags);
3042 out_restore_memory_hdr:
3043         memcpy(&wim->hdr, &hdr_save, sizeof(struct wim_header));
3044         return ret;
3045 }
3046
3047 static int
3048 overwrite_wim_via_tmpfile(WIMStruct *wim, int write_flags,
3049                           unsigned num_threads,
3050                           wimlib_progress_func_t progress_func)
3051 {
3052         size_t wim_name_len;
3053         int ret;
3054
3055         DEBUG("Overwriting `%"TS"' via a temporary file", wim->filename);
3056
3057         /* Write the WIM to a temporary file in the same directory as the
3058          * original WIM. */
3059         wim_name_len = tstrlen(wim->filename);
3060         tchar tmpfile[wim_name_len + 10];
3061         tmemcpy(tmpfile, wim->filename, wim_name_len);
3062         randomize_char_array_with_alnum(tmpfile + wim_name_len, 9);
3063         tmpfile[wim_name_len + 9] = T('\0');
3064
3065         ret = wimlib_write(wim, tmpfile, WIMLIB_ALL_IMAGES,
3066                            write_flags | WIMLIB_WRITE_FLAG_FSYNC,
3067                            num_threads, progress_func);
3068         if (ret) {
3069                 tunlink(tmpfile);
3070                 return ret;
3071         }
3072
3073         close_wim(wim);
3074
3075         /* Rename the new WIM file to the original WIM file.  Note: on Windows
3076          * this actually calls win32_rename_replacement(), not _wrename(), so
3077          * that removing the existing destination file can be handled.  */
3078         DEBUG("Renaming `%"TS"' to `%"TS"'", tmpfile, wim->filename);
3079         ret = trename(tmpfile, wim->filename);
3080         if (ret) {
3081                 ERROR_WITH_ERRNO("Failed to rename `%"TS"' to `%"TS"'",
3082                                  tmpfile, wim->filename);
3083         #ifdef __WIN32__
3084                 if (ret < 0)
3085         #endif
3086                 {
3087                         tunlink(tmpfile);
3088                 }
3089                 return WIMLIB_ERR_RENAME;
3090         }
3091
3092         if (progress_func) {
3093                 union wimlib_progress_info progress;
3094                 progress.rename.from = tmpfile;
3095                 progress.rename.to = wim->filename;
3096                 progress_func(WIMLIB_PROGRESS_MSG_RENAME, &progress);
3097         }
3098         return 0;
3099 }
3100
3101 /* Determine if the specified WIM file may be updated by appending in-place
3102  * rather than writing and replacing it with an entirely new file.  */
3103 static bool
3104 can_overwrite_wim_inplace(const WIMStruct *wim, int write_flags)
3105 {
3106         /* REBUILD flag forces full rebuild.  */
3107         if (write_flags & WIMLIB_WRITE_FLAG_REBUILD)
3108                 return false;
3109
3110         /* Deletions cause full rebuild by default.  */
3111         if (wim->deletion_occurred && !(write_flags & WIMLIB_WRITE_FLAG_SOFT_DELETE))
3112                 return false;
3113
3114         /* Pipable WIMs cannot be updated in place, nor can a non-pipable WIM be
3115          * turned into a pipable WIM in-place.  */
3116         if (wim_is_pipable(wim) || (write_flags & WIMLIB_WRITE_FLAG_PIPABLE))
3117                 return false;
3118
3119         /* wimlib allows multiple packs in a single WIM, but they don't seem to
3120          * be compatible with WIMGAPI, so force all streams to be repacked if
3121          * the WIM already may have contained a pack and PACK_STREAMS was
3122          * requested.  */
3123         if (write_flags & WIMLIB_WRITE_FLAG_PACK_STREAMS &&
3124             wim->hdr.wim_version == WIM_VERSION_PACKED_STREAMS)
3125                 return false;
3126
3127         /* The default compression type and compression chunk size selected for
3128          * the output WIM must be the same as those currently used for the WIM.
3129          */
3130         if (wim->compression_type != wim->out_compression_type)
3131                 return false;
3132         if (wim->chunk_size != wim->out_chunk_size)
3133                 return false;
3134
3135         return true;
3136 }
3137
3138 /* API function documented in wimlib.h  */
3139 WIMLIBAPI int
3140 wimlib_overwrite(WIMStruct *wim, int write_flags,
3141                  unsigned num_threads,
3142                  wimlib_progress_func_t progress_func)
3143 {
3144         int ret;
3145         u32 orig_hdr_flags;
3146
3147         write_flags &= WIMLIB_WRITE_MASK_PUBLIC;
3148
3149         if (write_flags & WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR)
3150                 return WIMLIB_ERR_INVALID_PARAM;
3151
3152         if (!wim->filename)
3153                 return WIMLIB_ERR_NO_FILENAME;
3154
3155         orig_hdr_flags = wim->hdr.flags;
3156         if (write_flags & WIMLIB_WRITE_FLAG_IGNORE_READONLY_FLAG)
3157                 wim->hdr.flags &= ~WIM_HDR_FLAG_READONLY;
3158         ret = can_modify_wim(wim);
3159         wim->hdr.flags = orig_hdr_flags;
3160         if (ret)
3161                 return ret;
3162
3163         if (can_overwrite_wim_inplace(wim, write_flags)) {
3164                 ret = overwrite_wim_inplace(wim, write_flags, num_threads,
3165                                             progress_func);
3166                 if (ret != WIMLIB_ERR_RESOURCE_ORDER)
3167                         return ret;
3168                 WARNING("Falling back to re-building entire WIM");
3169         }
3170         return overwrite_wim_via_tmpfile(wim, write_flags, num_threads,
3171                                          progress_func);
3172 }