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