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