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