]> wimlib.net Git - wimlib/blob - src/write.c
Workaround for WOF incompatibility
[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         if ((lte->flags & WIM_RESHDR_FLAG_PACKED_STREAMS) &&
887             (lte->out_reshdr.size_in_wim != lte->out_reshdr.uncompressed_size))
888                 return false;
889
890         return true;
891 }
892
893 /* Write the next chunk of (typically compressed) data to the output WIM,
894  * handling the writing of the chunk table.  */
895 static int
896 write_chunk(struct write_streams_ctx *ctx, const void *cchunk,
897             size_t csize, size_t usize)
898 {
899         int ret;
900
901         struct wim_lookup_table_entry *lte;
902         u32 completed_stream_count;
903         u32 completed_size;
904
905         lte = list_entry(ctx->pending_streams.next,
906                          struct wim_lookup_table_entry, write_streams_list);
907
908         if (ctx->cur_write_stream_offset == 0 &&
909             !(ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS))
910         {
911                 /* Starting to write a new stream in non-packed mode.  */
912
913                 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE) {
914                         int additional_reshdr_flags = 0;
915                         if (ctx->compressor != NULL)
916                                 additional_reshdr_flags |= WIM_RESHDR_FLAG_COMPRESSED;
917
918                         DEBUG("Writing pipable WIM stream header "
919                               "(offset=%"PRIu64")", ctx->out_fd->offset);
920
921                         ret = write_pwm_stream_header(lte, ctx->out_fd,
922                                                       additional_reshdr_flags);
923                         if (ret)
924                                 return ret;
925                 }
926
927                 ret = begin_write_resource(ctx, lte->size);
928                 if (ret)
929                         return ret;
930         }
931
932         if (ctx->compressor != NULL) {
933                 /* Record the compresed chunk size.  */
934                 wimlib_assert(ctx->chunk_index < ctx->num_alloc_chunks);
935                 ctx->chunk_csizes[ctx->chunk_index++] = csize;
936
937                /* If writing a pipable WIM, before the chunk data write a chunk
938                 * header that provides the compressed chunk size.  */
939                 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE) {
940                         struct pwm_chunk_hdr chunk_hdr = {
941                                 .compressed_size = cpu_to_le32(csize),
942                         };
943                         ret = full_write(ctx->out_fd, &chunk_hdr,
944                                          sizeof(chunk_hdr));
945                         if (ret)
946                                 goto write_error;
947                 }
948         }
949
950         /* Write the chunk data.  */
951         ret = full_write(ctx->out_fd, cchunk, csize);
952         if (ret)
953                 goto write_error;
954
955         ctx->cur_write_stream_offset += usize;
956
957         completed_size = usize;
958         completed_stream_count = 0;
959         if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS) {
960                 /* Wrote chunk in packed mode.  It may have finished multiple
961                  * streams.  */
962                 struct wim_lookup_table_entry *next_lte;
963
964                 while (lte && ctx->cur_write_stream_offset >= lte->size) {
965
966                         ctx->cur_write_stream_offset -= lte->size;
967
968                         if (ctx->cur_write_stream_offset)
969                                 next_lte = list_entry(lte->write_streams_list.next,
970                                                       struct wim_lookup_table_entry,
971                                                       write_streams_list);
972                         else
973                                 next_lte = NULL;
974
975                         ret = done_with_stream(lte, ctx);
976                         if (ret)
977                                 return ret;
978                         list_move_tail(&lte->write_streams_list, &ctx->pack_streams);
979                         completed_stream_count++;
980
981                         lte = next_lte;
982                 }
983         } else {
984                 /* Wrote chunk in non-packed mode.  It may have finished a
985                  * stream.  */
986                 if (ctx->cur_write_stream_offset == lte->size) {
987
988                         wimlib_assert(ctx->cur_write_stream_offset ==
989                                       ctx->cur_write_res_size);
990
991                         ret = end_write_resource(ctx, &lte->out_reshdr);
992                         if (ret)
993                                 return ret;
994
995                         lte->out_reshdr.flags = filter_resource_flags(lte->flags);
996                         if (ctx->compressor != NULL)
997                                 lte->out_reshdr.flags |= WIM_RESHDR_FLAG_COMPRESSED;
998
999                         if (should_rewrite_stream_uncompressed(ctx, lte)) {
1000                                 DEBUG("Stream of size %"PRIu64" did not compress to "
1001                                       "less than original size; writing uncompressed.",
1002                                       lte->size);
1003                                 ret = write_stream_uncompressed(lte, ctx->out_fd);
1004                                 if (ret)
1005                                         return ret;
1006                         }
1007                         wimlib_assert(lte->out_reshdr.uncompressed_size == lte->size);
1008
1009                         ctx->cur_write_stream_offset = 0;
1010
1011                         ret = done_with_stream(lte, ctx);
1012                         if (ret)
1013                                 return ret;
1014                         list_del(&lte->write_streams_list);
1015                         completed_stream_count++;
1016                 }
1017         }
1018
1019         return do_write_streams_progress(&ctx->progress_data,
1020                                          completed_size, completed_stream_count,
1021                                          false);
1022
1023 write_error:
1024         ERROR_WITH_ERRNO("Write error");
1025         return ret;
1026 }
1027
1028 static int
1029 submit_chunk_for_compression(struct write_streams_ctx *ctx,
1030                              const void *chunk, size_t size)
1031 {
1032         /* While we are unable to submit the chunk for compression (due to too
1033          * many chunks already outstanding), retrieve and write the next
1034          * compressed chunk.  */
1035         while (!ctx->compressor->submit_chunk(ctx->compressor, chunk, size)) {
1036                 const void *cchunk;
1037                 u32 csize;
1038                 u32 usize;
1039                 bool bret;
1040                 int ret;
1041
1042                 bret = ctx->compressor->get_chunk(ctx->compressor,
1043                                                   &cchunk, &csize, &usize);
1044
1045                 wimlib_assert(bret);
1046
1047                 ret = write_chunk(ctx, cchunk, csize, usize);
1048                 if (ret)
1049                         return ret;
1050         }
1051         return 0;
1052 }
1053
1054 /* Process the next chunk of data to be written to a WIM resource.  */
1055 static int
1056 write_stream_process_chunk(const void *chunk, size_t size, void *_ctx)
1057 {
1058         struct write_streams_ctx *ctx = _ctx;
1059         int ret;
1060         const u8 *chunkptr, *chunkend;
1061
1062         wimlib_assert(size != 0);
1063
1064         if (ctx->compressor == NULL) {
1065                 /* Write chunk uncompressed.  */
1066                  ret = write_chunk(ctx, chunk, size, size);
1067                  if (ret)
1068                          return ret;
1069                  ctx->cur_read_stream_offset += size;
1070                  return 0;
1071         }
1072
1073         /* Submit the chunk for compression, but take into account that the
1074          * @size the chunk was provided in may not correspond to the
1075          * @out_chunk_size being used for compression.  */
1076         chunkptr = chunk;
1077         chunkend = chunkptr + size;
1078         do {
1079                 const u8 *resized_chunk;
1080                 size_t needed_chunk_size;
1081
1082                 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS) {
1083                         needed_chunk_size = ctx->out_chunk_size;
1084                 } else {
1085                         u64 res_bytes_remaining;
1086
1087                         res_bytes_remaining = ctx->cur_read_stream_size -
1088                                               ctx->cur_read_stream_offset;
1089                         needed_chunk_size = min(ctx->out_chunk_size,
1090                                                 ctx->chunk_buf_filled +
1091                                                         res_bytes_remaining);
1092                 }
1093
1094                 if (ctx->chunk_buf_filled == 0 &&
1095                     chunkend - chunkptr >= needed_chunk_size)
1096                 {
1097                         /* No intermediate buffering needed.  */
1098                         resized_chunk = chunkptr;
1099                         chunkptr += needed_chunk_size;
1100                         ctx->cur_read_stream_offset += needed_chunk_size;
1101                 } else {
1102                         /* Intermediate buffering needed.  */
1103                         size_t bytes_consumed;
1104
1105                         bytes_consumed = min(chunkend - chunkptr,
1106                                              needed_chunk_size - ctx->chunk_buf_filled);
1107
1108                         memcpy(&ctx->chunk_buf[ctx->chunk_buf_filled],
1109                                chunkptr, bytes_consumed);
1110
1111                         chunkptr += bytes_consumed;
1112                         ctx->cur_read_stream_offset += bytes_consumed;
1113                         ctx->chunk_buf_filled += bytes_consumed;
1114                         if (ctx->chunk_buf_filled == needed_chunk_size) {
1115                                 resized_chunk = ctx->chunk_buf;
1116                                 ctx->chunk_buf_filled = 0;
1117                         } else {
1118                                 break;
1119                         }
1120
1121                 }
1122
1123                 ret = submit_chunk_for_compression(ctx, resized_chunk,
1124                                                    needed_chunk_size);
1125                 if (ret)
1126                         return ret;
1127
1128         } while (chunkptr != chunkend);
1129         return 0;
1130 }
1131
1132 /* Finish processing a stream for writing.  It may not have been completely
1133  * written yet, as the chunk_compressor implementation may still have chunks
1134  * buffered or being compressed.  */
1135 static int
1136 write_stream_end_read(struct wim_lookup_table_entry *lte, int status, void *_ctx)
1137 {
1138         struct write_streams_ctx *ctx = _ctx;
1139
1140         wimlib_assert(ctx->cur_read_stream_offset == ctx->cur_read_stream_size || status);
1141
1142         if (!lte->will_be_in_output_wim) {
1143                 /* The 'lte' stream was a duplicate.  Now that its data has
1144                  * finished being read, it is being discarded in favor of the
1145                  * duplicate entry.  It therefore is no longer needed, and we
1146                  * can fire the DONE_WITH_FILE callback because the file will
1147                  * not be read again.
1148                  *
1149                  * Note: we can't yet fire DONE_WITH_FILE for non-duplicate
1150                  * streams, since it needs to be possible to re-read the file if
1151                  * it does not compress to less than its original size.  */
1152                 if (!status)
1153                         status = done_with_stream(lte, ctx);
1154                 free_lookup_table_entry(lte);
1155         } else if (!status && lte->unhashed && ctx->lookup_table != NULL) {
1156                 /* The 'lte' stream was not a duplicate and was previously
1157                  * unhashed.  Since we passed COMPUTE_MISSING_STREAM_HASHES to
1158                  * read_stream_list(), lte->hash is now computed and valid.  So
1159                  * turn this stream into a "hashed" stream.  */
1160                 list_del(&lte->unhashed_list);
1161                 lookup_table_insert(ctx->lookup_table, lte);
1162                 lte->unhashed = 0;
1163         }
1164         return status;
1165 }
1166
1167 /* Compute statistics about a list of streams that will be written.
1168  *
1169  * Assumes the streams are sorted such that all streams located in each distinct
1170  * WIM (specified by WIMStruct) are together.  */
1171 static void
1172 compute_stream_list_stats(struct list_head *stream_list,
1173                           struct write_streams_ctx *ctx)
1174 {
1175         struct wim_lookup_table_entry *lte;
1176         u64 total_bytes = 0;
1177         u64 num_streams = 0;
1178         u64 total_parts = 0;
1179         WIMStruct *prev_wim_part = NULL;
1180
1181         list_for_each_entry(lte, stream_list, write_streams_list) {
1182                 num_streams++;
1183                 total_bytes += lte->size;
1184                 if (lte->resource_location == RESOURCE_IN_WIM) {
1185                         if (prev_wim_part != lte->rspec->wim) {
1186                                 prev_wim_part = lte->rspec->wim;
1187                                 total_parts++;
1188                         }
1189                 }
1190         }
1191         ctx->progress_data.progress.write_streams.total_bytes       = total_bytes;
1192         ctx->progress_data.progress.write_streams.total_streams     = num_streams;
1193         ctx->progress_data.progress.write_streams.completed_bytes   = 0;
1194         ctx->progress_data.progress.write_streams.completed_streams = 0;
1195         ctx->progress_data.progress.write_streams.compression_type  = ctx->out_ctype;
1196         ctx->progress_data.progress.write_streams.total_parts       = total_parts;
1197         ctx->progress_data.progress.write_streams.completed_parts   = 0;
1198         ctx->progress_data.next_progress = 0;
1199 }
1200
1201 /* Find streams in @stream_list that can be copied to the output WIM in raw form
1202  * rather than compressed.  Delete these streams from @stream_list and move them
1203  * to @raw_copy_streams.  Return the total uncompressed size of the streams that
1204  * need to be compressed.  */
1205 static u64
1206 find_raw_copy_streams(struct list_head *stream_list,
1207                       int write_resource_flags,
1208                       int out_ctype,
1209                       u32 out_chunk_size,
1210                       struct list_head *raw_copy_streams)
1211 {
1212         struct wim_lookup_table_entry *lte, *tmp;
1213         u64 num_bytes_to_compress = 0;
1214
1215         INIT_LIST_HEAD(raw_copy_streams);
1216
1217         /* Initialize temporary raw_copy_ok flag.  */
1218         list_for_each_entry(lte, stream_list, write_streams_list)
1219                 if (lte->resource_location == RESOURCE_IN_WIM)
1220                         lte->rspec->raw_copy_ok = 0;
1221
1222         list_for_each_entry_safe(lte, tmp, stream_list, write_streams_list) {
1223                 if (lte->resource_location == RESOURCE_IN_WIM &&
1224                     lte->rspec->raw_copy_ok)
1225                 {
1226                         list_move_tail(&lte->write_streams_list,
1227                                        raw_copy_streams);
1228                 } else if (can_raw_copy(lte, write_resource_flags,
1229                                  out_ctype, out_chunk_size))
1230                 {
1231                         lte->rspec->raw_copy_ok = 1;
1232                         list_move_tail(&lte->write_streams_list,
1233                                        raw_copy_streams);
1234                 } else {
1235                         num_bytes_to_compress += lte->size;
1236                 }
1237         }
1238
1239         return num_bytes_to_compress;
1240 }
1241
1242 /* Copy a raw compressed resource located in another WIM file to the WIM file
1243  * being written.  */
1244 static int
1245 write_raw_copy_resource(struct wim_resource_spec *in_rspec,
1246                         struct filedes *out_fd)
1247 {
1248         u64 cur_read_offset;
1249         u64 end_read_offset;
1250         u8 buf[BUFFER_SIZE];
1251         size_t bytes_to_read;
1252         int ret;
1253         struct filedes *in_fd;
1254         struct wim_lookup_table_entry *lte;
1255         u64 out_offset_in_wim;
1256
1257         DEBUG("Copying raw compressed data (size_in_wim=%"PRIu64", "
1258               "uncompressed_size=%"PRIu64")",
1259               in_rspec->size_in_wim, in_rspec->uncompressed_size);
1260
1261         /* Copy the raw data.  */
1262         cur_read_offset = in_rspec->offset_in_wim;
1263         end_read_offset = cur_read_offset + in_rspec->size_in_wim;
1264
1265         out_offset_in_wim = out_fd->offset;
1266
1267         if (in_rspec->is_pipable) {
1268                 if (cur_read_offset < sizeof(struct pwm_stream_hdr))
1269                         return WIMLIB_ERR_INVALID_PIPABLE_WIM;
1270                 cur_read_offset -= sizeof(struct pwm_stream_hdr);
1271                 out_offset_in_wim += sizeof(struct pwm_stream_hdr);
1272         }
1273         in_fd = &in_rspec->wim->in_fd;
1274         wimlib_assert(cur_read_offset != end_read_offset);
1275         do {
1276
1277                 bytes_to_read = min(sizeof(buf), end_read_offset - cur_read_offset);
1278
1279                 ret = full_pread(in_fd, buf, bytes_to_read, cur_read_offset);
1280                 if (ret)
1281                         return ret;
1282
1283                 ret = full_write(out_fd, buf, bytes_to_read);
1284                 if (ret)
1285                         return ret;
1286
1287                 cur_read_offset += bytes_to_read;
1288
1289         } while (cur_read_offset != end_read_offset);
1290
1291         list_for_each_entry(lte, &in_rspec->stream_list, rspec_node) {
1292                 if (lte->will_be_in_output_wim) {
1293                         stream_set_out_reshdr_for_reuse(lte);
1294                         if (in_rspec->flags & WIM_RESHDR_FLAG_PACKED_STREAMS)
1295                                 lte->out_res_offset_in_wim = out_offset_in_wim;
1296                         else
1297                                 lte->out_reshdr.offset_in_wim = out_offset_in_wim;
1298
1299                 }
1300         }
1301         return 0;
1302 }
1303
1304 /* Copy a list of raw compressed resources located in other WIM file(s) to the
1305  * WIM file being written.  */
1306 static int
1307 write_raw_copy_resources(struct list_head *raw_copy_streams,
1308                          struct filedes *out_fd,
1309                          struct write_streams_progress_data *progress_data)
1310 {
1311         struct wim_lookup_table_entry *lte;
1312         int ret;
1313
1314         list_for_each_entry(lte, raw_copy_streams, write_streams_list)
1315                 lte->rspec->raw_copy_ok = 1;
1316
1317         list_for_each_entry(lte, raw_copy_streams, write_streams_list) {
1318                 if (lte->rspec->raw_copy_ok) {
1319                         /* Write each packed resource only one time, no matter
1320                          * how many streams reference it.  */
1321                         ret = write_raw_copy_resource(lte->rspec, out_fd);
1322                         if (ret)
1323                                 return ret;
1324                         lte->rspec->raw_copy_ok = 0;
1325                 }
1326                 ret = do_write_streams_progress(progress_data, lte->size,
1327                                                 1, false);
1328                 if (ret)
1329                         return ret;
1330         }
1331         return 0;
1332 }
1333
1334 /* Wait for and write all chunks pending in the compressor.  */
1335 static int
1336 finish_remaining_chunks(struct write_streams_ctx *ctx)
1337 {
1338         const void *cdata;
1339         u32 csize;
1340         u32 usize;
1341         int ret;
1342
1343         if (ctx->compressor == NULL)
1344                 return 0;
1345
1346         if (ctx->chunk_buf_filled != 0) {
1347                 ret = submit_chunk_for_compression(ctx, ctx->chunk_buf,
1348                                                    ctx->chunk_buf_filled);
1349                 if (ret)
1350                         return ret;
1351         }
1352
1353         while (ctx->compressor->get_chunk(ctx->compressor, &cdata, &csize, &usize)) {
1354                 ret = write_chunk(ctx, cdata, csize, usize);
1355                 if (ret)
1356                         return ret;
1357         }
1358         return 0;
1359 }
1360
1361 static void
1362 remove_zero_length_streams(struct list_head *stream_list)
1363 {
1364         struct wim_lookup_table_entry *lte, *tmp;
1365
1366         list_for_each_entry_safe(lte, tmp, stream_list, write_streams_list) {
1367                 wimlib_assert(lte->will_be_in_output_wim);
1368                 if (lte->size == 0) {
1369                         list_del(&lte->write_streams_list);
1370                         lte->out_reshdr.offset_in_wim = 0;
1371                         lte->out_reshdr.size_in_wim = 0;
1372                         lte->out_reshdr.uncompressed_size = 0;
1373                         lte->out_reshdr.flags = filter_resource_flags(lte->flags);
1374                 }
1375         }
1376 }
1377
1378 static void
1379 init_done_with_file_info(struct list_head *stream_list)
1380 {
1381         struct wim_lookup_table_entry *lte;
1382
1383         list_for_each_entry(lte, stream_list, write_streams_list) {
1384                 if (is_file_stream(lte)) {
1385                         lte->file_inode->num_remaining_streams = 0;
1386                         lte->may_send_done_with_file = 1;
1387                 } else {
1388                         lte->may_send_done_with_file = 0;
1389                 }
1390         }
1391
1392         list_for_each_entry(lte, stream_list, write_streams_list)
1393                 if (lte->may_send_done_with_file)
1394                         lte->file_inode->num_remaining_streams++;
1395 }
1396
1397 /*
1398  * Write a list of streams to the output WIM file.
1399  *
1400  * @stream_list
1401  *      The list of streams to write, specified by a list of `struct
1402  *      wim_lookup_table_entry's linked by the 'write_streams_list' member.
1403  *
1404  * @out_fd
1405  *      The file descriptor, opened for writing, to which to write the streams.
1406  *
1407  * @write_resource_flags
1408  *      Flags to modify how the streams are written:
1409  *
1410  *      WRITE_RESOURCE_FLAG_RECOMPRESS:
1411  *              Force compression of all resources, even if they could otherwise
1412  *              be re-used by copying the raw data, due to being located in a WIM
1413  *              file with compatible compression parameters.
1414  *
1415  *      WRITE_RESOURCE_FLAG_PIPABLE:
1416  *              Write the resources in the wimlib-specific pipable format, and
1417  *              furthermore do so in such a way that no seeking backwards in
1418  *              @out_fd will be performed (so it may be a pipe).
1419  *
1420  *      WRITE_RESOURCE_FLAG_PACK_STREAMS:
1421  *              Pack all the streams into a single resource rather than writing
1422  *              them in separate resources.  This flag is only valid if the WIM
1423  *              version number has been, or will be, set to
1424  *              WIM_VERSION_PACKED_STREAMS.  This flag may not be combined with
1425  *              WRITE_RESOURCE_FLAG_PIPABLE.
1426  *
1427  * @out_ctype
1428  *      Compression format to use to write the output streams, specified as one
1429  *      of the WIMLIB_COMPRESSION_TYPE_* constants.
1430  *      WIMLIB_COMPRESSION_TYPE_NONE is allowed.
1431  *
1432  * @out_chunk_size
1433  *      Chunk size to use to write the streams.  It must be a valid chunk size
1434  *      for the specified compression format @out_ctype, unless @out_ctype is
1435  *      WIMLIB_COMPRESSION_TYPE_NONE, in which case this parameter is ignored.
1436  *
1437  * @num_threads
1438  *      Number of threads to use to compress data.  If 0, a default number of
1439  *      threads will be chosen.  The number of threads still may be decreased
1440  *      from the specified value if insufficient memory is detected.
1441  *
1442  * @lookup_table
1443  *      If on-the-fly deduplication of unhashed streams is desired, this
1444  *      parameter must be pointer to the lookup table for the WIMStruct on whose
1445  *      behalf the streams are being written.  Otherwise, this parameter can be
1446  *      NULL.
1447  *
1448  * @filter_ctx
1449  *      If on-the-fly deduplication of unhashed streams is desired, this
1450  *      parameter can be a pointer to a context for stream filtering used to
1451  *      detect whether the duplicate stream has been hard-filtered or not.  If
1452  *      no streams are hard-filtered or no streams are unhashed, this parameter
1453  *      can be NULL.
1454  *
1455  * This function will write the streams in @stream_list to resources in
1456  * consecutive positions in the output WIM file, or to a single packed resource
1457  * if WRITE_RESOURCE_FLAG_PACK_STREAMS was specified in @write_resource_flags.
1458  * In both cases, the @out_reshdr of the `struct wim_lookup_table_entry' for
1459  * each stream written will be updated to specify its location, size, and flags
1460  * in the output WIM.  In the packed resource case,
1461  * WIM_RESHDR_FLAG_PACKED_STREAMS will be set in the @flags field of each
1462  * @out_reshdr, and furthermore @out_res_offset_in_wim and @out_res_size_in_wim
1463  * of each @out_reshdr will be set to the offset and size, respectively, in the
1464  * output WIM of the packed resource containing the corresponding stream.
1465  *
1466  * Each of the streams to write may be in any location supported by the
1467  * resource-handling code (specifically, read_stream_list()), such as the
1468  * contents of external file that has been logically added to the output WIM, or
1469  * a stream in another WIM file that has been imported, or even a stream in the
1470  * "same" WIM file of which a modified copy is being written.  In the case that
1471  * a stream is already in a WIM file and uses compatible compression parameters,
1472  * by default this function will re-use the raw data instead of decompressing
1473  * it, then recompressing it; however, with WRITE_RESOURCE_FLAG_RECOMPRESS
1474  * specified in @write_resource_flags, this is not done.
1475  *
1476  * As a further requirement, this function requires that the
1477  * @will_be_in_output_wim member be set to 1 on all streams in @stream_list as
1478  * well as any other streams not in @stream_list that will be in the output WIM
1479  * file, but set to 0 on any other streams in the output WIM's lookup table or
1480  * sharing a packed resource with a stream in @stream_list.  Still furthermore,
1481  * if on-the-fly deduplication of streams is possible, then all streams in
1482  * @stream_list must also be linked by @lookup_table_list along with any other
1483  * streams that have @will_be_in_output_wim set.
1484  *
1485  * This function handles on-the-fly deduplication of streams for which SHA1
1486  * message digests have not yet been calculated.  Such streams may or may not
1487  * need to be written.  If @lookup_table is non-NULL, then each stream in
1488  * @stream_list that has @unhashed set but not @unique_size set is checksummed
1489  * immediately before it would otherwise be read for writing in order to
1490  * determine if it is identical to another stream already being written or one
1491  * that would be filtered out of the output WIM using stream_filtered() with the
1492  * context @filter_ctx.  Each such duplicate stream will be removed from
1493  * @stream_list, its reference count transfered to the pre-existing duplicate
1494  * stream, its memory freed, and will not be written.  Alternatively, if a
1495  * stream in @stream_list is a duplicate with any stream in @lookup_table that
1496  * has not been marked for writing or would not be hard-filtered, it is freed
1497  * and the pre-existing duplicate is written instead, taking ownership of the
1498  * reference count and slot in the @lookup_table_list.
1499  *
1500  * Returns 0 if every stream was either written successfully or did not need to
1501  * be written; otherwise returns a non-zero error code.
1502  */
1503 static int
1504 write_stream_list(struct list_head *stream_list,
1505                   struct filedes *out_fd,
1506                   int write_resource_flags,
1507                   int out_ctype,
1508                   u32 out_chunk_size,
1509                   unsigned num_threads,
1510                   struct wim_lookup_table *lookup_table,
1511                   struct filter_context *filter_ctx,
1512                   wimlib_progress_func_t progfunc,
1513                   void *progctx)
1514 {
1515         int ret;
1516         struct write_streams_ctx ctx;
1517         struct list_head raw_copy_streams;
1518
1519         wimlib_assert((write_resource_flags &
1520                        (WRITE_RESOURCE_FLAG_PACK_STREAMS |
1521                         WRITE_RESOURCE_FLAG_PIPABLE)) !=
1522                                 (WRITE_RESOURCE_FLAG_PACK_STREAMS |
1523                                  WRITE_RESOURCE_FLAG_PIPABLE));
1524
1525         remove_zero_length_streams(stream_list);
1526
1527         if (list_empty(stream_list)) {
1528                 DEBUG("No streams to write.");
1529                 return 0;
1530         }
1531
1532         /* If needed, set auxiliary information so that we can detect when the
1533          * library has finished using each external file.  */
1534         if (unlikely(write_resource_flags & WRITE_RESOURCE_FLAG_SEND_DONE_WITH_FILE))
1535                 init_done_with_file_info(stream_list);
1536
1537         memset(&ctx, 0, sizeof(ctx));
1538
1539         /* Pre-sorting the streams is required for compute_stream_list_stats().
1540          * Afterwards, read_stream_list() need not sort them again.  */
1541         ret = sort_stream_list_by_sequential_order(stream_list,
1542                                                    offsetof(struct wim_lookup_table_entry,
1543                                                             write_streams_list));
1544         if (ret)
1545                 return ret;
1546
1547         ctx.out_fd = out_fd;
1548         ctx.lookup_table = lookup_table;
1549         ctx.out_ctype = out_ctype;
1550         ctx.out_chunk_size = out_chunk_size;
1551         ctx.write_resource_flags = write_resource_flags;
1552         ctx.filter_ctx = filter_ctx;
1553
1554         if (out_ctype != WIMLIB_COMPRESSION_TYPE_NONE) {
1555                 wimlib_assert(out_chunk_size != 0);
1556                 if (out_chunk_size <= STACK_MAX) {
1557                         ctx.chunk_buf = alloca(out_chunk_size);
1558                 } else {
1559                         ctx.chunk_buf = MALLOC(out_chunk_size);
1560                         if (ctx.chunk_buf == NULL) {
1561                                 ret = WIMLIB_ERR_NOMEM;
1562                                 goto out_destroy_context;
1563                         }
1564                 }
1565         }
1566         ctx.chunk_buf_filled = 0;
1567
1568         compute_stream_list_stats(stream_list, &ctx);
1569
1570         ctx.progress_data.progfunc = progfunc;
1571         ctx.progress_data.progctx = progctx;
1572
1573         ctx.num_bytes_to_compress = find_raw_copy_streams(stream_list,
1574                                                           write_resource_flags,
1575                                                           out_ctype,
1576                                                           out_chunk_size,
1577                                                           &raw_copy_streams);
1578
1579         DEBUG("Writing stream list "
1580               "(offset = %"PRIu64", write_resource_flags=0x%08x, "
1581               "out_ctype=%d, out_chunk_size=%u, num_threads=%u, "
1582               "total_bytes=%"PRIu64", num_bytes_to_compress=%"PRIu64")",
1583               out_fd->offset, write_resource_flags,
1584               out_ctype, out_chunk_size, num_threads,
1585               ctx.progress_data.progress.write_streams.total_bytes,
1586               ctx.num_bytes_to_compress);
1587
1588         if (ctx.num_bytes_to_compress == 0) {
1589                 DEBUG("No compression needed; skipping to raw copy!");
1590                 goto out_write_raw_copy_resources;
1591         }
1592
1593         /* Unless uncompressed output was required, allocate a chunk_compressor
1594          * to do compression.  There are serial and parallel implementations of
1595          * the chunk_compressor interface.  We default to parallel using the
1596          * specified number of threads, unless the upper bound on the number
1597          * bytes needing to be compressed is less than a heuristic value.  */
1598         if (out_ctype != WIMLIB_COMPRESSION_TYPE_NONE) {
1599
1600         #ifdef ENABLE_MULTITHREADED_COMPRESSION
1601                 if (ctx.num_bytes_to_compress > max(2000000, out_chunk_size)) {
1602                         ret = new_parallel_chunk_compressor(out_ctype,
1603                                                             out_chunk_size,
1604                                                             num_threads, 0,
1605                                                             &ctx.compressor);
1606                         if (ret) {
1607                                 DEBUG("Couldn't create parallel chunk compressor "
1608                                       "(status %d)", ret);
1609                         }
1610                 }
1611         #endif
1612
1613                 if (ctx.compressor == NULL) {
1614                         ret = new_serial_chunk_compressor(out_ctype, out_chunk_size,
1615                                                           &ctx.compressor);
1616                         if (ret)
1617                                 goto out_destroy_context;
1618                 }
1619         }
1620
1621         if (ctx.compressor)
1622                 ctx.progress_data.progress.write_streams.num_threads = ctx.compressor->num_threads;
1623         else
1624                 ctx.progress_data.progress.write_streams.num_threads = 1;
1625
1626         DEBUG("Actually using %u threads",
1627               ctx.progress_data.progress.write_streams.num_threads);
1628
1629         INIT_LIST_HEAD(&ctx.pending_streams);
1630         INIT_LIST_HEAD(&ctx.pack_streams);
1631
1632         ret = call_progress(ctx.progress_data.progfunc,
1633                             WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
1634                             &ctx.progress_data.progress,
1635                             ctx.progress_data.progctx);
1636         if (ret)
1637                 goto out_destroy_context;
1638
1639         if (write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS) {
1640                 ret = begin_write_resource(&ctx, ctx.num_bytes_to_compress);
1641                 if (ret)
1642                         goto out_destroy_context;
1643         }
1644
1645         /* Read the list of streams needing to be compressed, using the
1646          * specified callbacks to execute processing of the data.  */
1647
1648         struct read_stream_list_callbacks cbs = {
1649                 .begin_stream           = write_stream_begin_read,
1650                 .begin_stream_ctx       = &ctx,
1651                 .consume_chunk          = write_stream_process_chunk,
1652                 .consume_chunk_ctx      = &ctx,
1653                 .end_stream             = write_stream_end_read,
1654                 .end_stream_ctx         = &ctx,
1655         };
1656
1657         ret = read_stream_list(stream_list,
1658                                offsetof(struct wim_lookup_table_entry, write_streams_list),
1659                                &cbs,
1660                                STREAM_LIST_ALREADY_SORTED |
1661                                         VERIFY_STREAM_HASHES |
1662                                         COMPUTE_MISSING_STREAM_HASHES);
1663
1664         if (ret)
1665                 goto out_destroy_context;
1666
1667         ret = finish_remaining_chunks(&ctx);
1668         if (ret)
1669                 goto out_destroy_context;
1670
1671         if (write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS) {
1672                 struct wim_reshdr reshdr;
1673                 struct wim_lookup_table_entry *lte;
1674                 u64 offset_in_res;
1675
1676                 ret = end_write_resource(&ctx, &reshdr);
1677                 if (ret)
1678                         goto out_destroy_context;
1679
1680                 DEBUG("Ending packed resource: %lu %lu %lu.",
1681                       reshdr.offset_in_wim,
1682                       reshdr.size_in_wim,
1683                       reshdr.uncompressed_size);
1684
1685                 offset_in_res = 0;
1686                 list_for_each_entry(lte, &ctx.pack_streams, write_streams_list) {
1687                         lte->out_reshdr.size_in_wim = lte->size;
1688                         lte->out_reshdr.flags = filter_resource_flags(lte->flags);
1689                         lte->out_reshdr.flags |= WIM_RESHDR_FLAG_PACKED_STREAMS;
1690                         lte->out_reshdr.uncompressed_size = 0;
1691                         lte->out_reshdr.offset_in_wim = offset_in_res;
1692                         lte->out_res_offset_in_wim = reshdr.offset_in_wim;
1693                         lte->out_res_size_in_wim = reshdr.size_in_wim;
1694                         lte->out_res_uncompressed_size = reshdr.uncompressed_size;
1695                         offset_in_res += lte->size;
1696                 }
1697                 wimlib_assert(offset_in_res == reshdr.uncompressed_size);
1698         }
1699
1700 out_write_raw_copy_resources:
1701         /* Copy any compressed resources for which the raw data can be reused
1702          * without decompression.  */
1703         ret = write_raw_copy_resources(&raw_copy_streams, ctx.out_fd,
1704                                        &ctx.progress_data);
1705
1706 out_destroy_context:
1707         if (out_ctype != WIMLIB_COMPRESSION_TYPE_NONE && out_chunk_size > STACK_MAX)
1708                 FREE(ctx.chunk_buf);
1709         FREE(ctx.chunk_csizes);
1710         if (ctx.compressor)
1711                 ctx.compressor->destroy(ctx.compressor);
1712         DEBUG("Done (ret=%d)", ret);
1713         return ret;
1714 }
1715
1716 static int
1717 is_stream_packed(struct wim_lookup_table_entry *lte, void *_ignore)
1718 {
1719         return lte_is_partial(lte);
1720 }
1721
1722 static bool
1723 wim_has_packed_streams(WIMStruct *wim)
1724 {
1725         return for_lookup_table_entry(wim->lookup_table, is_stream_packed, NULL);
1726 }
1727
1728 static int
1729 wim_write_stream_list(WIMStruct *wim,
1730                       struct list_head *stream_list,
1731                       int write_flags,
1732                       unsigned num_threads,
1733                       struct filter_context *filter_ctx)
1734 {
1735         int out_ctype;
1736         u32 out_chunk_size;
1737         int write_resource_flags;
1738
1739         write_resource_flags = write_flags_to_resource_flags(write_flags);
1740
1741         /* wimlib v1.7.0: pack streams by default if the WIM version has been
1742          * set to WIM_VERSION_PACKED_STREAMS and at least one stream in the
1743          * WIM's lookup table is located in a packed resource (may be the same
1744          * WIM, or a different one in the case of export).  */
1745         if (wim->hdr.wim_version == WIM_VERSION_PACKED_STREAMS &&
1746             wim_has_packed_streams(wim))
1747         {
1748                 write_resource_flags |= WRITE_RESOURCE_FLAG_PACK_STREAMS;
1749         }
1750
1751         if (write_resource_flags & WRITE_RESOURCE_FLAG_PACK_STREAMS) {
1752                 out_chunk_size = wim->out_pack_chunk_size;
1753                 out_ctype = wim->out_pack_compression_type;
1754         } else {
1755                 out_chunk_size = wim->out_chunk_size;
1756                 out_ctype = wim->out_compression_type;
1757         }
1758
1759         return write_stream_list(stream_list,
1760                                  &wim->out_fd,
1761                                  write_resource_flags,
1762                                  out_ctype,
1763                                  out_chunk_size,
1764                                  num_threads,
1765                                  wim->lookup_table,
1766                                  filter_ctx,
1767                                  wim->progfunc,
1768                                  wim->progctx);
1769 }
1770
1771 static int
1772 write_wim_resource(struct wim_lookup_table_entry *lte,
1773                    struct filedes *out_fd,
1774                    int out_ctype,
1775                    u32 out_chunk_size,
1776                    int write_resource_flags)
1777 {
1778         LIST_HEAD(stream_list);
1779         list_add(&lte->write_streams_list, &stream_list);
1780         lte->will_be_in_output_wim = 1;
1781         return write_stream_list(&stream_list,
1782                                  out_fd,
1783                                  write_resource_flags & ~WRITE_RESOURCE_FLAG_PACK_STREAMS,
1784                                  out_ctype,
1785                                  out_chunk_size,
1786                                  1,
1787                                  NULL,
1788                                  NULL,
1789                                  NULL,
1790                                  NULL);
1791 }
1792
1793 int
1794 write_wim_resource_from_buffer(const void *buf, size_t buf_size,
1795                                int reshdr_flags, struct filedes *out_fd,
1796                                int out_ctype,
1797                                u32 out_chunk_size,
1798                                struct wim_reshdr *out_reshdr,
1799                                u8 *hash,
1800                                int write_resource_flags)
1801 {
1802         int ret;
1803         struct wim_lookup_table_entry *lte;
1804
1805         /* Set up a temporary lookup table entry to provide to
1806          * write_wim_resource().  */
1807
1808         lte = new_lookup_table_entry();
1809         if (lte == NULL)
1810                 return WIMLIB_ERR_NOMEM;
1811
1812         lte->resource_location  = RESOURCE_IN_ATTACHED_BUFFER;
1813         lte->attached_buffer    = (void*)buf;
1814         lte->size               = buf_size;
1815         lte->flags              = reshdr_flags;
1816
1817         if (write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE) {
1818                 sha1_buffer(buf, buf_size, lte->hash);
1819                 lte->unhashed = 0;
1820         } else {
1821                 lte->unhashed = 1;
1822         }
1823
1824         ret = write_wim_resource(lte, out_fd, out_ctype, out_chunk_size,
1825                                  write_resource_flags);
1826         if (ret)
1827                 goto out_free_lte;
1828
1829         copy_reshdr(out_reshdr, &lte->out_reshdr);
1830
1831         if (hash)
1832                 copy_hash(hash, lte->hash);
1833         ret = 0;
1834 out_free_lte:
1835         lte->resource_location = RESOURCE_NONEXISTENT;
1836         free_lookup_table_entry(lte);
1837         return ret;
1838 }
1839
1840 struct stream_size_table {
1841         struct hlist_head *array;
1842         size_t num_entries;
1843         size_t capacity;
1844 };
1845
1846 static int
1847 init_stream_size_table(struct stream_size_table *tab, size_t capacity)
1848 {
1849         tab->array = CALLOC(capacity, sizeof(tab->array[0]));
1850         if (tab->array == NULL)
1851                 return WIMLIB_ERR_NOMEM;
1852         tab->num_entries = 0;
1853         tab->capacity = capacity;
1854         return 0;
1855 }
1856
1857 static void
1858 destroy_stream_size_table(struct stream_size_table *tab)
1859 {
1860         FREE(tab->array);
1861 }
1862
1863 static int
1864 stream_size_table_insert(struct wim_lookup_table_entry *lte, void *_tab)
1865 {
1866         struct stream_size_table *tab = _tab;
1867         size_t pos;
1868         struct wim_lookup_table_entry *same_size_lte;
1869         struct hlist_node *tmp;
1870
1871         pos = hash_u64(lte->size) % tab->capacity;
1872         lte->unique_size = 1;
1873         hlist_for_each_entry(same_size_lte, tmp, &tab->array[pos], hash_list_2) {
1874                 if (same_size_lte->size == lte->size) {
1875                         lte->unique_size = 0;
1876                         same_size_lte->unique_size = 0;
1877                         break;
1878                 }
1879         }
1880
1881         hlist_add_head(&lte->hash_list_2, &tab->array[pos]);
1882         tab->num_entries++;
1883         return 0;
1884 }
1885
1886 struct find_streams_ctx {
1887         WIMStruct *wim;
1888         int write_flags;
1889         struct list_head stream_list;
1890         struct stream_size_table stream_size_tab;
1891 };
1892
1893 static void
1894 reference_stream_for_write(struct wim_lookup_table_entry *lte,
1895                            struct list_head *stream_list, u32 nref)
1896 {
1897         if (!lte->will_be_in_output_wim) {
1898                 lte->out_refcnt = 0;
1899                 list_add_tail(&lte->write_streams_list, stream_list);
1900                 lte->will_be_in_output_wim = 1;
1901         }
1902         lte->out_refcnt += nref;
1903 }
1904
1905 static int
1906 fully_reference_stream_for_write(struct wim_lookup_table_entry *lte,
1907                                  void *_stream_list)
1908 {
1909         struct list_head *stream_list = _stream_list;
1910         lte->will_be_in_output_wim = 0;
1911         reference_stream_for_write(lte, stream_list, lte->refcnt);
1912         return 0;
1913 }
1914
1915 static int
1916 inode_find_streams_to_reference(const struct wim_inode *inode,
1917                                 const struct wim_lookup_table *table,
1918                                 struct list_head *stream_list)
1919 {
1920         struct wim_lookup_table_entry *lte;
1921         unsigned i;
1922
1923         wimlib_assert(inode->i_nlink > 0);
1924
1925         for (i = 0; i <= inode->i_num_ads; i++) {
1926                 lte = inode_stream_lte(inode, i, table);
1927                 if (lte)
1928                         reference_stream_for_write(lte, stream_list,
1929                                                    inode->i_nlink);
1930                 else if (!is_zero_hash(inode_stream_hash(inode, i)))
1931                         return WIMLIB_ERR_RESOURCE_NOT_FOUND;
1932         }
1933         return 0;
1934 }
1935
1936 static int
1937 do_stream_set_not_in_output_wim(struct wim_lookup_table_entry *lte, void *_ignore)
1938 {
1939         lte->will_be_in_output_wim = 0;
1940         return 0;
1941 }
1942
1943 static int
1944 image_find_streams_to_reference(WIMStruct *wim)
1945 {
1946         struct wim_image_metadata *imd;
1947         struct wim_inode *inode;
1948         struct wim_lookup_table_entry *lte;
1949         struct list_head *stream_list;
1950         int ret;
1951
1952         imd = wim_get_current_image_metadata(wim);
1953
1954         image_for_each_unhashed_stream(lte, imd)
1955                 lte->will_be_in_output_wim = 0;
1956
1957         stream_list = wim->private;
1958         image_for_each_inode(inode, imd) {
1959                 ret = inode_find_streams_to_reference(inode,
1960                                                       wim->lookup_table,
1961                                                       stream_list);
1962                 if (ret)
1963                         return ret;
1964         }
1965         return 0;
1966 }
1967
1968 static int
1969 prepare_unfiltered_list_of_streams_in_output_wim(WIMStruct *wim,
1970                                                  int image,
1971                                                  int streams_ok,
1972                                                  struct list_head *stream_list_ret)
1973 {
1974         int ret;
1975
1976         INIT_LIST_HEAD(stream_list_ret);
1977
1978         if (streams_ok && (image == WIMLIB_ALL_IMAGES ||
1979                            (image == 1 && wim->hdr.image_count == 1)))
1980         {
1981                 /* Fast case:  Assume that all streams are being written and
1982                  * that the reference counts are correct.  */
1983                 struct wim_lookup_table_entry *lte;
1984                 struct wim_image_metadata *imd;
1985                 unsigned i;
1986
1987                 for_lookup_table_entry(wim->lookup_table,
1988                                        fully_reference_stream_for_write,
1989                                        stream_list_ret);
1990
1991                 for (i = 0; i < wim->hdr.image_count; i++) {
1992                         imd = wim->image_metadata[i];
1993                         image_for_each_unhashed_stream(lte, imd)
1994                                 fully_reference_stream_for_write(lte, stream_list_ret);
1995                 }
1996         } else {
1997                 /* Slow case:  Walk through the images being written and
1998                  * determine the streams referenced.  */
1999                 for_lookup_table_entry(wim->lookup_table,
2000                                        do_stream_set_not_in_output_wim, NULL);
2001                 wim->private = stream_list_ret;
2002                 ret = for_image(wim, image, image_find_streams_to_reference);
2003                 if (ret)
2004                         return ret;
2005         }
2006
2007         return 0;
2008 }
2009
2010 struct insert_other_if_hard_filtered_ctx {
2011         struct stream_size_table *tab;
2012         struct filter_context *filter_ctx;
2013 };
2014
2015 static int
2016 insert_other_if_hard_filtered(struct wim_lookup_table_entry *lte, void *_ctx)
2017 {
2018         struct insert_other_if_hard_filtered_ctx *ctx = _ctx;
2019
2020         if (!lte->will_be_in_output_wim &&
2021             stream_hard_filtered(lte, ctx->filter_ctx))
2022                 stream_size_table_insert(lte, ctx->tab);
2023         return 0;
2024 }
2025
2026 static int
2027 determine_stream_size_uniquity(struct list_head *stream_list,
2028                                struct wim_lookup_table *lt,
2029                                struct filter_context *filter_ctx)
2030 {
2031         int ret;
2032         struct stream_size_table tab;
2033         struct wim_lookup_table_entry *lte;
2034
2035         ret = init_stream_size_table(&tab, 9001);
2036         if (ret)
2037                 return ret;
2038
2039         if (may_hard_filter_streams(filter_ctx)) {
2040                 struct insert_other_if_hard_filtered_ctx ctx = {
2041                         .tab = &tab,
2042                         .filter_ctx = filter_ctx,
2043                 };
2044                 for_lookup_table_entry(lt, insert_other_if_hard_filtered, &ctx);
2045         }
2046
2047         list_for_each_entry(lte, stream_list, write_streams_list)
2048                 stream_size_table_insert(lte, &tab);
2049
2050         destroy_stream_size_table(&tab);
2051         return 0;
2052 }
2053
2054 static void
2055 filter_stream_list_for_write(struct list_head *stream_list,
2056                              struct filter_context *filter_ctx)
2057 {
2058         struct wim_lookup_table_entry *lte, *tmp;
2059
2060         list_for_each_entry_safe(lte, tmp,
2061                                  stream_list, write_streams_list)
2062         {
2063                 int status = stream_filtered(lte, filter_ctx);
2064
2065                 if (status == 0) {
2066                         /* Not filtered.  */
2067                         continue;
2068                 } else {
2069                         if (status > 0) {
2070                                 /* Soft filtered.  */
2071                         } else {
2072                                 /* Hard filtered.  */
2073                                 lte->will_be_in_output_wim = 0;
2074                                 list_del(&lte->lookup_table_list);
2075                         }
2076                         list_del(&lte->write_streams_list);
2077                 }
2078         }
2079 }
2080
2081 /*
2082  * prepare_stream_list_for_write() -
2083  *
2084  * Prepare the list of streams to write for writing a WIM containing the
2085  * specified image(s) with the specified write flags.
2086  *
2087  * @wim
2088  *      The WIMStruct on whose behalf the write is occurring.
2089  *
2090  * @image
2091  *      Image(s) from the WIM to write; may be WIMLIB_ALL_IMAGES.
2092  *
2093  * @write_flags
2094  *      WIMLIB_WRITE_FLAG_* flags for the write operation:
2095  *
2096  *      STREAMS_OK:  For writes of all images, assume that all streams in the
2097  *      lookup table of @wim and the per-image lists of unhashed streams should
2098  *      be taken as-is, and image metadata should not be searched for
2099  *      references.  This does not exclude filtering with OVERWRITE and
2100  *      SKIP_EXTERNAL_WIMS, below.
2101  *
2102  *      OVERWRITE:  Streams already present in @wim shall not be returned in
2103  *      @stream_list_ret.
2104  *
2105  *      SKIP_EXTERNAL_WIMS:  Streams already present in a WIM file, but not
2106  *      @wim, shall be returned in neither @stream_list_ret nor
2107  *      @lookup_table_list_ret.
2108  *
2109  * @stream_list_ret
2110  *      List of streams, linked by write_streams_list, that need to be written
2111  *      will be returned here.
2112  *
2113  *      Note that this function assumes that unhashed streams will be written;
2114  *      it does not take into account that they may become duplicates when
2115  *      actually hashed.
2116  *
2117  * @lookup_table_list_ret
2118  *      List of streams, linked by lookup_table_list, that need to be included
2119  *      in the WIM's lookup table will be returned here.  This will be a
2120  *      superset of the streams in @stream_list_ret.
2121  *
2122  *      This list will be a proper superset of @stream_list_ret if and only if
2123  *      WIMLIB_WRITE_FLAG_OVERWRITE was specified in @write_flags and some of
2124  *      the streams that would otherwise need to be written were already located
2125  *      in the WIM file.
2126  *
2127  *      All streams in this list will have @out_refcnt set to the number of
2128  *      references to the stream in the output WIM.  If
2129  *      WIMLIB_WRITE_FLAG_STREAMS_OK was specified in @write_flags, @out_refcnt
2130  *      may be as low as 0.
2131  *
2132  * @filter_ctx_ret
2133  *      A context for queries of stream filter status with stream_filtered() is
2134  *      returned in this location.
2135  *
2136  * In addition, @will_be_in_output_wim will be set to 1 in all stream entries
2137  * inserted into @lookup_table_list_ret and to 0 in all stream entries in the
2138  * lookup table of @wim not inserted into @lookup_table_list_ret.
2139  *
2140  * Still furthermore, @unique_size will be set to 1 on all stream entries in
2141  * @stream_list_ret that have unique size among all stream entries in
2142  * @stream_list_ret and among all stream entries in the lookup table of @wim
2143  * that are ineligible for being written due to filtering.
2144  *
2145  * Returns 0 on success; nonzero on read error, memory allocation error, or
2146  * otherwise.
2147  */
2148 static int
2149 prepare_stream_list_for_write(WIMStruct *wim, int image,
2150                               int write_flags,
2151                               struct list_head *stream_list_ret,
2152                               struct list_head *lookup_table_list_ret,
2153                               struct filter_context *filter_ctx_ret)
2154 {
2155         int ret;
2156         struct wim_lookup_table_entry *lte;
2157
2158         filter_ctx_ret->write_flags = write_flags;
2159         filter_ctx_ret->wim = wim;
2160
2161         ret = prepare_unfiltered_list_of_streams_in_output_wim(
2162                                 wim,
2163                                 image,
2164                                 write_flags & WIMLIB_WRITE_FLAG_STREAMS_OK,
2165                                 stream_list_ret);
2166         if (ret)
2167                 return ret;
2168
2169         INIT_LIST_HEAD(lookup_table_list_ret);
2170         list_for_each_entry(lte, stream_list_ret, write_streams_list)
2171                 list_add_tail(&lte->lookup_table_list, lookup_table_list_ret);
2172
2173         ret = determine_stream_size_uniquity(stream_list_ret, wim->lookup_table,
2174                                              filter_ctx_ret);
2175         if (ret)
2176                 return ret;
2177
2178         if (may_filter_streams(filter_ctx_ret))
2179                 filter_stream_list_for_write(stream_list_ret, filter_ctx_ret);
2180
2181         return 0;
2182 }
2183
2184 static int
2185 write_wim_streams(WIMStruct *wim, int image, int write_flags,
2186                   unsigned num_threads,
2187                   struct list_head *stream_list_override,
2188                   struct list_head *lookup_table_list_ret)
2189 {
2190         int ret;
2191         struct list_head _stream_list;
2192         struct list_head *stream_list;
2193         struct wim_lookup_table_entry *lte;
2194         struct filter_context _filter_ctx;
2195         struct filter_context *filter_ctx;
2196
2197         if (stream_list_override == NULL) {
2198                 /* Normal case: prepare stream list from image(s) being written.
2199                  */
2200                 stream_list = &_stream_list;
2201                 filter_ctx = &_filter_ctx;
2202                 ret = prepare_stream_list_for_write(wim, image, write_flags,
2203                                                     stream_list,
2204                                                     lookup_table_list_ret,
2205                                                     filter_ctx);
2206                 if (ret)
2207                         return ret;
2208         } else {
2209                 /* Currently only as a result of wimlib_split() being called:
2210                  * use stream list already explicitly provided.  Use existing
2211                  * reference counts.  */
2212                 stream_list = stream_list_override;
2213                 filter_ctx = NULL;
2214                 INIT_LIST_HEAD(lookup_table_list_ret);
2215                 list_for_each_entry(lte, stream_list, write_streams_list) {
2216                         lte->out_refcnt = lte->refcnt;
2217                         lte->will_be_in_output_wim = 1;
2218                         lte->unique_size = 0;
2219                         list_add_tail(&lte->lookup_table_list, lookup_table_list_ret);
2220                 }
2221         }
2222
2223         return wim_write_stream_list(wim,
2224                                      stream_list,
2225                                      write_flags,
2226                                      num_threads,
2227                                      filter_ctx);
2228 }
2229
2230 static int
2231 write_wim_metadata_resources(WIMStruct *wim, int image, int write_flags)
2232 {
2233         int ret;
2234         int start_image;
2235         int end_image;
2236         int write_resource_flags;
2237
2238         if (write_flags & WIMLIB_WRITE_FLAG_NO_METADATA) {
2239                 DEBUG("Not writing any metadata resources.");
2240                 return 0;
2241         }
2242
2243         write_resource_flags = write_flags_to_resource_flags(write_flags);
2244
2245         write_resource_flags &= ~WRITE_RESOURCE_FLAG_PACK_STREAMS;
2246
2247         DEBUG("Writing metadata resources (offset=%"PRIu64")",
2248               wim->out_fd.offset);
2249
2250         ret = call_progress(wim->progfunc,
2251                             WIMLIB_PROGRESS_MSG_WRITE_METADATA_BEGIN,
2252                             NULL, wim->progctx);
2253         if (ret)
2254                 return ret;
2255
2256         if (image == WIMLIB_ALL_IMAGES) {
2257                 start_image = 1;
2258                 end_image = wim->hdr.image_count;
2259         } else {
2260                 start_image = image;
2261                 end_image = image;
2262         }
2263
2264         for (int i = start_image; i <= end_image; i++) {
2265                 struct wim_image_metadata *imd;
2266
2267                 imd = wim->image_metadata[i - 1];
2268                 /* Build a new metadata resource only if image was modified from
2269                  * the original (or was newly added).  Otherwise just copy the
2270                  * existing one.  */
2271                 if (imd->modified) {
2272                         DEBUG("Image %u was modified; building and writing new "
2273                               "metadata resource", i);
2274                         ret = write_metadata_resource(wim, i,
2275                                                       write_resource_flags);
2276                 } else if (write_flags & WIMLIB_WRITE_FLAG_OVERWRITE) {
2277                         DEBUG("Image %u was not modified; re-using existing "
2278                               "metadata resource.", i);
2279                         stream_set_out_reshdr_for_reuse(imd->metadata_lte);
2280                         ret = 0;
2281                 } else {
2282                         DEBUG("Image %u was not modified; copying existing "
2283                               "metadata resource.", i);
2284                         ret = write_wim_resource(imd->metadata_lte,
2285                                                  &wim->out_fd,
2286                                                  wim->out_compression_type,
2287                                                  wim->out_chunk_size,
2288                                                  write_resource_flags);
2289                 }
2290                 if (ret)
2291                         return ret;
2292         }
2293
2294         return call_progress(wim->progfunc,
2295                              WIMLIB_PROGRESS_MSG_WRITE_METADATA_END,
2296                              NULL, wim->progctx);
2297 }
2298
2299 static int
2300 open_wim_writable(WIMStruct *wim, const tchar *path, int open_flags)
2301 {
2302         int raw_fd;
2303         DEBUG("Opening \"%"TS"\" for writing.", path);
2304
2305         raw_fd = topen(path, open_flags | O_BINARY, 0644);
2306         if (raw_fd < 0) {
2307                 ERROR_WITH_ERRNO("Failed to open \"%"TS"\" for writing", path);
2308                 return WIMLIB_ERR_OPEN;
2309         }
2310         filedes_init(&wim->out_fd, raw_fd);
2311         return 0;
2312 }
2313
2314 static int
2315 close_wim_writable(WIMStruct *wim, int write_flags)
2316 {
2317         int ret = 0;
2318
2319         if (!(write_flags & WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR)) {
2320                 DEBUG("Closing WIM file.");
2321                 if (filedes_valid(&wim->out_fd))
2322                         if (filedes_close(&wim->out_fd))
2323                                 ret = WIMLIB_ERR_WRITE;
2324         }
2325         filedes_invalidate(&wim->out_fd);
2326         return ret;
2327 }
2328
2329 static int
2330 cmp_streams_by_out_rspec(const void *p1, const void *p2)
2331 {
2332         const struct wim_lookup_table_entry *lte1, *lte2;
2333
2334         lte1 = *(const struct wim_lookup_table_entry**)p1;
2335         lte2 = *(const struct wim_lookup_table_entry**)p2;
2336
2337         if (lte1->out_reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
2338                 if (lte2->out_reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
2339                         if (lte1->out_res_offset_in_wim != lte2->out_res_offset_in_wim)
2340                                 return cmp_u64(lte1->out_res_offset_in_wim,
2341                                                lte2->out_res_offset_in_wim);
2342                 } else {
2343                         return 1;
2344                 }
2345         } else {
2346                 if (lte2->out_reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS)
2347                         return -1;
2348         }
2349         return cmp_u64(lte1->out_reshdr.offset_in_wim,
2350                        lte2->out_reshdr.offset_in_wim);
2351 }
2352
2353 static int
2354 write_wim_lookup_table(WIMStruct *wim, int image, int write_flags,
2355                        struct wim_reshdr *out_reshdr,
2356                        struct list_head *lookup_table_list)
2357 {
2358         int ret;
2359
2360         /* Set output resource metadata for streams already present in WIM.  */
2361         if (write_flags & WIMLIB_WRITE_FLAG_OVERWRITE) {
2362                 struct wim_lookup_table_entry *lte;
2363                 list_for_each_entry(lte, lookup_table_list, lookup_table_list)
2364                 {
2365                         if (lte->resource_location == RESOURCE_IN_WIM &&
2366                             lte->rspec->wim == wim)
2367                         {
2368                                 stream_set_out_reshdr_for_reuse(lte);
2369                         }
2370                 }
2371         }
2372
2373         ret = sort_stream_list(lookup_table_list,
2374                                offsetof(struct wim_lookup_table_entry, lookup_table_list),
2375                                cmp_streams_by_out_rspec);
2376         if (ret)
2377                 return ret;
2378
2379         /* Add entries for metadata resources.  */
2380         if (!(write_flags & WIMLIB_WRITE_FLAG_NO_METADATA)) {
2381                 int start_image;
2382                 int end_image;
2383
2384                 if (image == WIMLIB_ALL_IMAGES) {
2385                         start_image = 1;
2386                         end_image = wim->hdr.image_count;
2387                 } else {
2388                         start_image = image;
2389                         end_image = image;
2390                 }
2391
2392                 /* Push metadata resource lookup table entries onto the front of
2393                  * the list in reverse order, so that they're written in order.
2394                  */
2395                 for (int i = end_image; i >= start_image; i--) {
2396                         struct wim_lookup_table_entry *metadata_lte;
2397
2398                         metadata_lte = wim->image_metadata[i - 1]->metadata_lte;
2399                         wimlib_assert(metadata_lte->out_reshdr.flags & WIM_RESHDR_FLAG_METADATA);
2400                         metadata_lte->out_refcnt = 1;
2401                         list_add(&metadata_lte->lookup_table_list, lookup_table_list);
2402                 }
2403         }
2404
2405         return write_wim_lookup_table_from_stream_list(lookup_table_list,
2406                                                        &wim->out_fd,
2407                                                        wim->hdr.part_number,
2408                                                        out_reshdr,
2409                                                        write_flags_to_resource_flags(write_flags));
2410 }
2411
2412 /*
2413  * finish_write():
2414  *
2415  * Finish writing a WIM file: write the lookup table, xml data, and integrity
2416  * table, then overwrite the WIM header.  By default, closes the WIM file
2417  * descriptor (@wim->out_fd) if successful.
2418  *
2419  * write_flags is a bitwise OR of the following:
2420  *
2421  *      (public) WIMLIB_WRITE_FLAG_CHECK_INTEGRITY:
2422  *              Include an integrity table.
2423  *
2424  *      (public) WIMLIB_WRITE_FLAG_FSYNC:
2425  *              fsync() the output file before closing it.
2426  *
2427  *      (public) WIMLIB_WRITE_FLAG_PIPABLE:
2428  *              Writing a pipable WIM, possibly to a pipe; include pipable WIM
2429  *              stream headers before the lookup table and XML data, and also
2430  *              write the WIM header at the end instead of seeking to the
2431  *              beginning.  Can't be combined with
2432  *              WIMLIB_WRITE_FLAG_CHECK_INTEGRITY.
2433  *
2434  *      (private) WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE:
2435  *              Don't write the lookup table.
2436  *
2437  *      (private) WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML:
2438  *              After writing the XML data but before writing the integrity
2439  *              table, write a temporary WIM header and flush the stream so that
2440  *              the WIM is less likely to become corrupted upon abrupt program
2441  *              termination.
2442  *      (private) WIMLIB_WRITE_FLAG_HEADER_AT_END:
2443  *              Instead of overwriting the WIM header at the beginning of the
2444  *              file, simply append it to the end of the file.  (Used when
2445  *              writing to pipe.)
2446  *      (private) WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR:
2447  *              Do not close the file descriptor @wim->out_fd on either success
2448  *              on failure.
2449  *      (private) WIMLIB_WRITE_FLAG_USE_EXISTING_TOTALBYTES:
2450  *              Use the existing <TOTALBYTES> stored in the in-memory XML
2451  *              information, rather than setting it to the offset of the XML
2452  *              data being written.
2453  *      (private) WIMLIB_WRITE_FLAG_OVERWRITE
2454  *              The existing WIM file is being updated in-place.  The entries
2455  *              from its integrity table may be re-used.
2456  */
2457 static int
2458 finish_write(WIMStruct *wim, int image, int write_flags,
2459              struct list_head *lookup_table_list)
2460 {
2461         int ret;
2462         off_t hdr_offset;
2463         int write_resource_flags;
2464         off_t old_lookup_table_end = 0;
2465         off_t new_lookup_table_end;
2466         u64 xml_totalbytes;
2467         struct integrity_table *old_integrity_table = NULL;
2468
2469         DEBUG("image=%d, write_flags=%08x", image, write_flags);
2470
2471         write_resource_flags = write_flags_to_resource_flags(write_flags);
2472
2473         /* In the WIM header, there is room for the resource entry for a
2474          * metadata resource labeled as the "boot metadata".  This entry should
2475          * be zeroed out if there is no bootable image (boot_idx 0).  Otherwise,
2476          * it should be a copy of the resource entry for the image that is
2477          * marked as bootable.  This is not well documented...  */
2478         if (wim->hdr.boot_idx == 0) {
2479                 zero_reshdr(&wim->hdr.boot_metadata_reshdr);
2480         } else {
2481                 copy_reshdr(&wim->hdr.boot_metadata_reshdr,
2482                             &wim->image_metadata[
2483                                 wim->hdr.boot_idx - 1]->metadata_lte->out_reshdr);
2484         }
2485
2486         /* If overwriting the WIM file containing an integrity table in-place,
2487          * we'd like to re-use the information in the old integrity table
2488          * instead of recalculating it.  But we might overwrite the old
2489          * integrity table when we expand the XML data.  Read it into memory
2490          * just in case.  */
2491         if ((write_flags & (WIMLIB_WRITE_FLAG_OVERWRITE |
2492                             WIMLIB_WRITE_FLAG_CHECK_INTEGRITY)) ==
2493                 (WIMLIB_WRITE_FLAG_OVERWRITE |
2494                  WIMLIB_WRITE_FLAG_CHECK_INTEGRITY)
2495             && wim_has_integrity_table(wim))
2496         {
2497                 old_lookup_table_end = wim->hdr.lookup_table_reshdr.offset_in_wim +
2498                                        wim->hdr.lookup_table_reshdr.size_in_wim;
2499                 (void)read_integrity_table(wim,
2500                                            old_lookup_table_end - WIM_HEADER_DISK_SIZE,
2501                                            &old_integrity_table);
2502                 /* If we couldn't read the old integrity table, we can still
2503                  * re-calculate the full integrity table ourselves.  Hence the
2504                  * ignoring of the return value.  */
2505         }
2506
2507         /* Write lookup table.  */
2508         if (!(write_flags & WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE)) {
2509                 ret = write_wim_lookup_table(wim, image, write_flags,
2510                                              &wim->hdr.lookup_table_reshdr,
2511                                              lookup_table_list);
2512                 if (ret) {
2513                         free_integrity_table(old_integrity_table);
2514                         return ret;
2515                 }
2516         }
2517
2518         /* Write XML data.  */
2519         xml_totalbytes = wim->out_fd.offset;
2520         if (write_flags & WIMLIB_WRITE_FLAG_USE_EXISTING_TOTALBYTES)
2521                 xml_totalbytes = WIM_TOTALBYTES_USE_EXISTING;
2522         ret = write_wim_xml_data(wim, image, xml_totalbytes,
2523                                  &wim->hdr.xml_data_reshdr,
2524                                  write_resource_flags);
2525         if (ret) {
2526                 free_integrity_table(old_integrity_table);
2527                 return ret;
2528         }
2529
2530         /* Write integrity table (optional).  */
2531         if (write_flags & WIMLIB_WRITE_FLAG_CHECK_INTEGRITY) {
2532                 if (write_flags & WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML) {
2533                         struct wim_header checkpoint_hdr;
2534                         memcpy(&checkpoint_hdr, &wim->hdr, sizeof(struct wim_header));
2535                         zero_reshdr(&checkpoint_hdr.integrity_table_reshdr);
2536                         checkpoint_hdr.flags |= WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2537                         ret = write_wim_header_at_offset(&checkpoint_hdr,
2538                                                          &wim->out_fd, 0);
2539                         if (ret) {
2540                                 free_integrity_table(old_integrity_table);
2541                                 return ret;
2542                         }
2543                 }
2544
2545                 new_lookup_table_end = wim->hdr.lookup_table_reshdr.offset_in_wim +
2546                                        wim->hdr.lookup_table_reshdr.size_in_wim;
2547
2548                 ret = write_integrity_table(wim,
2549                                             new_lookup_table_end,
2550                                             old_lookup_table_end,
2551                                             old_integrity_table);
2552                 free_integrity_table(old_integrity_table);
2553                 if (ret)
2554                         return ret;
2555         } else {
2556                 /* No integrity table.  */
2557                 zero_reshdr(&wim->hdr.integrity_table_reshdr);
2558         }
2559
2560         /* Now that all information in the WIM header has been determined, the
2561          * preliminary header written earlier can be overwritten, the header of
2562          * the existing WIM file can be overwritten, or the final header can be
2563          * written to the end of the pipable WIM.  */
2564         wim->hdr.flags &= ~WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2565         hdr_offset = 0;
2566         if (write_flags & WIMLIB_WRITE_FLAG_HEADER_AT_END)
2567                 hdr_offset = wim->out_fd.offset;
2568         DEBUG("Writing new header @ %"PRIu64".", hdr_offset);
2569         ret = write_wim_header_at_offset(&wim->hdr, &wim->out_fd, hdr_offset);
2570         if (ret)
2571                 return ret;
2572
2573         /* Possibly sync file data to disk before closing.  On POSIX systems, it
2574          * is necessary to do this before using rename() to overwrite an
2575          * existing file with a new file.  Otherwise, data loss would occur if
2576          * the system is abruptly terminated when the metadata for the rename
2577          * operation has been written to disk, but the new file data has not.
2578          */
2579         if (write_flags & WIMLIB_WRITE_FLAG_FSYNC) {
2580                 DEBUG("Syncing WIM file.");
2581                 if (fsync(wim->out_fd.fd)) {
2582                         ERROR_WITH_ERRNO("Error syncing data to WIM file");
2583                         return WIMLIB_ERR_WRITE;
2584                 }
2585         }
2586
2587         if (close_wim_writable(wim, write_flags)) {
2588                 ERROR_WITH_ERRNO("Failed to close the output WIM file");
2589                 return WIMLIB_ERR_WRITE;
2590         }
2591
2592         return 0;
2593 }
2594
2595 #if defined(HAVE_SYS_FILE_H) && defined(HAVE_FLOCK)
2596
2597 /* Set advisory lock on WIM file (if not already done so)  */
2598 int
2599 lock_wim_for_append(WIMStruct *wim)
2600 {
2601         if (wim->locked_for_append)
2602                 return 0;
2603         if (!flock(wim->in_fd.fd, LOCK_EX | LOCK_NB)) {
2604                 wim->locked_for_append = 1;
2605                 return 0;
2606         }
2607         if (errno != EWOULDBLOCK)
2608                 return 0;
2609         return WIMLIB_ERR_ALREADY_LOCKED;
2610 }
2611
2612 /* Remove advisory lock on WIM file (if present)  */
2613 void
2614 unlock_wim_for_append(WIMStruct *wim)
2615 {
2616         if (wim->locked_for_append) {
2617                 flock(wim->in_fd.fd, LOCK_UN);
2618                 wim->locked_for_append = 0;
2619         }
2620 }
2621 #endif
2622
2623 /*
2624  * write_pipable_wim():
2625  *
2626  * Perform the intermediate stages of creating a "pipable" WIM (i.e. a WIM
2627  * capable of being applied from a pipe).
2628  *
2629  * Pipable WIMs are a wimlib-specific modification of the WIM format such that
2630  * images can be applied from them sequentially when the file data is sent over
2631  * a pipe.  In addition, a pipable WIM can be written sequentially to a pipe.
2632  * The modifications made to the WIM format for pipable WIMs are:
2633  *
2634  * - Magic characters in header are "WLPWM\0\0\0" (wimlib pipable WIM) instead
2635  *   of "MSWIM\0\0\0".  This lets wimlib know that the WIM is pipable and also
2636  *   stops other software from trying to read the file as a normal WIM.
2637  *
2638  * - The header at the beginning of the file does not contain all the normal
2639  *   information; in particular it will have all 0's for the lookup table and
2640  *   XML data resource entries.  This is because this information cannot be
2641  *   determined until the lookup table and XML data have been written.
2642  *   Consequently, wimlib will write the full header at the very end of the
2643  *   file.  The header at the end, however, is only used when reading the WIM
2644  *   from a seekable file (not a pipe).
2645  *
2646  * - An extra copy of the XML data is placed directly after the header.  This
2647  *   allows image names and sizes to be determined at an appropriate time when
2648  *   reading the WIM from a pipe.  This copy of the XML data is ignored if the
2649  *   WIM is read from a seekable file (not a pipe).
2650  *
2651  * - The format of resources, or streams, has been modified to allow them to be
2652  *   used before the "lookup table" has been read.  Each stream is prefixed with
2653  *   a `struct pwm_stream_hdr' that is basically an abbreviated form of `struct
2654  *   wim_lookup_table_entry_disk' that only contains the SHA1 message digest,
2655  *   uncompressed stream size, and flags that indicate whether the stream is
2656  *   compressed.  The data of uncompressed streams then follows literally, while
2657  *   the data of compressed streams follows in a modified format.  Compressed
2658  *   streams do not begin with a chunk table, since the chunk table cannot be
2659  *   written until all chunks have been compressed.  Instead, each compressed
2660  *   chunk is prefixed by a `struct pwm_chunk_hdr' that gives its size.
2661  *   Furthermore, the chunk table is written at the end of the resource instead
2662  *   of the start.  Note: chunk offsets are given in the chunk table as if the
2663  *   `struct pwm_chunk_hdr's were not present; also, the chunk table is only
2664  *   used if the WIM is being read from a seekable file (not a pipe).
2665  *
2666  * - Metadata resources always come before other file resources (streams).
2667  *   (This does not by itself constitute an incompatibility with normal WIMs,
2668  *   since this is valid in normal WIMs.)
2669  *
2670  * - At least up to the end of the file resources, all components must be packed
2671  *   as tightly as possible; there cannot be any "holes" in the WIM.  (This does
2672  *   not by itself consititute an incompatibility with normal WIMs, since this
2673  *   is valid in normal WIMs.)
2674  *
2675  * Note: the lookup table, XML data, and header at the end are not used when
2676  * applying from a pipe.  They exist to support functionality such as image
2677  * application and export when the WIM is *not* read from a pipe.
2678  *
2679  *   Layout of pipable WIM:
2680  *
2681  * ---------+----------+--------------------+----------------+--------------+-----------+--------+
2682  * | Header | XML data | Metadata resources | File resources | Lookup table | XML data  | Header |
2683  * ---------+----------+--------------------+----------------+--------------+-----------+--------+
2684  *
2685  *   Layout of normal WIM:
2686  *
2687  * +--------+-----------------------------+-------------------------+
2688  * | Header | File and metadata resources | Lookup table | XML data |
2689  * +--------+-----------------------------+-------------------------+
2690  *
2691  * An optional integrity table can follow the final XML data in both normal and
2692  * pipable WIMs.  However, due to implementation details, wimlib currently can
2693  * only include an integrity table in a pipable WIM when writing it to a
2694  * seekable file (not a pipe).
2695  *
2696  * Do note that since pipable WIMs are not supported by Microsoft's software,
2697  * wimlib does not create them unless explicitly requested (with
2698  * WIMLIB_WRITE_FLAG_PIPABLE) and as stated above they use different magic
2699  * characters to identify the file.
2700  */
2701 static int
2702 write_pipable_wim(WIMStruct *wim, int image, int write_flags,
2703                   unsigned num_threads,
2704                   struct list_head *stream_list_override,
2705                   struct list_head *lookup_table_list_ret)
2706 {
2707         int ret;
2708         struct wim_reshdr xml_reshdr;
2709
2710         WARNING("Creating a pipable WIM, which will "
2711                 "be incompatible\n"
2712                 "          with Microsoft's software (wimgapi/imagex/Dism).");
2713
2714         /* At this point, the header at the beginning of the file has already
2715          * been written.  */
2716
2717         /* For efficiency, when wimlib adds an image to the WIM with
2718          * wimlib_add_image(), the SHA1 message digests of files is not
2719          * calculated; instead, they are calculated while the files are being
2720          * written.  However, this does not work when writing a pipable WIM,
2721          * since when writing a stream to a pipable WIM, its SHA1 message digest
2722          * needs to be known before the stream data is written.  Therefore,
2723          * before getting much farther, we need to pre-calculate the SHA1
2724          * message digests of all streams that will be written.  */
2725         ret = wim_checksum_unhashed_streams(wim);
2726         if (ret)
2727                 return ret;
2728
2729         /* Write extra copy of the XML data.  */
2730         ret = write_wim_xml_data(wim, image, WIM_TOTALBYTES_OMIT,
2731                                  &xml_reshdr,
2732                                  WRITE_RESOURCE_FLAG_PIPABLE);
2733         if (ret)
2734                 return ret;
2735
2736         /* Write metadata resources for the image(s) being included in the
2737          * output WIM.  */
2738         ret = write_wim_metadata_resources(wim, image, write_flags);
2739         if (ret)
2740                 return ret;
2741
2742         /* Write streams needed for the image(s) being included in the output
2743          * WIM, or streams needed for the split WIM part.  */
2744         return write_wim_streams(wim, image, write_flags, num_threads,
2745                                  stream_list_override, lookup_table_list_ret);
2746
2747         /* The lookup table, XML data, and header at end are handled by
2748          * finish_write().  */
2749 }
2750
2751 /* Write a standalone WIM or split WIM (SWM) part to a new file or to a file
2752  * descriptor.  */
2753 int
2754 write_wim_part(WIMStruct *wim,
2755                const void *path_or_fd,
2756                int image,
2757                int write_flags,
2758                unsigned num_threads,
2759                unsigned part_number,
2760                unsigned total_parts,
2761                struct list_head *stream_list_override,
2762                const u8 *guid)
2763 {
2764         int ret;
2765         struct wim_header hdr_save;
2766         struct list_head lookup_table_list;
2767
2768         if (total_parts == 1)
2769                 DEBUG("Writing standalone WIM.");
2770         else
2771                 DEBUG("Writing split WIM part %u/%u", part_number, total_parts);
2772         if (image == WIMLIB_ALL_IMAGES)
2773                 DEBUG("Including all images.");
2774         else
2775                 DEBUG("Including image %d only.", image);
2776         if (write_flags & WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR)
2777                 DEBUG("File descriptor: %d", *(const int*)path_or_fd);
2778         else
2779                 DEBUG("Path: \"%"TS"\"", (const tchar*)path_or_fd);
2780         DEBUG("Write flags: 0x%08x", write_flags);
2781
2782         if (write_flags & WIMLIB_WRITE_FLAG_CHECK_INTEGRITY)
2783                 DEBUG("\tCHECK_INTEGRITY");
2784
2785         if (write_flags & WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY)
2786                 DEBUG("\tNO_CHECK_INTEGRITY");
2787
2788         if (write_flags & WIMLIB_WRITE_FLAG_PIPABLE)
2789                 DEBUG("\tPIPABLE");
2790
2791         if (write_flags & WIMLIB_WRITE_FLAG_NOT_PIPABLE)
2792                 DEBUG("\tNOT_PIPABLE");
2793
2794         if (write_flags & WIMLIB_WRITE_FLAG_RECOMPRESS)
2795                 DEBUG("\tRECOMPRESS");
2796
2797         if (write_flags & WIMLIB_WRITE_FLAG_FSYNC)
2798                 DEBUG("\tFSYNC");
2799
2800         if (write_flags & WIMLIB_WRITE_FLAG_REBUILD)
2801                 DEBUG("\tREBUILD");
2802
2803         if (write_flags & WIMLIB_WRITE_FLAG_SOFT_DELETE)
2804                 DEBUG("\tSOFT_DELETE");
2805
2806         if (write_flags & WIMLIB_WRITE_FLAG_IGNORE_READONLY_FLAG)
2807                 DEBUG("\tIGNORE_READONLY_FLAG");
2808
2809         if (write_flags & WIMLIB_WRITE_FLAG_SKIP_EXTERNAL_WIMS)
2810                 DEBUG("\tSKIP_EXTERNAL_WIMS");
2811
2812         if (write_flags & WIMLIB_WRITE_FLAG_STREAMS_OK)
2813                 DEBUG("\tSTREAMS_OK");
2814
2815         if (write_flags & WIMLIB_WRITE_FLAG_RETAIN_GUID)
2816                 DEBUG("\tRETAIN_GUID");
2817
2818         if (write_flags & WIMLIB_WRITE_FLAG_PACK_STREAMS)
2819                 DEBUG("\tPACK_STREAMS");
2820
2821         if (write_flags & WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR)
2822                 DEBUG("\tFILE_DESCRIPTOR");
2823
2824         if (write_flags & WIMLIB_WRITE_FLAG_NO_METADATA)
2825                 DEBUG("\tNO_METADATA");
2826
2827         if (write_flags & WIMLIB_WRITE_FLAG_USE_EXISTING_TOTALBYTES)
2828                 DEBUG("\tUSE_EXISTING_TOTALBYTES");
2829
2830         if (num_threads == 0)
2831                 DEBUG("Number of threads: autodetect");
2832         else
2833                 DEBUG("Number of threads: %u", num_threads);
2834         DEBUG("Progress function: %s", (wim->progfunc ? "yes" : "no"));
2835         DEBUG("Stream list:       %s", (stream_list_override ? "specified" : "autodetect"));
2836         DEBUG("GUID:              %s", (write_flags &
2837                                         WIMLIB_WRITE_FLAG_RETAIN_GUID) ? "retain"
2838                                                 : guid ? "explicit" : "generate new");
2839
2840         /* Internally, this is always called with a valid part number and total
2841          * parts.  */
2842         wimlib_assert(total_parts >= 1);
2843         wimlib_assert(part_number >= 1 && part_number <= total_parts);
2844
2845         /* A valid image (or all images) must be specified.  */
2846         if (image != WIMLIB_ALL_IMAGES &&
2847              (image < 1 || image > wim->hdr.image_count))
2848                 return WIMLIB_ERR_INVALID_IMAGE;
2849
2850         /* If we need to write metadata resources, make sure the ::WIMStruct has
2851          * the needed information attached (e.g. is not a resource-only WIM,
2852          * such as a non-first part of a split WIM).  */
2853         if (!wim_has_metadata(wim) &&
2854             !(write_flags & WIMLIB_WRITE_FLAG_NO_METADATA))
2855                 return WIMLIB_ERR_METADATA_NOT_FOUND;
2856
2857         /* Check for contradictory flags.  */
2858         if ((write_flags & (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
2859                             WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY))
2860                                 == (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
2861                                     WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY))
2862                 return WIMLIB_ERR_INVALID_PARAM;
2863
2864         if ((write_flags & (WIMLIB_WRITE_FLAG_PIPABLE |
2865                             WIMLIB_WRITE_FLAG_NOT_PIPABLE))
2866                                 == (WIMLIB_WRITE_FLAG_PIPABLE |
2867                                     WIMLIB_WRITE_FLAG_NOT_PIPABLE))
2868                 return WIMLIB_ERR_INVALID_PARAM;
2869
2870         /* Save previous header, then start initializing the new one.  */
2871         memcpy(&hdr_save, &wim->hdr, sizeof(struct wim_header));
2872
2873         /* Set default integrity, pipable, and packed stream flags.  */
2874         if (!(write_flags & (WIMLIB_WRITE_FLAG_PIPABLE |
2875                              WIMLIB_WRITE_FLAG_NOT_PIPABLE)))
2876                 if (wim_is_pipable(wim)) {
2877                         DEBUG("WIM is pipable; default to PIPABLE.");
2878                         write_flags |= WIMLIB_WRITE_FLAG_PIPABLE;
2879                 }
2880
2881         if (!(write_flags & (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
2882                              WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY)))
2883                 if (wim_has_integrity_table(wim)) {
2884                         DEBUG("Integrity table present; default to CHECK_INTEGRITY.");
2885                         write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
2886                 }
2887
2888         if ((write_flags & (WIMLIB_WRITE_FLAG_PIPABLE |
2889                             WIMLIB_WRITE_FLAG_PACK_STREAMS))
2890                                     == (WIMLIB_WRITE_FLAG_PIPABLE |
2891                                         WIMLIB_WRITE_FLAG_PACK_STREAMS))
2892         {
2893                 ERROR("Cannot specify both PIPABLE and PACK_STREAMS!");
2894                 return WIMLIB_ERR_INVALID_PARAM;
2895         }
2896
2897         /* Set appropriate magic number.  */
2898         if (write_flags & WIMLIB_WRITE_FLAG_PIPABLE)
2899                 wim->hdr.magic = PWM_MAGIC;
2900         else
2901                 wim->hdr.magic = WIM_MAGIC;
2902
2903         /* Set appropriate version number.  */
2904         if ((write_flags & WIMLIB_WRITE_FLAG_PACK_STREAMS) ||
2905             wim->out_compression_type == WIMLIB_COMPRESSION_TYPE_LZMS)
2906                 wim->hdr.wim_version = WIM_VERSION_PACKED_STREAMS;
2907         else
2908                 wim->hdr.wim_version = WIM_VERSION_DEFAULT;
2909
2910         /* Clear header flags that will be set automatically.  */
2911         wim->hdr.flags &= ~(WIM_HDR_FLAG_METADATA_ONLY          |
2912                             WIM_HDR_FLAG_RESOURCE_ONLY          |
2913                             WIM_HDR_FLAG_SPANNED                |
2914                             WIM_HDR_FLAG_WRITE_IN_PROGRESS);
2915
2916         /* Set SPANNED header flag if writing part of a split WIM.  */
2917         if (total_parts != 1)
2918                 wim->hdr.flags |= WIM_HDR_FLAG_SPANNED;
2919
2920         /* Set part number and total parts of split WIM.  This will be 1 and 1
2921          * if the WIM is standalone.  */
2922         wim->hdr.part_number = part_number;
2923         wim->hdr.total_parts = total_parts;
2924
2925         /* Set compression type if different.  */
2926         if (wim->compression_type != wim->out_compression_type) {
2927                 ret = set_wim_hdr_cflags(wim->out_compression_type, &wim->hdr);
2928                 wimlib_assert(ret == 0);
2929         }
2930
2931         /* Set chunk size if different.  */
2932         wim->hdr.chunk_size = wim->out_chunk_size;
2933
2934         /* Set GUID.  */
2935         if (!(write_flags & WIMLIB_WRITE_FLAG_RETAIN_GUID)) {
2936                 if (guid)
2937                         memcpy(wim->hdr.guid, guid, WIMLIB_GUID_LEN);
2938                 else
2939                         randomize_byte_array(wim->hdr.guid, WIMLIB_GUID_LEN);
2940         }
2941
2942         /* Clear references to resources that have not been written yet.  */
2943         zero_reshdr(&wim->hdr.lookup_table_reshdr);
2944         zero_reshdr(&wim->hdr.xml_data_reshdr);
2945         zero_reshdr(&wim->hdr.boot_metadata_reshdr);
2946         zero_reshdr(&wim->hdr.integrity_table_reshdr);
2947
2948         /* Set image count and boot index correctly for single image writes.  */
2949         if (image != WIMLIB_ALL_IMAGES) {
2950                 wim->hdr.image_count = 1;
2951                 if (wim->hdr.boot_idx == image)
2952                         wim->hdr.boot_idx = 1;
2953                 else
2954                         wim->hdr.boot_idx = 0;
2955         }
2956
2957         /* Split WIMs can't be bootable.  */
2958         if (total_parts != 1)
2959                 wim->hdr.boot_idx = 0;
2960
2961         /* Initialize output file descriptor.  */
2962         if (write_flags & WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR) {
2963                 /* File descriptor was explicitly provided.  Return error if
2964                  * file descriptor is not seekable, unless writing a pipable WIM
2965                  * was requested.  */
2966                 wim->out_fd.fd = *(const int*)path_or_fd;
2967                 wim->out_fd.offset = 0;
2968                 if (!filedes_is_seekable(&wim->out_fd)) {
2969                         ret = WIMLIB_ERR_INVALID_PARAM;
2970                         if (!(write_flags & WIMLIB_WRITE_FLAG_PIPABLE))
2971                                 goto out_restore_hdr;
2972                         if (write_flags & WIMLIB_WRITE_FLAG_CHECK_INTEGRITY) {
2973                                 ERROR("Can't include integrity check when "
2974                                       "writing pipable WIM to pipe!");
2975                                 goto out_restore_hdr;
2976                         }
2977                 }
2978
2979         } else {
2980                 /* Filename of WIM to write was provided; open file descriptor
2981                  * to it.  */
2982                 ret = open_wim_writable(wim, (const tchar*)path_or_fd,
2983                                         O_TRUNC | O_CREAT | O_RDWR);
2984                 if (ret)
2985                         goto out_restore_hdr;
2986         }
2987
2988         /* Write initial header.  This is merely a "dummy" header since it
2989          * doesn't have all the information yet, so it will be overwritten later
2990          * (unless writing a pipable WIM).  */
2991         if (!(write_flags & WIMLIB_WRITE_FLAG_PIPABLE))
2992                 wim->hdr.flags |= WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2993         ret = write_wim_header(&wim->hdr, &wim->out_fd);
2994         wim->hdr.flags &= ~WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2995         if (ret)
2996                 goto out_restore_hdr;
2997
2998         /* Write metadata resources and streams.  */
2999         if (!(write_flags & WIMLIB_WRITE_FLAG_PIPABLE)) {
3000                 /* Default case: create a normal (non-pipable) WIM.  */
3001                 ret = write_wim_streams(wim, image, write_flags, num_threads,
3002                                         stream_list_override,
3003                                         &lookup_table_list);
3004                 if (ret)
3005                         goto out_restore_hdr;
3006
3007                 ret = write_wim_metadata_resources(wim, image, write_flags);
3008                 if (ret)
3009                         goto out_restore_hdr;
3010         } else {
3011                 /* Non-default case: create pipable WIM.  */
3012                 ret = write_pipable_wim(wim, image, write_flags, num_threads,
3013                                         stream_list_override,
3014                                         &lookup_table_list);
3015                 if (ret)
3016                         goto out_restore_hdr;
3017                 write_flags |= WIMLIB_WRITE_FLAG_HEADER_AT_END;
3018         }
3019
3020
3021         /* Write lookup table, XML data, and (optional) integrity table.  */
3022         ret = finish_write(wim, image, write_flags, &lookup_table_list);
3023 out_restore_hdr:
3024         memcpy(&wim->hdr, &hdr_save, sizeof(struct wim_header));
3025         (void)close_wim_writable(wim, write_flags);
3026         DEBUG("ret=%d", ret);
3027         return ret;
3028 }
3029
3030 /* Write a standalone WIM to a file or file descriptor.  */
3031 static int
3032 write_standalone_wim(WIMStruct *wim, const void *path_or_fd,
3033                      int image, int write_flags, unsigned num_threads)
3034 {
3035         return write_wim_part(wim, path_or_fd, image, write_flags,
3036                               num_threads, 1, 1, NULL, NULL);
3037 }
3038
3039 /* API function documented in wimlib.h  */
3040 WIMLIBAPI int
3041 wimlib_write(WIMStruct *wim, const tchar *path,
3042              int image, int write_flags, unsigned num_threads)
3043 {
3044         if (write_flags & ~WIMLIB_WRITE_MASK_PUBLIC)
3045                 return WIMLIB_ERR_INVALID_PARAM;
3046
3047         if (path == NULL || path[0] == T('\0'))
3048                 return WIMLIB_ERR_INVALID_PARAM;
3049
3050         return write_standalone_wim(wim, path, image, write_flags, num_threads);
3051 }
3052
3053 /* API function documented in wimlib.h  */
3054 WIMLIBAPI int
3055 wimlib_write_to_fd(WIMStruct *wim, int fd,
3056                    int image, int write_flags, unsigned num_threads)
3057 {
3058         if (write_flags & ~WIMLIB_WRITE_MASK_PUBLIC)
3059                 return WIMLIB_ERR_INVALID_PARAM;
3060
3061         if (fd < 0)
3062                 return WIMLIB_ERR_INVALID_PARAM;
3063
3064         write_flags |= WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR;
3065
3066         return write_standalone_wim(wim, &fd, image, write_flags, num_threads);
3067 }
3068
3069 static bool
3070 any_images_modified(WIMStruct *wim)
3071 {
3072         for (int i = 0; i < wim->hdr.image_count; i++)
3073                 if (wim->image_metadata[i]->modified)
3074                         return true;
3075         return false;
3076 }
3077
3078 static int
3079 check_resource_offset(struct wim_lookup_table_entry *lte, void *_wim)
3080 {
3081         const WIMStruct *wim = _wim;
3082         off_t end_offset = *(const off_t*)wim->private;
3083
3084         if (lte->resource_location == RESOURCE_IN_WIM && lte->rspec->wim == wim &&
3085             lte->rspec->offset_in_wim + lte->rspec->size_in_wim > end_offset)
3086                 return WIMLIB_ERR_RESOURCE_ORDER;
3087         return 0;
3088 }
3089
3090 /* Make sure no file or metadata resources are located after the XML data (or
3091  * integrity table if present)--- otherwise we can't safely overwrite the WIM in
3092  * place and we return WIMLIB_ERR_RESOURCE_ORDER.  */
3093 static int
3094 check_resource_offsets(WIMStruct *wim, off_t end_offset)
3095 {
3096         int ret;
3097         unsigned i;
3098
3099         wim->private = &end_offset;
3100         ret = for_lookup_table_entry(wim->lookup_table, check_resource_offset, wim);
3101         if (ret)
3102                 return ret;
3103
3104         for (i = 0; i < wim->hdr.image_count; i++) {
3105                 ret = check_resource_offset(wim->image_metadata[i]->metadata_lte, wim);
3106                 if (ret)
3107                         return ret;
3108         }
3109         return 0;
3110 }
3111
3112 /*
3113  * Overwrite a WIM, possibly appending streams to it.
3114  *
3115  * A WIM looks like (or is supposed to look like) the following:
3116  *
3117  *                   Header (212 bytes)
3118  *                   Streams and metadata resources (variable size)
3119  *                   Lookup table (variable size)
3120  *                   XML data (variable size)
3121  *                   Integrity table (optional) (variable size)
3122  *
3123  * If we are not adding any streams or metadata resources, the lookup table is
3124  * unchanged--- so we only need to overwrite the XML data, integrity table, and
3125  * header.  This operation is potentially unsafe if the program is abruptly
3126  * terminated while the XML data or integrity table are being overwritten, but
3127  * before the new header has been written.  To partially alleviate this problem,
3128  * a special flag (WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML) is passed to
3129  * finish_write() to cause a temporary WIM header to be written after the XML
3130  * data has been written.  This may prevent the WIM from becoming corrupted if
3131  * the program is terminated while the integrity table is being calculated (but
3132  * no guarantees, due to write re-ordering...).
3133  *
3134  * If we are adding new streams or images (metadata resources), the lookup table
3135  * needs to be changed, and those streams need to be written.  In this case, we
3136  * try to perform a safe update of the WIM file by writing the streams *after*
3137  * the end of the previous WIM, then writing the new lookup table, XML data, and
3138  * (optionally) integrity table following the new streams.  This will produce a
3139  * layout like the following:
3140  *
3141  *                   Header (212 bytes)
3142  *                   (OLD) Streams and metadata resources (variable size)
3143  *                   (OLD) Lookup table (variable size)
3144  *                   (OLD) XML data (variable size)
3145  *                   (OLD) Integrity table (optional) (variable size)
3146  *                   (NEW) Streams and metadata resources (variable size)
3147  *                   (NEW) Lookup table (variable size)
3148  *                   (NEW) XML data (variable size)
3149  *                   (NEW) Integrity table (optional) (variable size)
3150  *
3151  * At all points, the WIM is valid as nothing points to the new data yet.  Then,
3152  * the header is overwritten to point to the new lookup table, XML data, and
3153  * integrity table, to produce the following layout:
3154  *
3155  *                   Header (212 bytes)
3156  *                   Streams and metadata resources (variable size)
3157  *                   Nothing (variable size)
3158  *                   More Streams and metadata resources (variable size)
3159  *                   Lookup table (variable size)
3160  *                   XML data (variable size)
3161  *                   Integrity table (optional) (variable size)
3162  *
3163  * This method allows an image to be appended to a large WIM very quickly, and
3164  * is crash-safe except in the case of write re-ordering, but the
3165  * disadvantage is that a small hole is left in the WIM where the old lookup
3166  * table, xml data, and integrity table were.  (These usually only take up a
3167  * small amount of space compared to the streams, however.)
3168  */
3169 static int
3170 overwrite_wim_inplace(WIMStruct *wim, int write_flags, unsigned num_threads)
3171 {
3172         int ret;
3173         off_t old_wim_end;
3174         u64 old_lookup_table_end, old_xml_begin, old_xml_end;
3175         struct wim_header hdr_save;
3176         struct list_head stream_list;
3177         struct list_head lookup_table_list;
3178         struct filter_context filter_ctx;
3179
3180         DEBUG("Overwriting `%"TS"' in-place", wim->filename);
3181
3182         /* Save original header so it can be restored in case of error  */
3183         memcpy(&hdr_save, &wim->hdr, sizeof(struct wim_header));
3184
3185         /* Set default integrity flag.  */
3186         if (!(write_flags & (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
3187                              WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY)))
3188                 if (wim_has_integrity_table(wim))
3189                         write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
3190
3191         /* Set WIM version if adding packed streams.  */
3192         if (write_flags & WIMLIB_WRITE_FLAG_PACK_STREAMS)
3193                 wim->hdr.wim_version = WIM_VERSION_PACKED_STREAMS;
3194
3195         /* Set additional flags for overwrite.  */
3196         write_flags |= WIMLIB_WRITE_FLAG_OVERWRITE |
3197                        WIMLIB_WRITE_FLAG_STREAMS_OK;
3198
3199         /* Make sure that the integrity table (if present) is after the XML
3200          * data, and that there are no stream resources, metadata resources, or
3201          * lookup tables after the XML data.  Otherwise, these data would be
3202          * overwritten. */
3203         old_xml_begin = wim->hdr.xml_data_reshdr.offset_in_wim;
3204         old_xml_end = old_xml_begin + wim->hdr.xml_data_reshdr.size_in_wim;
3205         old_lookup_table_end = wim->hdr.lookup_table_reshdr.offset_in_wim +
3206                                wim->hdr.lookup_table_reshdr.size_in_wim;
3207         if (wim->hdr.integrity_table_reshdr.offset_in_wim != 0 &&
3208             wim->hdr.integrity_table_reshdr.offset_in_wim < old_xml_end) {
3209                 WARNING("Didn't expect the integrity table to be before the XML data");
3210                 ret = WIMLIB_ERR_RESOURCE_ORDER;
3211                 goto out_restore_memory_hdr;
3212         }
3213
3214         if (old_lookup_table_end > old_xml_begin) {
3215                 WARNING("Didn't expect the lookup table to be after the XML data");
3216                 ret = WIMLIB_ERR_RESOURCE_ORDER;
3217                 goto out_restore_memory_hdr;
3218         }
3219
3220         /* Set @old_wim_end, which indicates the point beyond which we don't
3221          * allow any file and metadata resources to appear without returning
3222          * WIMLIB_ERR_RESOURCE_ORDER (due to the fact that we would otherwise
3223          * overwrite these resources). */
3224         if (!wim->deletion_occurred && !any_images_modified(wim)) {
3225                 /* If no images have been modified and no images have been
3226                  * deleted, a new lookup table does not need to be written.  We
3227                  * shall write the new XML data and optional integrity table
3228                  * immediately after the lookup table.  Note that this may
3229                  * overwrite an existing integrity table. */
3230                 DEBUG("Skipping writing lookup table "
3231                       "(no images modified or deleted)");
3232                 old_wim_end = old_lookup_table_end;
3233                 write_flags |= WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE |
3234                                WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML;
3235         } else if (wim->hdr.integrity_table_reshdr.offset_in_wim != 0) {
3236                 /* Old WIM has an integrity table; begin writing new streams
3237                  * after it. */
3238                 old_wim_end = wim->hdr.integrity_table_reshdr.offset_in_wim +
3239                               wim->hdr.integrity_table_reshdr.size_in_wim;
3240         } else {
3241                 /* No existing integrity table; begin writing new streams after
3242                  * the old XML data. */
3243                 old_wim_end = old_xml_end;
3244         }
3245
3246         ret = check_resource_offsets(wim, old_wim_end);
3247         if (ret)
3248                 goto out_restore_memory_hdr;
3249
3250         ret = prepare_stream_list_for_write(wim, WIMLIB_ALL_IMAGES, write_flags,
3251                                             &stream_list, &lookup_table_list,
3252                                             &filter_ctx);
3253         if (ret)
3254                 goto out_restore_memory_hdr;
3255
3256         ret = open_wim_writable(wim, wim->filename, O_RDWR);
3257         if (ret)
3258                 goto out_restore_memory_hdr;
3259
3260         ret = lock_wim_for_append(wim);
3261         if (ret)
3262                 goto out_close_wim;
3263
3264         /* Set WIM_HDR_FLAG_WRITE_IN_PROGRESS flag in header. */
3265         wim->hdr.flags |= WIM_HDR_FLAG_WRITE_IN_PROGRESS;
3266         ret = write_wim_header_flags(wim->hdr.flags, &wim->out_fd);
3267         if (ret) {
3268                 ERROR_WITH_ERRNO("Error updating WIM header flags");
3269                 goto out_unlock_wim;
3270         }
3271
3272         if (filedes_seek(&wim->out_fd, old_wim_end) == -1) {
3273                 ERROR_WITH_ERRNO("Can't seek to end of WIM");
3274                 ret = WIMLIB_ERR_WRITE;
3275                 goto out_restore_physical_hdr;
3276         }
3277
3278         ret = wim_write_stream_list(wim,
3279                                     &stream_list,
3280                                     write_flags,
3281                                     num_threads,
3282                                     &filter_ctx);
3283         if (ret)
3284                 goto out_truncate;
3285
3286         ret = write_wim_metadata_resources(wim, WIMLIB_ALL_IMAGES, write_flags);
3287         if (ret)
3288                 goto out_truncate;
3289
3290         ret = finish_write(wim, WIMLIB_ALL_IMAGES, write_flags,
3291                            &lookup_table_list);
3292         if (ret)
3293                 goto out_truncate;
3294
3295         unlock_wim_for_append(wim);
3296         return 0;
3297
3298 out_truncate:
3299         if (!(write_flags & WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE)) {
3300                 WARNING("Truncating `%"TS"' to its original size (%"PRIu64" bytes)",
3301                         wim->filename, old_wim_end);
3302                 /* Return value of ftruncate() is ignored because this is
3303                  * already an error path.  */
3304                 (void)ftruncate(wim->out_fd.fd, old_wim_end);
3305         }
3306 out_restore_physical_hdr:
3307         (void)write_wim_header_flags(hdr_save.flags, &wim->out_fd);
3308 out_unlock_wim:
3309         unlock_wim_for_append(wim);
3310 out_close_wim:
3311         (void)close_wim_writable(wim, write_flags);
3312 out_restore_memory_hdr:
3313         memcpy(&wim->hdr, &hdr_save, sizeof(struct wim_header));
3314         return ret;
3315 }
3316
3317 static int
3318 overwrite_wim_via_tmpfile(WIMStruct *wim, int write_flags, unsigned num_threads)
3319 {
3320         size_t wim_name_len;
3321         int ret;
3322
3323         DEBUG("Overwriting `%"TS"' via a temporary file", wim->filename);
3324
3325         /* Write the WIM to a temporary file in the same directory as the
3326          * original WIM. */
3327         wim_name_len = tstrlen(wim->filename);
3328         tchar tmpfile[wim_name_len + 10];
3329         tmemcpy(tmpfile, wim->filename, wim_name_len);
3330         randomize_char_array_with_alnum(tmpfile + wim_name_len, 9);
3331         tmpfile[wim_name_len + 9] = T('\0');
3332
3333         ret = wimlib_write(wim, tmpfile, WIMLIB_ALL_IMAGES,
3334                            write_flags |
3335                                 WIMLIB_WRITE_FLAG_FSYNC |
3336                                 WIMLIB_WRITE_FLAG_RETAIN_GUID,
3337                            num_threads);
3338         if (ret) {
3339                 tunlink(tmpfile);
3340                 return ret;
3341         }
3342
3343         if (filedes_valid(&wim->in_fd)) {
3344                 filedes_close(&wim->in_fd);
3345                 filedes_invalidate(&wim->in_fd);
3346         }
3347
3348         /* Rename the new WIM file to the original WIM file.  Note: on Windows
3349          * this actually calls win32_rename_replacement(), not _wrename(), so
3350          * that removing the existing destination file can be handled.  */
3351         DEBUG("Renaming `%"TS"' to `%"TS"'", tmpfile, wim->filename);
3352         ret = trename(tmpfile, wim->filename);
3353         if (ret) {
3354                 ERROR_WITH_ERRNO("Failed to rename `%"TS"' to `%"TS"'",
3355                                  tmpfile, wim->filename);
3356         #ifdef __WIN32__
3357                 if (ret < 0)
3358         #endif
3359                 {
3360                         tunlink(tmpfile);
3361                 }
3362                 return WIMLIB_ERR_RENAME;
3363         }
3364
3365         union wimlib_progress_info progress;
3366         progress.rename.from = tmpfile;
3367         progress.rename.to = wim->filename;
3368         return call_progress(wim->progfunc, WIMLIB_PROGRESS_MSG_RENAME,
3369                              &progress, wim->progctx);
3370 }
3371
3372 /* Determine if the specified WIM file may be updated by appending in-place
3373  * rather than writing and replacing it with an entirely new file.  */
3374 static bool
3375 can_overwrite_wim_inplace(const WIMStruct *wim, int write_flags)
3376 {
3377         /* REBUILD flag forces full rebuild.  */
3378         if (write_flags & WIMLIB_WRITE_FLAG_REBUILD)
3379                 return false;
3380
3381         /* Deletions cause full rebuild by default.  */
3382         if (wim->deletion_occurred && !(write_flags & WIMLIB_WRITE_FLAG_SOFT_DELETE))
3383                 return false;
3384
3385         /* Pipable WIMs cannot be updated in place, nor can a non-pipable WIM be
3386          * turned into a pipable WIM in-place.  */
3387         if (wim_is_pipable(wim) || (write_flags & WIMLIB_WRITE_FLAG_PIPABLE))
3388                 return false;
3389
3390         /* The default compression type and compression chunk size selected for
3391          * the output WIM must be the same as those currently used for the WIM.
3392          */
3393         if (wim->compression_type != wim->out_compression_type)
3394                 return false;
3395         if (wim->chunk_size != wim->out_chunk_size)
3396                 return false;
3397
3398         return true;
3399 }
3400
3401 /* API function documented in wimlib.h  */
3402 WIMLIBAPI int
3403 wimlib_overwrite(WIMStruct *wim, int write_flags, unsigned num_threads)
3404 {
3405         int ret;
3406         u32 orig_hdr_flags;
3407
3408         if (write_flags & ~WIMLIB_WRITE_MASK_PUBLIC)
3409                 return WIMLIB_ERR_INVALID_PARAM;
3410
3411         if (!wim->filename)
3412                 return WIMLIB_ERR_NO_FILENAME;
3413
3414         orig_hdr_flags = wim->hdr.flags;
3415         if (write_flags & WIMLIB_WRITE_FLAG_IGNORE_READONLY_FLAG)
3416                 wim->hdr.flags &= ~WIM_HDR_FLAG_READONLY;
3417         ret = can_modify_wim(wim);
3418         wim->hdr.flags = orig_hdr_flags;
3419         if (ret)
3420                 return ret;
3421
3422         if (can_overwrite_wim_inplace(wim, write_flags)) {
3423                 ret = overwrite_wim_inplace(wim, write_flags, num_threads);
3424                 if (ret != WIMLIB_ERR_RESOURCE_ORDER)
3425                         return ret;
3426                 WARNING("Falling back to re-building entire WIM");
3427         }
3428         return overwrite_wim_via_tmpfile(wim, write_flags, num_threads);
3429 }