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