4 * Support for writing WIM files; write a WIM file, overwrite a WIM file, write
5 * compressed file resources, etc.
9 * Copyright (C) 2012-2016 Eric Biggers
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
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
21 * You should have received a copy of the GNU Lesser General Public License
22 * along with this file; if not, see http://www.gnu.org/licenses/.
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>
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"
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
68 write_flags_to_resource_flags(int write_flags)
70 int write_resource_flags = 0;
72 if (write_flags & WIMLIB_WRITE_FLAG_RECOMPRESS)
73 write_resource_flags |= WRITE_RESOURCE_FLAG_RECOMPRESS;
75 if (write_flags & WIMLIB_WRITE_FLAG_PIPABLE)
76 write_resource_flags |= WRITE_RESOURCE_FLAG_PIPABLE;
78 if (write_flags & WIMLIB_WRITE_FLAG_SOLID)
79 write_resource_flags |= WRITE_RESOURCE_FLAG_SOLID;
81 if (write_flags & WIMLIB_WRITE_FLAG_SEND_DONE_WITH_FILE_MESSAGES)
82 write_resource_flags |= WRITE_RESOURCE_FLAG_SEND_DONE_WITH_FILE;
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;
89 return write_resource_flags;
92 struct filter_context {
98 * Determine whether the specified blob should be filtered out from the write.
102 * < 0 : The blob should be hard-filtered; that is, not included in the output
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.
109 blob_filtered(const struct blob_descriptor *blob,
110 const struct filter_context *ctx)
118 write_flags = ctx->write_flags;
121 if (write_flags & WIMLIB_WRITE_FLAG_APPEND &&
122 blob->blob_location == BLOB_IN_WIM &&
123 blob->rdesc->wim == wim)
126 if (write_flags & WIMLIB_WRITE_FLAG_SKIP_EXTERNAL_WIMS &&
127 blob->blob_location == BLOB_IN_WIM &&
128 blob->rdesc->wim != wim)
135 blob_hard_filtered(const struct blob_descriptor *blob,
136 struct filter_context *ctx)
138 return blob_filtered(blob, ctx) < 0;
142 may_soft_filter_blobs(const struct filter_context *ctx)
144 return ctx && (ctx->write_flags & WIMLIB_WRITE_FLAG_APPEND);
148 may_hard_filter_blobs(const struct filter_context *ctx)
150 return ctx && (ctx->write_flags & WIMLIB_WRITE_FLAG_SKIP_EXTERNAL_WIMS);
154 may_filter_blobs(const struct filter_context *ctx)
156 return (may_soft_filter_blobs(ctx) || may_hard_filter_blobs(ctx));
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. */
162 can_raw_copy(const struct blob_descriptor *blob, int write_resource_flags,
163 int out_ctype, u32 out_chunk_size)
165 const struct wim_resource_descriptor *rdesc;
167 /* Recompress everything if requested. */
168 if (write_resource_flags & WRITE_RESOURCE_FLAG_RECOMPRESS)
171 /* A blob not located in a WIM resource cannot be reused. */
172 if (blob->blob_location != BLOB_IN_WIM)
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)
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)))
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
191 if (rdesc->is_pipable !=
192 !!(write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE))
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))
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. */
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);
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. */
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. */
222 /* Did we already decide to reuse the resource? */
223 if (rdesc->raw_copy_ok)
226 struct blob_descriptor *res_blob;
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;
233 return (write_size > rdesc->uncompressed_size * 2 / 3);
238 reshdr_flags_for_blob(const struct blob_descriptor *blob)
240 u32 reshdr_flags = 0;
241 if (blob->is_metadata)
242 reshdr_flags |= WIM_RESHDR_FLAG_METADATA;
247 blob_set_out_reshdr_for_reuse(struct blob_descriptor *blob)
249 const struct wim_resource_descriptor *rdesc;
251 wimlib_assert(blob->blob_location == BLOB_IN_WIM);
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;
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;
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;
267 blob->out_reshdr.flags = rdesc->flags;
271 /* Write the header for a blob in a pipable WIM. */
273 write_pwm_blob_header(const struct blob_descriptor *blob,
274 struct filedes *out_fd, bool compressed)
276 struct pwm_blob_hdr blob_hdr;
280 wimlib_assert(!blob->unhashed);
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);
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));
291 ERROR_WITH_ERRNO("Error writing blob header to WIM file");
295 struct write_blobs_progress_data {
296 wimlib_progress_func_t progfunc;
298 union wimlib_progress_info progress;
303 do_write_blobs_progress(struct write_blobs_progress_data *progress_data,
304 u64 complete_size, u32 complete_count, bool discarded)
306 union wimlib_progress_info *progress = &progress_data->progress;
310 progress->write_streams.total_bytes -= complete_size;
311 progress->write_streams.total_streams -= complete_count;
312 if (progress_data->next_progress != ~(u64)0 &&
313 progress_data->next_progress > progress->write_streams.total_bytes)
315 progress_data->next_progress = progress->write_streams.total_bytes;
318 progress->write_streams.completed_bytes += complete_size;
319 progress->write_streams.completed_streams += complete_count;
322 if (progress->write_streams.completed_bytes >= progress_data->next_progress) {
324 ret = call_progress(progress_data->progfunc,
325 WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
327 progress_data->progctx);
331 set_next_progress(progress->write_streams.completed_bytes,
332 progress->write_streams.total_bytes,
333 &progress_data->next_progress);
338 struct write_blobs_ctx {
339 /* File descriptor to which the blobs are being written. */
340 struct filedes *out_fd;
342 /* Blob table for the WIMStruct on whose behalf the blobs are being
344 struct blob_table *blob_table;
346 /* Compression format to use. */
349 /* Maximum uncompressed chunk size in compressed resources to use. */
352 /* Flags that affect how the blobs will be written. */
353 int write_resource_flags;
355 /* Data used for issuing WRITE_STREAMS progress. */
356 struct write_blobs_progress_data progress_data;
358 struct filter_context *filter_ctx;
360 /* Pointer to the chunk_compressor implementation being used for
361 * compressing chunks of data, or NULL if chunks are being written
363 struct chunk_compressor *compressor;
365 /* A buffer of size @out_chunk_size that has been loaned out from the
366 * chunk compressor and is currently being filled with the uncompressed
367 * data of the next chunk. */
370 /* Number of bytes in @cur_chunk_buf that are currently filled. */
371 size_t cur_chunk_buf_filled;
373 /* List of blobs that currently have chunks being compressed. */
374 struct list_head blobs_being_compressed;
376 /* List of blobs in the solid resource. Blobs are moved here after
377 * @blobs_being_compressed only when writing a solid resource. */
378 struct list_head blobs_in_solid_resource;
380 /* Current uncompressed offset in the blob being read. */
381 u64 cur_read_blob_offset;
383 /* Uncompressed size of the blob currently being read. */
384 u64 cur_read_blob_size;
386 /* Current uncompressed offset in the blob being written. */
387 u64 cur_write_blob_offset;
389 /* Uncompressed size of resource currently being written. */
390 u64 cur_write_res_size;
392 /* Array that is filled in with compressed chunk sizes as a resource is
396 /* Index of next entry in @chunk_csizes to fill in. */
399 /* Number of entries in @chunk_csizes currently allocated. */
400 size_t num_alloc_chunks;
402 /* Offset in the output file of the start of the chunks of the resource
403 * currently being written. */
404 u64 chunks_start_offset;
407 /* Reserve space for the chunk table and prepare to accumulate the chunk table
410 begin_chunk_table(struct write_blobs_ctx *ctx, u64 res_expected_size)
412 u64 expected_num_chunks;
413 u64 expected_num_chunk_entries;
417 /* Calculate the number of chunks and chunk entries that should be
418 * needed for the resource. These normally will be the final values,
419 * but in SOLID mode some of the blobs we're planning to write into the
420 * resource may be duplicates, and therefore discarded, potentially
421 * decreasing the number of chunk entries needed. */
422 expected_num_chunks = DIV_ROUND_UP(res_expected_size, ctx->out_chunk_size);
423 expected_num_chunk_entries = expected_num_chunks;
424 if (!(ctx->write_resource_flags & WRITE_RESOURCE_FLAG_SOLID))
425 expected_num_chunk_entries--;
427 /* Make sure the chunk_csizes array is long enough to store the
428 * compressed size of each chunk. */
429 if (expected_num_chunks > ctx->num_alloc_chunks) {
430 u64 new_length = expected_num_chunks + 50;
432 if ((size_t)new_length != new_length) {
433 ERROR("Resource size too large (%"PRIu64" bytes!",
435 return WIMLIB_ERR_NOMEM;
438 FREE(ctx->chunk_csizes);
439 ctx->chunk_csizes = MALLOC(new_length * sizeof(ctx->chunk_csizes[0]));
440 if (ctx->chunk_csizes == NULL) {
441 ctx->num_alloc_chunks = 0;
442 return WIMLIB_ERR_NOMEM;
444 ctx->num_alloc_chunks = new_length;
447 ctx->chunk_index = 0;
449 if (!(ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE)) {
450 /* Reserve space for the chunk table in the output file. In the
451 * case of solid resources this reserves the upper bound for the
452 * needed space, not necessarily the exact space which will
453 * prove to be needed. At this point, we just use @chunk_csizes
454 * for a buffer of 0's because the actual compressed chunk sizes
456 reserve_size = expected_num_chunk_entries *
457 get_chunk_entry_size(res_expected_size,
458 0 != (ctx->write_resource_flags &
459 WRITE_RESOURCE_FLAG_SOLID));
460 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_SOLID)
461 reserve_size += sizeof(struct alt_chunk_table_header_disk);
462 memset(ctx->chunk_csizes, 0, reserve_size);
463 ret = full_write(ctx->out_fd, ctx->chunk_csizes, reserve_size);
465 ERROR_WITH_ERRNO("Error reserving space for chunk "
466 "table in WIM file");
474 begin_write_resource(struct write_blobs_ctx *ctx, u64 res_expected_size)
478 wimlib_assert(res_expected_size != 0);
480 if (ctx->compressor != NULL) {
481 ret = begin_chunk_table(ctx, res_expected_size);
486 /* Output file descriptor is now positioned at the offset at which to
487 * write the first chunk of the resource. */
488 ctx->chunks_start_offset = ctx->out_fd->offset;
489 ctx->cur_write_blob_offset = 0;
490 ctx->cur_write_res_size = res_expected_size;
495 end_chunk_table(struct write_blobs_ctx *ctx, u64 res_actual_size,
496 u64 *res_start_offset_ret, u64 *res_store_size_ret)
498 size_t actual_num_chunks;
499 size_t actual_num_chunk_entries;
500 size_t chunk_entry_size;
503 actual_num_chunks = ctx->chunk_index;
504 actual_num_chunk_entries = actual_num_chunks;
505 if (!(ctx->write_resource_flags & WRITE_RESOURCE_FLAG_SOLID))
506 actual_num_chunk_entries--;
508 chunk_entry_size = get_chunk_entry_size(res_actual_size,
509 0 != (ctx->write_resource_flags &
510 WRITE_RESOURCE_FLAG_SOLID));
512 typedef le64 _may_alias_attribute aliased_le64_t;
513 typedef le32 _may_alias_attribute aliased_le32_t;
515 if (chunk_entry_size == 4) {
516 aliased_le32_t *entries = (aliased_le32_t*)ctx->chunk_csizes;
518 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_SOLID) {
519 for (size_t i = 0; i < actual_num_chunk_entries; i++)
520 entries[i] = cpu_to_le32(ctx->chunk_csizes[i]);
522 u32 offset = ctx->chunk_csizes[0];
523 for (size_t i = 0; i < actual_num_chunk_entries; i++) {
524 u32 next_size = ctx->chunk_csizes[i + 1];
525 entries[i] = cpu_to_le32(offset);
530 aliased_le64_t *entries = (aliased_le64_t*)ctx->chunk_csizes;
532 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_SOLID) {
533 for (size_t i = 0; i < actual_num_chunk_entries; i++)
534 entries[i] = cpu_to_le64(ctx->chunk_csizes[i]);
536 u64 offset = ctx->chunk_csizes[0];
537 for (size_t i = 0; i < actual_num_chunk_entries; i++) {
538 u64 next_size = ctx->chunk_csizes[i + 1];
539 entries[i] = cpu_to_le64(offset);
545 size_t chunk_table_size = actual_num_chunk_entries * chunk_entry_size;
546 u64 res_start_offset;
549 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE) {
550 ret = full_write(ctx->out_fd, ctx->chunk_csizes, chunk_table_size);
553 res_end_offset = ctx->out_fd->offset;
554 res_start_offset = ctx->chunks_start_offset;
556 res_end_offset = ctx->out_fd->offset;
558 u64 chunk_table_offset;
560 chunk_table_offset = ctx->chunks_start_offset - chunk_table_size;
562 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_SOLID) {
563 struct alt_chunk_table_header_disk hdr;
565 hdr.res_usize = cpu_to_le64(res_actual_size);
566 hdr.chunk_size = cpu_to_le32(ctx->out_chunk_size);
567 hdr.compression_format = cpu_to_le32(ctx->out_ctype);
569 STATIC_ASSERT(WIMLIB_COMPRESSION_TYPE_XPRESS == 1);
570 STATIC_ASSERT(WIMLIB_COMPRESSION_TYPE_LZX == 2);
571 STATIC_ASSERT(WIMLIB_COMPRESSION_TYPE_LZMS == 3);
573 ret = full_pwrite(ctx->out_fd, &hdr, sizeof(hdr),
574 chunk_table_offset - sizeof(hdr));
577 res_start_offset = chunk_table_offset - sizeof(hdr);
579 res_start_offset = chunk_table_offset;
582 ret = full_pwrite(ctx->out_fd, ctx->chunk_csizes,
583 chunk_table_size, chunk_table_offset);
588 *res_start_offset_ret = res_start_offset;
589 *res_store_size_ret = res_end_offset - res_start_offset;
594 ERROR_WITH_ERRNO("Error writing chunk table to WIM file");
598 /* Finish writing a WIM resource by writing or updating the chunk table (if not
599 * writing the data uncompressed) and loading its metadata into @out_reshdr. */
601 end_write_resource(struct write_blobs_ctx *ctx, struct wim_reshdr *out_reshdr)
605 u64 res_uncompressed_size;
606 u64 res_offset_in_wim;
608 wimlib_assert(ctx->cur_write_blob_offset == ctx->cur_write_res_size ||
609 (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_SOLID));
610 res_uncompressed_size = ctx->cur_write_res_size;
612 if (ctx->compressor) {
613 ret = end_chunk_table(ctx, res_uncompressed_size,
614 &res_offset_in_wim, &res_size_in_wim);
618 res_offset_in_wim = ctx->chunks_start_offset;
619 res_size_in_wim = ctx->out_fd->offset - res_offset_in_wim;
621 out_reshdr->uncompressed_size = res_uncompressed_size;
622 out_reshdr->size_in_wim = res_size_in_wim;
623 out_reshdr->offset_in_wim = res_offset_in_wim;
627 /* Call when no more data from the file at @path is needed. */
629 done_with_file(const tchar *path, wimlib_progress_func_t progfunc, void *progctx)
631 union wimlib_progress_info info;
633 info.done_with_file.path_to_file = path;
635 return call_progress(progfunc, WIMLIB_PROGRESS_MSG_DONE_WITH_FILE,
640 do_done_with_blob(struct blob_descriptor *blob,
641 wimlib_progress_func_t progfunc, void *progctx)
644 struct wim_inode *inode;
649 if (!blob->may_send_done_with_file)
652 inode = blob->file_inode;
654 wimlib_assert(inode != NULL);
655 wimlib_assert(inode->i_num_remaining_streams > 0);
656 if (--inode->i_num_remaining_streams > 0)
659 path = blob_file_path(blob);
661 cookie1 = progress_get_streamless_path(path);
662 cookie2 = progress_get_win32_path(path);
664 ret = done_with_file(path, progfunc, progctx);
666 progress_put_win32_path(cookie2);
667 progress_put_streamless_path(cookie1);
672 /* Handle WIMLIB_WRITE_FLAG_SEND_DONE_WITH_FILE_MESSAGES mode. */
674 done_with_blob(struct blob_descriptor *blob, struct write_blobs_ctx *ctx)
676 if (likely(!(ctx->write_resource_flags &
677 WRITE_RESOURCE_FLAG_SEND_DONE_WITH_FILE)))
679 return do_done_with_blob(blob, ctx->progress_data.progfunc,
680 ctx->progress_data.progctx);
683 /* Begin processing a blob for writing. */
685 write_blob_begin_read(struct blob_descriptor *blob, void *_ctx)
687 struct write_blobs_ctx *ctx = _ctx;
690 wimlib_assert(blob->size > 0);
692 ctx->cur_read_blob_offset = 0;
693 ctx->cur_read_blob_size = blob->size;
695 /* As an optimization, we allow some blobs to be "unhashed", meaning
696 * their SHA-1 message digests are unknown. This is the case with blobs
697 * that are added by scanning a directory tree with wimlib_add_image(),
698 * for example. Since WIM uses single-instance blobs, we don't know
699 * whether such each such blob really need to written until it is
700 * actually checksummed, unless it has a unique size. In such cases we
701 * read and checksum the blob in this function, thereby advancing ahead
702 * of read_blob_list(), which will still provide the data again to
703 * write_blob_process_chunk(). This is okay because an unhashed blob
704 * cannot be in a WIM resource, which might be costly to decompress. */
705 if (ctx->blob_table != NULL && blob->unhashed && !blob->unique_size) {
707 struct blob_descriptor *new_blob;
709 ret = hash_unhashed_blob(blob, ctx->blob_table, &new_blob);
712 if (new_blob != blob) {
713 /* Duplicate blob detected. */
715 if (new_blob->will_be_in_output_wim ||
716 blob_filtered(new_blob, ctx->filter_ctx))
718 /* The duplicate blob is already being included
719 * in the output WIM, or it would be filtered
720 * out if it had been. Skip writing this blob
721 * (and reading it again) entirely, passing its
722 * output reference count to the duplicate blob
723 * in the former case. */
724 ret = do_write_blobs_progress(&ctx->progress_data,
725 blob->size, 1, true);
726 list_del(&blob->write_blobs_list);
727 list_del(&blob->blob_table_list);
728 if (new_blob->will_be_in_output_wim)
729 new_blob->out_refcnt += blob->out_refcnt;
730 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_SOLID)
731 ctx->cur_write_res_size -= blob->size;
733 ret = done_with_blob(blob, ctx);
734 free_blob_descriptor(blob);
737 return BEGIN_BLOB_STATUS_SKIP_BLOB;
739 /* The duplicate blob can validly be written,
740 * but was not marked as such. Discard the
741 * current blob descriptor and use the
742 * duplicate, but actually freeing the current
743 * blob descriptor must wait until
744 * read_blob_list() has finished reading its
746 list_replace(&blob->write_blobs_list,
747 &new_blob->write_blobs_list);
748 list_replace(&blob->blob_table_list,
749 &new_blob->blob_table_list);
750 blob->will_be_in_output_wim = 0;
751 new_blob->out_refcnt = blob->out_refcnt;
752 new_blob->will_be_in_output_wim = 1;
753 new_blob->may_send_done_with_file = 0;
758 list_move_tail(&blob->write_blobs_list, &ctx->blobs_being_compressed);
762 /* Rewrite a blob that was just written compressed (as a non-solid WIM resource)
763 * as uncompressed instead. */
765 write_blob_uncompressed(struct blob_descriptor *blob, struct filedes *out_fd)
768 u64 begin_offset = blob->out_reshdr.offset_in_wim;
769 u64 end_offset = out_fd->offset;
771 if (filedes_seek(out_fd, begin_offset) == -1)
774 ret = extract_blob_to_fd(blob, out_fd);
776 /* Error reading the uncompressed data. */
777 if (out_fd->offset == begin_offset &&
778 filedes_seek(out_fd, end_offset) != -1)
780 /* Nothing was actually written yet, and we successfully
781 * seeked to the end of the compressed resource, so
782 * don't issue a hard error; just keep the compressed
783 * resource instead. */
784 WARNING("Recovered compressed resource of "
785 "size %"PRIu64", continuing on.", blob->size);
791 wimlib_assert(out_fd->offset - begin_offset == blob->size);
793 /* We could ftruncate() the file to 'out_fd->offset' here, but there
794 * isn't much point. Usually we will only be truncating by a few bytes
795 * and will just overwrite the data immediately. */
797 blob->out_reshdr.size_in_wim = blob->size;
798 blob->out_reshdr.flags &= ~(WIM_RESHDR_FLAG_COMPRESSED |
799 WIM_RESHDR_FLAG_SOLID);
803 /* Returns true if the specified blob, which was written as a non-solid
804 * resource, should be truncated from the WIM file and re-written uncompressed.
805 * blob->out_reshdr must be filled in from the initial write of the blob. */
807 should_rewrite_blob_uncompressed(const struct write_blobs_ctx *ctx,
808 const struct blob_descriptor *blob)
810 /* If the compressed data is smaller than the uncompressed data, prefer
811 * the compressed data. */
812 if (blob->out_reshdr.size_in_wim < blob->out_reshdr.uncompressed_size)
815 /* If we're not actually writing compressed data, then there's no need
817 if (!ctx->compressor)
820 /* If writing a pipable WIM, everything we write to the output is final
821 * (it might actually be a pipe!). */
822 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE)
825 /* If the blob that would need to be re-read is located in a solid
826 * resource in another WIM file, then re-reading it would be costly. So
829 * Exception: if the compressed size happens to be *exactly* the same as
830 * the uncompressed size, then the blob *must* be written uncompressed
831 * in order to remain compatible with the Windows Overlay Filesystem
832 * filter driver (WOF).
834 * TODO: we are currently assuming that the optimization for
835 * single-chunk resources in maybe_rewrite_blob_uncompressed() prevents
836 * this case from being triggered too often. To fully prevent excessive
837 * decompressions in degenerate cases, we really should obtain the
838 * uncompressed data by decompressing the compressed data we wrote to
841 if (blob->blob_location == BLOB_IN_WIM &&
842 blob->size != blob->rdesc->uncompressed_size &&
843 blob->size != blob->out_reshdr.size_in_wim)
850 maybe_rewrite_blob_uncompressed(struct write_blobs_ctx *ctx,
851 struct blob_descriptor *blob)
853 if (!should_rewrite_blob_uncompressed(ctx, blob))
856 /* Regular (non-solid) WIM resources with exactly one chunk and
857 * compressed size equal to uncompressed size are exactly the same as
858 * the corresponding compressed data --- since there must be 0 entries
859 * in the chunk table and the only chunk must be stored uncompressed.
860 * In this case, there's no need to rewrite anything. */
861 if (ctx->chunk_index == 1 &&
862 blob->out_reshdr.size_in_wim == blob->out_reshdr.uncompressed_size)
864 blob->out_reshdr.flags &= ~WIM_RESHDR_FLAG_COMPRESSED;
868 return write_blob_uncompressed(blob, ctx->out_fd);
871 /* Write the next chunk of (typically compressed) data to the output WIM,
872 * handling the writing of the chunk table. */
874 write_chunk(struct write_blobs_ctx *ctx, const void *cchunk,
875 size_t csize, size_t usize)
878 struct blob_descriptor *blob;
879 u32 completed_blob_count;
882 blob = list_entry(ctx->blobs_being_compressed.next,
883 struct blob_descriptor, write_blobs_list);
885 if (ctx->cur_write_blob_offset == 0 &&
886 !(ctx->write_resource_flags & WRITE_RESOURCE_FLAG_SOLID))
888 /* Starting to write a new blob in non-solid mode. */
890 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE) {
891 ret = write_pwm_blob_header(blob, ctx->out_fd,
892 ctx->compressor != NULL);
897 ret = begin_write_resource(ctx, blob->size);
902 if (ctx->compressor != NULL) {
903 /* Record the compresed chunk size. */
904 wimlib_assert(ctx->chunk_index < ctx->num_alloc_chunks);
905 ctx->chunk_csizes[ctx->chunk_index++] = csize;
907 /* If writing a pipable WIM, before the chunk data write a chunk
908 * header that provides the compressed chunk size. */
909 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_PIPABLE) {
910 struct pwm_chunk_hdr chunk_hdr = {
911 .compressed_size = cpu_to_le32(csize),
913 ret = full_write(ctx->out_fd, &chunk_hdr,
920 /* Write the chunk data. */
921 ret = full_write(ctx->out_fd, cchunk, csize);
925 ctx->cur_write_blob_offset += usize;
927 completed_size = usize;
928 completed_blob_count = 0;
929 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_SOLID) {
930 /* Wrote chunk in solid mode. It may have finished multiple
932 struct blob_descriptor *next_blob;
934 while (blob && ctx->cur_write_blob_offset >= blob->size) {
936 ctx->cur_write_blob_offset -= blob->size;
938 if (ctx->cur_write_blob_offset)
939 next_blob = list_entry(blob->write_blobs_list.next,
940 struct blob_descriptor,
945 ret = done_with_blob(blob, ctx);
948 list_move_tail(&blob->write_blobs_list, &ctx->blobs_in_solid_resource);
949 completed_blob_count++;
954 /* Wrote chunk in non-solid mode. It may have finished a
956 if (ctx->cur_write_blob_offset == blob->size) {
958 wimlib_assert(ctx->cur_write_blob_offset ==
959 ctx->cur_write_res_size);
961 ret = end_write_resource(ctx, &blob->out_reshdr);
965 blob->out_reshdr.flags = reshdr_flags_for_blob(blob);
966 if (ctx->compressor != NULL)
967 blob->out_reshdr.flags |= WIM_RESHDR_FLAG_COMPRESSED;
969 ret = maybe_rewrite_blob_uncompressed(ctx, blob);
973 wimlib_assert(blob->out_reshdr.uncompressed_size == blob->size);
975 ctx->cur_write_blob_offset = 0;
977 ret = done_with_blob(blob, ctx);
980 list_del(&blob->write_blobs_list);
981 completed_blob_count++;
985 return do_write_blobs_progress(&ctx->progress_data, completed_size,
986 completed_blob_count, false);
989 ERROR_WITH_ERRNO("Error writing chunk data to WIM file");
994 prepare_chunk_buffer(struct write_blobs_ctx *ctx)
996 /* While we are unable to get a new chunk buffer due to too many chunks
997 * already outstanding, retrieve and write the next compressed chunk. */
998 while (!(ctx->cur_chunk_buf =
999 ctx->compressor->get_chunk_buffer(ctx->compressor)))
1007 bret = ctx->compressor->get_compression_result(ctx->compressor,
1011 wimlib_assert(bret);
1013 ret = write_chunk(ctx, cchunk, csize, usize);
1020 /* Process the next chunk of data to be written to a WIM resource. */
1022 write_blob_process_chunk(const void *chunk, size_t size, void *_ctx)
1024 struct write_blobs_ctx *ctx = _ctx;
1026 const u8 *chunkptr, *chunkend;
1028 wimlib_assert(size != 0);
1030 if (ctx->compressor == NULL) {
1031 /* Write chunk uncompressed. */
1032 ret = write_chunk(ctx, chunk, size, size);
1035 ctx->cur_read_blob_offset += size;
1039 /* Submit the chunk for compression, but take into account that the
1040 * @size the chunk was provided in may not correspond to the
1041 * @out_chunk_size being used for compression. */
1043 chunkend = chunkptr + size;
1045 size_t needed_chunk_size;
1046 size_t bytes_consumed;
1048 if (!ctx->cur_chunk_buf) {
1049 ret = prepare_chunk_buffer(ctx);
1054 if (ctx->write_resource_flags & WRITE_RESOURCE_FLAG_SOLID) {
1055 needed_chunk_size = ctx->out_chunk_size;
1057 needed_chunk_size = min(ctx->out_chunk_size,
1058 ctx->cur_chunk_buf_filled +
1059 (ctx->cur_read_blob_size -
1060 ctx->cur_read_blob_offset));
1063 bytes_consumed = min(chunkend - chunkptr,
1064 needed_chunk_size - ctx->cur_chunk_buf_filled);
1066 memcpy(&ctx->cur_chunk_buf[ctx->cur_chunk_buf_filled],
1067 chunkptr, bytes_consumed);
1069 chunkptr += bytes_consumed;
1070 ctx->cur_read_blob_offset += bytes_consumed;
1071 ctx->cur_chunk_buf_filled += bytes_consumed;
1073 if (ctx->cur_chunk_buf_filled == needed_chunk_size) {
1074 ctx->compressor->signal_chunk_filled(ctx->compressor,
1075 ctx->cur_chunk_buf_filled);
1076 ctx->cur_chunk_buf = NULL;
1077 ctx->cur_chunk_buf_filled = 0;
1079 } while (chunkptr != chunkend);
1083 /* Finish processing a blob for writing. It may not have been completely
1084 * written yet, as the chunk_compressor implementation may still have chunks
1085 * buffered or being compressed. */
1087 write_blob_end_read(struct blob_descriptor *blob, int status, void *_ctx)
1089 struct write_blobs_ctx *ctx = _ctx;
1091 wimlib_assert(ctx->cur_read_blob_offset == ctx->cur_read_blob_size || status);
1093 if (!blob->will_be_in_output_wim) {
1094 /* The blob was a duplicate. Now that its data has finished
1095 * being read, it is being discarded in favor of the duplicate
1096 * entry. It therefore is no longer needed, and we can fire the
1097 * DONE_WITH_FILE callback because the file will not be read
1100 * Note: we can't yet fire DONE_WITH_FILE for non-duplicate
1101 * blobs, since it needs to be possible to re-read the file if
1102 * it does not compress to less than its original size. */
1104 status = done_with_blob(blob, ctx);
1105 free_blob_descriptor(blob);
1106 } else if (!status && blob->unhashed && ctx->blob_table != NULL) {
1107 /* The blob was not a duplicate and was previously unhashed.
1108 * Since we passed COMPUTE_MISSING_BLOB_HASHES to
1109 * read_blob_list(), blob->hash is now computed and valid. So
1110 * turn this blob into a "hashed" blob. */
1111 list_del(&blob->unhashed_list);
1112 blob_table_insert(ctx->blob_table, blob);
1119 * Compute statistics about a list of blobs that will be written.
1121 * Assumes the blobs are sorted such that all blobs located in each distinct WIM
1122 * (specified by WIMStruct) are together.
1124 * For compactions, also verify that there are no overlapping resources. This
1125 * really should be checked earlier, but for now it's easiest to check here.
1128 compute_blob_list_stats(struct list_head *blob_list,
1129 struct write_blobs_ctx *ctx)
1131 struct blob_descriptor *blob;
1132 u64 total_bytes = 0;
1134 u64 total_parts = 0;
1135 WIMStruct *prev_wim_part = NULL;
1136 const struct wim_resource_descriptor *prev_rdesc = NULL;
1138 list_for_each_entry(blob, blob_list, write_blobs_list) {
1140 total_bytes += blob->size;
1141 if (blob->blob_location == BLOB_IN_WIM) {
1142 const struct wim_resource_descriptor *rdesc = blob->rdesc;
1143 WIMStruct *wim = rdesc->wim;
1145 if (prev_wim_part != wim) {
1146 prev_wim_part = wim;
1149 if (unlikely(wim->being_compacted) && rdesc != prev_rdesc) {
1150 if (prev_rdesc != NULL &&
1151 rdesc->offset_in_wim <
1152 prev_rdesc->offset_in_wim +
1153 prev_rdesc->size_in_wim)
1155 WARNING("WIM file contains overlapping "
1156 "resources! Compaction is not "
1158 return WIMLIB_ERR_RESOURCE_ORDER;
1164 ctx->progress_data.progress.write_streams.total_bytes = total_bytes;
1165 ctx->progress_data.progress.write_streams.total_streams = num_blobs;
1166 ctx->progress_data.progress.write_streams.completed_bytes = 0;
1167 ctx->progress_data.progress.write_streams.completed_streams = 0;
1168 ctx->progress_data.progress.write_streams.compression_type = ctx->out_ctype;
1169 ctx->progress_data.progress.write_streams.total_parts = total_parts;
1170 ctx->progress_data.progress.write_streams.completed_parts = 0;
1171 ctx->progress_data.next_progress = 0;
1175 /* Find blobs in @blob_list that can be copied to the output WIM in raw form
1176 * rather than compressed. Delete these blobs from @blob_list and move them to
1177 * @raw_copy_blobs. Return the total uncompressed size of the blobs that need
1178 * to be compressed. */
1180 find_raw_copy_blobs(struct list_head *blob_list, int write_resource_flags,
1181 int out_ctype, u32 out_chunk_size,
1182 struct list_head *raw_copy_blobs)
1184 struct blob_descriptor *blob, *tmp;
1185 u64 num_nonraw_bytes = 0;
1187 INIT_LIST_HEAD(raw_copy_blobs);
1189 /* Initialize temporary raw_copy_ok flag. */
1190 list_for_each_entry(blob, blob_list, write_blobs_list)
1191 if (blob->blob_location == BLOB_IN_WIM)
1192 blob->rdesc->raw_copy_ok = 0;
1194 list_for_each_entry_safe(blob, tmp, blob_list, write_blobs_list) {
1195 if (can_raw_copy(blob, write_resource_flags,
1196 out_ctype, out_chunk_size))
1198 blob->rdesc->raw_copy_ok = 1;
1199 list_move_tail(&blob->write_blobs_list, raw_copy_blobs);
1201 num_nonraw_bytes += blob->size;
1205 return num_nonraw_bytes;
1208 /* Copy a raw compressed resource located in another WIM file to the WIM file
1211 write_raw_copy_resource(struct wim_resource_descriptor *in_rdesc,
1212 struct filedes *out_fd)
1214 u64 cur_read_offset;
1215 u64 end_read_offset;
1216 u8 buf[BUFFER_SIZE];
1217 size_t bytes_to_read;
1219 struct filedes *in_fd;
1220 struct blob_descriptor *blob;
1221 u64 out_offset_in_wim;
1223 /* Copy the raw data. */
1224 cur_read_offset = in_rdesc->offset_in_wim;
1225 end_read_offset = cur_read_offset + in_rdesc->size_in_wim;
1227 out_offset_in_wim = out_fd->offset;
1229 if (in_rdesc->is_pipable) {
1230 if (cur_read_offset < sizeof(struct pwm_blob_hdr))
1231 return WIMLIB_ERR_INVALID_PIPABLE_WIM;
1232 cur_read_offset -= sizeof(struct pwm_blob_hdr);
1233 out_offset_in_wim += sizeof(struct pwm_blob_hdr);
1235 in_fd = &in_rdesc->wim->in_fd;
1236 wimlib_assert(cur_read_offset != end_read_offset);
1238 if (likely(!in_rdesc->wim->being_compacted) ||
1239 in_rdesc->offset_in_wim > out_fd->offset) {
1241 bytes_to_read = min(sizeof(buf),
1242 end_read_offset - cur_read_offset);
1244 ret = full_pread(in_fd, buf, bytes_to_read,
1247 ERROR_WITH_ERRNO("Error reading raw data "
1252 ret = full_write(out_fd, buf, bytes_to_read);
1254 ERROR_WITH_ERRNO("Error writing raw data "
1259 cur_read_offset += bytes_to_read;
1261 } while (cur_read_offset != end_read_offset);
1263 /* Optimization: the WIM file is being compacted and the
1264 * resource being written is already in the desired location.
1265 * Skip over the data instead of re-writing it. */
1267 /* Due the earlier check for overlapping resources, it should
1268 * never be the case that we already overwrote the resource. */
1269 wimlib_assert(!(in_rdesc->offset_in_wim < out_fd->offset));
1271 if (-1 == filedes_seek(out_fd, out_fd->offset + in_rdesc->size_in_wim))
1272 return WIMLIB_ERR_WRITE;
1275 list_for_each_entry(blob, &in_rdesc->blob_list, rdesc_node) {
1276 if (blob->will_be_in_output_wim) {
1277 blob_set_out_reshdr_for_reuse(blob);
1278 if (in_rdesc->flags & WIM_RESHDR_FLAG_SOLID)
1279 blob->out_res_offset_in_wim = out_offset_in_wim;
1281 blob->out_reshdr.offset_in_wim = out_offset_in_wim;
1288 /* Copy a list of raw compressed resources located in other WIM file(s) to the
1289 * WIM file being written. */
1291 write_raw_copy_resources(struct list_head *raw_copy_blobs,
1292 struct filedes *out_fd,
1293 struct write_blobs_progress_data *progress_data)
1295 struct blob_descriptor *blob;
1298 list_for_each_entry(blob, raw_copy_blobs, write_blobs_list)
1299 blob->rdesc->raw_copy_ok = 1;
1301 list_for_each_entry(blob, raw_copy_blobs, write_blobs_list) {
1302 if (blob->rdesc->raw_copy_ok) {
1303 /* Write each solid resource only one time. */
1304 ret = write_raw_copy_resource(blob->rdesc, out_fd);
1307 blob->rdesc->raw_copy_ok = 0;
1309 ret = do_write_blobs_progress(progress_data, blob->size,
1317 /* Wait for and write all chunks pending in the compressor. */
1319 finish_remaining_chunks(struct write_blobs_ctx *ctx)
1326 if (ctx->compressor == NULL)
1329 if (ctx->cur_chunk_buf_filled != 0) {
1330 ctx->compressor->signal_chunk_filled(ctx->compressor,
1331 ctx->cur_chunk_buf_filled);
1334 while (ctx->compressor->get_compression_result(ctx->compressor, &cdata,
1337 ret = write_chunk(ctx, cdata, csize, usize);
1345 validate_blob_list(struct list_head *blob_list)
1347 struct blob_descriptor *blob;
1349 list_for_each_entry(blob, blob_list, write_blobs_list) {
1350 wimlib_assert(blob->will_be_in_output_wim);
1351 wimlib_assert(blob->size != 0);
1356 init_done_with_file_info(struct list_head *blob_list)
1358 struct blob_descriptor *blob;
1360 list_for_each_entry(blob, blob_list, write_blobs_list) {
1361 if (blob_is_in_file(blob)) {
1362 blob->file_inode->i_num_remaining_streams = 0;
1363 blob->may_send_done_with_file = 1;
1365 blob->may_send_done_with_file = 0;
1369 list_for_each_entry(blob, blob_list, write_blobs_list)
1370 if (blob->may_send_done_with_file)
1371 blob->file_inode->i_num_remaining_streams++;
1375 * Write a list of blobs to the output WIM file.
1378 * The list of blobs to write, specified by a list of 'struct blob_descriptor' linked
1379 * by the 'write_blobs_list' member.
1382 * The file descriptor, opened for writing, to which to write the blobs.
1384 * @write_resource_flags
1385 * Flags to modify how the blobs are written:
1387 * WRITE_RESOURCE_FLAG_RECOMPRESS:
1388 * Force compression of all resources, even if they could otherwise
1389 * be re-used by copying the raw data, due to being located in a WIM
1390 * file with compatible compression parameters.
1392 * WRITE_RESOURCE_FLAG_PIPABLE:
1393 * Write the resources in the wimlib-specific pipable format, and
1394 * furthermore do so in such a way that no seeking backwards in
1395 * @out_fd will be performed (so it may be a pipe).
1397 * WRITE_RESOURCE_FLAG_SOLID:
1398 * Combine all the blobs into a single resource rather than writing
1399 * them in separate resources. This flag is only valid if the WIM
1400 * version number has been, or will be, set to WIM_VERSION_SOLID.
1401 * This flag may not be combined with WRITE_RESOURCE_FLAG_PIPABLE.
1404 * Compression format to use in the output resources, specified as one of
1405 * the WIMLIB_COMPRESSION_TYPE_* constants. WIMLIB_COMPRESSION_TYPE_NONE
1409 * Compression chunk size to use in the output resources. It must be a
1410 * valid chunk size for the specified compression format @out_ctype, unless
1411 * @out_ctype is WIMLIB_COMPRESSION_TYPE_NONE, in which case this parameter
1415 * Number of threads to use to compress data. If 0, a default number of
1416 * threads will be chosen. The number of threads still may be decreased
1417 * from the specified value if insufficient memory is detected.
1420 * If on-the-fly deduplication of unhashed blobs is desired, this parameter
1421 * must be pointer to the blob table for the WIMStruct on whose behalf the
1422 * blobs are being written. Otherwise, this parameter can be NULL.
1425 * If on-the-fly deduplication of unhashed blobs is desired, this parameter
1426 * can be a pointer to a context for blob filtering used to detect whether
1427 * the duplicate blob has been hard-filtered or not. If no blobs are
1428 * hard-filtered or no blobs are unhashed, this parameter can be NULL.
1430 * This function will write the blobs in @blob_list to resources in
1431 * consecutive positions in the output WIM file, or to a single solid resource
1432 * if WRITE_RESOURCE_FLAG_SOLID was specified in @write_resource_flags. In both
1433 * cases, the @out_reshdr of the `struct blob_descriptor' for each blob written will be
1434 * updated to specify its location, size, and flags in the output WIM. In the
1435 * solid resource case, WIM_RESHDR_FLAG_SOLID will be set in the @flags field of
1436 * each @out_reshdr, and furthermore @out_res_offset_in_wim and
1437 * @out_res_size_in_wim of each @out_reshdr will be set to the offset and size,
1438 * respectively, in the output WIM of the solid resource containing the
1439 * corresponding blob.
1441 * Each of the blobs to write may be in any location supported by the
1442 * resource-handling code (specifically, read_blob_list()), such as the contents
1443 * of external file that has been logically added to the output WIM, or a blob
1444 * in another WIM file that has been imported, or even a blob in the "same" WIM
1445 * file of which a modified copy is being written. In the case that a blob is
1446 * already in a WIM file and uses compatible compression parameters, by default
1447 * this function will re-use the raw data instead of decompressing it, then
1448 * recompressing it; however, with WRITE_RESOURCE_FLAG_RECOMPRESS
1449 * specified in @write_resource_flags, this is not done.
1451 * As a further requirement, this function requires that the
1452 * @will_be_in_output_wim member be set to 1 on all blobs in @blob_list as well
1453 * as any other blobs not in @blob_list that will be in the output WIM file, but
1454 * set to 0 on any other blobs in the output WIM's blob table or sharing a solid
1455 * resource with a blob in @blob_list. Still furthermore, if on-the-fly
1456 * deduplication of blobs is possible, then all blobs in @blob_list must also be
1457 * linked by @blob_table_list along with any other blobs that have
1458 * @will_be_in_output_wim set.
1460 * This function handles on-the-fly deduplication of blobs for which SHA-1
1461 * message digests have not yet been calculated. Such blobs may or may not need
1462 * to be written. If @blob_table is non-NULL, then each blob in @blob_list that
1463 * has @unhashed set but not @unique_size set is checksummed immediately before
1464 * it would otherwise be read for writing in order to determine if it is
1465 * identical to another blob already being written or one that would be filtered
1466 * out of the output WIM using blob_filtered() with the context @filter_ctx.
1467 * Each such duplicate blob will be removed from @blob_list, its reference count
1468 * transferred to the pre-existing duplicate blob, its memory freed, and will
1469 * not be written. Alternatively, if a blob in @blob_list is a duplicate with
1470 * any blob in @blob_table that has not been marked for writing or would not be
1471 * hard-filtered, it is freed and the pre-existing duplicate is written instead,
1472 * taking ownership of the reference count and slot in the @blob_table_list.
1474 * Returns 0 if every blob was either written successfully or did not need to be
1475 * written; otherwise returns a non-zero error code.
1478 write_blob_list(struct list_head *blob_list,
1479 struct filedes *out_fd,
1480 int write_resource_flags,
1483 unsigned num_threads,
1484 struct blob_table *blob_table,
1485 struct filter_context *filter_ctx,
1486 wimlib_progress_func_t progfunc,
1490 struct write_blobs_ctx ctx;
1491 struct list_head raw_copy_blobs;
1492 u64 num_nonraw_bytes;
1494 wimlib_assert((write_resource_flags &
1495 (WRITE_RESOURCE_FLAG_SOLID |
1496 WRITE_RESOURCE_FLAG_PIPABLE)) !=
1497 (WRITE_RESOURCE_FLAG_SOLID |
1498 WRITE_RESOURCE_FLAG_PIPABLE));
1500 validate_blob_list(blob_list);
1502 if (list_empty(blob_list))
1505 /* If needed, set auxiliary information so that we can detect when the
1506 * library has finished using each external file. */
1507 if (unlikely(write_resource_flags & WRITE_RESOURCE_FLAG_SEND_DONE_WITH_FILE))
1508 init_done_with_file_info(blob_list);
1510 memset(&ctx, 0, sizeof(ctx));
1512 ctx.out_fd = out_fd;
1513 ctx.blob_table = blob_table;
1514 ctx.out_ctype = out_ctype;
1515 ctx.out_chunk_size = out_chunk_size;
1516 ctx.write_resource_flags = write_resource_flags;
1517 ctx.filter_ctx = filter_ctx;
1520 * We normally sort the blobs to write by a "sequential" order that is
1521 * optimized for reading. But when using solid compression, we instead
1522 * sort the blobs by file extension and file name (when applicable; and
1523 * we don't do this for blobs from solid resources) so that similar
1524 * files are grouped together, which improves the compression ratio.
1525 * This is somewhat of a hack since a blob does not necessarily
1526 * correspond one-to-one with a filename, nor is there any guarantee
1527 * that two files with similar names or extensions are actually similar
1528 * in content. A potential TODO is to sort the blobs based on some
1529 * measure of similarity of their actual contents.
1532 ret = sort_blob_list_by_sequential_order(blob_list,
1533 offsetof(struct blob_descriptor,
1538 ret = compute_blob_list_stats(blob_list, &ctx);
1542 if (write_resource_flags & WRITE_RESOURCE_FLAG_SOLID_SORT) {
1543 ret = sort_blob_list_for_solid_compression(blob_list);
1545 WARNING("Failed to sort blobs for solid compression. Continuing anyways.");
1548 ctx.progress_data.progfunc = progfunc;
1549 ctx.progress_data.progctx = progctx;
1551 num_nonraw_bytes = find_raw_copy_blobs(blob_list, write_resource_flags,
1552 out_ctype, out_chunk_size,
1555 /* Unless no data needs to be compressed, allocate a chunk_compressor to
1556 * do compression. There are serial and parallel implementations of the
1557 * chunk_compressor interface. We default to parallel using the
1558 * specified number of threads, unless the upper bound on the number
1559 * bytes needing to be compressed is less than a heuristic value. */
1560 if (num_nonraw_bytes != 0 && out_ctype != WIMLIB_COMPRESSION_TYPE_NONE) {
1561 #ifdef ENABLE_MULTITHREADED_COMPRESSION
1562 if (num_nonraw_bytes > max(2000000, out_chunk_size)) {
1563 ret = new_parallel_chunk_compressor(out_ctype,
1568 WARNING("Couldn't create parallel chunk compressor: %"TS".\n"
1569 " Falling back to single-threaded compression.",
1570 wimlib_get_error_string(ret));
1575 if (ctx.compressor == NULL) {
1576 ret = new_serial_chunk_compressor(out_ctype, out_chunk_size,
1579 goto out_destroy_context;
1584 ctx.progress_data.progress.write_streams.num_threads = ctx.compressor->num_threads;
1586 ctx.progress_data.progress.write_streams.num_threads = 1;
1588 ret = call_progress(ctx.progress_data.progfunc,
1589 WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
1590 &ctx.progress_data.progress,
1591 ctx.progress_data.progctx);
1593 goto out_destroy_context;
1595 /* Copy any compressed resources for which the raw data can be reused
1596 * without decompression. */
1597 ret = write_raw_copy_resources(&raw_copy_blobs, ctx.out_fd,
1598 &ctx.progress_data);
1600 if (ret || num_nonraw_bytes == 0)
1601 goto out_destroy_context;
1603 INIT_LIST_HEAD(&ctx.blobs_being_compressed);
1605 if (write_resource_flags & WRITE_RESOURCE_FLAG_SOLID) {
1607 INIT_LIST_HEAD(&ctx.blobs_in_solid_resource);
1609 ret = begin_write_resource(&ctx, num_nonraw_bytes);
1611 goto out_destroy_context;
1614 /* Read the list of blobs needing to be compressed, using the specified
1615 * callbacks to execute processing of the data. */
1617 struct read_blob_callbacks cbs = {
1618 .begin_blob = write_blob_begin_read,
1619 .consume_chunk = write_blob_process_chunk,
1620 .end_blob = write_blob_end_read,
1624 ret = read_blob_list(blob_list,
1625 offsetof(struct blob_descriptor, write_blobs_list),
1627 BLOB_LIST_ALREADY_SORTED |
1628 VERIFY_BLOB_HASHES |
1629 COMPUTE_MISSING_BLOB_HASHES);
1632 goto out_destroy_context;
1634 ret = finish_remaining_chunks(&ctx);
1636 goto out_destroy_context;
1638 if (write_resource_flags & WRITE_RESOURCE_FLAG_SOLID) {
1639 struct wim_reshdr reshdr;
1640 struct blob_descriptor *blob;
1643 ret = end_write_resource(&ctx, &reshdr);
1645 goto out_destroy_context;
1648 list_for_each_entry(blob, &ctx.blobs_in_solid_resource, write_blobs_list) {
1649 blob->out_reshdr.size_in_wim = blob->size;
1650 blob->out_reshdr.flags = reshdr_flags_for_blob(blob) |
1651 WIM_RESHDR_FLAG_SOLID;
1652 blob->out_reshdr.uncompressed_size = 0;
1653 blob->out_reshdr.offset_in_wim = offset_in_res;
1654 blob->out_res_offset_in_wim = reshdr.offset_in_wim;
1655 blob->out_res_size_in_wim = reshdr.size_in_wim;
1656 blob->out_res_uncompressed_size = reshdr.uncompressed_size;
1657 offset_in_res += blob->size;
1659 wimlib_assert(offset_in_res == reshdr.uncompressed_size);
1662 out_destroy_context:
1663 FREE(ctx.chunk_csizes);
1665 ctx.compressor->destroy(ctx.compressor);
1671 write_file_data_blobs(WIMStruct *wim,
1672 struct list_head *blob_list,
1674 unsigned num_threads,
1675 struct filter_context *filter_ctx)
1679 int write_resource_flags;
1681 write_resource_flags = write_flags_to_resource_flags(write_flags);
1683 if (write_resource_flags & WRITE_RESOURCE_FLAG_SOLID) {
1684 out_chunk_size = wim->out_solid_chunk_size;
1685 out_ctype = wim->out_solid_compression_type;
1687 out_chunk_size = wim->out_chunk_size;
1688 out_ctype = wim->out_compression_type;
1691 return write_blob_list(blob_list,
1693 write_resource_flags,
1703 /* Write the contents of the specified blob as a WIM resource. */
1705 write_wim_resource(struct blob_descriptor *blob,
1706 struct filedes *out_fd,
1709 int write_resource_flags)
1711 LIST_HEAD(blob_list);
1712 list_add(&blob->write_blobs_list, &blob_list);
1713 blob->will_be_in_output_wim = 1;
1714 return write_blob_list(&blob_list,
1716 write_resource_flags & ~WRITE_RESOURCE_FLAG_SOLID,
1726 /* Write the contents of the specified buffer as a WIM resource. */
1728 write_wim_resource_from_buffer(const void *buf,
1731 struct filedes *out_fd,
1734 struct wim_reshdr *out_reshdr,
1736 int write_resource_flags)
1739 struct blob_descriptor blob;
1741 if (unlikely(buf_size == 0)) {
1742 zero_reshdr(out_reshdr);
1744 copy_hash(hash_ret, zero_hash);
1748 blob_set_is_located_in_attached_buffer(&blob, (void *)buf, buf_size);
1749 sha1_buffer(buf, buf_size, blob.hash);
1751 blob.is_metadata = is_metadata;
1753 ret = write_wim_resource(&blob, out_fd, out_ctype, out_chunk_size,
1754 write_resource_flags);
1758 copy_reshdr(out_reshdr, &blob.out_reshdr);
1761 copy_hash(hash_ret, blob.hash);
1765 struct blob_size_table {
1766 struct hlist_head *array;
1772 init_blob_size_table(struct blob_size_table *tab, size_t capacity)
1774 tab->array = CALLOC(capacity, sizeof(tab->array[0]));
1775 if (tab->array == NULL)
1776 return WIMLIB_ERR_NOMEM;
1777 tab->num_entries = 0;
1778 tab->capacity = capacity;
1783 destroy_blob_size_table(struct blob_size_table *tab)
1789 blob_size_table_insert(struct blob_descriptor *blob, void *_tab)
1791 struct blob_size_table *tab = _tab;
1793 struct blob_descriptor *same_size_blob;
1795 pos = hash_u64(blob->size) % tab->capacity;
1796 blob->unique_size = 1;
1797 hlist_for_each_entry(same_size_blob, &tab->array[pos], hash_list_2) {
1798 if (same_size_blob->size == blob->size) {
1799 blob->unique_size = 0;
1800 same_size_blob->unique_size = 0;
1805 hlist_add_head(&blob->hash_list_2, &tab->array[pos]);
1810 struct find_blobs_ctx {
1813 struct list_head blob_list;
1814 struct blob_size_table blob_size_tab;
1818 reference_blob_for_write(struct blob_descriptor *blob,
1819 struct list_head *blob_list, u32 nref)
1821 if (!blob->will_be_in_output_wim) {
1822 blob->out_refcnt = 0;
1823 list_add_tail(&blob->write_blobs_list, blob_list);
1824 blob->will_be_in_output_wim = 1;
1826 blob->out_refcnt += nref;
1830 fully_reference_blob_for_write(struct blob_descriptor *blob, void *_blob_list)
1832 struct list_head *blob_list = _blob_list;
1833 blob->will_be_in_output_wim = 0;
1834 reference_blob_for_write(blob, blob_list, blob->refcnt);
1839 inode_find_blobs_to_reference(const struct wim_inode *inode,
1840 const struct blob_table *table,
1841 struct list_head *blob_list)
1843 wimlib_assert(inode->i_nlink > 0);
1845 for (unsigned i = 0; i < inode->i_num_streams; i++) {
1846 struct blob_descriptor *blob;
1849 blob = stream_blob(&inode->i_streams[i], table);
1851 reference_blob_for_write(blob, blob_list, inode->i_nlink);
1853 hash = stream_hash(&inode->i_streams[i]);
1854 if (!is_zero_hash(hash))
1855 return blob_not_found_error(inode, hash);
1862 do_blob_set_not_in_output_wim(struct blob_descriptor *blob, void *_ignore)
1864 blob->will_be_in_output_wim = 0;
1869 image_find_blobs_to_reference(WIMStruct *wim)
1871 struct wim_image_metadata *imd;
1872 struct wim_inode *inode;
1873 struct blob_descriptor *blob;
1874 struct list_head *blob_list;
1877 imd = wim_get_current_image_metadata(wim);
1879 image_for_each_unhashed_blob(blob, imd)
1880 blob->will_be_in_output_wim = 0;
1882 blob_list = wim->private;
1883 image_for_each_inode(inode, imd) {
1884 ret = inode_find_blobs_to_reference(inode,
1894 prepare_unfiltered_list_of_blobs_in_output_wim(WIMStruct *wim,
1897 struct list_head *blob_list_ret)
1901 INIT_LIST_HEAD(blob_list_ret);
1903 if (blobs_ok && (image == WIMLIB_ALL_IMAGES ||
1904 (image == 1 && wim->hdr.image_count == 1)))
1906 /* Fast case: Assume that all blobs are being written and that
1907 * the reference counts are correct. */
1908 struct blob_descriptor *blob;
1909 struct wim_image_metadata *imd;
1912 for_blob_in_table(wim->blob_table,
1913 fully_reference_blob_for_write,
1916 for (i = 0; i < wim->hdr.image_count; i++) {
1917 imd = wim->image_metadata[i];
1918 image_for_each_unhashed_blob(blob, imd)
1919 fully_reference_blob_for_write(blob, blob_list_ret);
1922 /* Slow case: Walk through the images being written and
1923 * determine the blobs referenced. */
1924 for_blob_in_table(wim->blob_table,
1925 do_blob_set_not_in_output_wim, NULL);
1926 wim->private = blob_list_ret;
1927 ret = for_image(wim, image, image_find_blobs_to_reference);
1935 struct insert_other_if_hard_filtered_ctx {
1936 struct blob_size_table *tab;
1937 struct filter_context *filter_ctx;
1941 insert_other_if_hard_filtered(struct blob_descriptor *blob, void *_ctx)
1943 struct insert_other_if_hard_filtered_ctx *ctx = _ctx;
1945 if (!blob->will_be_in_output_wim &&
1946 blob_hard_filtered(blob, ctx->filter_ctx))
1947 blob_size_table_insert(blob, ctx->tab);
1952 determine_blob_size_uniquity(struct list_head *blob_list,
1953 struct blob_table *lt,
1954 struct filter_context *filter_ctx)
1957 struct blob_size_table tab;
1958 struct blob_descriptor *blob;
1960 ret = init_blob_size_table(&tab, 9001);
1964 if (may_hard_filter_blobs(filter_ctx)) {
1965 struct insert_other_if_hard_filtered_ctx ctx = {
1967 .filter_ctx = filter_ctx,
1969 for_blob_in_table(lt, insert_other_if_hard_filtered, &ctx);
1972 list_for_each_entry(blob, blob_list, write_blobs_list)
1973 blob_size_table_insert(blob, &tab);
1975 destroy_blob_size_table(&tab);
1980 filter_blob_list_for_write(struct list_head *blob_list,
1981 struct filter_context *filter_ctx)
1983 struct blob_descriptor *blob, *tmp;
1985 list_for_each_entry_safe(blob, tmp, blob_list, write_blobs_list) {
1986 int status = blob_filtered(blob, filter_ctx);
1993 /* Soft filtered. */
1995 /* Hard filtered. */
1996 blob->will_be_in_output_wim = 0;
1997 list_del(&blob->blob_table_list);
1999 list_del(&blob->write_blobs_list);
2005 * prepare_blob_list_for_write() -
2007 * Prepare the list of blobs to write for writing a WIM containing the specified
2008 * image(s) with the specified write flags.
2011 * The WIMStruct on whose behalf the write is occurring.
2014 * Image(s) from the WIM to write; may be WIMLIB_ALL_IMAGES.
2017 * WIMLIB_WRITE_FLAG_* flags for the write operation:
2019 * STREAMS_OK: For writes of all images, assume that all blobs in the blob
2020 * table of @wim and the per-image lists of unhashed blobs should be taken
2021 * as-is, and image metadata should not be searched for references. This
2022 * does not exclude filtering with APPEND and SKIP_EXTERNAL_WIMS, below.
2024 * APPEND: Blobs already present in @wim shall not be returned in
2027 * SKIP_EXTERNAL_WIMS: Blobs already present in a WIM file, but not @wim,
2028 * shall be returned in neither @blob_list_ret nor @blob_table_list_ret.
2031 * List of blobs, linked by write_blobs_list, that need to be written will
2034 * Note that this function assumes that unhashed blobs will be written; it
2035 * does not take into account that they may become duplicates when actually
2038 * @blob_table_list_ret
2039 * List of blobs, linked by blob_table_list, that need to be included in
2040 * the WIM's blob table will be returned here. This will be a superset of
2041 * the blobs in @blob_list_ret.
2043 * This list will be a proper superset of @blob_list_ret if and only if
2044 * WIMLIB_WRITE_FLAG_APPEND was specified in @write_flags and some of the
2045 * blobs that would otherwise need to be written were already located in
2048 * All blobs in this list will have @out_refcnt set to the number of
2049 * references to the blob in the output WIM. If
2050 * WIMLIB_WRITE_FLAG_STREAMS_OK was specified in @write_flags, @out_refcnt
2051 * may be as low as 0.
2054 * A context for queries of blob filter status with blob_filtered() is
2055 * returned in this location.
2057 * In addition, @will_be_in_output_wim will be set to 1 in all blobs inserted
2058 * into @blob_table_list_ret and to 0 in all blobs in the blob table of @wim not
2059 * inserted into @blob_table_list_ret.
2061 * Still furthermore, @unique_size will be set to 1 on all blobs in
2062 * @blob_list_ret that have unique size among all blobs in @blob_list_ret and
2063 * among all blobs in the blob table of @wim that are ineligible for being
2064 * written due to filtering.
2066 * Returns 0 on success; nonzero on read error, memory allocation error, or
2070 prepare_blob_list_for_write(WIMStruct *wim, int image,
2072 struct list_head *blob_list_ret,
2073 struct list_head *blob_table_list_ret,
2074 struct filter_context *filter_ctx_ret)
2077 struct blob_descriptor *blob;
2079 filter_ctx_ret->write_flags = write_flags;
2080 filter_ctx_ret->wim = wim;
2082 ret = prepare_unfiltered_list_of_blobs_in_output_wim(
2085 write_flags & WIMLIB_WRITE_FLAG_STREAMS_OK,
2090 INIT_LIST_HEAD(blob_table_list_ret);
2091 list_for_each_entry(blob, blob_list_ret, write_blobs_list)
2092 list_add_tail(&blob->blob_table_list, blob_table_list_ret);
2094 ret = determine_blob_size_uniquity(blob_list_ret, wim->blob_table,
2099 if (may_filter_blobs(filter_ctx_ret))
2100 filter_blob_list_for_write(blob_list_ret, filter_ctx_ret);
2106 write_file_data(WIMStruct *wim, int image, int write_flags,
2107 unsigned num_threads,
2108 struct list_head *blob_list_override,
2109 struct list_head *blob_table_list_ret)
2112 struct list_head _blob_list;
2113 struct list_head *blob_list;
2114 struct blob_descriptor *blob;
2115 struct filter_context _filter_ctx;
2116 struct filter_context *filter_ctx;
2118 if (blob_list_override == NULL) {
2119 /* Normal case: prepare blob list from image(s) being written.
2121 blob_list = &_blob_list;
2122 filter_ctx = &_filter_ctx;
2123 ret = prepare_blob_list_for_write(wim, image, write_flags,
2125 blob_table_list_ret,
2130 /* Currently only as a result of wimlib_split() being called:
2131 * use blob list already explicitly provided. Use existing
2132 * reference counts. */
2133 blob_list = blob_list_override;
2135 INIT_LIST_HEAD(blob_table_list_ret);
2136 list_for_each_entry(blob, blob_list, write_blobs_list) {
2137 blob->out_refcnt = blob->refcnt;
2138 blob->will_be_in_output_wim = 1;
2139 blob->unique_size = 0;
2140 list_add_tail(&blob->blob_table_list, blob_table_list_ret);
2144 return write_file_data_blobs(wim,
2152 write_metadata_resources(WIMStruct *wim, int image, int write_flags)
2157 int write_resource_flags;
2159 if (write_flags & WIMLIB_WRITE_FLAG_NO_METADATA)
2162 write_resource_flags = write_flags_to_resource_flags(write_flags);
2164 write_resource_flags &= ~WRITE_RESOURCE_FLAG_SOLID;
2166 ret = call_progress(wim->progfunc,
2167 WIMLIB_PROGRESS_MSG_WRITE_METADATA_BEGIN,
2168 NULL, wim->progctx);
2172 if (image == WIMLIB_ALL_IMAGES) {
2174 end_image = wim->hdr.image_count;
2176 start_image = image;
2180 for (int i = start_image; i <= end_image; i++) {
2181 struct wim_image_metadata *imd;
2183 imd = wim->image_metadata[i - 1];
2184 if (is_image_dirty(imd)) {
2185 /* The image was modified from the original, or was
2186 * newly added, so we have to build and write a new
2187 * metadata resource. */
2188 ret = write_metadata_resource(wim, i,
2189 write_resource_flags);
2190 } else if (is_image_unchanged_from_wim(imd, wim) &&
2191 (write_flags & (WIMLIB_WRITE_FLAG_UNSAFE_COMPACT |
2192 WIMLIB_WRITE_FLAG_APPEND)))
2194 /* The metadata resource is already in the WIM file.
2195 * For appends, we don't need to write it at all. For
2196 * compactions, we re-write existing metadata resources
2197 * along with the existing file resources, not here. */
2198 if (write_flags & WIMLIB_WRITE_FLAG_APPEND)
2199 blob_set_out_reshdr_for_reuse(imd->metadata_blob);
2202 /* The metadata resource is in a WIM file other than the
2203 * one being written to. We need to rewrite it,
2204 * possibly compressed differently; but rebuilding the
2205 * metadata itself isn't necessary. */
2206 ret = write_wim_resource(imd->metadata_blob,
2208 wim->out_compression_type,
2209 wim->out_chunk_size,
2210 write_resource_flags);
2216 return call_progress(wim->progfunc,
2217 WIMLIB_PROGRESS_MSG_WRITE_METADATA_END,
2218 NULL, wim->progctx);
2222 open_wim_writable(WIMStruct *wim, const tchar *path, int open_flags)
2224 int raw_fd = topen(path, open_flags | O_BINARY, 0644);
2226 ERROR_WITH_ERRNO("Failed to open \"%"TS"\" for writing", path);
2227 return WIMLIB_ERR_OPEN;
2229 filedes_init(&wim->out_fd, raw_fd);
2234 close_wim_writable(WIMStruct *wim, int write_flags)
2238 if (!(write_flags & WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR))
2239 if (filedes_valid(&wim->out_fd))
2240 if (filedes_close(&wim->out_fd))
2241 ret = WIMLIB_ERR_WRITE;
2242 filedes_invalidate(&wim->out_fd);
2247 cmp_blobs_by_out_rdesc(const void *p1, const void *p2)
2249 const struct blob_descriptor *blob1, *blob2;
2251 blob1 = *(const struct blob_descriptor**)p1;
2252 blob2 = *(const struct blob_descriptor**)p2;
2254 if (blob1->out_reshdr.flags & WIM_RESHDR_FLAG_SOLID) {
2255 if (blob2->out_reshdr.flags & WIM_RESHDR_FLAG_SOLID) {
2256 if (blob1->out_res_offset_in_wim != blob2->out_res_offset_in_wim)
2257 return cmp_u64(blob1->out_res_offset_in_wim,
2258 blob2->out_res_offset_in_wim);
2263 if (blob2->out_reshdr.flags & WIM_RESHDR_FLAG_SOLID)
2266 return cmp_u64(blob1->out_reshdr.offset_in_wim,
2267 blob2->out_reshdr.offset_in_wim);
2271 write_blob_table(WIMStruct *wim, int image, int write_flags,
2272 struct list_head *blob_table_list)
2276 /* Set output resource metadata for blobs already present in WIM. */
2277 if (write_flags & WIMLIB_WRITE_FLAG_APPEND) {
2278 struct blob_descriptor *blob;
2279 list_for_each_entry(blob, blob_table_list, blob_table_list) {
2280 if (blob->blob_location == BLOB_IN_WIM &&
2281 blob->rdesc->wim == wim)
2283 blob_set_out_reshdr_for_reuse(blob);
2288 ret = sort_blob_list(blob_table_list,
2289 offsetof(struct blob_descriptor, blob_table_list),
2290 cmp_blobs_by_out_rdesc);
2294 /* Add entries for metadata resources. */
2295 if (!(write_flags & WIMLIB_WRITE_FLAG_NO_METADATA)) {
2299 if (image == WIMLIB_ALL_IMAGES) {
2301 end_image = wim->hdr.image_count;
2303 start_image = image;
2307 /* Push metadata blob table entries onto the front of the list
2308 * in reverse order, so that they're written in order.
2310 for (int i = end_image; i >= start_image; i--) {
2311 struct blob_descriptor *metadata_blob;
2313 metadata_blob = wim->image_metadata[i - 1]->metadata_blob;
2314 wimlib_assert(metadata_blob->out_reshdr.flags & WIM_RESHDR_FLAG_METADATA);
2315 metadata_blob->out_refcnt = 1;
2316 list_add(&metadata_blob->blob_table_list, blob_table_list);
2320 return write_blob_table_from_blob_list(blob_table_list,
2322 wim->out_hdr.part_number,
2323 &wim->out_hdr.blob_table_reshdr,
2324 write_flags_to_resource_flags(write_flags));
2328 * Finish writing a WIM file: write the blob table, xml data, and integrity
2329 * table, then overwrite the WIM header.
2331 * The output file descriptor is closed on success, except when writing to a
2332 * user-specified file descriptor (WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR set).
2335 finish_write(WIMStruct *wim, int image, int write_flags,
2336 struct list_head *blob_table_list)
2338 int write_resource_flags;
2339 off_t old_blob_table_end = 0;
2340 struct integrity_table *old_integrity_table = NULL;
2341 off_t new_blob_table_end;
2345 write_resource_flags = write_flags_to_resource_flags(write_flags);
2347 /* In the WIM header, there is room for the resource entry for a
2348 * metadata resource labeled as the "boot metadata". This entry should
2349 * be zeroed out if there is no bootable image (boot_idx 0). Otherwise,
2350 * it should be a copy of the resource entry for the image that is
2351 * marked as bootable. */
2352 if (wim->out_hdr.boot_idx == 0) {
2353 zero_reshdr(&wim->out_hdr.boot_metadata_reshdr);
2355 copy_reshdr(&wim->out_hdr.boot_metadata_reshdr,
2356 &wim->image_metadata[
2357 wim->out_hdr.boot_idx - 1]->metadata_blob->out_reshdr);
2360 /* If appending to a WIM file containing an integrity table, we'd like
2361 * to re-use the information in the old integrity table instead of
2362 * recalculating it. But we might overwrite the old integrity table
2363 * when we expand the XML data. Read it into memory just in case. */
2364 if ((write_flags & (WIMLIB_WRITE_FLAG_APPEND |
2365 WIMLIB_WRITE_FLAG_CHECK_INTEGRITY)) ==
2366 (WIMLIB_WRITE_FLAG_APPEND |
2367 WIMLIB_WRITE_FLAG_CHECK_INTEGRITY)
2368 && wim_has_integrity_table(wim))
2370 old_blob_table_end = wim->hdr.blob_table_reshdr.offset_in_wim +
2371 wim->hdr.blob_table_reshdr.size_in_wim;
2372 (void)read_integrity_table(wim,
2373 old_blob_table_end - WIM_HEADER_DISK_SIZE,
2374 &old_integrity_table);
2375 /* If we couldn't read the old integrity table, we can still
2376 * re-calculate the full integrity table ourselves. Hence the
2377 * ignoring of the return value. */
2380 /* Write blob table if needed. */
2381 if (!(write_flags & WIMLIB_WRITE_FLAG_NO_NEW_BLOBS)) {
2382 ret = write_blob_table(wim, image, write_flags,
2388 /* Write XML data. */
2389 xml_totalbytes = wim->out_fd.offset;
2390 if (write_flags & WIMLIB_WRITE_FLAG_USE_EXISTING_TOTALBYTES)
2391 xml_totalbytes = WIM_TOTALBYTES_USE_EXISTING;
2392 ret = write_wim_xml_data(wim, image, xml_totalbytes,
2393 &wim->out_hdr.xml_data_reshdr,
2394 write_resource_flags);
2398 /* Write integrity table if needed. */
2399 if ((write_flags & WIMLIB_WRITE_FLAG_CHECK_INTEGRITY) &&
2400 wim->out_hdr.blob_table_reshdr.offset_in_wim != 0)
2402 if (write_flags & WIMLIB_WRITE_FLAG_NO_NEW_BLOBS) {
2403 /* The XML data we wrote may have overwritten part of
2404 * the old integrity table, so while calculating the new
2405 * integrity table we should temporarily update the WIM
2406 * header to remove the integrity table reference. */
2407 struct wim_header checkpoint_hdr;
2408 memcpy(&checkpoint_hdr, &wim->out_hdr, sizeof(struct wim_header));
2409 zero_reshdr(&checkpoint_hdr.integrity_table_reshdr);
2410 checkpoint_hdr.flags |= WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2411 ret = write_wim_header(&checkpoint_hdr, &wim->out_fd, 0);
2416 new_blob_table_end = wim->out_hdr.blob_table_reshdr.offset_in_wim +
2417 wim->out_hdr.blob_table_reshdr.size_in_wim;
2419 ret = write_integrity_table(wim,
2422 old_integrity_table);
2426 /* No integrity table. */
2427 zero_reshdr(&wim->out_hdr.integrity_table_reshdr);
2430 /* Now that all information in the WIM header has been determined, the
2431 * preliminary header written earlier can be overwritten, the header of
2432 * the existing WIM file can be overwritten, or the final header can be
2433 * written to the end of the pipable WIM. */
2434 wim->out_hdr.flags &= ~WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2435 if (write_flags & WIMLIB_WRITE_FLAG_PIPABLE)
2436 ret = write_wim_header(&wim->out_hdr, &wim->out_fd, wim->out_fd.offset);
2438 ret = write_wim_header(&wim->out_hdr, &wim->out_fd, 0);
2442 ret = WIMLIB_ERR_WRITE;
2443 if (unlikely(write_flags & WIMLIB_WRITE_FLAG_UNSAFE_COMPACT)) {
2444 /* Truncate any data the compaction freed up. */
2445 if (ftruncate(wim->out_fd.fd, wim->out_fd.offset) &&
2446 errno != EINVAL) /* allow compaction on untruncatable files,
2447 e.g. block devices */
2449 ERROR_WITH_ERRNO("Failed to truncate the output WIM file");
2454 /* Possibly sync file data to disk before closing. On POSIX systems, it
2455 * is necessary to do this before using rename() to overwrite an
2456 * existing file with a new file. Otherwise, data loss would occur if
2457 * the system is abruptly terminated when the metadata for the rename
2458 * operation has been written to disk, but the new file data has not.
2460 ret = WIMLIB_ERR_WRITE;
2461 if (write_flags & WIMLIB_WRITE_FLAG_FSYNC) {
2462 if (fsync(wim->out_fd.fd)) {
2463 ERROR_WITH_ERRNO("Error syncing data to WIM file");
2468 ret = WIMLIB_ERR_WRITE;
2469 if (close_wim_writable(wim, write_flags)) {
2470 ERROR_WITH_ERRNO("Failed to close the output WIM file");
2476 free_integrity_table(old_integrity_table);
2480 #if defined(HAVE_SYS_FILE_H) && defined(HAVE_FLOCK)
2482 /* Set advisory lock on WIM file (if not already done so) */
2484 lock_wim_for_append(WIMStruct *wim)
2486 if (wim->locked_for_append)
2488 if (!flock(wim->in_fd.fd, LOCK_EX | LOCK_NB)) {
2489 wim->locked_for_append = 1;
2492 if (errno != EWOULDBLOCK)
2494 return WIMLIB_ERR_ALREADY_LOCKED;
2497 /* Remove advisory lock on WIM file (if present) */
2499 unlock_wim_for_append(WIMStruct *wim)
2501 if (wim->locked_for_append) {
2502 flock(wim->in_fd.fd, LOCK_UN);
2503 wim->locked_for_append = 0;
2509 * write_pipable_wim():
2511 * Perform the intermediate stages of creating a "pipable" WIM (i.e. a WIM
2512 * capable of being applied from a pipe).
2514 * Pipable WIMs are a wimlib-specific modification of the WIM format such that
2515 * images can be applied from them sequentially when the file data is sent over
2516 * a pipe. In addition, a pipable WIM can be written sequentially to a pipe.
2517 * The modifications made to the WIM format for pipable WIMs are:
2519 * - Magic characters in header are "WLPWM\0\0\0" (wimlib pipable WIM) instead
2520 * of "MSWIM\0\0\0". This lets wimlib know that the WIM is pipable and also
2521 * stops other software from trying to read the file as a normal WIM.
2523 * - The header at the beginning of the file does not contain all the normal
2524 * information; in particular it will have all 0's for the blob table and XML
2525 * data resource entries. This is because this information cannot be
2526 * determined until the blob table and XML data have been written.
2527 * Consequently, wimlib will write the full header at the very end of the
2528 * file. The header at the end, however, is only used when reading the WIM
2529 * from a seekable file (not a pipe).
2531 * - An extra copy of the XML data is placed directly after the header. This
2532 * allows image names and sizes to be determined at an appropriate time when
2533 * reading the WIM from a pipe. This copy of the XML data is ignored if the
2534 * WIM is read from a seekable file (not a pipe).
2536 * - Solid resources are not allowed. Each blob is always stored in its own
2539 * - The format of resources, or blobs, has been modified to allow them to be
2540 * used before the "blob table" has been read. Each blob is prefixed with a
2541 * `struct pwm_blob_hdr' that is basically an abbreviated form of `struct
2542 * blob_descriptor_disk' that only contains the SHA-1 message digest,
2543 * uncompressed blob size, and flags that indicate whether the blob is
2544 * compressed. The data of uncompressed blobs then follows literally, while
2545 * the data of compressed blobs follows in a modified format. Compressed
2546 * blobs do not begin with a chunk table, since the chunk table cannot be
2547 * written until all chunks have been compressed. Instead, each compressed
2548 * chunk is prefixed by a `struct pwm_chunk_hdr' that gives its size.
2549 * Furthermore, the chunk table is written at the end of the resource instead
2550 * of the start. Note: chunk offsets are given in the chunk table as if the
2551 * `struct pwm_chunk_hdr's were not present; also, the chunk table is only
2552 * used if the WIM is being read from a seekable file (not a pipe).
2554 * - Metadata blobs always come before non-metadata blobs. (This does not by
2555 * itself constitute an incompatibility with normal WIMs, since this is valid
2558 * - At least up to the end of the blobs, all components must be packed as
2559 * tightly as possible; there cannot be any "holes" in the WIM. (This does
2560 * not by itself consititute an incompatibility with normal WIMs, since this
2561 * is valid in normal WIMs.)
2563 * Note: the blob table, XML data, and header at the end are not used when
2564 * applying from a pipe. They exist to support functionality such as image
2565 * application and export when the WIM is *not* read from a pipe.
2567 * Layout of pipable WIM:
2569 * ---------+----------+--------------------+----------------+--------------+-----------+--------+
2570 * | Header | XML data | Metadata resources | File resources | Blob table | XML data | Header |
2571 * ---------+----------+--------------------+----------------+--------------+-----------+--------+
2573 * Layout of normal WIM:
2575 * +--------+-----------------------------+-------------------------+
2576 * | Header | File and metadata resources | Blob table | XML data |
2577 * +--------+-----------------------------+-------------------------+
2579 * An optional integrity table can follow the final XML data in both normal and
2580 * pipable WIMs. However, due to implementation details, wimlib currently can
2581 * only include an integrity table in a pipable WIM when writing it to a
2582 * seekable file (not a pipe).
2584 * Do note that since pipable WIMs are not supported by Microsoft's software,
2585 * wimlib does not create them unless explicitly requested (with
2586 * WIMLIB_WRITE_FLAG_PIPABLE) and as stated above they use different magic
2587 * characters to identify the file.
2590 write_pipable_wim(WIMStruct *wim, int image, int write_flags,
2591 unsigned num_threads,
2592 struct list_head *blob_list_override,
2593 struct list_head *blob_table_list_ret)
2596 struct wim_reshdr xml_reshdr;
2598 WARNING("Creating a pipable WIM, which will "
2600 " with Microsoft's software (WIMGAPI/ImageX/DISM).");
2602 /* At this point, the header at the beginning of the file has already
2605 /* For efficiency, when wimlib adds an image to the WIM with
2606 * wimlib_add_image(), the SHA-1 message digests of files are not
2607 * calculated; instead, they are calculated while the files are being
2608 * written. However, this does not work when writing a pipable WIM,
2609 * since when writing a blob to a pipable WIM, its SHA-1 message digest
2610 * needs to be known before the blob data is written. Therefore, before
2611 * getting much farther, we need to pre-calculate the SHA-1 message
2612 * digests of all blobs that will be written. */
2613 ret = wim_checksum_unhashed_blobs(wim);
2617 /* Write extra copy of the XML data. */
2618 ret = write_wim_xml_data(wim, image, WIM_TOTALBYTES_OMIT,
2619 &xml_reshdr, WRITE_RESOURCE_FLAG_PIPABLE);
2623 /* Write metadata resources for the image(s) being included in the
2625 ret = write_metadata_resources(wim, image, write_flags);
2629 /* Write file data needed for the image(s) being included in the output
2630 * WIM, or file data needed for the split WIM part. */
2631 return write_file_data(wim, image, write_flags,
2632 num_threads, blob_list_override,
2633 blob_table_list_ret);
2635 /* The blob table, XML data, and header at end are handled by
2636 * finish_write(). */
2640 should_default_to_solid_compression(WIMStruct *wim, int write_flags)
2642 return wim->out_hdr.wim_version == WIM_VERSION_SOLID &&
2643 !(write_flags & (WIMLIB_WRITE_FLAG_SOLID |
2644 WIMLIB_WRITE_FLAG_PIPABLE)) &&
2645 wim_has_solid_resources(wim);
2648 /* Update the images' filecount/bytecount stats (in the XML info) to take into
2649 * account any recent modifications. */
2651 update_image_stats(WIMStruct *wim)
2653 if (!wim_has_metadata(wim))
2655 for (int i = 0; i < wim->hdr.image_count; i++) {
2656 struct wim_image_metadata *imd = wim->image_metadata[i];
2657 if (imd->stats_outdated) {
2658 int ret = xml_update_image_info(wim, i + 1);
2661 imd->stats_outdated = false;
2667 /* Write a standalone WIM or split WIM (SWM) part to a new file or to a file
2670 write_wim_part(WIMStruct *wim,
2671 const void *path_or_fd,
2674 unsigned num_threads,
2675 unsigned part_number,
2676 unsigned total_parts,
2677 struct list_head *blob_list_override,
2681 struct list_head blob_table_list;
2683 /* Internally, this is always called with a valid part number and total
2685 wimlib_assert(total_parts >= 1);
2686 wimlib_assert(part_number >= 1 && part_number <= total_parts);
2688 /* A valid image (or all images) must be specified. */
2689 if (image != WIMLIB_ALL_IMAGES &&
2690 (image < 1 || image > wim->hdr.image_count))
2691 return WIMLIB_ERR_INVALID_IMAGE;
2693 /* If we need to write metadata resources, make sure the ::WIMStruct has
2694 * the needed information attached (e.g. is not a resource-only WIM,
2695 * such as a non-first part of a split WIM). */
2696 if (!wim_has_metadata(wim) &&
2697 !(write_flags & WIMLIB_WRITE_FLAG_NO_METADATA))
2698 return WIMLIB_ERR_METADATA_NOT_FOUND;
2700 /* Check for contradictory flags. */
2701 if ((write_flags & (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
2702 WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY))
2703 == (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
2704 WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY))
2705 return WIMLIB_ERR_INVALID_PARAM;
2707 if ((write_flags & (WIMLIB_WRITE_FLAG_PIPABLE |
2708 WIMLIB_WRITE_FLAG_NOT_PIPABLE))
2709 == (WIMLIB_WRITE_FLAG_PIPABLE |
2710 WIMLIB_WRITE_FLAG_NOT_PIPABLE))
2711 return WIMLIB_ERR_INVALID_PARAM;
2713 /* Only wimlib_overwrite() accepts UNSAFE_COMPACT. */
2714 if (write_flags & WIMLIB_WRITE_FLAG_UNSAFE_COMPACT)
2715 return WIMLIB_ERR_INVALID_PARAM;
2717 /* Include an integrity table by default if no preference was given and
2718 * the WIM already had an integrity table. */
2719 if (!(write_flags & (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
2720 WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY))) {
2721 if (wim_has_integrity_table(wim))
2722 write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
2725 /* Write a pipable WIM by default if no preference was given and the WIM
2726 * was already pipable. */
2727 if (!(write_flags & (WIMLIB_WRITE_FLAG_PIPABLE |
2728 WIMLIB_WRITE_FLAG_NOT_PIPABLE))) {
2729 if (wim_is_pipable(wim))
2730 write_flags |= WIMLIB_WRITE_FLAG_PIPABLE;
2733 if ((write_flags & (WIMLIB_WRITE_FLAG_PIPABLE |
2734 WIMLIB_WRITE_FLAG_SOLID))
2735 == (WIMLIB_WRITE_FLAG_PIPABLE |
2736 WIMLIB_WRITE_FLAG_SOLID))
2738 ERROR("Solid compression is unsupported in pipable WIMs");
2739 return WIMLIB_ERR_INVALID_PARAM;
2742 /* Start initializing the new file header. */
2743 memset(&wim->out_hdr, 0, sizeof(wim->out_hdr));
2745 /* Set the magic number. */
2746 if (write_flags & WIMLIB_WRITE_FLAG_PIPABLE)
2747 wim->out_hdr.magic = PWM_MAGIC;
2749 wim->out_hdr.magic = WIM_MAGIC;
2751 /* Set the version number. */
2752 if ((write_flags & WIMLIB_WRITE_FLAG_SOLID) ||
2753 wim->out_compression_type == WIMLIB_COMPRESSION_TYPE_LZMS)
2754 wim->out_hdr.wim_version = WIM_VERSION_SOLID;
2756 wim->out_hdr.wim_version = WIM_VERSION_DEFAULT;
2758 /* Default to solid compression if it is valid in the chosen WIM file
2759 * format and the WIMStruct references any solid resources. This is
2760 * useful when exporting an image from a solid WIM. */
2761 if (should_default_to_solid_compression(wim, write_flags))
2762 write_flags |= WIMLIB_WRITE_FLAG_SOLID;
2764 /* Set the header flags. */
2765 wim->out_hdr.flags = (wim->hdr.flags & (WIM_HDR_FLAG_RP_FIX |
2766 WIM_HDR_FLAG_READONLY));
2767 if (total_parts != 1)
2768 wim->out_hdr.flags |= WIM_HDR_FLAG_SPANNED;
2769 if (wim->out_compression_type != WIMLIB_COMPRESSION_TYPE_NONE) {
2770 wim->out_hdr.flags |= WIM_HDR_FLAG_COMPRESSION;
2771 switch (wim->out_compression_type) {
2772 case WIMLIB_COMPRESSION_TYPE_XPRESS:
2773 wim->out_hdr.flags |= WIM_HDR_FLAG_COMPRESS_XPRESS;
2775 case WIMLIB_COMPRESSION_TYPE_LZX:
2776 wim->out_hdr.flags |= WIM_HDR_FLAG_COMPRESS_LZX;
2778 case WIMLIB_COMPRESSION_TYPE_LZMS:
2779 wim->out_hdr.flags |= WIM_HDR_FLAG_COMPRESS_LZMS;
2784 /* Set the chunk size. */
2785 wim->out_hdr.chunk_size = wim->out_chunk_size;
2788 if (write_flags & WIMLIB_WRITE_FLAG_RETAIN_GUID)
2789 guid = wim->hdr.guid;
2791 copy_guid(wim->out_hdr.guid, guid);
2793 generate_guid(wim->out_hdr.guid);
2795 /* Set the part number and total parts. */
2796 wim->out_hdr.part_number = part_number;
2797 wim->out_hdr.total_parts = total_parts;
2799 /* Set the image count. */
2800 if (image == WIMLIB_ALL_IMAGES)
2801 wim->out_hdr.image_count = wim->hdr.image_count;
2803 wim->out_hdr.image_count = 1;
2805 /* Set the boot index. */
2806 wim->out_hdr.boot_idx = 0;
2807 if (total_parts == 1) {
2808 if (image == WIMLIB_ALL_IMAGES)
2809 wim->out_hdr.boot_idx = wim->hdr.boot_idx;
2810 else if (image == wim->hdr.boot_idx)
2811 wim->out_hdr.boot_idx = 1;
2814 /* Update image stats if needed. */
2815 ret = update_image_stats(wim);
2819 /* Set up the output file descriptor. */
2820 if (write_flags & WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR) {
2821 /* File descriptor was explicitly provided. */
2822 filedes_init(&wim->out_fd, *(const int *)path_or_fd);
2823 if (!filedes_is_seekable(&wim->out_fd)) {
2824 /* The file descriptor is a pipe. */
2825 ret = WIMLIB_ERR_INVALID_PARAM;
2826 if (!(write_flags & WIMLIB_WRITE_FLAG_PIPABLE))
2828 if (write_flags & WIMLIB_WRITE_FLAG_CHECK_INTEGRITY) {
2829 ERROR("Can't include integrity check when "
2830 "writing pipable WIM to pipe!");
2835 /* Filename of WIM to write was provided; open file descriptor
2837 ret = open_wim_writable(wim, (const tchar*)path_or_fd,
2838 O_TRUNC | O_CREAT | O_RDWR);
2843 /* Write initial header. This is merely a "dummy" header since it
2844 * doesn't have resource entries filled in yet, so it will be
2845 * overwritten later (unless writing a pipable WIM). */
2846 if (!(write_flags & WIMLIB_WRITE_FLAG_PIPABLE))
2847 wim->out_hdr.flags |= WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2848 ret = write_wim_header(&wim->out_hdr, &wim->out_fd, wim->out_fd.offset);
2849 wim->out_hdr.flags &= ~WIM_HDR_FLAG_WRITE_IN_PROGRESS;
2853 /* Write file data and metadata resources. */
2854 if (!(write_flags & WIMLIB_WRITE_FLAG_PIPABLE)) {
2855 /* Default case: create a normal (non-pipable) WIM. */
2856 ret = write_file_data(wim, image, write_flags,
2863 ret = write_metadata_resources(wim, image, write_flags);
2867 /* Non-default case: create pipable WIM. */
2868 ret = write_pipable_wim(wim, image, write_flags, num_threads,
2875 /* Write blob table, XML data, and (optional) integrity table. */
2876 ret = finish_write(wim, image, write_flags, &blob_table_list);
2878 (void)close_wim_writable(wim, write_flags);
2882 /* Write a standalone WIM to a file or file descriptor. */
2884 write_standalone_wim(WIMStruct *wim, const void *path_or_fd,
2885 int image, int write_flags, unsigned num_threads)
2887 return write_wim_part(wim, path_or_fd, image, write_flags,
2888 num_threads, 1, 1, NULL, NULL);
2891 /* API function documented in wimlib.h */
2893 wimlib_write(WIMStruct *wim, const tchar *path,
2894 int image, int write_flags, unsigned num_threads)
2896 if (write_flags & ~WIMLIB_WRITE_MASK_PUBLIC)
2897 return WIMLIB_ERR_INVALID_PARAM;
2899 if (path == NULL || path[0] == T('\0'))
2900 return WIMLIB_ERR_INVALID_PARAM;
2902 return write_standalone_wim(wim, path, image, write_flags, num_threads);
2905 /* API function documented in wimlib.h */
2907 wimlib_write_to_fd(WIMStruct *wim, int fd,
2908 int image, int write_flags, unsigned num_threads)
2910 if (write_flags & ~WIMLIB_WRITE_MASK_PUBLIC)
2911 return WIMLIB_ERR_INVALID_PARAM;
2914 return WIMLIB_ERR_INVALID_PARAM;
2916 write_flags |= WIMLIB_WRITE_FLAG_FILE_DESCRIPTOR;
2918 return write_standalone_wim(wim, &fd, image, write_flags, num_threads);
2921 /* Have there been any changes to images in the specified WIM, including updates
2922 * as well as deletions and additions of entire images, but excluding changes to
2923 * the XML document? */
2925 any_images_changed(WIMStruct *wim)
2927 if (wim->image_deletion_occurred)
2929 for (int i = 0; i < wim->hdr.image_count; i++)
2930 if (!is_image_unchanged_from_wim(wim->image_metadata[i], wim))
2936 check_resource_offset(struct blob_descriptor *blob, void *_wim)
2938 const WIMStruct *wim = _wim;
2939 off_t end_offset = *(const off_t*)wim->private;
2941 if (blob->blob_location == BLOB_IN_WIM &&
2942 blob->rdesc->wim == wim &&
2943 blob->rdesc->offset_in_wim + blob->rdesc->size_in_wim > end_offset)
2944 return WIMLIB_ERR_RESOURCE_ORDER;
2948 /* Make sure no file or metadata resources are located after the XML data (or
2949 * integrity table if present)--- otherwise we can't safely append to the WIM
2950 * file and we return WIMLIB_ERR_RESOURCE_ORDER. */
2952 check_resource_offsets(WIMStruct *wim, off_t end_offset)
2957 wim->private = &end_offset;
2958 ret = for_blob_in_table(wim->blob_table, check_resource_offset, wim);
2962 for (i = 0; i < wim->hdr.image_count; i++) {
2963 ret = check_resource_offset(wim->image_metadata[i]->metadata_blob, wim);
2971 free_blob_if_invalidated(struct blob_descriptor *blob, void *_wim)
2973 const WIMStruct *wim = _wim;
2975 if (!blob->will_be_in_output_wim &&
2976 blob->blob_location == BLOB_IN_WIM && blob->rdesc->wim == wim)
2978 blob_table_unlink(wim->blob_table, blob);
2979 free_blob_descriptor(blob);
2985 * Overwrite a WIM, possibly appending new resources to it.
2987 * A WIM looks like (or is supposed to look like) the following:
2989 * Header (212 bytes)
2990 * Resources for metadata and files (variable size)
2991 * Blob table (variable size)
2992 * XML data (variable size)
2993 * Integrity table (optional) (variable size)
2995 * If we are not adding any new files or metadata, then the blob table is
2996 * unchanged--- so we only need to overwrite the XML data, integrity table, and
2997 * header. This operation is potentially unsafe if the program is abruptly
2998 * terminated while the XML data or integrity table are being overwritten, but
2999 * before the new header has been written. To partially alleviate this problem,
3000 * we write a temporary header after the XML data has been written. This may
3001 * prevent the WIM from becoming corrupted if the program is terminated while
3002 * the integrity table is being calculated (but no guarantees, due to write
3005 * If we are adding new blobs, including new file data as well as any metadata
3006 * for any new images, then the blob table needs to be changed, and those blobs
3007 * need to be written. In this case, we try to perform a safe update of the WIM
3008 * file by writing the blobs *after* the end of the previous WIM, then writing
3009 * the new blob table, XML data, and (optionally) integrity table following the
3010 * new blobs. This will produce a layout like the following:
3012 * Header (212 bytes)
3013 * (OLD) Resources for metadata and files (variable size)
3014 * (OLD) Blob table (variable size)
3015 * (OLD) XML data (variable size)
3016 * (OLD) Integrity table (optional) (variable size)
3017 * (NEW) Resources for metadata and files (variable size)
3018 * (NEW) Blob table (variable size)
3019 * (NEW) XML data (variable size)
3020 * (NEW) Integrity table (optional) (variable size)
3022 * At all points, the WIM is valid as nothing points to the new data yet. Then,
3023 * the header is overwritten to point to the new blob table, XML data, and
3024 * integrity table, to produce the following layout:
3026 * Header (212 bytes)
3027 * Resources for metadata and files (variable size)
3028 * Nothing (variable size)
3029 * Resources for metadata and files (variable size)
3030 * Blob table (variable size)
3031 * XML data (variable size)
3032 * Integrity table (optional) (variable size)
3034 * This function allows an image to be appended to a large WIM very quickly, and
3035 * is crash-safe except in the case of write re-ordering, but the disadvantage
3036 * is that a small hole is left in the WIM where the old blob table, xml data,
3037 * and integrity table were. (These usually only take up a small amount of
3038 * space compared to the blobs, however.)
3040 * Finally, this function also supports "compaction" overwrites as an
3041 * alternative to the normal "append" overwrites described above. In a
3042 * compaction, data is written starting immediately from the end of the header.
3043 * All existing resources are written first, in order by file offset. New
3044 * resources are written afterwards, and at the end any extra data is truncated
3045 * from the file. The advantage of this approach is that is that the WIM file
3046 * ends up fully optimized, without any holes remaining. The main disadavantage
3047 * is that this operation is fundamentally unsafe and cannot be interrupted
3048 * without data corruption. Consequently, compactions are only ever done when
3049 * explicitly requested by the library user with the flag
3050 * WIMLIB_WRITE_FLAG_UNSAFE_COMPACT. (Another disadvantage is that a compaction
3051 * can be much slower than an append.)
3054 overwrite_wim_inplace(WIMStruct *wim, int write_flags, unsigned num_threads)
3058 struct list_head blob_list;
3059 struct list_head blob_table_list;
3060 struct filter_context filter_ctx;
3062 /* Include an integrity table by default if no preference was given and
3063 * the WIM already had an integrity table. */
3064 if (!(write_flags & (WIMLIB_WRITE_FLAG_CHECK_INTEGRITY |
3065 WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY)))
3066 if (wim_has_integrity_table(wim))
3067 write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
3069 /* Start preparing the updated file header. */
3070 memcpy(&wim->out_hdr, &wim->hdr, sizeof(wim->out_hdr));
3072 /* If using solid compression, the version number must be set to
3073 * WIM_VERSION_SOLID. */
3074 if (write_flags & WIMLIB_WRITE_FLAG_SOLID)
3075 wim->out_hdr.wim_version = WIM_VERSION_SOLID;
3077 /* Default to solid compression if it is valid in the chosen WIM file
3078 * format and the WIMStruct references any solid resources. This is
3079 * useful when updating a solid WIM. */
3080 if (should_default_to_solid_compression(wim, write_flags))
3081 write_flags |= WIMLIB_WRITE_FLAG_SOLID;
3083 if (unlikely(write_flags & WIMLIB_WRITE_FLAG_UNSAFE_COMPACT)) {
3085 /* In-place compaction */
3087 WARNING("The WIM file \"%"TS"\" is being compacted in place.\n"
3088 " Do *not* interrupt the operation, or else "
3089 "the WIM file will be\n"
3090 " corrupted!", wim->filename);
3091 wim->being_compacted = 1;
3092 old_wim_end = WIM_HEADER_DISK_SIZE;
3094 ret = prepare_blob_list_for_write(wim, WIMLIB_ALL_IMAGES,
3095 write_flags, &blob_list,
3096 &blob_table_list, &filter_ctx);
3100 /* Prevent new files from being deduplicated with existing blobs
3101 * in the WIM that we haven't decided to write. Such blobs will
3102 * be overwritten during the compaction. */
3103 for_blob_in_table(wim->blob_table, free_blob_if_invalidated, wim);
3105 if (wim_has_metadata(wim)) {
3106 /* Add existing metadata resources to be compacted along
3107 * with the file resources. */
3108 for (int i = 0; i < wim->hdr.image_count; i++) {
3109 struct wim_image_metadata *imd = wim->image_metadata[i];
3110 if (is_image_unchanged_from_wim(imd, wim)) {
3111 fully_reference_blob_for_write(imd->metadata_blob,
3117 u64 old_blob_table_end, old_xml_begin, old_xml_end;
3119 /* Set additional flags for append. */
3120 write_flags |= WIMLIB_WRITE_FLAG_APPEND |
3121 WIMLIB_WRITE_FLAG_STREAMS_OK;
3123 /* Make sure there is no data after the XML data, except
3124 * possibily an integrity table. If this were the case, then
3125 * this data would be overwritten. */
3126 old_xml_begin = wim->hdr.xml_data_reshdr.offset_in_wim;
3127 old_xml_end = old_xml_begin + wim->hdr.xml_data_reshdr.size_in_wim;
3128 if (wim->hdr.blob_table_reshdr.offset_in_wim == 0)
3129 old_blob_table_end = WIM_HEADER_DISK_SIZE;
3131 old_blob_table_end = wim->hdr.blob_table_reshdr.offset_in_wim +
3132 wim->hdr.blob_table_reshdr.size_in_wim;
3133 if (wim_has_integrity_table(wim) &&
3134 wim->hdr.integrity_table_reshdr.offset_in_wim < old_xml_end) {
3135 WARNING("Didn't expect the integrity table to be "
3136 "before the XML data");
3137 ret = WIMLIB_ERR_RESOURCE_ORDER;
3141 if (old_blob_table_end > old_xml_begin) {
3142 WARNING("Didn't expect the blob table to be after "
3144 ret = WIMLIB_ERR_RESOURCE_ORDER;
3147 /* Set @old_wim_end, which indicates the point beyond which we
3148 * don't allow any file and metadata resources to appear without
3149 * returning WIMLIB_ERR_RESOURCE_ORDER (due to the fact that we
3150 * would otherwise overwrite these resources). */
3151 if (!any_images_changed(wim)) {
3152 /* If no images have been modified, added, or deleted,
3153 * then a new blob table does not need to be written.
3154 * We shall write the new XML data and optional
3155 * integrity table immediately after the blob table.
3156 * Note that this may overwrite an existing integrity
3158 old_wim_end = old_blob_table_end;
3159 write_flags |= WIMLIB_WRITE_FLAG_NO_NEW_BLOBS;
3160 } else if (wim_has_integrity_table(wim)) {
3161 /* Old WIM has an integrity table; begin writing new
3162 * blobs after it. */
3163 old_wim_end = wim->hdr.integrity_table_reshdr.offset_in_wim +
3164 wim->hdr.integrity_table_reshdr.size_in_wim;
3166 /* No existing integrity table; begin writing new blobs
3167 * after the old XML data. */
3168 old_wim_end = old_xml_end;
3171 ret = check_resource_offsets(wim, old_wim_end);
3175 ret = prepare_blob_list_for_write(wim, WIMLIB_ALL_IMAGES,
3176 write_flags, &blob_list,
3177 &blob_table_list, &filter_ctx);
3181 if (write_flags & WIMLIB_WRITE_FLAG_NO_NEW_BLOBS)
3182 wimlib_assert(list_empty(&blob_list));
3185 /* Update image stats if needed. */
3186 ret = update_image_stats(wim);
3190 ret = open_wim_writable(wim, wim->filename, O_RDWR);
3194 ret = lock_wim_for_append(wim);
3198 /* Set WIM_HDR_FLAG_WRITE_IN_PROGRESS flag in header. */
3199 wim->hdr.flags |= WIM_HDR_FLAG_WRITE_IN_PROGRESS;
3200 ret = write_wim_header_flags(wim->hdr.flags, &wim->out_fd);
3201 wim->hdr.flags &= ~WIM_HDR_FLAG_WRITE_IN_PROGRESS;
3203 ERROR_WITH_ERRNO("Error updating WIM header flags");
3204 goto out_unlock_wim;
3207 if (filedes_seek(&wim->out_fd, old_wim_end) == -1) {
3208 ERROR_WITH_ERRNO("Can't seek to end of WIM");
3209 ret = WIMLIB_ERR_WRITE;
3210 goto out_restore_hdr;
3213 ret = write_file_data_blobs(wim, &blob_list, write_flags,
3214 num_threads, &filter_ctx);
3218 ret = write_metadata_resources(wim, WIMLIB_ALL_IMAGES, write_flags);
3222 ret = finish_write(wim, WIMLIB_ALL_IMAGES, write_flags,
3227 unlock_wim_for_append(wim);
3231 if (!(write_flags & (WIMLIB_WRITE_FLAG_NO_NEW_BLOBS |
3232 WIMLIB_WRITE_FLAG_UNSAFE_COMPACT))) {
3233 WARNING("Truncating \"%"TS"\" to its original size "
3234 "(%"PRIu64" bytes)", wim->filename, old_wim_end);
3235 if (ftruncate(wim->out_fd.fd, old_wim_end))
3236 WARNING_WITH_ERRNO("Failed to truncate WIM file!");
3239 (void)write_wim_header_flags(wim->hdr.flags, &wim->out_fd);
3241 unlock_wim_for_append(wim);
3243 (void)close_wim_writable(wim, write_flags);
3245 wim->being_compacted = 0;
3250 overwrite_wim_via_tmpfile(WIMStruct *wim, int write_flags, unsigned num_threads)
3252 size_t wim_name_len;
3255 /* Write the WIM to a temporary file in the same directory as the
3257 wim_name_len = tstrlen(wim->filename);
3258 tchar tmpfile[wim_name_len + 10];
3259 tmemcpy(tmpfile, wim->filename, wim_name_len);
3260 randomize_char_array_with_alnum(tmpfile + wim_name_len, 9);
3261 tmpfile[wim_name_len + 9] = T('\0');
3263 ret = wimlib_write(wim, tmpfile, WIMLIB_ALL_IMAGES,
3265 WIMLIB_WRITE_FLAG_FSYNC |
3266 WIMLIB_WRITE_FLAG_RETAIN_GUID,
3273 if (filedes_valid(&wim->in_fd)) {
3274 filedes_close(&wim->in_fd);
3275 filedes_invalidate(&wim->in_fd);
3278 /* Rename the new WIM file to the original WIM file. Note: on Windows
3279 * this actually calls win32_rename_replacement(), not _wrename(), so
3280 * that removing the existing destination file can be handled. */
3281 ret = trename(tmpfile, wim->filename);
3283 ERROR_WITH_ERRNO("Failed to rename `%"TS"' to `%"TS"'",
3284 tmpfile, wim->filename);
3291 return WIMLIB_ERR_RENAME;
3294 union wimlib_progress_info progress;
3295 progress.rename.from = tmpfile;
3296 progress.rename.to = wim->filename;
3297 return call_progress(wim->progfunc, WIMLIB_PROGRESS_MSG_RENAME,
3298 &progress, wim->progctx);
3301 /* Determine if the specified WIM file may be updated in-place rather than by
3302 * writing and replacing it with an entirely new file. */
3304 can_overwrite_wim_inplace(const WIMStruct *wim, int write_flags)
3306 /* REBUILD flag forces full rebuild. */
3307 if (write_flags & WIMLIB_WRITE_FLAG_REBUILD)
3310 /* Image deletions cause full rebuild by default. */
3311 if (wim->image_deletion_occurred &&
3312 !(write_flags & WIMLIB_WRITE_FLAG_SOFT_DELETE))
3315 /* Pipable WIMs cannot be updated in place, nor can a non-pipable WIM be
3316 * turned into a pipable WIM in-place. */
3317 if (wim_is_pipable(wim) || (write_flags & WIMLIB_WRITE_FLAG_PIPABLE))
3320 /* The default compression type and compression chunk size selected for
3321 * the output WIM must be the same as those currently used for the WIM.
3323 if (wim->compression_type != wim->out_compression_type)
3325 if (wim->chunk_size != wim->out_chunk_size)
3331 /* API function documented in wimlib.h */
3333 wimlib_overwrite(WIMStruct *wim, int write_flags, unsigned num_threads)
3338 if (write_flags & ~WIMLIB_WRITE_MASK_PUBLIC)
3339 return WIMLIB_ERR_INVALID_PARAM;
3342 return WIMLIB_ERR_NO_FILENAME;
3344 if (unlikely(write_flags & WIMLIB_WRITE_FLAG_UNSAFE_COMPACT)) {
3346 * In UNSAFE_COMPACT mode:
3347 * - RECOMPRESS is forbidden
3348 * - REBUILD is ignored
3349 * - SOFT_DELETE and NO_SOLID_SORT are implied
3351 if (write_flags & WIMLIB_WRITE_FLAG_RECOMPRESS)
3352 return WIMLIB_ERR_COMPACTION_NOT_POSSIBLE;
3353 write_flags &= ~WIMLIB_WRITE_FLAG_REBUILD;
3354 write_flags |= WIMLIB_WRITE_FLAG_SOFT_DELETE;
3355 write_flags |= WIMLIB_WRITE_FLAG_NO_SOLID_SORT;
3358 orig_hdr_flags = wim->hdr.flags;
3359 if (write_flags & WIMLIB_WRITE_FLAG_IGNORE_READONLY_FLAG)
3360 wim->hdr.flags &= ~WIM_HDR_FLAG_READONLY;
3361 ret = can_modify_wim(wim);
3362 wim->hdr.flags = orig_hdr_flags;
3366 if (can_overwrite_wim_inplace(wim, write_flags)) {
3367 ret = overwrite_wim_inplace(wim, write_flags, num_threads);
3368 if (ret != WIMLIB_ERR_RESOURCE_ORDER)
3370 WARNING("Falling back to re-building entire WIM");
3372 if (write_flags & WIMLIB_WRITE_FLAG_UNSAFE_COMPACT)
3373 return WIMLIB_ERR_COMPACTION_NOT_POSSIBLE;
3374 return overwrite_wim_via_tmpfile(wim, write_flags, num_threads);