]> wimlib.net Git - wimlib/blob - src/wimlib.h
Improve char encoding support (IN PROGRESS)
[wimlib] / src / wimlib.h
1 /*
2  * wimlib.h
3  *
4  * External header for wimlib.
5  *
6  * This file contains extensive comments for generating documentation with
7  * Doxygen.  The built HTML documentation can be viewed at
8  * http://wimlib.sourceforge.net.
9  */
10
11 /*
12  * Copyright (C) 2012, 2013 Eric Biggers
13  *
14  * This file is part of wimlib, a library for working with WIM files.
15  *
16  * wimlib is free software; you can redistribute it and/or modify it under the
17  * terms of the GNU General Public License as published by the Free
18  * Software Foundation; either version 3 of the License, or (at your option)
19  * any later version.
20  *
21  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
22  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
23  * A PARTICULAR PURPOSE. See the GNU General Public License for more
24  * details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with wimlib; if not, see http://www.gnu.org/licenses/.
28  */
29
30 /** \mainpage
31  *
32  * \section intro Introduction
33  *
34  * This is the documentation for the library interface of wimlib 1.3.0.  If you
35  * have installed wimlib and want to know how to use the @c imagex program,
36  * please see the man pages instead.  Also: the actual project page where you
37  * can download the source code for the library is at <a
38  * href="https://sourceforge.net/projects/wimlib">https://sourceforge.net/projects/wimlib</a>.
39  *
40  * wimlib is a C library to read, write, and mount archive files in the Windows
41  * Imaging Format (WIM files).  These files are normally created using the @c
42  * imagex.exe utility on Windows, but this library provides a free
43  * implementetion of @c imagex for UNIX-based systems and an API to allow other
44  * programs to read, write, and mount WIM files.  wimlib is comparable to
45  * Microsoft's WIMGAPI, but was designed independently and is not a clone of it.
46  *
47  * \section format WIM files
48  *
49  * A <b>Windows Imaging (WIM)</b> file is an archive.  Like some other archive
50  * formats such as ZIP, files in WIM archives may be compressed.  WIM archives
51  * support two Microsoft-specific compression formats:  @b LZX and @b XPRESS.
52  * Both are based on LZ77 and Huffman encoding, and both are supported by
53  * wimlib.
54  *
55  * Unlike ZIP files, WIM files can contain multiple independent toplevel
56  * directory trees known as @a images.  While each image has its own metadata,
57  * files are not duplicated for each image; instead, each file is included only
58  * once in the entire WIM. Microsoft did this so that in one WIM file, they
59  * could do things like have 5 different versions of Windows that are almost
60  * exactly the same.
61  *
62  * Microsoft provides documentation for the WIM file format, XPRESS compression
63  * format, and LZX compression format.  The XPRESS documentation is acceptable,
64  * but the LZX documentation is not entirely correct, and the WIM documentation
65  * itself is incomplete.
66  *
67  * A WIM file may be either stand-alone or split into multiple parts.
68  *
69  * \section ntfs NTFS support
70  *
71  * As of version 1.0.0, wimlib supports capturing and applying images directly
72  * to NTFS volumes.  This was made possible with the help of libntfs-3g from the
73  * NTFS-3g project.  This feature supports capturing and restoring NTFS-specific
74  * data such as security descriptors, alternate data streams, and reparse point
75  * data.
76
77  * The code for NTFS image capture and image application is complete enough that
78  * it is possible to apply an image from the "install.wim" contained in recent
79  * Windows installation media (Vista, Windows 7, or Windows 8) directly to a
80  * NTFS volume, and then boot Windows from it after preparing the Boot
81  * Configuration Data.  In addition, a Windows installation can be captured (or
82  * backed up) into a WIM file, and then re-applied later.
83  *
84  * \section winpe Windows PE
85  *
86  * A major use for this library is to create customized images of Windows PE, the
87  * Windows Preinstallation Environment, without having to rely on Windows.  Windows
88  * PE is a lightweight version of Windows that can run entirely from memory and can
89  * be used to install Windows from local media or a network drive or perform
90  * maintenance.  Windows PE is the operating system that runs when you boot from
91  * the Windows installation media.
92  *
93  * You can find Windows PE on the installation DVD for Windows Vista, Windows 7,
94  * or Windows 8, in the file @c sources/boot.wim.  Windows PE can also be found
95  * in the Windows Automated Installation Kit (WAIK), which is free to download
96  * from Microsoft, inside the @c WinPE.cab file, which you can extract if you
97  * install either the @c cabextract or @c p7zip programs.
98  *
99  * In addition, Windows installations and recovery partitions frequently contain a
100  * WIM containing an image of the Windows Recovery Environment, which is similar to
101  * Windows PE.
102  *
103  * \section starting Getting Started
104  *
105  * wimlib uses the GNU autotools, so it should be easy to install with
106  * <code>configure && make && sudo make install</code>; however, please see the
107  * README for more information about installing it.  To use wimlib in a program
108  * after installing it, include @c wimlib.h and link your program with @c -lwim.
109  *
110  * wimlib wraps up a WIM file in an opaque ::WIMStruct structure.  A ::WIMStruct
111  * may represent either a stand-alone WIM or one part of a split WIM.
112  *
113  * All functions in wimlib's public API are prefixed with @c wimlib.  Most
114  * return an integer error code on failure.  Use wimlib_get_error_string() to
115  * get a string that describes an error code.  wimlib also can print error
116  * messages itself when an error happens, and these may be more informative than
117  * the error code; to enable this, call wimlib_set_print_errors().  Please note
118  * that this is for convenience only, and some errors can occur without a
119  * message being printed.
120  *
121  * wimlib is thread-safe as long as different ::WIMStruct's are used, except for
122  * the following exceptions:
123  * - wimlib_set_print_errors() and wimlib_set_memory_allocator() both apply globally.
124  * - You also must call wimlib_global_init() in the main thread to avoid any
125  *   race conditions with one-time allocations of memory.
126  * - wimlib_mount_image(), while it can be used to mount multiple WIMs
127  *   concurrently in the same process, will daemonize the entire process when it
128  *   does so for the first time.  This includes changing the working directory
129  *   to the root directory.
130  *
131  * To open an existing WIM, use wimlib_open_wim().
132  *
133  * To create a new WIM that initially contains no images, use
134  * wimlib_create_new_wim().
135  *
136  * To add an image to a WIM file from a directory tree on your filesystem, call
137  * wimlib_add_image().  This can be done with a ::WIMStruct gotten from
138  * wimlib_open_wim() or from wimlib_create_new_wim().  wimlib_add_image() can
139  * also capture a WIM image directly from a NTFS volume if you provide the
140  * ::WIMLIB_ADD_IMAGE_FLAG_NTFS flag, provided that wimlib was not compiled with
141  * the <code>--without-ntfs-3g</code> flag.
142  *
143  * To extract an image from a WIM file, call wimlib_extract_image().  You may
144  * extract an image either to a directory or directly to a NTFS volume, the
145  * latter of which will preserve NTFS-specific data such as security
146  * descriptors.
147  *
148  * wimlib supports mounting WIM files either read-only or read-write.  Mounting
149  * is done using wimlib_mount_image() and unmounting is done using
150  * wimlib_unmount_image().  Mounting can be done without root privileges because
151  * it is implemented using FUSE (Filesystem in Userspace).  If wimlib is
152  * compiled with the <code>--without-fuse</code> flag, these functions will be
153  * available but will fail with ::WIMLIB_ERR_UNSUPPORTED.
154  *
155  * After creating or modifying a WIM file, you can write it to a file using
156  * wimlib_write().  Alternatively,  if the WIM was originally read from a file
157  * (using wimlib_open_wim() rather than wimlib_create_new_wim()), you can use
158  * wimlib_overwrite() to overwrite the original file.
159  *
160  * Please note: merely by calling wimlib_add_image() or many of the other
161  * functions in this library that operate on ::WIMStruct's, you are @b not
162  * modifying the WIM file on disk.  Changes are not saved until you explicitly
163  * call wimlib_write() or wimlib_overwrite().
164  *
165  * After you are done with the WIM file, use wimlib_free() to free all memory
166  * associated with a ::WIMStruct and close all files associated with it.
167  *
168  * A number of functions take a pointer to a progress function of type
169  * ::wimlib_progress_func_t.  This function will be called periodically during
170  * the WIM operation(s) to report on the progress of the operation (for example,
171  * how many bytes have been written so far).
172  *
173  * \section imagex imagex
174  *
175  * wimlib comes with a command-line interface, the @b imagex program.  It is
176  * documented with man pages.  See its source code (@c programs/imagex.c in
177  * wimlib's source tree) for an example of how to use wimlib in your program.
178  *
179  * \section mkwinpeimg mkwinpeimg
180  *
181  * wimlib also comes with the <b>mkwinpeimg</b> script, which is documented in a
182  * man page.
183  *
184  * \section Limitations
185  *
186  * While wimlib supports the main features of WIM files, wimlib currently has
187  * the following limitations:
188  * - wimlib cannot be used on MS-Windows.
189  * - There is no way to add, remove, modify, or extract specific files in a WIM
190  *   without mounting it, other than by adding, removing, or extracting an
191  *   entire image.  The FUSE mount feature should be used for this purpose.
192  * - Currently, Microsoft's @a image.exe can create slightly smaller WIM files
193  *   than wimlib when using maximum (LZX) compression because it knows how to
194  *   split up LZX compressed blocks, which is not yet implemented in wimlib.
195  * - wimlib is experimental and likely contains bugs; use Microsoft's @a
196  *   imagex.exe if you want to make sure your WIM files are made "correctly".
197  * - The old WIM format from Vista pre-releases is not supported.
198  * - Compressed resource chunk sizes other than 32768 are not supported,
199  *   although this doesn't seem to be a problem because the chunk size always
200  *   seems to be this value.
201  * - wimlib does not provide a clone of the @b PEImg tool that allows you to
202  *   make certain Windows-specific modifications to a Windows PE image, such as
203  *   adding a driver or Windows component.  Such a tool could conceivably be
204  *   implemented on top of wimlib, although it likely would be hard to implement
205  *   because it would have to do very Windows-specific things such as
206  *   manipulating the driver store.  wimlib does provide the @b mkwinpeimg
207  *   script for a similar purpose, however.  With regards to adding drivers to
208  *   Windows PE, you have the option of putting them anywhere in the Windows PE
209  *   image, then loading them after boot using @b drvload.exe.
210  *
211  * \section legal License
212  *
213  * The wimlib library, as well as the programs and scripts distributed with it
214  * (@b imagex and @b mkwinpeimg), is licensed under the GNU General Public
215  * License version 3 or later.
216  */
217
218 #ifndef _WIMLIB_H
219 #define _WIMLIB_H
220
221 #include <stdio.h>
222 #include <stddef.h>
223 #include <stdbool.h>
224 #include <inttypes.h>
225
226 /** Major version of the library (for example, the 1 in 1.2.5). */
227 #define WIMLIB_MAJOR_VERSION 1
228
229 /** Minor version of the library (for example, the 2 in 1.2.5). */
230 #define WIMLIB_MINOR_VERSION 3
231
232 /** Patch version of the library (for example, the 5 in 1.2.5). */
233 #define WIMLIB_PATCH_VERSION 0
234
235 /**
236  * Opaque structure that represents a WIM file.  This is an in-memory structure
237  * and need not correspond to a specific on-disk file.  However, a ::WIMStruct
238  * obtained from wimlib_open_wim() depends on the underlying on-disk WIM file
239  * continuing to exist so that data can be read from it as needed.
240  *
241  * Most functions in this library will work the same way regardless of whether a
242  * given ::WIMStruct was obtained through wimlib_open_wim() or
243  * wimlib_create_new_wim().  Exceptions are documented.
244  *
245  * Use wimlib_write() or wimlib_overwrite() to actually write an on-disk WIM
246  * file from a ::WIMStruct.
247  */
248 typedef struct WIMStruct WIMStruct;
249
250 typedef char wimlib_mbchar;
251 typedef char wimlib_utf8char;
252
253 /**
254  * Specifies the compression type of a WIM file.
255  */
256 enum wimlib_compression_type {
257         /** An invalid compression type. */
258         WIMLIB_COMPRESSION_TYPE_INVALID = -1,
259
260         /** The WIM does not include any compressed resources. */
261         WIMLIB_COMPRESSION_TYPE_NONE = 0,
262
263         /** Compressed resources in the WIM use LZX compression. */
264         WIMLIB_COMPRESSION_TYPE_LZX = 1,
265
266         /** Compressed resources in the WIM use XPRESS compression. */
267         WIMLIB_COMPRESSION_TYPE_XPRESS = 2,
268 };
269
270 /** Possible values of the first parameter to the user-supplied
271  * ::wimlib_progress_func_t progress function */
272 enum wimlib_progress_msg {
273
274         /** A WIM image is about to be extracted.  @a info will point to
275          * ::wimlib_progress_info.extract. */
276         WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN,
277
278         /** The directory structure of the WIM image is about to be extracted.
279          * @a info will point to ::wimlib_progress_info.extract. */
280         WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_BEGIN,
281
282         /** The directory structure of the WIM image has been successfully
283          * extracted.  @a info will point to ::wimlib_progress_info.extract. */
284         WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_END,
285
286         /** The WIM image's files resources are currently being extracted.  @a
287          * info will point to ::wimlib_progress_info.extract. */
288         WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS,
289
290         /** A file or directory is being extracted.  @a info will point to
291          * ::wimlib_progress_info.extract, and the @a cur_path member will be
292          * valid. */
293         WIMLIB_PROGRESS_MSG_EXTRACT_DENTRY,
294
295         /** All the WIM files and directories have been extracted, and
296          * timestamps are about to be applied.  @a info will point to
297          * ::wimlib_progress_info.extract. */
298         WIMLIB_PROGRESS_MSG_APPLY_TIMESTAMPS,
299
300         /** A WIM image has been successfully extracted.  @a info will point to
301          * ::wimlib_progress_info.extract. */
302         WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END,
303
304         /** The directory or NTFS volume is about to be scanned to build a tree
305          * of WIM dentries in-memory.  @a info will point to
306          * ::wimlib_progress_info.scan. */
307         WIMLIB_PROGRESS_MSG_SCAN_BEGIN,
308
309         /** A directory or file is being scanned.  @a info will point to
310          * ::wimlib_progress_info.scan, and its @a cur_path member will be
311          * valid.  This message is only sent if ::WIMLIB_ADD_IMAGE_FLAG_VERBOSE
312          * is passed to wimlib_add_image(). */
313         WIMLIB_PROGRESS_MSG_SCAN_DENTRY,
314
315         /** The directory or NTFS volume has been successfully scanned, and a
316          * tree of WIM dentries has been built in-memory. @a info will point to
317          * ::wimlib_progress_info.scan. */
318         WIMLIB_PROGRESS_MSG_SCAN_END,
319
320         /**
321          * File resources are currently being written to the WIM.
322          * @a info will point to ::wimlib_progress_info.write_streams. */
323         WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
324
325         /**
326          * The metadata resource for each image is about to be written to the
327          * WIM. @a info will not be valid. */
328         WIMLIB_PROGRESS_MSG_WRITE_METADATA_BEGIN,
329
330         /**
331          * The metadata resource for each image has successfully been writen to
332          * the WIM.  @a info will not be valid. */
333         WIMLIB_PROGRESS_MSG_WRITE_METADATA_END,
334
335         /**
336          * The temporary file has successfully been renamed to the original WIM
337          * file.  Only happens when wimlib_overwrite() is called and the
338          * overwrite is not done in-place.
339          * @a info will point to ::wimlib_progress_info.rename. */
340         WIMLIB_PROGRESS_MSG_RENAME,
341
342         /** The contents of the WIM are being checked against the integrity
343          * table.  Only happens when wimlib_open_wim() is called with the
344          * ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY flag.  @a info will point to
345          * ::wimlib_progress_info.integrity. */
346         WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY,
347
348         /** An integrity table is being calculated for the WIM being written.
349          * Only happens when wimlib_write() or wimlib_overwrite() is called with
350          * the ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY flag.  @a info will point to
351          * ::wimlib_progress_info.integrity. */
352         WIMLIB_PROGRESS_MSG_CALC_INTEGRITY,
353
354         /** A wimlib_join() operation is in progress.  @a info will point to
355          * ::wimlib_progress_info.join. */
356         WIMLIB_PROGRESS_MSG_JOIN_STREAMS,
357
358         /** A wimlib_split() operation is in progress, and a new split part is
359          * about to be started.  @a info will point to
360          * ::wimlib_progress_info.split. */
361         WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART,
362
363         /** A wimlib_split() operation is in progress, and a split part has been
364          * finished. @a info will point to ::wimlib_progress_info.split. */
365         WIMLIB_PROGRESS_MSG_SPLIT_END_PART,
366 };
367
368 /** A pointer to this union is passed to the user-supplied
369  * ::wimlib_progress_func_t progress function.  One (or none) of the structures
370  * contained in this union will be applicable for the operation
371  * (::wimlib_progress_msg) indicated in the first argument to the progress
372  * function. */
373 union wimlib_progress_info {
374
375         /* N.B. I wanted these to be anonymous structs, but Doxygen won't
376          * document them if they aren't given a name... */
377
378         /** Valid on messages ::WIMLIB_PROGRESS_MSG_WRITE_STREAMS. */
379         struct wimlib_progress_info_write_streams {
380                 /** Number of bytes that are going to be written for all the
381                  * streams combined.  This is the amount in uncompressed data.
382                  * (The actual number of bytes will be less if the data is being
383                  * written compressed.) */
384                 uint64_t total_bytes;
385                 /** Number of streams that are going to be written. */
386                 uint64_t total_streams;
387
388                 /** Number of uncompressed bytes that have been written so far.
389                  * Will be 0 initially, and equal to @a total_bytes at the end.
390                  * */
391                 uint64_t completed_bytes;
392
393                 /** Number of streams that have been written.  Will be 0
394                  * initially, and equal to @a total_streams at the end. */
395                 uint64_t completed_streams;
396
397                 /** Number of threads that are being used to compress resources
398                  * (if applicable). */
399                 unsigned num_threads;
400
401                 /** The compression type being used to write the streams; either
402                  * ::WIMLIB_COMPRESSION_TYPE_NONE,
403                  * ::WIMLIB_COMPRESSION_TYPE_XPRESS, or
404                  * ::WIMLIB_COMPRESSION_TYPE_LZX. */
405                 int      compression_type;
406         } write_streams;
407
408         /** Valid on messages ::WIMLIB_PROGRESS_MSG_SCAN_BEGIN and
409          * ::WIMLIB_PROGRESS_MSG_SCAN_END. */
410         struct wimlib_progress_info_scan {
411                 /** Directory or NTFS volume that is being scanned. */
412                 const wimlib_mbchar *source;
413
414                 /** Path to the file or directory that is about to be scanned,
415                  * relative to the root of the image capture or the NTFS volume.
416                  * */
417                 const wimlib_mbchar *cur_path;
418
419                 /** True iff @a cur_path is being excluded from the image
420                  * capture due to the capture configuration file. */
421                 bool excluded;
422
423                 /** Target path in the WIM.  Only valid on messages
424                  * ::WIMLIB_PROGRESS_MSG_SCAN_BEGIN and
425                  * ::WIMLIB_PROGRESS_MSG_SCAN_END. */
426                 const wimlib_mbchar *wim_target_path;
427         } scan;
428
429         /** Valid on messages ::WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN,
430          * ::WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_BEGIN,
431          * ::WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_END,
432          * ::WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS, and
433          * ::WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END. */
434         struct wimlib_progress_info_extract {
435                 /** Number of the image being extracted (1-based). */
436                 int image;
437
438                 /** Flags passed to to wimlib_extract_image() */
439                 int extract_flags;
440
441                 /** Full path to the WIM file being extracted. */
442                 const wimlib_mbchar *wimfile_name;
443
444                 /** Name of the image being extracted. */
445                 const wimlib_utf8char *image_name;
446
447                 /** Directory or NTFS volume to which the image is being
448                  * extracted. */
449                 const wimlib_mbchar *target;
450
451                 /** Current dentry being extracted.  (Valid only if message is
452                  * ::WIMLIB_PROGRESS_MSG_EXTRACT_DENTRY.) */
453                 const wimlib_mbchar *cur_path;
454
455                 /** Number of bytes of uncompressed data that will be extracted.
456                  * Takes into account hard links (they are not counted for each
457                  * link.)
458                  * */
459                 uint64_t total_bytes;
460
461                 /** Number of bytes that have been written so far.  Will be 0
462                  * initially, and equal to @a total_bytes at the end. */
463                 uint64_t completed_bytes;
464
465                 /** Number of streams that will be extracted.  This may more or
466                  * less than the number of "files" to be extracted due to
467                  * special cases (hard links, symbolic links, and alternate data
468                  * streams.) */
469                 uint64_t num_streams;
470         } extract;
471
472         /** Valid on messages ::WIMLIB_PROGRESS_MSG_RENAME. */
473         struct wimlib_progress_info_rename {
474                 /** Name of the temporary file that the WIM was written to. */
475                 const wimlib_mbchar *from;
476
477                 /** Name of the original WIM file to which the temporary file is
478                  * being renamed. */
479                 const wimlib_mbchar *to;
480         } rename;
481
482         /** Valid on messages ::WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY and
483          * ::WIMLIB_PROGRESS_MSG_CALC_INTEGRITY. */
484         struct wimlib_progress_info_integrity {
485                 /** Number of bytes from the end of the WIM header to the end of
486                  * the lookup table (the area that is covered by the SHA1
487                  * integrity checks.) */
488                 uint64_t total_bytes;
489
490                 /** Number of bytes that have been SHA1-summed so far.  Will be
491                  * 0 initially, and equal @a total_bytes at the end. */
492                 uint64_t completed_bytes;
493
494                 /** Number of chunks that the checksummed region is divided
495                  * into. */
496                 uint32_t total_chunks;
497
498                 /** Number of chunks that have been SHA1-summed so far.   Will
499                  * be 0 initially, and equal to @a total_chunks at the end. */
500                 uint32_t completed_chunks;
501
502                 /** Size of the chunks used for the integrity calculation. */
503                 uint32_t chunk_size;
504
505                 /** Filename of the WIM (only valid if the message is
506                  * ::WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY). */
507                 const wimlib_mbchar *filename;
508         } integrity;
509
510         /** Valid on messages ::WIMLIB_PROGRESS_MSG_JOIN_STREAMS. */
511         struct wimlib_progress_info_join {
512                 /** Total number of bytes of compressed data contained in all
513                  * the split WIM part's file and metadata resources. */
514                 uint64_t total_bytes;
515
516                 /** Number of bytes that have been copied to the joined WIM so
517                  * far.  Will be 0 initially, and equal to @a total_bytes at the
518                  * end. */
519                 uint64_t completed_bytes;
520
521                 /** Number of split WIM parts that have had all their file and
522                  * metadata resources copied over to the joined WIM so far. */
523                 unsigned completed_parts;
524
525                 /** Number of split WIM parts. */
526                 unsigned total_parts;
527         } join;
528
529         /** Valid on messages ::WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART and
530          * ::WIMLIB_PROGRESS_MSG_SPLIT_END_PART. */
531         struct wimlib_progress_info_split {
532                 /** Total size of the original WIM's file and metadata resources
533                  * (compressed). */
534                 uint64_t total_bytes;
535
536                 /** Number of bytes of file and metadata resources that have
537                  * been copied out of the original WIM so far.  Will be 0
538                  * initially, and equal to @a total_bytes at the end. */
539                 uint64_t completed_bytes;
540
541                 /** Number of the split WIM part that is about to be started
542                  * (::WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART) or has just been
543                  * finished (::WIMLIB_PROGRESS_MSG_SPLIT_END_PART). */
544                 unsigned cur_part_number;
545
546                 /** Name of the split WIM part that is about to be started
547                  * (::WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART) or has just been
548                  * finished (::WIMLIB_PROGRESS_MSG_SPLIT_END_PART). */
549                 const wimlib_mbchar *part_name;
550         } split;
551 };
552
553 /** A user-supplied function that will be called periodically during certain WIM
554  * operations.  The first argument will be the type of operation that is being
555  * performed or is about to be started or has been completed.  The second
556  * argument will be a pointer to one of a number of structures depending on the
557  * first argument.  It may be @c NULL for some message types.
558  *
559  * The return value of the progress function is currently ignored, but it may do
560  * something in the future.  (Set it to 0 for now.)
561  */
562 typedef int (*wimlib_progress_func_t)(enum wimlib_progress_msg msg_type,
563                                       const union wimlib_progress_info *info);
564
565 /** An array of these structures is passed to wimlib_add_image_multisource() to
566  * specify the sources from which to create a WIM image. */
567 struct wimlib_capture_source {
568         /** Absolute or relative path to a file or directory on the external
569          * filesystem to be included in the WIM image. */
570         wimlib_mbchar *fs_source_path;
571
572         /** Destination path in the WIM image.  Leading and trailing slashes are
573          * ignored.  The empty string or @c NULL means the root directory of the
574          * WIM image. */
575         wimlib_mbchar *wim_target_path;
576
577         /** Reserved; set to 0. */
578         long reserved;
579 };
580
581
582 /*****************************
583  * WIMLIB_ADD_IMAGE_FLAG_*   *
584  *****************************/
585
586 /** Directly capture a NTFS volume rather than a generic directory.  This flag
587  * cannot be combined with ::WIMLIB_ADD_IMAGE_FLAG_DEREFERENCE or
588  * ::WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA.   */
589 #define WIMLIB_ADD_IMAGE_FLAG_NTFS                      0x00000001
590
591 /** Follow symlinks; archive and dump the files they point to.  Cannot be used
592  * with ::WIMLIB_ADD_IMAGE_FLAG_NTFS. */
593 #define WIMLIB_ADD_IMAGE_FLAG_DEREFERENCE               0x00000002
594
595 /** Call the progress function with the message
596  * ::WIMLIB_PROGRESS_MSG_SCAN_DENTRY when each directory or file is starting to
597  * be scanned. */
598 #define WIMLIB_ADD_IMAGE_FLAG_VERBOSE                   0x00000004
599
600 /** Mark the image being added as the bootable image of the WIM. */
601 #define WIMLIB_ADD_IMAGE_FLAG_BOOT                      0x00000008
602
603 /** Store the UNIX owner, group, and mode.  This is done by adding a special
604  * alternate data stream to each regular file, symbolic link, and directory to
605  * contain this information.  Please note that this flag is for convenience
606  * only; Microsoft's version of imagex.exe will not understand this special
607  * information.  This flag cannot be combined with ::WIMLIB_ADD_IMAGE_FLAG_NTFS.
608  * */
609 #define WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA                 0x00000010
610
611 /******************************
612  * WIMLIB_EXPORT_FLAG_* *
613  ******************************/
614
615 /** See documentation for wimlib_export_image(). */
616 #define WIMLIB_EXPORT_FLAG_BOOT                         0x00000001
617
618 /******************************
619  * WIMLIB_EXTRACT_FLAG_*      *
620  ******************************/
621
622 /** Extract the image directly to a NTFS volume rather than a generic directory.
623  * */
624 #define WIMLIB_EXTRACT_FLAG_NTFS                        0x00000001
625
626 /** When identical files are extracted from the WIM, always hard link them
627  * together.  Cannot be used with ::WIMLIB_EXTRACT_FLAG_NTFS. */
628 #define WIMLIB_EXTRACT_FLAG_HARDLINK                    0x00000002
629
630 /** When identical files are extracted from the WIM, always symlink them
631  * together.  Cannot be used with ::WIMLIB_EXTRACT_FLAG_NTFS. */
632 #define WIMLIB_EXTRACT_FLAG_SYMLINK                     0x00000004
633
634 /** Call the progress function with the argument
635  * ::WIMLIB_PROGRESS_MSG_EXTRACT_DENTRY each time a file or directory is
636  * extracted.  Note: these calls will be interspersed with calls for the message
637  * ::WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS. */
638 #define WIMLIB_EXTRACT_FLAG_VERBOSE                     0x00000008
639
640 /** Read the WIM file sequentially while extracting the image. */
641 #define WIMLIB_EXTRACT_FLAG_SEQUENTIAL                  0x00000010
642
643 /** Extract special UNIX data captured with ::WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA.
644  * Cannot be used with ::WIMLIB_EXTRACT_FLAG_NTFS. */
645 #define WIMLIB_EXTRACT_FLAG_UNIX_DATA                   0x00000020
646
647 /******************************
648  * WIMLIB_MOUNT_FLAG_*        *
649  ******************************/
650
651 /** Mount the WIM image read-write rather than the default of read-only. */
652 #define WIMLIB_MOUNT_FLAG_READWRITE                     0x00000001
653
654 /** Enable FUSE debugging by passing the @c -d flag to @c fuse_main().*/
655 #define WIMLIB_MOUNT_FLAG_DEBUG                         0x00000002
656
657 /** Do not allow accessing alternate data streams in the mounted WIM image. */
658 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE         0x00000004
659
660 /** Access alternate data streams in the mounted WIM image through extended file
661  * attributes.  This is the default mode. */
662 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR        0x00000008
663
664 /** Access alternate data streams in the mounted WIM image by specifying the
665  * file name, a colon, then the alternate file stream name. */
666 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS      0x00000010
667
668 /** Use UNIX file owners, groups, and modes if available in the WIM (see
669  * ::WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA). */
670 #define WIMLIB_MOUNT_FLAG_UNIX_DATA                     0x00000020
671
672 /** Allow other users to see the mounted filesystem.  (this passes the @c
673  * allow_other option to FUSE mount) */
674 #define WIMLIB_MOUNT_FLAG_ALLOW_OTHER                   0x00000040
675
676 /******************************
677  * WIMLIB_OPEN_FLAG_*         *
678  ******************************/
679
680 /** Verify the WIM contents against the WIM's integrity table, if present. */
681 #define WIMLIB_OPEN_FLAG_CHECK_INTEGRITY                0x00000001
682
683 /** Do not issue an error if the WIM is part of a split WIM. */
684 #define WIMLIB_OPEN_FLAG_SPLIT_OK                       0x00000002
685
686 /******************************
687  * WIMLIB_UNMOUNT_FLAG_*      *
688  ******************************/
689
690 /** Include an integrity table in the WIM after it's been unmounted.  Ignored
691  * for read-only mounts. */
692 #define WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY             0x00000001
693
694 /** Unless this flag is given, changes to a read-write mounted WIM are
695  * discarded.  Ignored for read-only mounts. */
696 #define WIMLIB_UNMOUNT_FLAG_COMMIT                      0x00000002
697
698 /** See ::WIMLIB_WRITE_FLAG_REBUILD */
699 #define WIMLIB_UNMOUNT_FLAG_REBUILD                     0x00000004
700
701 /** See ::WIMLIB_WRITE_FLAG_RECOMPRESS */
702 #define WIMLIB_UNMOUNT_FLAG_RECOMPRESS                  0x00000008
703
704 /******************************
705  * WIMLIB_WRITE_FLAG_*        *
706  ******************************/
707
708 /** Include an integrity table in the new WIM file. */
709 #define WIMLIB_WRITE_FLAG_CHECK_INTEGRITY               0x00000001
710
711 /** Re-build the entire WIM file rather than appending data to it, if possible.
712  * (Applies to wimlib_overwrite(), not wimlib_write()). */
713 #define WIMLIB_WRITE_FLAG_REBUILD                       0x00000002
714
715 /** Recompress all resources, even if they could otherwise be copied from a
716  * different WIM with the same compression type (in the case of
717  * wimlib_export_image() being called previously). */
718 #define WIMLIB_WRITE_FLAG_RECOMPRESS                    0x00000004
719
720 /** Call fsync() when the WIM file is closed */
721 #define WIMLIB_WRITE_FLAG_FSYNC                         0x00000008
722
723 /* Specifying this flag overrides the default behavior of wimlib_overwrite()
724  * after one or more calls to wimlib_delete_image(), which is to rebuild the
725  * entire WIM.
726  *
727  * If you specifiy this flag to wimlib_overwrite(), only minimal changes to
728  * correctly remove the image from the WIM will be taken.  In particular, all
729  * streams will be left alone, even if they are no longer referenced.  This is
730  * probably not what you want, because almost no space will be spaced by
731  * deleting an image in this way. */
732 #define WIMLIB_WRITE_FLAG_SOFT_DELETE                   0x00000010
733
734 /**
735  * Possible values of the error code returned by many functions in wimlib.
736  *
737  * See the documentation for each wimlib function to see specifically what error
738  * codes can be returned by a given function, and what they mean.
739  */
740 /* Note: these are currently in alphabetic order, but new error codes should be
741  * added at the end to maintain a compatible ABI, except when it's being broken
742  * anyway. */
743 enum wimlib_error_code {
744         WIMLIB_ERR_SUCCESS = 0,
745         WIMLIB_ERR_ALREADY_LOCKED,
746         WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE,
747         WIMLIB_ERR_DECOMPRESSION,
748         WIMLIB_ERR_DELETE_STAGING_DIR,
749         WIMLIB_ERR_FILESYSTEM_DAEMON_CRASHED,
750         WIMLIB_ERR_FORK,
751         WIMLIB_ERR_FUSE,
752         WIMLIB_ERR_FUSERMOUNT,
753         WIMLIB_ERR_ICONV_NOT_AVAILABLE,
754         WIMLIB_ERR_IMAGE_COUNT,
755         WIMLIB_ERR_IMAGE_NAME_COLLISION,
756         WIMLIB_ERR_INTEGRITY,
757         WIMLIB_ERR_INVALID_CAPTURE_CONFIG,
758         WIMLIB_ERR_INVALID_CHUNK_SIZE,
759         WIMLIB_ERR_INVALID_COMPRESSION_TYPE,
760         WIMLIB_ERR_INVALID_DENTRY,
761         WIMLIB_ERR_INVALID_HEADER_SIZE,
762         WIMLIB_ERR_INVALID_IMAGE,
763         WIMLIB_ERR_INVALID_INTEGRITY_TABLE,
764         WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY,
765         WIMLIB_ERR_INVALID_PARAM,
766         WIMLIB_ERR_INVALID_PART_NUMBER,
767         WIMLIB_ERR_INVALID_RESOURCE_HASH,
768         WIMLIB_ERR_INVALID_RESOURCE_SIZE,
769         WIMLIB_ERR_INVALID_SECURITY_DATA,
770         WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE,
771         WIMLIB_ERR_INVALID_UTF8_STRING,
772         WIMLIB_ERR_INVALID_UTF16_STRING,
773         WIMLIB_ERR_LIBXML_UTF16_HANDLER_NOT_AVAILABLE,
774         WIMLIB_ERR_LINK,
775         WIMLIB_ERR_MKDIR,
776         WIMLIB_ERR_MQUEUE,
777         WIMLIB_ERR_NOMEM,
778         WIMLIB_ERR_NOTDIR,
779         WIMLIB_ERR_NOT_A_WIM_FILE,
780         WIMLIB_ERR_NO_FILENAME,
781         WIMLIB_ERR_NTFS_3G,
782         WIMLIB_ERR_OPEN,
783         WIMLIB_ERR_OPENDIR,
784         WIMLIB_ERR_READLINK,
785         WIMLIB_ERR_READ,
786         WIMLIB_ERR_RENAME,
787         WIMLIB_ERR_REOPEN,
788         WIMLIB_ERR_RESOURCE_ORDER,
789         WIMLIB_ERR_SPECIAL_FILE,
790         WIMLIB_ERR_SPLIT_INVALID,
791         WIMLIB_ERR_SPLIT_UNSUPPORTED,
792         WIMLIB_ERR_STAT,
793         WIMLIB_ERR_TIMEOUT,
794         WIMLIB_ERR_UNKNOWN_VERSION,
795         WIMLIB_ERR_UNSUPPORTED,
796         WIMLIB_ERR_WRITE,
797         WIMLIB_ERR_XML,
798         WIMLIB_ERR_INVALID_OVERLAY,
799         WIMLIB_ERR_INVALID_MULTIBYTE_STRING,
800         WIMLIB_ERR_UNICODE_STRING_NOT_REPRESENTABLE,
801 };
802
803
804 /** Used to indicate that no WIM image or an invalid WIM image. */
805 #define WIMLIB_NO_IMAGE         0
806
807 /** Used to specify all images in the WIM. */
808 #define WIMLIB_ALL_IMAGES       (-1)
809
810 /**
811  * Adds an image to a WIM file from an on-disk directory tree or NTFS volume.
812  *
813  * The directory tree of NTFS volume is read immediately for the purpose of
814  * constructing a directory entry tree in-memory.  Also, all files are read to
815  * calculate their SHA1 message digests.  However, because the directory tree
816  * may contain a very large amount of data, the files themselves are not read
817  * into memory permanently, and instead references to their paths saved.  The
818  * files are then read on-demand if wimlib_write() or wimlib_overwrite() is
819  * called.
820  *
821  * See the manual page for the @c imagex program for more information about the
822  * "normal" capture mode versus the NTFS capture mode (entered by providing the
823  * flag ::WIMLIB_ADD_IMAGE_FLAG_NTFS).
824  *
825  * Note that @b no changes are committed to the underlying WIM file (if
826  * any) until wimlib_write() or wimlib_overwrite() is called.
827  *
828  * @param wim
829  *      Pointer to the ::WIMStruct for a WIM file to which the image will be
830  *      added.
831  * @param source
832  *      A path to a directory or unmounted NTFS volume that will be captured as
833  *      a WIM image.
834  * @param name
835  *      The name to give the image.  This must be non-@c NULL.
836  * @param config
837  *      Pointer to the contents of an image capture configuration file.  If @c
838  *      NULL, a default string is used.  Please see the manual page for
839  *      <b>imagex capture</b> for more information.
840  * @param config_len
841  *      Length of the string @a config in bytes, not including an optional
842  *      null-terminator.  Ignored if @a config is @c NULL.
843  * @param add_image_flags
844  *      Bitwise OR of flags prefixed with WIMLIB_ADD_IMAGE_FLAG.
845  * @param progress_func
846  *      If non-NULL, a function that will be called periodically with the
847  *      progress of the current operation.
848  *
849  * @return 0 on success; nonzero on error.  On error, changes to @a wim are
850  * discarded so that it appears to be in the same state as when this function
851  * was called.
852  *
853  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
854  *      There is already an image named @a name in @a wim.
855  * @retval ::WIMLIB_ERR_INVALID_CAPTURE_CONFIG
856  *      @a config was not @c NULL and did not specify a valid image capture
857  *      configuration.
858  * @retval ::WIMLIB_ERR_INVALID_PARAM
859  *      @a dir was @c NULL, @a name was @c NULL, or @a name was the empty string.
860  * @retval ::WIMLIB_ERR_NOMEM
861  *      Failed to allocate needed memory.
862  * @retval ::WIMLIB_ERR_NOTDIR
863  *      @a source is not a directory (only if ::WIMLIB_ADD_IMAGE_FLAG_NTFS was
864  *      not specified in @a add_image_flags).
865  * @retval ::WIMLIB_ERR_NTFS_3G
866  *      An error was returned from a libntfs-3g function when the NTFS volume
867  *      was being opened, scanned, or closed (only if
868  *      ::WIMLIB_ADD_IMAGE_FLAG_NTFS was specified in @a add_image_flags).
869  * @retval ::WIMLIB_ERR_OPEN
870  *      Failed to open a file or directory in the directory tree rooted at @a
871  *      source (only if ::WIMLIB_ADD_IMAGE_FLAG_NTFS was not specified in @a
872  *      add_image_flags).
873  * @retval ::WIMLIB_ERR_READ
874  *      Failed to read a file in the directory tree rooted at @a source (only if
875  *      ::WIMLIB_ADD_IMAGE_FLAG_NTFS was not specified in @a add_image_flags).
876  * @retval ::WIMLIB_ERR_SPECIAL_FILE
877  *      The directory tree rooted at @a source contains a special file that is
878  *      not a directory, regular file, or symbolic link.  This currently can
879  *      only be returned if ::WIMLIB_ADD_IMAGE_FLAG_NTFS was not specified in @a
880  *      add_image_flags, but it may be returned for unsupported NTFS files in
881  *      the future.
882  * @retval ::WIMLIB_ERR_STAT
883  *      Failed obtain the metadata for a file or directory in the directory tree
884  *      rooted at @a source (only if ::WIMLIB_ADD_IMAGE_FLAG_NTFS was not
885  *      specified in @a add_image_flags).
886  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
887  *      @a wim is part of a split WIM.  Adding an image to a split WIM is
888  *      unsupported.
889  * @retval ::WIMLIB_ERR_UNSUPPORTED
890  *      ::WIMLIB_ADD_IMAGE_FLAG_NTFS was specified in @a add_image_flags, but
891  *      wimlib was configured with the @c --without-ntfs-3g flag.
892  */
893 extern int
894 wimlib_add_image(WIMStruct *wim, const wimlib_mbchar *source,
895                  const wimlib_utf8char *name,
896                  const wimlib_mbchar *config,
897                  size_t config_len, int add_image_flags,
898                  wimlib_progress_func_t progress_func);
899
900 /** This function is equivalent to wimlib_add_image() except it allows for
901  * multiple sources to be combined into a single WIM image.  This is done by
902  * specifying the @a sources and @a num_sources parameters instead of the @a
903  * source parameter of wimlib_add_image().  The rest of the parameters are the
904  * same as wimlib_add_image().  See the documentation for <b>imagex capture</b>
905  * for full details on how this mode works.
906  *
907  * Additional note:  @a sources is not a @c const parameter and you cannot
908  * assume that its contents are valid after this function returns.  You must
909  * save pointers to the strings in these structures if you need to free them
910  * later, and/or save copies if needed.
911  *
912  * In addition to the error codes that wimlib_add_image() can return,
913  * wimlib_add_image_multisource() can return ::WIMLIB_ERR_INVALID_OVERLAY
914  * when trying to overlay a non-directory on a directory or when otherwise
915  * trying to overlay multiple conflicting files to the same location in the WIM
916  * image.  It will also return ::WIMLIB_ERR_INVALID_PARAM if
917  * ::WIMLIB_ADD_IMAGE_FLAG_NTFS was specified in @a add_image_flags but there
918  * was not exactly one capture source with the target being the root directory.
919  * (In this respect, there is no advantage to using
920  * wimlib_add_image_multisource() instead of wimlib_add_image() when requesting
921  * NTFS mode.) */
922 extern int
923 wimlib_add_image_multisource(WIMStruct *w,
924                              struct wimlib_capture_source *sources,
925                              size_t num_sources,
926                              const wimlib_utf8char *name,
927                              const wimlib_mbchar *config_str,
928                              size_t config_len,
929                              int add_image_flags,
930                              wimlib_progress_func_t progress_func);
931
932 /**
933  * Creates a ::WIMStruct for a new WIM file.
934  *
935  * This only creates an in-memory structure for a WIM that initially contains no
936  * images.  No on-disk file is created until wimlib_write() is called.
937  *
938  * @param ctype
939  *      The type of compression to be used in the new WIM file.  Must be
940  *      ::WIMLIB_COMPRESSION_TYPE_NONE, ::WIMLIB_COMPRESSION_TYPE_LZX, or
941  *      ::WIMLIB_COMPRESSION_TYPE_XPRESS.
942  * @param wim_ret
943  *      On success, a pointer to an opaque ::WIMStruct for the new WIM file is
944  *      written to the memory location pointed to by this paramater.  The
945  *      ::WIMStruct must be freed using using wimlib_free() when finished with
946  *      it.
947  * @return 0 on success; nonzero on error.
948  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
949  *      @a ctype was not ::WIMLIB_COMPRESSION_TYPE_NONE,
950  *      ::WIMLIB_COMPRESSION_TYPE_LZX, or ::WIMLIB_COMPRESSION_TYPE_XPRESS.
951  * @retval ::WIMLIB_ERR_NOMEM
952  *      Failed to allocate needed memory.
953  */
954 extern int
955 wimlib_create_new_wim(int ctype, WIMStruct **wim_ret);
956
957 /**
958  * Deletes an image, or all images, from a WIM file.
959  *
960  * All streams referenced by the image(s) being deleted are removed from the
961  * lookup table of the WIM if they are not referenced by any other images in the
962  * WIM.
963  *
964  * Please note that @b no changes are committed to the underlying WIM file (if
965  * any) until wimlib_write() or wimlib_overwrite() is called.
966  *
967  * @param wim
968  *      Pointer to the ::WIMStruct for the WIM file that contains the image(s)
969  *      being deleted.
970  * @param image
971  *      The number of the image to delete, or ::WIMLIB_ALL_IMAGES to delete all
972  *      images.
973  * @return 0 on success; nonzero on failure.  On failure, @a wim is guaranteed
974  * to be left unmodified only if @a image specified a single image.  If instead
975  * @a image was ::WIMLIB_ALL_IMAGES and @a wim contained more than one image, it's
976  * possible for some but not all of the images to have been deleted when a
977  * failure status is returned.
978  *
979  * @retval ::WIMLIB_ERR_DECOMPRESSION
980  *      Could not decompress the metadata resource for @a image.
981  * @retval ::WIMLIB_ERR_INVALID_DENTRY
982  *      A directory entry in the metadata resource for @a image in the WIM is
983  *      invalid.
984  * @retval ::WIMLIB_ERR_INVALID_IMAGE
985  *      @a image does not exist in the WIM and is not ::WIMLIB_ALL_IMAGES.
986  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
987  *      The metadata resource for @a image in the WIM is invalid.
988  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
989  *      The security data for @a image in the WIM is invalid.
990  * @retval ::WIMLIB_ERR_NOMEM
991  *      Failed to allocate needed memory.
992  * @retval ::WIMLIB_ERR_READ
993  *      Could not read the metadata resource for @a image from the WIM.
994  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
995  *      @a wim is part of a split WIM.  Deleting an image from a split WIM is
996  *      unsupported.
997  */
998 extern int
999 wimlib_delete_image(WIMStruct *wim, int image);
1000
1001 /**
1002  * Exports an image, or all the images, from a WIM file, into another WIM file.
1003  *
1004  * The destination image is made to share the same dentry tree and security data
1005  * structure as the source image.  This places some restrictions on additional
1006  * functions that may be called.  wimlib_mount_image() may not be called on
1007  * either the source image or the destination image without an intervening call
1008  * to a function that un-shares the images, such as wimlib_free() on @a
1009  * dest_wim, or wimlib_delete_image() on either the source or destination image.
1010  * Furthermore, you may not call wimlib_free() on @a src_wim before calling
1011  * wimlib_write() or wimlib_overwrite() on @a dest_wim because @a dest_wim will
1012  * have references back to @a src_wim.
1013  *
1014  * Previous versions of this function left @a dest_wim in an indeterminate state
1015  * on failure.  This is no longer the case; all changes to @a dest_wim made by
1016  * this function are rolled back on failure.
1017  *
1018  * Previous versions of this function did not allow exporting an image that had
1019  * been added by wimlib_add_image().  This is no longer the case; you may now
1020  * export an image regardless of how it was added.
1021  *
1022  * Regardless of whether this function succeeds or fails, no changes are made to
1023  * @a src_wim.
1024  *
1025  * Please note that no changes are committed to the underlying WIM file of @a
1026  * dest_wim (if any) until wimlib_write() or wimlib_overwrite() is called.
1027  *
1028  * @param src_wim
1029  *      Pointer to the ::WIMStruct for a stand-alone WIM or part 1 of a split
1030  *      WIM that contains the image(s) being exported.
1031  * @param src_image
1032  *      The image to export from @a src_wim.  Can be the number of an image, or
1033  *      ::WIMLIB_ALL_IMAGES to export all images.
1034  * @param dest_wim
1035  *      Pointer to the ::WIMStruct for a WIM file that will receive the images
1036  *      being exported.
1037  * @param dest_name
1038  *      The name to give the exported image in the new WIM file.  If left @c
1039  *      NULL, the name from @a src_wim is used.  This parameter must be left @c
1040  *      NULL if @a src_image is ::WIMLIB_ALL_IMAGES and @a src_wim contains more
1041  *      than one image; in that case, the names are all taken from the @a
1042  *      src_wim.  (This is allowed even if one or more images being exported has
1043  *      no name.)
1044  * @param dest_description
1045  *      The description to give the exported image in the new WIM file.  If left
1046  *      @c NULL, the description from the @a src_wim is used.  This parameter must
1047  *      be left @c NULL if @a src_image is ::WIMLIB_ALL_IMAGES and @a src_wim contains
1048  *      more than one image; in that case, the descriptions are all taken from
1049  *      @a src_wim.  (This is allowed even if one or more images being exported
1050  *      has no description.)
1051  * @param export_flags
1052  *      ::WIMLIB_EXPORT_FLAG_BOOT if the image being exported is to be made
1053  *      bootable, or 0 if which image is marked as bootable in the destination
1054  *      WIM is to be left unchanged.  If @a src_image is ::WIMLIB_ALL_IMAGES and
1055  *      there are multiple images in @a src_wim, specifying
1056  *      ::WIMLIB_EXPORT_FLAG_BOOT is valid only if one of the exported images is
1057  *      currently marked as bootable in @a src_wim; if that is the case, then
1058  *      that image is marked as bootable in the destination WIM.
1059  * @param additional_swms
1060  *      Array of pointers to the ::WIMStruct for each additional part in the
1061  *      split WIM.  Ignored if @a num_additional_swms is 0.  The pointers do not
1062  *      need to be in any particular order, but they must include all parts of
1063  *      the split WIM other than the first part, which must be provided in the
1064  *      @a wim parameter.
1065  * @param num_additional_swms
1066  *      Number of additional WIM parts provided in the @a additional_swms array.
1067  *      This number should be one less than the total number of parts in the
1068  *      split WIM.  Set to 0 if the WIM is a standalone WIM.
1069  * @param progress_func
1070  *      If non-NULL, a function that will be called periodically with the
1071  *      progress of the current operation.
1072  *
1073  * @return 0 on success; nonzero on error.
1074  * @retval ::WIMLIB_ERR_DECOMPRESSION
1075  *      Could not decompress the metadata resource for @a src_image
1076  *      in @a src_wim
1077  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
1078  *      One or more of the names being given to an exported image was already in
1079  *      use in the destination WIM.
1080  * @retval ::WIMLIB_ERR_INVALID_DENTRY
1081  *      A directory entry in the metadata resource for @a src_image in @a
1082  *      src_wim is invalid.
1083  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1084  *      @a src_image does not exist in @a src_wim.
1085  * @retval ::WIMLIB_ERR_INVALID_PARAM
1086  *      ::WIMLIB_EXPORT_FLAG_BOOT was specified in @a flags, @a src_image was
1087  *      ::WIMLIB_ALL_IMAGES, @a src_wim contains multiple images, and no images in
1088  *      @a src_wim are marked as bootable; or @a dest_name and/or @a
1089  *      dest_description were non-<code>NULL</code>, @a src_image was
1090  *      ::WIMLIB_ALL_IMAGES, and @a src_wim contains multiple images.
1091  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1092  *      The metadata resource for @a src_image in @a src_wim is invalid.
1093  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
1094  *      The security data for @a src_image in @a src_wim is invalid.
1095  * @retval ::WIMLIB_ERR_NOMEM
1096  *      Failed to allocate needed memory.
1097  * @retval ::WIMLIB_ERR_READ
1098  *      Could not read the metadata resource for @a src_image from @a src_wim.
1099  * @retval ::WIMLIB_ERR_SPLIT_INVALID
1100  *      The source WIM is a split WIM, but the parts specified do not form a
1101  *      complete split WIM because they do not include all the parts of the
1102  *      original WIM, there are duplicate parts, or not all the parts have the
1103  *      same GUID and compression type.
1104  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
1105  *      @a dest_wim is part of a split WIM.  Exporting an image to a split WIM
1106  *      is unsupported.
1107  */
1108 extern int
1109 wimlib_export_image(WIMStruct *src_wim, int src_image,
1110                     WIMStruct *dest_wim,
1111                     const wimlib_utf8char *dest_name,
1112                     const wimlib_utf8char *dest_description,
1113                     int export_flags,
1114                     WIMStruct **additional_swms,
1115                     unsigned num_additional_swms,
1116                     wimlib_progress_func_t progress_func);
1117
1118 /**
1119  * Extracts an image, or all images, from a standalone or split WIM file to a
1120  * directory or a NTFS volume.
1121  *
1122  * Please see the manual page for the @c imagex program for more information
1123  * about the "normal" extraction mode versus the NTFS extraction mode
1124  * (entered by providing flag ::WIMLIB_EXTRACT_FLAG_NTFS).
1125  *
1126  * Extraction is done with one thread.
1127  *
1128  * All extracted data is SHA1-summed, and ::WIMLIB_ERR_INVALID_RESOURCE_HASH is
1129  * returned if any resulting SHA1 message digests do not match the values
1130  * provided in the WIM file.  Therefore, if this function is successful, you can
1131  * be fairly sure that any compressed data in the WIM was uncompressed
1132  * correctly.
1133  *
1134  * @param wim
1135  *      Pointer to the ::WIMStruct for a standalone WIM file, or part 1 of a
1136  *      split WIM.
1137  * @param image
1138  *      The image to extract.  Can be the number of an image, or ::WIMLIB_ALL_IMAGES
1139  *      to specify that all images are to be extracted.  ::WIMLIB_ALL_IMAGES cannot
1140  *      be used if ::WIMLIB_EXTRACT_FLAG_NTFS is specified in @a extract_flags.
1141  * @param target
1142  *      Directory to extract the WIM image(s) to (created if it does not already
1143  *      exist); or, with ::WIMLIB_EXTRACT_FLAG_NTFS in @a extract_flags, the
1144  *      path to the unmounted NTFS volume to extract the image to.
1145  * @param extract_flags
1146  *      Bitwise OR of the flags prefixed with WIMLIB_EXTRACT_FLAG.
1147  *      <br/> <br/>
1148  *      If ::WIMLIB_EXTRACT_FLAG_NTFS is specified, @a target is interpreted as
1149  *      a NTFS volume to extract the image to.  The volume will be opened using
1150  *      NTFS-3g and the image will be extracted to the root of the NTFS volume.
1151  *      Otherwise, @a target is interpreted as a directory to extract the
1152  *      image(s) to.
1153  *      <br/> <br/>
1154  *      If ::WIMLIB_EXTRACT_FLAG_NTFS is not specified, one or none of
1155  *      ::WIMLIB_EXTRACT_FLAG_HARDLINK or ::WIMLIB_EXTRACT_FLAG_SYMLINK may be
1156  *      specified.  These flags cause extracted files that are identical to be
1157  *      hardlinked or symlinked together, depending on the flag.  These flags
1158  *      override the hard link groups that are specified in the WIM file itself.
1159  *      If ::WIMLIB_ALL_IMAGES is provided as the @a image parameter, files may be
1160  *      hardlinked or symlinked across images if a file is found to occur in
1161  *      more than one image.
1162  *      <br/> <br/>
1163  *      You may also specify the flag ::WIMLIB_EXTRACT_FLAG_VERBOSE to print the
1164  *      name of each file or directory as it is extracted.
1165  *      <br/> <br/>
1166  *      If ::WIMLIB_EXTRACT_FLAG_SEQUENTIAL is specified, data is read from the
1167  *      WIM sequentially, if possible.  If ::WIMLIB_ALL_IMAGES is specified,
1168  *      each image is considered separately with regards to the sequential
1169  *      order.  It is also possible for alternate data streams to break the
1170  *      sequential order (this only applies if ::WIMLIB_EXTRACT_FLAG_NTFS is
1171  *      specified).
1172  * @param additional_swms
1173  *      Array of pointers to the ::WIMStruct for each additional part in the
1174  *      split WIM.  Ignored if @a num_additional_swms is 0.  The pointers do not
1175  *      need to be in any particular order, but they must include all parts of
1176  *      the split WIM other than the first part, which must be provided in the
1177  *      @a wim parameter.
1178  * @param num_additional_swms
1179  *      Number of additional WIM parts provided in the @a additional_swms array.
1180  *      This number should be one less than the total number of parts in the
1181  *      split WIM.  Set to 0 if the WIM is a standalone WIM.
1182  *
1183  * @param progress_func
1184  *      If non-NULL, a function that will be called periodically with the
1185  *      progress of the current operation.
1186  *
1187  * @return 0 on success; nonzero on error.
1188  * @retval ::WIMLIB_ERR_DECOMPRESSION
1189  *      Could not decompress a resource (file or metadata) for @a image in @a
1190  *      wim.
1191  * @retval ::WIMLIB_ERR_INVALID_DENTRY
1192  *      A directory entry in the metadata resource for @a image in @a wim is
1193  *      invalid.
1194  * @retval ::WIMLIB_ERR_INVALID_PARAM
1195  *      @a target was @c NULL, or both ::WIMLIB_EXTRACT_FLAG_HARDLINK and
1196  *      ::WIMLIB_EXTRACT_FLAG_SYMLINK were specified in @a extract_flags; or
1197  *      both ::WIMLIB_EXTRACT_FLAG_NTFS and either
1198  *      ::WIMLIB_EXTRACT_FLAG_HARDLINK or ::WIMLIB_EXTRACT_FLAG_SYMLINK were
1199  *      specified in @a extract_flags; or ::WIMLIB_EXTRACT_FLAG_NTFS was
1200  *      specified in @a extract_flags and @a image was ::WIMLIB_ALL_IMAGES; or
1201  *      both ::WIMLIB_EXTRACT_FLAG_NTFS and ::WIMLIB_EXTRACT_FLAG_UNIX_DATA were
1202  *      specified in @a extract_flag.
1203  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_HASH
1204  *      The SHA1 message digest of an extracted stream did not match the SHA1
1205  *      message digest given in the WIM file.
1206  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1207  *      A resource (file or metadata) for @a image in @a wim is invalid.
1208  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
1209  *      The security data for @a image in @a wim is invalid.
1210  * @retval ::WIMLIB_ERR_LINK
1211 *       Failed to create a symbolic link or a hard link (only if
1212  *      ::WIMLIB_EXTRACT_FLAG_NTFS was not specified in @a extract_flags).
1213  * @retval ::WIMLIB_ERR_MKDIR
1214  *      Failed create a needed directory (only if ::WIMLIB_EXTRACT_FLAG_NTFS was
1215  *      not specified in @a extract_flags).
1216  * @retval ::WIMLIB_ERR_NOMEM
1217  *      Failed to allocate needed memory.
1218  * @retval ::WIMLIB_ERR_NTFS_3G
1219  *      An error was returned from a libntfs-3g function while the WIM image was
1220  *      being extracted to the NTFS volume (only if ::WIMLIB_EXTRACT_FLAG_NTFS
1221  *      was specified in @a extract_flags).
1222  * @retval ::WIMLIB_ERR_OPEN
1223  *      Could not open one of the files being extracted for writing (only if
1224  *      ::WIMLIB_EXTRACT_FLAG_NTFS was not specified in @a extract_flags).
1225  * @retval ::WIMLIB_ERR_READ
1226  *      A unexpected end-of-file or read error occurred when trying to read data
1227  *      from the WIM file associated with @a wim.
1228  * @retval ::WIMLIB_ERR_SPLIT_INVALID
1229  *      The WIM is a split WIM, but the parts specified do not form a complete
1230  *      split WIM because they do not include all the parts of the original WIM,
1231  *      there are duplicate parts, or not all the parts have the same GUID and
1232  *      compression type.
1233  * @retval ::WIMLIB_ERR_UNSUPPORTED
1234  *      ::WIMLIB_EXTRACT_FLAG_NTFS was specified in @a extract_flags, but wimlib
1235  *      was configured with the @c --without-ntfs-3g flag.
1236  * @retval ::WIMLIB_ERR_WRITE
1237  *      Failed to write a file being extracted (only if
1238  *      ::WIMLIB_EXTRACT_FLAG_NTFS was not specified in @a extract_flags).
1239  */
1240 extern int
1241 wimlib_extract_image(WIMStruct *wim, int image,
1242                      const wimlib_mbchar *target,
1243                      int extract_flags,
1244                      WIMStruct **additional_swms,
1245                      unsigned num_additional_swms,
1246                      wimlib_progress_func_t progress_func);
1247
1248 /**
1249  * Extracts the XML data of a WIM file to a file stream.  Every WIM file
1250  * includes a string of XML that describes the images contained in the WIM.
1251  * This function works on standalone WIMs as well as split WIM parts.
1252  *
1253  * @param wim
1254  *      Pointer to the ::WIMStruct for a WIM file.
1255  * @param fp
1256  *      @c stdout, or a FILE* opened for writing, to extract the data to.
1257  *
1258  * @return 0 on success; nonzero on error.
1259  * @retval ::WIMLIB_ERR_WRITE
1260  *      Failed to completely write the XML data to @a fp.
1261  * @retval ::WIMLIB_ERR_INVALID_PARAM
1262  *      @a wim is not a ::WIMStruct that was created by wimlib_open_wim().
1263  */
1264 extern int
1265 wimlib_extract_xml_data(WIMStruct *wim, FILE *fp);
1266
1267 /**
1268  * Frees all memory allocated for a WIMStruct and closes all files associated
1269  * with it.
1270  *
1271  * @param wim
1272  *      Pointer to the ::WIMStruct for a WIM file.
1273  *
1274  * @return This function has no return value.
1275  */
1276 extern void
1277 wimlib_free(WIMStruct *wim);
1278
1279 /**
1280  * Returns the index of the bootable image of the WIM.
1281  *
1282  * @param wim
1283  *      Pointer to the ::WIMStruct for a WIM file.
1284  *
1285  * @return
1286  *      0 if no image is marked as bootable, or the number of the image marked
1287  *      as bootable (numbered starting at 1).
1288  */
1289 extern int
1290 wimlib_get_boot_idx(const WIMStruct *wim);
1291
1292 /**
1293  * Returns the compression type used in the WIM.
1294  *
1295  * @param wim
1296  *      Pointer to the ::WIMStruct for a WIM file
1297  *
1298  * @return
1299  *      ::WIMLIB_COMPRESSION_TYPE_NONE, ::WIMLIB_COMPRESSION_TYPE_LZX, or
1300  *      ::WIMLIB_COMPRESSION_TYPE_XPRESS.
1301  */
1302 extern int
1303 wimlib_get_compression_type(const WIMStruct *wim);
1304
1305 /**
1306  * Converts a ::wimlib_compression_type value into a string.
1307  *
1308  * @param ctype
1309  *      ::WIMLIB_COMPRESSION_TYPE_NONE, ::WIMLIB_COMPRESSION_TYPE_LZX,
1310  *      ::WIMLIB_COMPRESSION_TYPE_XPRESS, or another value.
1311  *
1312  * @return
1313  *      A statically allocated string: "None", "LZX", "XPRESS", or "Invalid",
1314  *      respectively.
1315  */
1316 extern const wimlib_mbchar *
1317 wimlib_get_compression_type_string(int ctype);
1318
1319 /**
1320  * Converts an error code into a string describing it.
1321  *
1322  * @param code
1323  *      The error code returned by one of wimlib's functions.
1324  *
1325  * @return
1326  *      Pointer to a statically allocated string describing the error code,
1327  *      or @c NULL if the error code is not valid.
1328  */
1329 extern const wimlib_mbchar *
1330 wimlib_get_error_string(enum wimlib_error_code code);
1331
1332 /**
1333  * Returns the description of the specified image.
1334  *
1335  * @param wim
1336  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
1337  *      standalone WIM or a split WIM part.
1338  * @param image
1339  *      The number of the image, numbered starting at 1.
1340  *
1341  * @return
1342  *      The description of the image, or @c NULL if there is no such image, or
1343  *      @c NULL if the specified image has no description.  The description
1344  *      string is in library-internal memory and may not be modified or freed;
1345  *      in addition, the string will become invalid if the description of the
1346  *      image is changed, the image is deleted, or the ::WIMStruct is destroyed.
1347  */
1348 extern const wimlib_utf8char *
1349 wimlib_get_image_description(const WIMStruct *wim, int image);
1350
1351 /**
1352  * Returns the name of the specified image.
1353  *
1354  * @param wim
1355  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
1356  *      standalone WIM or a split WIM part.
1357  * @param image
1358  *      The number of the image, numbered starting at 1.
1359  *
1360  * @return
1361  *      The name of the image, or @c NULL if there is no such image.  The name
1362  *      string is in library-internal memory and may not be modified or freed;
1363  *      in addition, the string will become invalid if the name of the image is
1364  *      changed, the image is deleted, or the ::WIMStruct is destroyed.
1365  *
1366  *      If @a wim was read with wimlib_open_wim(), it is allowed for image(s) in
1367  *      the WIM to be unnamed, in which case an empty string will be returned
1368  *      when the corresponding name is requested.
1369  */
1370 extern const wimlib_utf8char *
1371 wimlib_get_image_name(const WIMStruct *wim, int image);
1372
1373
1374 /**
1375  * Returns the number of images contained in a WIM.
1376  *
1377  * @param wim
1378  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
1379  *      standalone WIM or a split WIM part.
1380  *
1381  * @return
1382  *      The number of images contained in the WIM file.
1383  */
1384 extern int
1385 wimlib_get_num_images(const WIMStruct *wim);
1386
1387 /**
1388  * Returns the part number of a WIM in a split WIM and the total number of parts
1389  * of the split WIM.
1390  *
1391  * @param wim
1392  *      Pointer to the ::WIMStruct for a WIM file.
1393  * @param total_parts_ret
1394  *      If non-@c NULL, the total number of parts in the split WIM (1 for
1395  *      non-split WIMs) is written to this location.
1396  *
1397  * @return
1398  *      The part number of the WIM (1 for non-split WIMs)
1399  */
1400 extern int
1401 wimlib_get_part_number(const WIMStruct *wim, int *total_parts_ret);
1402
1403 /**
1404  * Since wimlib 1.2.6:  Initialization function for wimlib.  This is not
1405  * re-entrant.  If you are calling wimlib functions concurrently in different
1406  * threads, then you must call this function serially first.  Otherwise, calling
1407  * this function is not required.
1408  *
1409  * @return 0 on success; nonzero on error.
1410  * @retval ::WIMLIB_ERR_NOMEM
1411  *      Could not allocate memory.
1412  * @retval ::WIMLIB_ERR_ICONV_NOT_AVAILABLE
1413  *      wimlib was configured @c --without-libntfs-3g at compilation time, and
1414  *      at runtime the @c iconv() set of functions did not seem to be available,
1415  *      perhaps due to missing files in the C library installation.
1416  *
1417  * If this function is not called or returns nonzero, then it will not be safe
1418  * to use wimlib in multiple threads.  Furthermore, a nonzero return value here
1419  * indicates that further calls into wimlib will probably fail when they try to
1420  * repeat the same initializations.
1421  */
1422 extern int
1423 wimlib_global_init();
1424
1425 /**
1426  * Since wimlib 1.2.6:  Cleanup function for wimlib.  This is not re-entrant.
1427  * You are not required to call this function, but it will release any global
1428  * memory allocated by the library.
1429  */
1430 extern void
1431 wimlib_global_cleanup();
1432
1433 /**
1434  * Returns true if the WIM has an integrity table.
1435  *
1436  * @param wim
1437  *      Pointer to the ::WIMStruct for a WIM file.
1438  * @return
1439  *      @c true if the WIM has an integrity table; @c false otherwise.  If @a
1440  *      wim is a ::WIMStruct created with wimlib_create_new_wim() rather than
1441  *      wimlib_open_wim(), @c false will be returned, even if wimlib_write() has
1442  *      been called on @a wim with ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY set.
1443  */
1444 extern bool
1445 wimlib_has_integrity_table(const WIMStruct *wim);
1446
1447 /**
1448  * Determines if an image name is already used by some image in the WIM.
1449  *
1450  * @param wim
1451  *      Pointer to the ::WIMStruct for a WIM file.
1452  * @param name
1453  *      The name to check.
1454  *
1455  * @return
1456  *      @c true if there is already an image in @a wim named @a name; @c false
1457  *      if there is no image named @a name in @a wim.  If @a name is @c NULL or
1458  *      the empty string, @c false is returned.
1459  */
1460 extern bool
1461 wimlib_image_name_in_use(const WIMStruct *wim, const wimlib_utf8char *name);
1462
1463 /**
1464  * Joins a split WIM into a stand-alone one-part WIM.
1465  *
1466  * @param swms
1467  *      An array of strings that gives the filenames of all parts of the split
1468  *      WIM.  No specific order is required, but all parts must be included with
1469  *      no duplicates.
1470  * @param num_swms
1471  *      Number of filenames in @a swms.
1472  * @param swm_open_flags
1473  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY if the integrity of each split WIM
1474  *      part should be verified, if integrity tables are present.  Otherwise,
1475  *      set to 0.
1476  * @param wim_write_flags
1477  *      Bitwise OR of ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY, and/or ::WIMLIB_WRITE_FLAG_FSYNC.
1478  * @param output_path
1479  *      The path to write the one-part WIM to.
1480  * @param progress_func
1481  *      If non-NULL, a function that will be called periodically with the
1482  *      progress of the current operation.
1483  *
1484  * @return 0 on success; nonzero on error.  This function may return any value
1485  * returned by wimlib_open_wim() and wimlib_write() except
1486  * ::WIMLIB_ERR_SPLIT_UNSUPPORTED, as well as the following error code:
1487  *
1488  * @retval ::WIMLIB_ERR_SPLIT_INVALID
1489  *      The split WIMs do not form a valid WIM because they do not include all
1490  *      the parts of the original WIM, there are duplicate parts, or not all the
1491  *      parts have the same GUID and compression type.
1492  *
1493  * Note: the WIM's uncompressed and compressed resources are not checksummed
1494  * when they are copied from the split WIM parts to the joined WIM, nor are
1495  * compressed resources re-compressed.
1496  *
1497  * Note: wimlib_export_image() can provide similar functionality to
1498  * wimlib_join(), since it is possible to export all images from a split WIM.
1499  */
1500 extern int
1501 wimlib_join(const wimlib_mbchar * const *swms,
1502             unsigned num_swms,
1503             const wimlib_mbchar *output_path,
1504             int swm_open_flags,
1505             int wim_write_flags,
1506             wimlib_progress_func_t progress_func);
1507
1508 /**
1509  * Mounts an image in a WIM file on a directory read-only or read-write.
1510  *
1511  * Unless ::WIMLIB_MOUNT_FLAG_DEBUG is specified or an early error occurs, the
1512  * process shall be daemonized.
1513  *
1514  * If the mount is read-write (::WIMLIB_MOUNT_FLAG_READWRITE specified),
1515  * modifications to the WIM are staged in a temporary directory.
1516  *
1517  * It is safe to mount multiple images from the same WIM file read-only at the
1518  * same time, but only if different ::WIMStruct's are used.  It is @b not safe
1519  * to mount multiple images from the same WIM file read-write at the same time.
1520  *
1521  * wimlib_mount_image() cannot be used on an image that was exported with
1522  * wimlib_export_image() while the dentry trees for both images are still in
1523  * memory.  In addition, wimlib_mount_image() may not be used to mount an image
1524  * that has just been added with wimlib_add_image(), unless the WIM has been
1525  * written and read into a new ::WIMStruct.
1526  *
1527  * @param wim
1528  *      Pointer to the ::WIMStruct containing the image to be mounted.
1529  * @param image
1530  *      The number of the image to mount, indexed starting from it.  It must be
1531  *      an existing, single image.
1532  * @param dir
1533  *      The path to an existing empty directory to mount the image on.
1534  * @param mount_flags
1535  *      Bitwise OR of the flags prefixed with WIMLIB_MOUNT_FLAG.
1536  *      <br/><br/>
1537  *      If ::WIMLIB_MOUNT_FLAG_READWRITE is given, the WIM is mounted read-write
1538  *      rather than the default of read-only.
1539  *      <br/> <br/>
1540  *      WIMs may contain named (alternate) data streams, which are a somewhat
1541  *      obscure NTFS feature.  They can be read and written on a mounted WIM
1542  *      through one of several interfaces.  The interface to use if specified by
1543  *      exactly one of ::WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE,
1544  *      ::WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR, or
1545  *      ::WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS.  The default interface is
1546  *      the XATTR interface.
1547  * @param additional_swms
1548  *      Array of pointers to the ::WIMStruct for each additional part in the
1549  *      split WIM.  Ignored if @a num_additional_swms is 0.  The pointers do not
1550  *      need to be in any particular order, but they must include all parts of
1551  *      the split WIM other than the first part, which must be provided in the
1552  *      @a wim parameter.
1553  * @param num_additional_swms
1554  *      Number of additional WIM parts provided in the @a additional_swms array.
1555  *      This number should be one less than the total number of parts in the
1556  *      split WIM.  Set to 0 if the WIM is a standalone WIM.
1557  * @param staging_dir
1558  *      If non-NULL, the name of a directory in which the staging directory will
1559  *      be created.  Ignored if ::WIMLIB_MOUNT_FLAG_READWRITE is not specified
1560  *      in @a mount_flags.  If left @c NULL, the staging directory is created in
1561  *      the same directory as the WIM file that @a wim was originally read from.
1562  *
1563  * @return 0 on success; nonzero on error.
1564  *
1565  * @retval ::WIMLIB_ERR_ALREADY_LOCKED
1566  *      A read-write mount was requested, but an an exclusive advisory lock on
1567  *      the on-disk WIM file could not be acquired because another thread or
1568  *      process has mounted an image from the WIM read-write or is currently
1569  *      modifying the WIM in-place.
1570  * @retval ::WIMLIB_ERR_DECOMPRESSION
1571  *      Could not decompress the metadata resource for @a image in @a wim.
1572  * @retval ::WIMLIB_ERR_FUSE
1573  *      A non-zero status was returned by @c fuse_main().
1574  * @retval ::WIMLIB_ERR_INVALID_DENTRY
1575  *      A directory entry in the metadata resource for @a image in @a wim is
1576  *      invalid.
1577  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1578  *      @a image does not specify an existing, single image in @a wim.
1579  * @retval ::WIMLIB_ERR_INVALID_PARAM
1580  *      @a image is shared among multiple ::WIMStruct's as a result of a call to
1581  *      wimlib_export_image(), or @a image has been added with
1582  *      wimlib_add_image().
1583  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1584  *      The metadata resource for @a image in @a wim is invalid.
1585  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
1586  *      The security data for @a image in @a wim is invalid.
1587  * @retval ::WIMLIB_ERR_MKDIR
1588  *      ::WIMLIB_MOUNT_FLAG_READWRITE was specified in @a mount_flags, but the
1589  *      staging directory could not be created.
1590  * @retval ::WIMLIB_ERR_NOMEM
1591  *      Failed to allocate needed memory.
1592  * @retval ::WIMLIB_ERR_NOTDIR
1593  *      Could not determine the current working directory.
1594  * @retval ::WIMLIB_ERR_READ
1595  *      An unexpected end-of-file or read error occurred when trying to read
1596  *      data from the WIM file associated with @a wim.
1597  * @retval ::WIMLIB_ERR_SPLIT_INVALID
1598  *      The WIM is a split WIM, but the parts specified do not form a complete
1599  *      split WIM because they do not include all the parts of the original WIM,
1600  *      there are duplicate parts, or not all the parts have the same GUID and
1601  *      compression type.
1602  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
1603  *      The WIM is a split WIM and a read-write mount was requested.  We only
1604  *      support mounting a split WIM read-only.
1605  */
1606 extern int
1607 wimlib_mount_image(WIMStruct *wim, int image, const wimlib_mbchar *dir,
1608                    int mount_flags, WIMStruct **additional_swms,
1609                    unsigned num_additional_swms,
1610                    const wimlib_mbchar *staging_dir);
1611
1612 /**
1613  * Opens a WIM file and creates a ::WIMStruct for it.
1614  *
1615  * @param wim_file
1616  *      The path to the WIM file to open.
1617  * @param open_flags
1618  *      Bitwise OR of flags ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY and/or
1619  *      ::WIMLIB_OPEN_FLAG_SPLIT_OK.
1620  *      <br/> <br/>
1621  *      If ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY is given, the integrity table of
1622  *      the WIM, if it exists, is checked, and this function will fail with an
1623  *      ::WIMLIB_ERR_INTEGRITY status if any of the computed SHA1 message
1624  *      digests of the WIM do not exactly match the corresponding message
1625  *      digests given in the integrity table.
1626  *      <br/> <br/>
1627  *      If ::WIMLIB_OPEN_FLAG_SPLIT_OK is given, no error will be issued if the
1628  *      WIM is part of a split WIM; otherwise ::WIMLIB_ERR_SPLIT_UNSUPPORTED is
1629  *      returned.  (This flag may be removed in the future, in which case no
1630  *      error will be issued when opening a split WIM.)
1631  *
1632  * @param progress_func
1633  *      If non-NULL, a function that will be called periodically with the
1634  *      progress of the current operation.
1635  *
1636  * @param wim_ret
1637  *      On success, a pointer to an opaque ::WIMStruct for the opened WIM file
1638  *      is written to the memory location pointed to by this parameter.  The
1639  *      ::WIMStruct must be freed using using wimlib_free() when finished with
1640  *      it.
1641  *
1642  * @return 0 on success; nonzero on error.
1643  * @retval ::WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE
1644  *      The lookup table of @a wim_file is compressed.  Support for this can be
1645  *      added to wimlib if needed, but it appears to be the case that the lookup
1646  *      table is never compressed.
1647  * @retval ::WIMLIB_ERR_IMAGE_COUNT
1648  *      The WIM is not the non-first part of a split WIM, and the number of
1649  *      metadata resources found in the WIM did not match the image count given
1650  *      in the WIM header, or the number of &lt;IMAGE&gt; elements in the XML
1651  *      data for the WIM did not match the image count given in the WIM header.
1652  * @retval ::WIMLIB_ERR_INTEGRITY
1653  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY was specified in @a open_flags and @a
1654  *      wim_file contains an integrity table, but the SHA1 message digest for a
1655  *      chunk of the WIM does not match the corresponding message digest given
1656  *      in the integrity table.
1657  * @retval ::WIMLIB_ERR_INVALID_CHUNK_SIZE
1658  *      Resources in @a wim_file are compressed, but the chunk size is not 32768.
1659  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
1660  *      The header of @a wim_file says that resources in the WIM are compressed,
1661  *      but the header flag indicating LZX or XPRESS compression is not set.
1662  * @retval ::WIMLIB_ERR_INVALID_HEADER_SIZE
1663  *      The length field of the WIM header is not 208.
1664  * @retval ::WIMLIB_ERR_INVALID_INTEGRITY_TABLE
1665  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY was specified in @a open_flags and @a
1666  *      wim_file contains an integrity table, but the integrity table is
1667  *      invalid.
1668  * @retval ::WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY
1669  *      The lookup table for the WIM contained duplicate entries that are not
1670  *      for metadata resources, or it contained an entry with a SHA1 message
1671  *      digest of all 0's.
1672  * @retval ::WIMLIB_ERR_NOMEM
1673  *      Failed to allocated needed memory.
1674  * @retval ::WIMLIB_ERR_NOT_A_WIM_FILE
1675  *      @a wim_file does not begin with the expected magic characters.
1676  * @retval ::WIMLIB_ERR_OPEN
1677  *      Failed to open the file @a wim_file for reading.
1678  * @retval ::WIMLIB_ERR_READ
1679  *      An unexpected end-of-file or read error occurred when trying to read
1680  *      data from @a wim_file.
1681  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
1682  *      @a wim_file is a split WIM, but ::WIMLIB_OPEN_FLAG_SPLIT_OK was not
1683  *      specified in @a open_flags.
1684  * @retval ::WIMLIB_ERR_UNKNOWN_VERSION
1685  *      A number other than 0x10d00 is written in the version field of the WIM
1686  *      header of @a wim_file.  (Probably a pre-Vista WIM).
1687  * @retval ::WIMLIB_ERR_XML
1688  *      The XML data for @a wim_file is invalid.
1689  */
1690 extern int
1691 wimlib_open_wim(const wimlib_mbchar *wim_file, int open_flags,
1692                 WIMStruct **wim_ret, wimlib_progress_func_t progress_func);
1693
1694 /**
1695  * Overwrites the file that the WIM was originally read from, with changes made.
1696  * This only makes sense for ::WIMStruct's obtained from wimlib_open_wim()
1697  * rather than wimlib_create_new_wim().
1698  *
1699  * There are two ways that a WIM may be overwritten.  The first is to do a full
1700  * rebuild.  In this mode, the new WIM is written to a temporary file and then
1701  * renamed to the original file after it is has been completely written.  The
1702  * temporary file is made in the same directory as the original WIM file.  A
1703  * full rebuild may take a while, but can be used even if images have been
1704  * modified or deleted, will produce a WIM with no holes, and has little chance
1705  * of unintentional data loss because the temporary WIM is fsync()ed before
1706  * being renamed to the original WIM.
1707  *
1708  * The second way to overwrite a WIM is by appending to the end of it and
1709  * overwriting the header.  This can be much faster than a full rebuild, but it
1710  * only works if the only operations on the WIM have been to change the header
1711  * and/or XML data, or to add new images.  Writing a WIM in this mode begins
1712  * with writing any new file resources *after* everything in the old WIM, even
1713  * though this will leave a hole where the old lookup table, XML data, and
1714  * integrity were.  This is done so that the WIM remains valid even if the
1715  * operation is aborted mid-write.  The WIM header is only overwritten at the
1716  * very last moment, and up until that point the WIM will be seen as the old
1717  * version.
1718  *
1719  * By default, the overwrite mode is determine automatically based on the past
1720  * operations performed on the ::WIMStruct.  Use the flag
1721  * ::WIMLIB_WRITE_FLAG_REBUILD to explicitly request a full rebuild, and use the
1722  * ::WIMLIB_WRITE_FLAG_SOFT_DELETE to request the in-place overwrite even if
1723  * images have been deleted from the WIM.
1724  *
1725  * In the temporary-file overwrite mode, no changes are made to the WIM on
1726  * failure, and the temporary file is deleted if possible.  Abnormal termination
1727  * of the program will result in the temporary file being orphaned.  In the
1728  * direct append mode, the WIM is truncated to the original length on failure;
1729  * and while abnormal termination of the program will result in extra data
1730  * appended to the original WIM, it should still be a valid WIM.
1731  *
1732  * @param wim
1733  *      Pointer to the ::WIMStruct for the WIM file to write.  There may have
1734  *      been in-memory changes made to it, which are then reflected in the
1735  *      output file.
1736  * @param write_flags
1737  *      Bitwise OR of the flags ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY,
1738  *      ::WIMLIB_WRITE_FLAG_REBUILD, ::WIMLIB_WRITE_FLAG_RECOMPRESS, and/or
1739  *      ::WIMLIB_WRITE_FLAG_SOFT_DELETE.
1740  * @param num_threads
1741  *      Number of threads to use for compression (see wimlib_write()).
1742  * @param progress_func
1743  *      If non-NULL, a function that will be called periodically with the
1744  *      progress of the current operation.
1745  *
1746  * @return 0 on success; nonzero on error.  This function may return any value
1747  * returned by wimlib_write() as well as the following error codes:
1748  * @retval ::WIMLIB_ERR_ALREADY_LOCKED
1749  *      The WIM was going to be modifien in-place (with no temporary file), but
1750  *      an exclusive advisory lock on the on-disk WIM file could not be acquired
1751  *      because another thread or process has mounted an image from the WIM
1752  *      read-write or is currently modifying the WIM in-place.
1753  * @retval ::WIMLIB_ERR_NO_FILENAME
1754  *      @a wim corresponds to a WIM created with wimlib_create_new_wim() rather
1755  *      than a WIM read with wimlib_open_wim().
1756  * @retval ::WIMLIB_ERR_RENAME
1757  *      The temporary file that the WIM was written to could not be renamed to
1758  *      the original filename of @a wim.
1759  * @retval ::WIMLIB_ERR_REOPEN
1760  *      The WIM was overwritten successfully, but it could not be re-opened
1761  *      read-only.  Therefore, the resources in the WIM can no longer be
1762  *      accessed, so this limits the functions that can be called on @a wim
1763  *      before calling wimlib_free().
1764  */
1765 extern int
1766 wimlib_overwrite(WIMStruct *wim, int write_flags, unsigned num_threads,
1767                  wimlib_progress_func_t progress_func);
1768
1769 /**
1770  * Prints information about one image, or all images, contained in a WIM.
1771  *
1772  * @param wim
1773  *      Pointer to the ::WIMStruct for a WIM file.
1774  * @param image
1775  *      The image about which to print information.  Can be the number of an
1776  *      image, or ::WIMLIB_ALL_IMAGES to print information about all images in the
1777  *      WIM.
1778  *
1779  * @return This function has no return value.  No error checking is done when
1780  * printing the information.  If @a image is invalid, an error message is
1781  * printed.
1782  */
1783 extern void
1784 wimlib_print_available_images(const WIMStruct *wim, int image);
1785
1786 /**
1787  * Prints the full paths to all files contained in an image, or all images, in a
1788  * WIM file.
1789  *
1790  * @param wim
1791  *      Pointer to the ::WIMStruct for a WIM file.
1792  * @param image
1793  *      Which image to print files for.  Can be the number of an image, or
1794  *      ::WIMLIB_ALL_IMAGES to print the files contained in all images.
1795  *
1796  * @return 0 on success; nonzero on error.
1797  * @retval ::WIMLIB_ERR_DECOMPRESSION
1798  *      The metadata resource for one of the specified images could not be
1799  *      decompressed.
1800  * @retval ::WIMLIB_ERR_INVALID_DENTRY
1801  *      A directory entry in the metadata resource for one of the specified
1802  *      images is invaled.
1803  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1804  *      @a image does not specify a valid image in @a wim, and is not
1805  *      ::WIMLIB_ALL_IMAGES.
1806  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1807  *      The metadata resource for one of the specified images is invalid.
1808  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
1809  *      The security data for one of the specified images is invalid.
1810  * @retval ::WIMLIB_ERR_NOMEM
1811  *      Failed to allocate needed memory.
1812  * @retval ::WIMLIB_ERR_READ
1813  *      An unexpected read error or end-of-file occurred when reading the
1814  *      metadata resource for one of the specified images.
1815  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
1816  *      @a wim was not a standalone WIM and was not the first part of a split
1817  *      WIM.
1818  */
1819 extern int
1820 wimlib_print_files(WIMStruct *wim, int image);
1821
1822 /**
1823  * Prints detailed information from the header of a WIM file.
1824  *
1825  * @param wim
1826  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
1827  *      standalone WIM or part of a split WIM.
1828  *
1829  * @return This function has no return value.
1830  *
1831  */
1832 extern void
1833 wimlib_print_header(const WIMStruct *wim);
1834
1835 /**
1836  * Prints the lookup table of a WIM file.  The lookup table maps SHA1 message
1837  * digests, as found in the directory entry tree in the WIM file, to file
1838  * resources in the WIM file.  This table includes one entry for each unique
1839  * file in the WIM, so it can be quite long.  There is only one lookup table per
1840  * WIM file, but each split WIM part has its own lookup table.
1841  *
1842  * @param wim
1843  *      Pointer to the ::WIMStruct for a WIM file.
1844  *
1845  * @return This function has no return value.
1846  */
1847 extern void
1848 wimlib_print_lookup_table(WIMStruct *wim);
1849
1850 /**
1851  * Prints the metadata of the specified image in a WIM file.  The metadata
1852  * consists of the security data as well as the directory entry tree.  Each
1853  * image has its own metadata.
1854  *
1855  * @param wim
1856  *      Pointer to the ::WIMStruct for a WIM file.
1857  * @param image
1858  *      Which image to print the metadata for.  Can be the number of an image,
1859  *      or ::WIMLIB_ALL_IMAGES to print the metadata for all images in the WIM.
1860  *
1861  * @return 0 on success; nonzero on error.
1862  * @retval ::WIMLIB_ERR_DECOMPRESSION
1863  *      The metadata resource for one of the specified images could not be
1864  *      decompressed.
1865  * @retval ::WIMLIB_ERR_INVALID_DENTRY
1866  *      A directory entry in the metadata resource for one of the specified
1867  *      images is invaled.
1868  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1869  *      @a image does not specify a valid image in @a wim, and is not
1870  *      ::WIMLIB_ALL_IMAGES.
1871  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1872  *      The metadata resource for one of the specified images is invalid.
1873  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
1874  *      The security data for one of the specified images is invalid.
1875  * @retval ::WIMLIB_ERR_NOMEM
1876  *      Failed to allocate needed memory.
1877  * @retval ::WIMLIB_ERR_READ
1878  *      An unexpected read error or end-of-file occurred when reading the
1879  *      metadata resource for one of the specified images.
1880  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
1881  *      @a wim was not a standalone WIM and was not the first part of a split
1882  *      WIM.
1883  */
1884 extern int
1885 wimlib_print_metadata(WIMStruct *wim, int image);
1886
1887 /**
1888  * Prints some basic information about a WIM file.  All information printed by
1889  * this function is also printed by wimlib_print_header(), but
1890  * wimlib_print_wim_information() prints some of this information more concisely
1891  * and in a more readable form.
1892  *
1893  * @param wim
1894  *      Pointer to the ::WIMStruct for a WIM file.
1895  *
1896  * @return This function has no return value.
1897  */
1898 extern void
1899 wimlib_print_wim_information(const WIMStruct *wim);
1900
1901 /**
1902  * Translates a string specifying the name or number of an image in the WIM into
1903  * the number of the image.  The images are numbered starting at 1.
1904  *
1905  * @param wim
1906  *      Pointer to the ::WIMStruct for a WIM file.
1907  * @param image_name_or_num
1908  *      A string specifying the name or number of an image in the WIM.  If it
1909  *      parses to a positive integer, this integer is taken to specify the
1910  *      number of the image, indexed starting at 1.  Otherwise, it is taken to
1911  *      be the name of an image, as given in the XML data for the WIM file.  It
1912  *      also may be the keyword "all" or the string "*", both of which will
1913  *      resolve to ::WIMLIB_ALL_IMAGES.
1914  *      <br/> <br/>
1915  *      There is no way to search for an image actually named "all", "*", or an
1916  *      integer number, or an image that has no name.  However, you can use
1917  *      wimlib_get_image_name() to get the name of any image.
1918  *
1919  * @return
1920  *      If the string resolved to a single existing image, the number of that
1921  *      image, indexed starting at 1, is returned.  If the keyword "all" or "*"
1922  *      was specified, ::WIMLIB_ALL_IMAGES is returned.  Otherwise,
1923  *      ::WIMLIB_NO_IMAGE is returned.  If @a image_name_or_num was @c NULL or
1924  *      the empty string, ::WIMLIB_NO_IMAGE is returned, even if one or more
1925  *      images in @a wim has no name.
1926  */
1927 extern int
1928 wimlib_resolve_image(WIMStruct *wim,
1929                      const wimlib_utf8char *image_name_or_num);
1930
1931 /**
1932  * Sets which image in the WIM is marked as bootable.
1933  *
1934  * @param wim
1935  *      Pointer to the ::WIMStruct for a WIM file.
1936  * @param boot_idx
1937  *      The number of the image to mark as bootable, or 0 to mark no image as
1938  *      bootable.
1939  * @return 0 on success; nonzero on error.
1940  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1941  *      @a boot_idx does not specify an existing image in @a wim, and it was not
1942  *      0.
1943  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
1944  *      @a wim is part of a split WIM.  We do not support changing the boot
1945  *      index of a split WIM.
1946  */
1947 extern int
1948 wimlib_set_boot_idx(WIMStruct *wim, int boot_idx);
1949
1950 /**
1951  * Changes the description of an image in the WIM.
1952  *
1953  * @param wim
1954  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
1955  *      standalone WIM or part of a split WIM; however, you should set the same
1956  *      description on all parts of a split WIM.
1957  * @param image
1958  *      The number of the image for which to change the description.
1959  * @param description
1960  *      The new description to give the image.  It may be @c NULL, which
1961  *      indicates that the image is to be given no description.
1962  *
1963  * @return 0 on success; nonzero on error.
1964  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1965  *      @a image does not specify a single existing image in @a wim.
1966  * @retval ::WIMLIB_ERR_NOMEM
1967  *      Failed to allocate the memory needed to duplicate the @a description
1968  *      string.
1969  */
1970 extern int
1971 wimlib_set_image_descripton(WIMStruct *wim, int image,
1972                             const wimlib_utf8char *description);
1973
1974 /**
1975  * Changes what is written in the \<FLAGS\> element in the WIM XML data
1976  * (something like "Core" or "Ultimate")
1977  *
1978  * @param wim
1979  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
1980  *      standalone WIM or part of a split WIM; however, you should set the same
1981  *      \<FLAGS\> element on all parts of a split WIM.
1982  * @param image
1983  *      The number of the image for which to change the description.
1984  * @param flags
1985  *      The new \<FLAGS\> element to give the image.  It may be @c NULL, which
1986  *      indicates that the image is to be given no \<FLAGS\> element.
1987  *
1988  * @return 0 on success; nonzero on error.
1989  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1990  *      @a image does not specify a single existing image in @a wim.
1991  * @retval ::WIMLIB_ERR_NOMEM
1992  *      Failed to allocate the memory needed to duplicate the @a flags string.
1993  */
1994 extern int wimlib_set_image_flags(WIMStruct *wim, int image,
1995                                   const wimlib_utf8char *flags);
1996
1997 /**
1998  * Changes the name of an image in the WIM.
1999  *
2000  * @param wim
2001  *      Pointer to the ::WIMStruct for a WIM file.  It may be either a
2002  *      standalone WIM or part of a split WIM; however, you should set the same
2003  *      name on all parts of a split WIM.
2004  * @param image
2005  *      The number of the image for which to change the name.
2006  * @param name
2007  *      The new name to give the image.  It must be a nonempty string.
2008  *
2009  * @return 0 on success; nonzero on error.
2010  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
2011  *      There is already an image named @a name in @a wim.
2012  * @retval ::WIMLIB_ERR_INVALID_PARAM
2013  *      @a name was @c NULL or the empty string.
2014  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2015  *      @a image does not specify a single existing image in @a wim.
2016  * @retval ::WIMLIB_ERR_NOMEM
2017  *      Failed to allocate the memory needed to duplicate the @a name string.
2018  */
2019 extern int wimlib_set_image_name(WIMStruct *wim, int image,
2020                                  const wimlib_utf8char *name);
2021
2022 /**
2023  * Set the functions that wimlib uses to allocate and free memory.
2024  *
2025  * These settings are global and not per-WIM.
2026  *
2027  * The default is to use the default @c malloc() and @c free() from the C
2028  * library.
2029  *
2030  * Please note that some external functions, such as those in @c libntfs-3g, may
2031  * use the standard memory allocation functions.
2032  *
2033  * @param malloc_func
2034  *      A function equivalent to @c malloc() that wimlib will use to allocate
2035  *      memory.  If @c NULL, the allocator function is set back to the default
2036  *      @c malloc() from the C library.
2037  * @param free_func
2038  *      A function equivalent to @c free() that wimlib will use to free memory.
2039  *      If @c NULL, the free function is set back to the default @c free() from
2040  *      the C library.
2041  * @param realloc_func
2042  *      A function equivalent to @c realloc() that wimlib will use to reallocate
2043  *      memory.  If @c NULL, the free function is set back to the default @c
2044  *      realloc() from the C library.
2045  * @return 0 on success; nonzero on error.
2046  * @retval ::WIMLIB_ERR_UNSUPPORTED
2047  *      wimlib was compiled with the @c --without-custom-memory-allocator flag,
2048  *      so custom memory allocators are unsupported.
2049  */
2050 extern int
2051 wimlib_set_memory_allocator(void *(*malloc_func)(size_t),
2052                             void (*free_func)(void *),
2053                             void *(*realloc_func)(void *, size_t));
2054
2055 /**
2056  * Sets whether wimlib is to print error messages to @c stderr when a function
2057  * fails.  These error messages may provide information that cannot be
2058  * determined only from the error code that is returned.  Not every error will
2059  * result in an error message being printed.
2060  *
2061  * This setting is global and not per-WIM.
2062  *
2063  * By default, error messages are not printed.
2064  *
2065  * @param show_messages
2066  *      @c true if error messages are to be printed; @c false if error messages
2067  *      are not to be printed.
2068  *
2069  * @return 0 on success; nonzero on error.
2070  * @retval ::WIMLIB_ERR_UNSUPPORTED
2071  *      @a show_messages was @c true, but wimlib was compiled with the @c
2072  *      --without-error-messages option.   Therefore, error messages cannot be
2073  *      shown.
2074  */
2075 extern int
2076 wimlib_set_print_errors(bool show_messages);
2077
2078 /**
2079  * Splits a WIM into multiple parts.
2080  *
2081  * @param wim
2082  *      The ::WIMStruct for the WIM to split.  It must be a standalone, one-part
2083  *      WIM.
2084  * @param swm_name
2085  *      Name of the SWM file to create.  This will be the name of the first
2086  *      part.  The other parts will have the same name with 2, 3, 4, ..., etc.
2087  *      appended before the suffix.
2088  * @param part_size
2089  *      The maximum size per part, in bytes.  It is not guaranteed that this
2090  *      will really be the maximum size per part, because some file resources in
2091  *      the WIM may be larger than this size, and the WIM file format provides
2092  *      no way to split up file resources among multiple WIMs.
2093  * @param write_flags
2094  *      ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY if integrity tables are to be
2095  *      included in the split WIM parts.
2096  * @param progress_func
2097  *      If non-NULL, a function that will be called periodically with the
2098  *      progress of the current operation.
2099  *
2100  * @return 0 on success; nonzero on error.  This function may return any value
2101  * returned by wimlib_write() as well as the following error codes:
2102  *
2103  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
2104  *      @a wim is not part 1 of a stand-alone WIM.
2105  * @retval ::WIMLIB_ERR_INVALID_PARAM
2106  *      @a swm_name was @c NULL, or @a part_size was 0.
2107  *
2108  * Note: the WIM's uncompressed and compressed resources are not checksummed
2109  * when they are copied from the joined WIM to the split WIM parts, nor are
2110  * compressed resources re-compressed.
2111  */
2112 extern int
2113 wimlib_split(WIMStruct *wim, const wimlib_mbchar *swm_name,
2114              size_t part_size, int write_flags,
2115              wimlib_progress_func_t progress_func);
2116
2117 /**
2118  * Unmounts a WIM image that was mounted using wimlib_mount_image().
2119  *
2120  * The image to unmount is specified by the path to the mountpoint, not the
2121  * original ::WIMStruct passed to wimlib_mount_image(), which should not be
2122  * touched and also may have been allocated in a different process.
2123  *
2124  * To unmount the image, the thread calling this function communicates with the
2125  * thread that is managing the mounted WIM image.  This function blocks until it
2126  * is known whether the unmount succeeded or failed.  In the case of a
2127  * read-write mounted WIM, the unmount is not considered to have succeeded until
2128  * all changes have been saved to the underlying WIM file.
2129  *
2130  * @param dir
2131  *      The directory that the WIM image was mounted on.
2132  * @param unmount_flags
2133  *      Bitwise OR of the flags ::WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY,
2134  *      ::WIMLIB_UNMOUNT_FLAG_COMMIT, ::WIMLIB_UNMOUNT_FLAG_REBUILD, and/or
2135  *      ::WIMLIB_UNMOUNT_FLAG_RECOMPRESS.  None of these flags affect read-only
2136  *      mounts.
2137  * @param progress_func
2138  *      If non-NULL, a function that will be called periodically with the
2139  *      progress of the current operation.
2140  *
2141  * @return 0 on success; nonzero on error.
2142  *
2143  * @retval ::WIMLIB_ERR_DELETE_STAGING_DIR
2144  *      The filesystem daemon was unable to remove the staging directory and the
2145  *      temporary files that it contains.
2146  * @retval ::WIMLIB_ERR_FILESYSTEM_DAEMON_CRASHED
2147  *      The filesystem daemon appears to have terminated before sending an exit
2148  *      status.
2149  * @retval ::WIMLIB_ERR_FORK
2150  *      Could not @c fork() the process.
2151  * @retval ::WIMLIB_ERR_FUSERMOUNT
2152  *      The @b fusermount program could not be executed or exited with a failure
2153  *      status.
2154  * @retval ::WIMLIB_ERR_MQUEUE
2155  *      Could not open a POSIX message queue to communicate with the filesystem
2156  *      daemon servicing the mounted filesystem, could not send a message
2157  *      through the queue, or could not receive a message through the queue.
2158  * @retval ::WIMLIB_ERR_NOMEM
2159  *      Failed to allocate needed memory.
2160  * @retval ::WIMLIB_ERR_OPEN
2161  *      The filesystem daemon could not open a temporary file for writing the
2162  *      new WIM.
2163  * @retval ::WIMLIB_ERR_READ
2164  *      A read error occurred when the filesystem daemon tried to a file from
2165  *      the staging directory
2166  * @retval ::WIMLIB_ERR_RENAME
2167  *      The filesystem daemon failed to rename the newly written WIM file to the
2168  *      original WIM file.
2169  * @retval ::WIMLIB_ERR_WRITE
2170  *      A write error occurred when the filesystem daemon was writing to the new
2171  *      WIM file, or the filesystem daemon was unable to flush changes that had
2172  *      been made to files in the staging directory.
2173  */
2174 extern int
2175 wimlib_unmount_image(const wimlib_mbchar *dir, int unmount_flags,
2176                      wimlib_progress_func_t progress_func);
2177
2178 /**
2179  * Writes a standalone WIM to a file.
2180  *
2181  * This brings in resources from any external locations, such as directory trees
2182  * or NTFS volumes scanned with wimlib_add_image(), or other WIM files via
2183  * wimlib_export_image(), and incorporates them into a new on-disk WIM file.
2184  *
2185  * @param wim
2186  *      Pointer to the ::WIMStruct for a WIM.  There may have been in-memory
2187  *      changes made to it, which are then reflected in the output file.
2188  * @param path
2189  *      The path to the file to write the WIM to.
2190  * @param image
2191  *      The image inside the WIM to write.  Use ::WIMLIB_ALL_IMAGES to include all
2192  *      images.
2193  * @param write_flags
2194  *      Bitwise OR of the flags ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY,
2195  *      ::WIMLIB_WRITE_FLAG_RECOMPRESS, ::WIMLIB_WRITE_FLAG_FSYNC, and/or
2196  *      ::WIMLIB_WRITE_FLAG_SOFT_DELETE.
2197  * @param num_threads
2198  *      Number of threads to use for compressing data.  If 0, the number of
2199  *      threads is taken to be the number of online processors.  Note: if no
2200  *      data compression needs to be done, no additional threads will be created
2201  *      regardless of this parameter (e.g. if writing an uncompressed WIM, or
2202  *      exporting an image from a compressed WIM to another WIM of the same
2203  *      compression type without ::WIMLIB_WRITE_FLAG_RECOMPRESS specified in @a
2204  *      write_flags).
2205  * @param progress_func
2206  *      If non-NULL, a function that will be called periodically with the
2207  *      progress of the current operation.
2208  *
2209  * @return 0 on success; nonzero on error.
2210  * @retval ::WIMLIB_ERR_DECOMPRESSION
2211  *      Failed to decompress a metadata or file resource in @a wim.
2212  * @retval ::WIMLIB_ERR_INVALID_DENTRY
2213  *      A directory entry in the metadata resource for @a image in @a wim is
2214  *      invalid.
2215  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2216  *      @a image does not specify a single existing image in @a wim, and is not
2217  *      ::WIMLIB_ALL_IMAGES.
2218  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_HASH
2219  *      A file that had previously been scanned for inclusion in the WIM by
2220  *      wimlib_add_image() was concurrently modified, so it failed the SHA1
2221  *      message digest check.
2222  * @retval ::WIMLIB_ERR_INVALID_PARAM
2223  *      @a path was @c NULL.
2224  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
2225  *      The metadata resource for @a image in @a wim is invalid.
2226  * @retval ::WIMLIB_ERR_INVALID_SECURITY_DATA
2227  *      The security data for @a image in @a wim is invalid.
2228  * @retval ::WIMLIB_ERR_NOMEM
2229  *      Failed to allocate needed memory.
2230  * @retval ::WIMLIB_ERR_OPEN
2231  *      Failed to open @a path for writing, or some file resources in @a
2232  *      wim refer to files in the outside filesystem, and one of these files
2233  *      could not be opened for reading.
2234  * @retval ::WIMLIB_ERR_READ
2235  *      An error occurred when trying to read data from the WIM file associated
2236  *      with @a wim, or some file resources in @a wim refer to files in the
2237  *      outside filesystem, and a read error occurred when reading one of these
2238  *      files.
2239  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
2240  *      @a wim is part of a split WIM.  You may not call this function on a
2241  *      split WIM.
2242  * @retval ::WIMLIB_ERR_WRITE
2243  *      An error occurred when trying to write data to the new WIM file at @a
2244  *      path.
2245  */
2246 extern int
2247 wimlib_write(WIMStruct *wim, const wimlib_mbchar *path, int image,
2248              int write_flags, unsigned num_threads,
2249              wimlib_progress_func_t progress_func);
2250
2251 #endif /* _WIMLIB_H */