]> wimlib.net Git - wimlib/blob - include/wimlib.h
lzx_compress: add new block splitting algorithm
[wimlib] / include / wimlib.h
1 /**
2  * @file wimlib.h
3  * @brief External header for wimlib.
4  *
5  * This file contains comments for generating documentation with Doxygen.  The
6  * built HTML documentation can be viewed at https://wimlib.net/apidoc.  Make
7  * sure to see the <a href="modules.html">Modules page</a> to make more sense of
8  * the declarations in this header.
9  */
10
11 /**
12  * @mainpage
13  *
14  * This is the documentation for the library interface of wimlib 1.9.2, a C
15  * library for creating, modifying, extracting, and mounting files in the
16  * Windows Imaging Format.  This documentation is intended for developers only.
17  * If you have installed wimlib and want to know how to use the @b wimlib-imagex
18  * program, please see the manual pages and also the <a
19  * href="https://wimlib.net/git/?p=wimlib;a=blob;f=README">README file</a>.
20  *
21  * @section sec_installing Installing
22  *
23  * @subsection UNIX
24  *
25  * Download the source code from https://wimlib.net.  Install the library by
26  * running <c>configure && make && sudo make install</c>.  See the README for
27  * information about configuration options.  To use wimlib in your program after
28  * installing it, include wimlib.h and link your program with <c>-lwim</c>.
29  *
30  * @subsection Windows
31  *
32  * Download the Windows binary distribution with the appropriate architecture
33  * (i686 or x86_64 --- also called "x86" and "amd64" respectively) from
34  * https://wimlib.net.  Link your program with the libwim-15.dll file.  Make
35  * sure to also download the source code so you can get wimlib.h, as it is not
36  * included in the binary distribution.  If you need to access the DLL from
37  * other programming languages, note that the calling convention is "cdecl".
38  *
39  * Note that wimlib is developed using MinGW-w64, and there may be a little work
40  * required if you plan to use the header and DLL with Visual Studio.
41  *
42  * @section sec_examples Examples
43  *
44  * Several examples are located in the "examples" directory of the source
45  * distribution.  Also see @ref sec_basic_wim_handling_concepts below.
46  *
47  * There is also the <a
48  * href="https://wimlib.net/git/?p=wimlib;a=blob;f=programs/imagex.c">
49  * source code of <b>wimlib-imagex</b></a>, which is complicated but uses most
50  * capabilities of wimlib.
51  *
52  * @section backward_compatibility Backward Compatibility
53  *
54  * New releases of wimlib are intended to be backward compatible with old
55  * releases, except when the libtool "age" is reset.  This most recently
56  * occurred for the v1.7.0 (libwim15) release (June 2014).  Since the library is
57  * becoming increasingly stable, the goal is to maintain the current API/ABI for
58  * as long as possible unless there is a strong reason not to.
59  *
60  * As with any other library, applications should not rely on internal
61  * implementation details that may be subject to change.
62  *
63  * @section sec_basic_wim_handling_concepts Basic WIM handling concepts
64  *
65  * wimlib wraps up a WIM file in an opaque ::WIMStruct structure.   There are
66  * two ways to create such a structure:
67  *
68  * 1. wimlib_open_wim() opens an on-disk WIM file and creates a ::WIMStruct for
69  *    it.
70  * 2. wimlib_create_new_wim() creates a new ::WIMStruct that initially contains
71  *    no images and does not yet have a backing on-disk file.
72  *
73  * A ::WIMStruct contains zero or more independent directory trees called @a
74  * images.  Images may be extracted, added, deleted, exported, and updated using
75  * various API functions.  (See @ref G_extracting_wims and @ref G_modifying_wims
76  * for more details.)
77  *
78  * Changes made to a WIM represented by a ::WIMStruct have no persistent effect
79  * until the WIM is actually written to an on-disk file.  This can be done using
80  * wimlib_write(), but if the WIM was originally opened using wimlib_open_wim(),
81  * then wimlib_overwrite() can be used instead.  (See @ref
82  * G_writing_and_overwriting_wims for more details.)
83  *
84  * wimlib's API is designed to let you combine functions to accomplish tasks in
85  * a flexible way.  Here are some example sequences of function calls:
86  *
87  * Apply an image from a WIM file, similar to the command-line program
88  * <b>wimapply</b>:
89  *
90  * 1. wimlib_open_wim()
91  * 2. wimlib_extract_image()
92  *
93  * Capture an image into a new WIM file, similar to <b>wimcapture</b>:
94  *
95  * 1. wimlib_create_new_wim()
96  * 2. wimlib_add_image()
97  * 3. wimlib_write()
98  *
99  * Append an image to an existing WIM file, similar to <b>wimappend</b>:
100  *
101  * 1. wimlib_open_wim()
102  * 2. wimlib_add_image()
103  * 3. wimlib_overwrite()
104  *
105  * Delete an image from an existing WIM file, similar to <b>wimdelete</b>:
106  *
107  * 1. wimlib_open_wim()
108  * 2. wimlib_delete_image()
109  * 3. wimlib_overwrite()
110  *
111  * Export an image from one WIM file to another, similar to <b>wimexport</b>:
112  *
113  * 1. wimlib_open_wim() (on source)
114  * 2. wimlib_open_wim() (on destination)
115  * 3. wimlib_export_image()
116  * 4. wimlib_overwrite() (on destination)
117  *
118  * The API also lets you do things the command-line tools don't directly allow.
119  * For example, you could make multiple changes to a WIM before efficiently
120  * committing the changes with just one call to wimlib_overwrite().  Perhaps you
121  * want to both delete an image and add a new one; or perhaps you want to
122  * customize an image with wimlib_update_image() after adding it.  All these use
123  * cases are supported by the API.
124  *
125  * @section sec_cleaning_up Cleaning up
126  *
127  * After you are done with any ::WIMStruct, you can call wimlib_free() to free
128  * all resources associated with it.  Also, when you are completely done with
129  * using wimlib in your program, you can call wimlib_global_cleanup() to free
130  * any other resources allocated by the library.
131  *
132  * @section sec_error_handling Error Handling
133  *
134  * Most functions in wimlib return 0 on success and a positive
135  * ::wimlib_error_code value on failure.  Use wimlib_get_error_string() to get a
136  * string that describes an error code.  wimlib also can print error messages to
137  * standard error or a custom file when an error occurs, and these may be more
138  * informative than the error code; to enable this, call
139  * wimlib_set_print_errors().  Please note that this is for convenience only,
140  * and some errors can occur without a message being printed.  Currently, error
141  * messages and strings (as well as all documentation, for that matter) are only
142  * available in English.
143  *
144  * @section sec_encodings Locales and character encodings
145  *
146  * To support Windows as well as UNIX-like systems, wimlib's API typically takes
147  * and returns strings of ::wimlib_tchar, which are in a platform-dependent
148  * encoding.
149  *
150  * On Windows, each ::wimlib_tchar is 2 bytes and is the same as a "wchar_t",
151  * and the encoding is UTF-16LE.
152  *
153  * On UNIX-like systems, each ::wimlib_tchar is 1 byte and is simply a "char",
154  * and the encoding is UTF-8.
155  *
156  * @section sec_advanced Additional information and features
157  *
158  *
159  * @subsection subsec_mounting_wim_images Mounting WIM images
160  *
161  * See @ref G_mounting_wim_images.
162  *
163  * @subsection subsec_progress_functions Progress Messages
164  *
165  * See @ref G_progress.
166  *
167  * @subsection subsec_non_standalone_wims Non-standalone WIMs
168  *
169  * See @ref G_nonstandalone_wims.
170  *
171  * @subsection subsec_pipable_wims Pipable WIMs
172  *
173  * wimlib supports a special "pipable" WIM format which unfortunately is @b not
174  * compatible with Microsoft's software.  To create a pipable WIM, call
175  * wimlib_write(), wimlib_write_to_fd(), or wimlib_overwrite() with
176  * ::WIMLIB_WRITE_FLAG_PIPABLE specified.  Pipable WIMs are pipable in both
177  * directions, so wimlib_write_to_fd() can be used to write a pipable WIM to a
178  * pipe, and wimlib_extract_image_from_pipe() can be used to apply an image from
179  * a pipable WIM.  wimlib can also transparently open and operate on pipable WIM
180  * s using a seekable file descriptor using the regular function calls (e.g.
181  * wimlib_open_wim(), wimlib_extract_image()).
182  *
183  * See the documentation for the <b>--pipable</b> flag of <b>wimcapture</b> for
184  * more information about pipable WIMs.
185  *
186  * @subsection subsec_thread_safety Thread Safety
187  *
188  * A ::WIMStruct is not thread-safe and cannot be accessed by multiple threads
189  * concurrently, even for "read-only" operations such as extraction.  However,
190  * users are free to use <i>different</i> ::WIMStruct's from different threads
191  * concurrently.  It is even allowed for multiple ::WIMStruct's to be backed by
192  * the same on-disk WIM file, although "overwrites" should never be done in such
193  * a scenario.
194  *
195  * In addition, several functions change global state and should only be called
196  * when a single thread is active in the library.  These functions are:
197  *
198  * - wimlib_global_init()
199  * - wimlib_global_cleanup()
200  * - wimlib_set_memory_allocator()
201  * - wimlib_set_print_errors()
202  * - wimlib_set_error_file()
203  * - wimlib_set_error_file_by_name()
204  *
205  * @subsection subsec_limitations Limitations
206  *
207  * This section documents some technical limitations of wimlib not already
208  * described in the documentation for @b wimlib-imagex.
209  *
210  * - The old WIM format from Vista pre-releases is not supported.
211  * - wimlib does not provide a clone of the @b PEImg tool, or the @b DISM
212  *   functionality other than that already present in @b ImageX, that allows you
213  *   to make certain Windows-specific modifications to a Windows PE image, such
214  *   as adding a driver or Windows component.  Such a tool could be implemented
215  *   on top of wimlib.
216  *
217  * @subsection more_info More information
218  *
219  * You are advised to read the README as well as the documentation for
220  * <b>wimlib-imagex</b>, since not all relevant information is repeated here in
221  * the API documentation.
222  */
223
224 /** @defgroup G_general General
225  *
226  * @brief Declarations and structures shared across the library.
227  */
228
229 /** @defgroup G_creating_and_opening_wims Creating and Opening WIMs
230  *
231  * @brief Open an existing WIM file as a ::WIMStruct, or create a new
232  * ::WIMStruct which can be used to create a new WIM file.
233  */
234
235 /** @defgroup G_wim_information Retrieving WIM information and directory listings
236  *
237  * @brief Retrieve information about a WIM or WIM image.
238  */
239
240 /** @defgroup G_modifying_wims Modifying WIMs
241  *
242  * @brief Make changes to a ::WIMStruct, in preparation of persisting the
243  * ::WIMStruct to an on-disk file.
244  *
245  * @section sec_adding_images Capturing and adding WIM images
246  *
247  * As described in @ref sec_basic_wim_handling_concepts, capturing a new WIM or
248  * appending an image to an existing WIM is a multi-step process, but at its
249  * core is wimlib_add_image() or an equivalent function.  Normally,
250  * wimlib_add_image() takes an on-disk directory tree and logically adds it to a
251  * ::WIMStruct as a new image.  However, when supported by the build of the
252  * library, there is also a special NTFS volume capture mode (entered when
253  * ::WIMLIB_ADD_FLAG_NTFS is specified) that allows adding the image directly
254  * from an unmounted NTFS volume.
255  *
256  * Another function, wimlib_add_image_multisource() is also provided.  It
257  * generalizes wimlib_add_image() to allow combining multiple files or directory
258  * trees into a single WIM image in a configurable way.
259  *
260  * For maximum customization of WIM image creation, it is also possible to add a
261  * completely empty WIM image with wimlib_add_empty_image(), then update it with
262  * wimlib_update_image().  (This is in fact what wimlib_add_image() and
263  * wimlib_add_image_multisource() do internally.)
264  *
265  * Note that some details of how image addition/capture works are documented
266  * more fully in the documentation for <b>wimcapture</b>.
267  *
268  * @section sec_deleting_images Deleting WIM images
269  *
270  * wimlib_delete_image() can delete an image from a ::WIMStruct.  But as usual,
271  * wimlib_write() or wimlib_overwrite() must be called to cause the changes to
272  * be made persistent in an on-disk WIM file.
273  *
274  * @section sec_exporting_images Exporting WIM images
275  *
276  * wimlib_export_image() can copy, or "export", an image from one WIM to
277  * another.
278  *
279  * @section sec_other_modifications Other modifications
280  *
281  * wimlib_update_image() can add, delete, and rename files in a WIM image.
282  *
283  * wimlib_set_image_property() can change other image metadata.
284  *
285  * wimlib_set_wim_info() can change information about the WIM file itself, such
286  * as the boot index.
287  */
288
289 /** @defgroup G_extracting_wims Extracting WIMs
290  *
291  * @brief Extract files, directories, and images from a WIM.
292  *
293  * wimlib_extract_image() extracts, or "applies", an image from a WIM,
294  * represented by a ::WIMStruct.  This normally extracts the image to a
295  * directory, but when supported by the build of the library there is also a
296  * special NTFS volume extraction mode (entered when ::WIMLIB_EXTRACT_FLAG_NTFS
297  * is specified) that allows extracting a WIM image directly to an unmounted
298  * NTFS volume.  Various other flags allow further customization of image
299  * extraction.
300  *
301  * wimlib_extract_paths() and wimlib_extract_pathlist() allow extracting a list
302  * of (possibly wildcard) paths from a WIM image.
303  *
304  * wimlib_extract_image_from_pipe() extracts an image from a pipable WIM sent
305  * over a pipe; see @ref subsec_pipable_wims.
306  *
307  * Some details of how WIM extraction works are described more fully in the
308  * documentation for <b>wimapply</b> and <b>wimextract</b>.
309  */
310
311 /** @defgroup G_mounting_wim_images Mounting WIM images
312  *
313  * @brief Mount and unmount WIM images.
314  *
315  * On Linux, wimlib supports mounting images from WIM files either read-only or
316  * read-write.  To mount an image, call wimlib_mount_image().  To unmount an
317  * image, call wimlib_unmount_image().  Mounting can be done without root
318  * privileges because it is implemented using FUSE (Filesystem in Userspace).
319  *
320  * If wimlib is compiled using the <c>--without-fuse</c> flag, these functions
321  * will be available but will fail with ::WIMLIB_ERR_UNSUPPORTED.
322  *
323  * Note: if mounting is unsupported, wimlib still provides another way to modify
324  * a WIM image (wimlib_update_image()).
325  */
326
327 /**
328  * @defgroup G_progress Progress Messages
329  *
330  * @brief Track the progress of long WIM operations.
331  *
332  * Library users can provide a progress function which will be called
333  * periodically during operations such as extracting a WIM image or writing a
334  * WIM image.  A ::WIMStruct can have a progress function of type
335  * ::wimlib_progress_func_t associated with it by calling
336  * wimlib_register_progress_function() or by opening the ::WIMStruct using
337  * wimlib_open_wim_with_progress().  Once this is done, the progress function
338  * will be called automatically during many operations, such as
339  * wimlib_extract_image() and wimlib_write().
340  *
341  * Some functions that do not operate directly on a user-provided ::WIMStruct,
342  * such as wimlib_join(), also take the progress function directly using an
343  * extended version of the function, such as wimlib_join_with_progress().
344  *
345  * Since wimlib v1.7.0, progress functions are no longer just unidirectional.
346  * You can now return ::WIMLIB_PROGRESS_STATUS_ABORT to cause the current
347  * operation to be aborted.  wimlib v1.7.0 also added the third argument to
348  * ::wimlib_progress_func_t, which is a user-supplied context.
349  */
350
351 /** @defgroup G_writing_and_overwriting_wims Writing and Overwriting WIMs
352  *
353  * @brief Create or update an on-disk WIM file.
354  *
355  * wimlib_write() creates a new on-disk WIM file, whereas wimlib_overwrite()
356  * updates an existing WIM file.  See @ref sec_basic_wim_handling_concepts for
357  * more information about the API design.
358  */
359
360 /** @defgroup G_nonstandalone_wims Creating and handling non-standalone WIMs
361  *
362  * @brief Create and handle non-standalone WIMs, such as split and delta WIMs.
363  *
364  * A ::WIMStruct backed by an on-disk file normally represents a fully
365  * standalone WIM archive.  However, WIM archives can also be arranged in
366  * non-standalone ways, such as a set of on-disk files that together form a
367  * single "split WIM" or "delta WIM".  Such arrangements are fully supported by
368  * wimlib.  However, as a result, in such cases a ::WIMStruct created from one
369  * of these on-disk files initially only partially represents the full WIM and
370  * needs to, in effect, be logically combined with other ::WIMStruct's before
371  * performing certain operations, such as extracting files with
372  * wimlib_extract_image() or wimlib_extract_paths().  This is done by calling
373  * wimlib_reference_resource_files() or wimlib_reference_resources().  Note: if
374  * you fail to do so, you may see the error code
375  * ::WIMLIB_ERR_RESOURCE_NOT_FOUND; this just indicates that data is not
376  * available because the appropriate WIM files have not yet been referenced.
377  *
378  * wimlib_write() can create delta WIMs as well as standalone WIMs, but a
379  * specialized function (wimlib_split()) is needed to create a split WIM.
380  */
381
382 #ifndef _WIMLIB_H
383 #define _WIMLIB_H
384
385 #include <stdio.h>
386 #include <stddef.h>
387 #include <stdbool.h>
388 #include <inttypes.h>
389 #include <time.h>
390
391 /** @addtogroup G_general
392  * @{ */
393
394 /** Major version of the library (for example, the 1 in 1.2.5).  */
395 #define WIMLIB_MAJOR_VERSION 1
396
397 /** Minor version of the library (for example, the 2 in 1.2.5). */
398 #define WIMLIB_MINOR_VERSION 9
399
400 /** Patch version of the library (for example, the 5 in 1.2.5). */
401 #define WIMLIB_PATCH_VERSION 2
402
403 #ifdef __cplusplus
404 extern "C" {
405 #endif
406
407 /**
408  * Opaque structure that represents a WIM, possibly backed by an on-disk file.
409  * See @ref sec_basic_wim_handling_concepts for more information.
410  */
411 #ifndef WIMLIB_WIMSTRUCT_DECLARED
412 typedef struct WIMStruct WIMStruct;
413 #define WIMLIB_WIMSTRUCT_DECLARED
414 #endif
415
416 #ifdef __WIN32__
417 typedef wchar_t wimlib_tchar;
418 #else
419 /** See @ref sec_encodings */
420 typedef char wimlib_tchar;
421 #endif
422
423 #ifdef __WIN32__
424 /** Path separator for WIM paths passed back to progress callbacks.
425  * This is forward slash on UNIX and backslash on Windows.  */
426 #  define WIMLIB_WIM_PATH_SEPARATOR '\\'
427 #  define WIMLIB_WIM_PATH_SEPARATOR_STRING L"\\"
428 #else
429 /** Path separator for WIM paths passed back to progress callbacks.
430  * This is forward slash on UNIX and backslash on Windows.  */
431 #  define WIMLIB_WIM_PATH_SEPARATOR '/'
432 #  define WIMLIB_WIM_PATH_SEPARATOR_STRING "/"
433 #endif
434
435 /** A string containing a single path separator; use this to specify the root
436  * directory of a WIM image.  */
437 #define WIMLIB_WIM_ROOT_PATH WIMLIB_WIM_PATH_SEPARATOR_STRING
438
439 /** Use this to test if the specified path refers to the root directory of the
440  * WIM image.  */
441 #define WIMLIB_IS_WIM_ROOT_PATH(path) \
442                 ((path)[0] == WIMLIB_WIM_PATH_SEPARATOR &&      \
443                  (path)[1] == 0)
444
445 /** Length of a Globally Unique Identifier (GUID), in bytes.  */
446 #define WIMLIB_GUID_LEN 16
447
448 /**
449  * Specifies a compression type.
450  *
451  * A WIM file has a default compression type, indicated by its file header.
452  * Normally, each resource in the WIM file is compressed with this compression
453  * type.  However, resources may be stored as uncompressed; for example, wimlib
454  * may do so if a resource does not compress to less than its original size.  In
455  * addition, a WIM with the new version number of 3584, or "ESD file", might
456  * contain solid resources with different compression types.
457  */
458 enum wimlib_compression_type {
459         /**
460          * No compression.
461          *
462          * This is a valid argument to wimlib_create_new_wim() and
463          * wimlib_set_output_compression_type(), but not to the functions in the
464          * compression API such as wimlib_create_compressor().
465          */
466         WIMLIB_COMPRESSION_TYPE_NONE = 0,
467
468         /**
469          * The XPRESS compression format.  This format combines Lempel-Ziv
470          * factorization with Huffman encoding.  Compression and decompression
471          * are both fast.  This format supports chunk sizes that are powers of 2
472          * between <c>2^12</c> and <c>2^16</c>, inclusively.
473          *
474          * wimlib's XPRESS compressor will, with the default settings, usually
475          * produce a better compression ratio, and work more quickly, than the
476          * implementation in Microsoft's WIMGAPI (as of Windows 8.1).
477          * Non-default compression levels are also supported.  For example,
478          * level 80 will enable two-pass optimal parsing, which is significantly
479          * slower but usually improves compression by several percent over the
480          * default level of 50.
481          *
482          * If using wimlib_create_compressor() to create an XPRESS compressor
483          * directly, the @p max_block_size parameter may be any positive value
484          * up to and including <c>2^16</c>.
485          */
486         WIMLIB_COMPRESSION_TYPE_XPRESS = 1,
487
488         /**
489          * The LZX compression format.  This format combines Lempel-Ziv
490          * factorization with Huffman encoding, but with more features and
491          * complexity than XPRESS.  Compression is slow to somewhat fast,
492          * depending on the settings.  Decompression is fast but slower than
493          * XPRESS.  This format supports chunk sizes that are powers of 2
494          * between <c>2^15</c> and <c>2^21</c>, inclusively.  Note: chunk sizes
495          * other than <c>2^15</c> are not compatible with the Microsoft
496          * implementation.
497          *
498          * wimlib's LZX compressor will, with the default settings, usually
499          * produce a better compression ratio, and work more quickly, than the
500          * implementation in Microsoft's WIMGAPI (as of Windows 8.1).
501          * Non-default compression levels are also supported.  For example,
502          * level 20 will provide fast compression, almost as fast as XPRESS.
503          *
504          * If using wimlib_create_compressor() to create an LZX compressor
505          * directly, the @p max_block_size parameter may be any positive value
506          * up to and including <c>2^21</c>.
507          */
508         WIMLIB_COMPRESSION_TYPE_LZX = 2,
509
510         /**
511          * The LZMS compression format.  This format combines Lempel-Ziv
512          * factorization with adaptive Huffman encoding and range coding.
513          * Compression and decompression are both fairly slow.  This format
514          * supports chunk sizes that are powers of 2 between <c>2^15</c> and
515          * <c>2^30</c>, inclusively.  This format is best used for large chunk
516          * sizes.  Note: LZMS compression is only compatible with wimlib v1.6.0
517          * and later, WIMGAPI Windows 8 and later, and DISM Windows 8.1 and
518          * later.  Also, chunk sizes larger than <c>2^26</c> are not compatible
519          * with the Microsoft implementation.
520          *
521          * wimlib's LZMS compressor will, with the default settings, usually
522          * produce a better compression ratio, and work more quickly, than the
523          * implementation in Microsoft's WIMGAPI (as of Windows 8.1).  There is
524          * limited support for non-default compression levels, but compression
525          * will be noticeably faster if you choose a level < 35.
526          *
527          * If using wimlib_create_compressor() to create an LZMS compressor
528          * directly, the @p max_block_size parameter may be any positive value
529          * up to and including <c>2^30</c>.
530          */
531         WIMLIB_COMPRESSION_TYPE_LZMS = 3,
532 };
533
534 /** @} */
535 /** @addtogroup G_progress
536  * @{ */
537
538 /** Possible values of the first parameter to the user-supplied
539  * ::wimlib_progress_func_t progress function */
540 enum wimlib_progress_msg {
541
542         /** A WIM image is about to be extracted.  @p info will point to
543          * ::wimlib_progress_info.extract.  This message is received once per
544          * image for calls to wimlib_extract_image() and
545          * wimlib_extract_image_from_pipe().  */
546         WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN = 0,
547
548         /** One or more file or directory trees within a WIM image is about to
549          * be extracted.  @p info will point to ::wimlib_progress_info.extract.
550          * This message is received only once per wimlib_extract_paths() and
551          * wimlib_extract_pathlist(), since wimlib combines all paths into a
552          * single extraction operation for optimization purposes.  */
553         WIMLIB_PROGRESS_MSG_EXTRACT_TREE_BEGIN = 1,
554
555         /** This message may be sent periodically (not for every file) while
556          * files and directories are being created, prior to file data
557          * extraction.  @p info will point to ::wimlib_progress_info.extract.
558          * In particular, the @p current_file_count and @p end_file_count
559          * members may be used to track the progress of this phase of
560          * extraction.  */
561         WIMLIB_PROGRESS_MSG_EXTRACT_FILE_STRUCTURE = 3,
562
563         /** File data is currently being extracted.  @p info will point to
564          * ::wimlib_progress_info.extract.  This is the main message to track
565          * the progress of an extraction operation.  */
566         WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS = 4,
567
568         /** Starting to read a new part of a split pipable WIM over the pipe.
569          * @p info will point to ::wimlib_progress_info.extract.  */
570         WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN = 5,
571
572         /** This message may be sent periodically (not necessarily for every
573          * file) while file and directory metadata is being extracted, following
574          * file data extraction.  @p info will point to
575          * ::wimlib_progress_info.extract.  The @p current_file_count and @p
576          * end_file_count members may be used to track the progress of this
577          * phase of extraction.  */
578         WIMLIB_PROGRESS_MSG_EXTRACT_METADATA = 6,
579
580         /** The image has been successfully extracted.  @p info will point to
581          * ::wimlib_progress_info.extract.  This is paired with
582          * ::WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN.  */
583         WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END = 7,
584
585         /** The files or directory trees have been successfully extracted.  @p
586          * info will point to ::wimlib_progress_info.extract.  This is paired
587          * with ::WIMLIB_PROGRESS_MSG_EXTRACT_TREE_BEGIN.  */
588         WIMLIB_PROGRESS_MSG_EXTRACT_TREE_END = 8,
589
590         /** The directory or NTFS volume is about to be scanned for metadata.
591          * @p info will point to ::wimlib_progress_info.scan.  This message is
592          * received once per call to wimlib_add_image(), or once per capture
593          * source passed to wimlib_add_image_multisource(), or once per add
594          * command passed to wimlib_update_image().  */
595         WIMLIB_PROGRESS_MSG_SCAN_BEGIN = 9,
596
597         /** A directory or file has been scanned.  @p info will point to
598          * ::wimlib_progress_info.scan, and its @p cur_path member will be
599          * valid.  This message is only sent if ::WIMLIB_ADD_FLAG_VERBOSE has
600          * been specified.  */
601         WIMLIB_PROGRESS_MSG_SCAN_DENTRY = 10,
602
603         /** The directory or NTFS volume has been successfully scanned.  @p info
604          * will point to ::wimlib_progress_info.scan.  This is paired with a
605          * previous ::WIMLIB_PROGRESS_MSG_SCAN_BEGIN message, possibly with many
606          * intervening ::WIMLIB_PROGRESS_MSG_SCAN_DENTRY messages.  */
607         WIMLIB_PROGRESS_MSG_SCAN_END = 11,
608
609         /** File data is currently being written to the WIM.  @p info will point
610          * to ::wimlib_progress_info.write_streams.  This message may be
611          * received many times while the WIM file is being written or appended
612          * to with wimlib_write(), wimlib_overwrite(), or wimlib_write_to_fd().
613          */
614         WIMLIB_PROGRESS_MSG_WRITE_STREAMS = 12,
615
616         /** Per-image metadata is about to be written to the WIM file.  @p info
617          * will not be valid. */
618         WIMLIB_PROGRESS_MSG_WRITE_METADATA_BEGIN = 13,
619
620         /** The per-image metadata has been written to the WIM file.  @p info
621          * will not be valid.  This message is paired with a preceding
622          * ::WIMLIB_PROGRESS_MSG_WRITE_METADATA_BEGIN message.  */
623         WIMLIB_PROGRESS_MSG_WRITE_METADATA_END = 14,
624
625         /** wimlib_overwrite() has successfully renamed the temporary file to
626          * the original WIM file, thereby committing the changes to the WIM
627          * file.  @p info will point to ::wimlib_progress_info.rename.  Note:
628          * this message is not received if wimlib_overwrite() chose to append to
629          * the WIM file in-place.  */
630         WIMLIB_PROGRESS_MSG_RENAME = 15,
631
632         /** The contents of the WIM file are being checked against the integrity
633          * table.  @p info will point to ::wimlib_progress_info.integrity.  This
634          * message is only received (and may be received many times) when
635          * wimlib_open_wim_with_progress() is called with the
636          * ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY flag.  */
637         WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY = 16,
638
639         /** An integrity table is being calculated for the WIM being written.
640          * @p info will point to ::wimlib_progress_info.integrity.  This message
641          * is only received (and may be received many times) when a WIM file is
642          * being written with the flag ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY.  */
643         WIMLIB_PROGRESS_MSG_CALC_INTEGRITY = 17,
644
645         /** A wimlib_split() operation is in progress, and a new split part is
646          * about to be started.  @p info will point to
647          * ::wimlib_progress_info.split.  */
648         WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART = 19,
649
650         /** A wimlib_split() operation is in progress, and a split part has been
651          * finished. @p info will point to ::wimlib_progress_info.split.  */
652         WIMLIB_PROGRESS_MSG_SPLIT_END_PART = 20,
653
654         /** A WIM update command is about to be executed. @p info will point to
655          * ::wimlib_progress_info.update.  This message is received once per
656          * update command when wimlib_update_image() is called with the flag
657          * ::WIMLIB_UPDATE_FLAG_SEND_PROGRESS.  */
658         WIMLIB_PROGRESS_MSG_UPDATE_BEGIN_COMMAND = 21,
659
660         /** A WIM update command has been executed. @p info will point to
661          * ::wimlib_progress_info.update.  This message is received once per
662          * update command when wimlib_update_image() is called with the flag
663          * ::WIMLIB_UPDATE_FLAG_SEND_PROGRESS.  */
664         WIMLIB_PROGRESS_MSG_UPDATE_END_COMMAND = 22,
665
666         /** A file in the image is being replaced as a result of a
667          * ::wimlib_add_command without ::WIMLIB_ADD_FLAG_NO_REPLACE specified.
668          * @p info will point to ::wimlib_progress_info.replace.  This is only
669          * received when ::WIMLIB_ADD_FLAG_VERBOSE is also specified in the add
670          * command.  */
671         WIMLIB_PROGRESS_MSG_REPLACE_FILE_IN_WIM = 23,
672
673         /** An image is being extracted with ::WIMLIB_EXTRACT_FLAG_WIMBOOT, and
674          * a file is being extracted normally (not as a "WIMBoot pointer file")
675          * due to it matching a pattern in the <c>[PrepopulateList]</c> section
676          * of the configuration file
677          * <c>/Windows/System32/WimBootCompress.ini</c> in the WIM image.  @p
678          * info will point to ::wimlib_progress_info.wimboot_exclude.  */
679         WIMLIB_PROGRESS_MSG_WIMBOOT_EXCLUDE = 24,
680
681         /** Starting to unmount an image.  @p info will point to
682          * ::wimlib_progress_info.unmount.  */
683         WIMLIB_PROGRESS_MSG_UNMOUNT_BEGIN = 25,
684
685         /** wimlib has used a file's data for the last time (including all data
686          * streams, if it has multiple).  @p info will point to
687          * ::wimlib_progress_info.done_with_file.  This message is only received
688          * if ::WIMLIB_WRITE_FLAG_SEND_DONE_WITH_FILE_MESSAGES was provided.  */
689         WIMLIB_PROGRESS_MSG_DONE_WITH_FILE = 26,
690
691         /** wimlib_verify_wim() is starting to verify the metadata for an image.
692          * @p info will point to ::wimlib_progress_info.verify_image.  */
693         WIMLIB_PROGRESS_MSG_BEGIN_VERIFY_IMAGE = 27,
694
695         /** wimlib_verify_wim() has finished verifying the metadata for an
696          * image.  @p info will point to ::wimlib_progress_info.verify_image.
697          */
698         WIMLIB_PROGRESS_MSG_END_VERIFY_IMAGE = 28,
699
700         /** wimlib_verify_wim() is verifying file data integrity.  @p info will
701          * point to ::wimlib_progress_info.verify_streams.  */
702         WIMLIB_PROGRESS_MSG_VERIFY_STREAMS = 29,
703
704         /**
705          * The progress function is being asked whether a file should be
706          * excluded from capture or not.  @p info will point to
707          * ::wimlib_progress_info.test_file_exclusion.  This is a bidirectional
708          * message that allows the progress function to set a flag if the file
709          * should be excluded.
710          *
711          * This message is only received if the flag
712          * ::WIMLIB_ADD_FLAG_TEST_FILE_EXCLUSION is used.  This method for file
713          * exclusions is independent of the "capture configuration file"
714          * mechanism.
715          */
716         WIMLIB_PROGRESS_MSG_TEST_FILE_EXCLUSION = 30,
717
718         /**
719          * An error has occurred and the progress function is being asked
720          * whether to ignore the error or not.  @p info will point to
721          * ::wimlib_progress_info.handle_error.  This is a bidirectional
722          * message.
723          *
724          * This message provides a limited capability for applications to
725          * recover from "unexpected" errors (i.e. those with no in-library
726          * handling policy) arising from the underlying operating system.
727          * Normally, any such error will cause the library to abort the current
728          * operation.  By implementing a handler for this message, the
729          * application can instead choose to ignore a given error.
730          *
731          * Currently, only the following types of errors will result in this
732          * progress message being sent:
733          *
734          *      - Directory tree scan errors, e.g. from wimlib_add_image()
735          *      - Most extraction errors; currently restricted to the Windows
736          *        build of the library only.
737          */
738         WIMLIB_PROGRESS_MSG_HANDLE_ERROR = 31,
739 };
740
741 /** Valid return values from user-provided progress functions
742  * (::wimlib_progress_func_t).
743  *
744  * (Note: if an invalid value is returned, ::WIMLIB_ERR_UNKNOWN_PROGRESS_STATUS
745  * will be issued.)
746  */
747 enum wimlib_progress_status {
748
749         /** The operation should be continued.  This is the normal return value.
750          */
751         WIMLIB_PROGRESS_STATUS_CONTINUE = 0,
752
753         /** The operation should be aborted.  This will cause the current
754          * operation to fail with ::WIMLIB_ERR_ABORTED_BY_PROGRESS.  */
755         WIMLIB_PROGRESS_STATUS_ABORT    = 1,
756 };
757
758 /**
759  * A pointer to this union is passed to the user-supplied
760  * ::wimlib_progress_func_t progress function.  One (or none) of the structures
761  * contained in this union will be applicable for the operation
762  * (::wimlib_progress_msg) indicated in the first argument to the progress
763  * function. */
764 union wimlib_progress_info {
765
766         /** Valid on the message ::WIMLIB_PROGRESS_MSG_WRITE_STREAMS.  This is
767          * the primary message for tracking the progress of writing a WIM file.
768          */
769         struct wimlib_progress_info_write_streams {
770
771                 /** An upper bound on the number of bytes of file data that will
772                  * be written.  This number is the uncompressed size; the actual
773                  * size may be lower due to compression.  In addition, this
774                  * number may decrease over time as duplicated file data is
775                  * discovered.  */
776                 uint64_t total_bytes;
777
778                 /** An upper bound on the number of distinct file data "blobs"
779                  * that will be written.  This will often be similar to the
780                  * "number of files", but for several reasons (hard links, named
781                  * data streams, empty files, etc.) it can be different.  In
782                  * addition, this number may decrease over time as duplicated
783                  * file data is discovered.  */
784                 uint64_t total_streams;
785
786                 /** The number of bytes of file data that have been written so
787                  * far.  This starts at 0 and ends at @p total_bytes.  This
788                  * number is the uncompressed size; the actual size may be lower
789                  * due to compression.  */
790                 uint64_t completed_bytes;
791
792                 /** The number of distinct file data "blobs" that have been
793                  * written so far.  This starts at 0 and ends at @p
794                  * total_streams.  */
795                 uint64_t completed_streams;
796
797                 /** The number of threads being used for data compression; or,
798                  * if no compression is being performed, this will be 1.  */
799                 uint32_t num_threads;
800
801                 /** The compression type being used, as one of the
802                  * ::wimlib_compression_type constants.  */
803                 int32_t  compression_type;
804
805                 /** The number of on-disk WIM files from which file data is
806                  * being exported into the output WIM file.  This can be 0, 1,
807                  * or more than 1, depending on the situation.  */
808                 uint32_t total_parts;
809
810                 /** This is currently broken and will always be 0.  */
811                 uint32_t completed_parts;
812         } write_streams;
813
814         /** Valid on messages ::WIMLIB_PROGRESS_MSG_SCAN_BEGIN,
815          * ::WIMLIB_PROGRESS_MSG_SCAN_DENTRY, and
816          * ::WIMLIB_PROGRESS_MSG_SCAN_END.  */
817         struct wimlib_progress_info_scan {
818
819                 /** Top-level directory being scanned; or, when capturing an NTFS
820                  * volume with ::WIMLIB_ADD_FLAG_NTFS, this is instead the path
821                  * to the file or block device that contains the NTFS volume
822                  * being scanned.  */
823                 const wimlib_tchar *source;
824
825                 /** Path to the file (or directory) that has been scanned, valid
826                  * on ::WIMLIB_PROGRESS_MSG_SCAN_DENTRY.  When capturing an NTFS
827                  * volume with ::WIMLIB_ADD_FLAG_NTFS, this path will be
828                  * relative to the root of the NTFS volume.  */
829                 const wimlib_tchar *cur_path;
830
831                 /** Dentry scan status, valid on
832                  * ::WIMLIB_PROGRESS_MSG_SCAN_DENTRY.  */
833                 enum {
834                         /** File looks okay and will be captured.  */
835                         WIMLIB_SCAN_DENTRY_OK = 0,
836
837                         /** File is being excluded from capture due to the
838                          * capture configuration.  */
839                         WIMLIB_SCAN_DENTRY_EXCLUDED = 1,
840
841                         /** File is being excluded from capture due to being of
842                          * an unsupported type.  */
843                         WIMLIB_SCAN_DENTRY_UNSUPPORTED = 2,
844
845                         /** The file is an absolute symbolic link or junction
846                          * that points into the capture directory, and
847                          * reparse-point fixups are enabled, so its target is
848                          * being adjusted.  (Reparse point fixups can be
849                          * disabled with the flag ::WIMLIB_ADD_FLAG_NORPFIX.)
850                          */
851                         WIMLIB_SCAN_DENTRY_FIXED_SYMLINK = 3,
852
853                         /** Reparse-point fixups are enabled, but the file is an
854                          * absolute symbolic link or junction that does
855                          * <b>not</b> point into the capture directory, so its
856                          * target is <b>not</b> being adjusted.  */
857                         WIMLIB_SCAN_DENTRY_NOT_FIXED_SYMLINK = 4,
858                 } status;
859
860                 union {
861                         /** Target path in the image.  Only valid on messages
862                          * ::WIMLIB_PROGRESS_MSG_SCAN_BEGIN and
863                          * ::WIMLIB_PROGRESS_MSG_SCAN_END.  */
864                         const wimlib_tchar *wim_target_path;
865
866                         /** For ::WIMLIB_PROGRESS_MSG_SCAN_DENTRY and a status
867                          * of @p WIMLIB_SCAN_DENTRY_FIXED_SYMLINK or @p
868                          * WIMLIB_SCAN_DENTRY_NOT_FIXED_SYMLINK, this is the
869                          * target of the absolute symbolic link or junction.  */
870                         const wimlib_tchar *symlink_target;
871                 };
872
873                 /** The number of directories scanned so far, not counting
874                  * excluded/unsupported files.  */
875                 uint64_t num_dirs_scanned;
876
877                 /** The number of non-directories scanned so far, not counting
878                  * excluded/unsupported files.  */
879                 uint64_t num_nondirs_scanned;
880
881                 /** The number of bytes of file data detected so far, not
882                  * counting excluded/unsupported files.  */
883                 uint64_t num_bytes_scanned;
884         } scan;
885
886         /** Valid on messages
887          * ::WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN,
888          * ::WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN,
889          * ::WIMLIB_PROGRESS_MSG_EXTRACT_TREE_BEGIN,
890          * ::WIMLIB_PROGRESS_MSG_EXTRACT_FILE_STRUCTURE,
891          * ::WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS,
892          * ::WIMLIB_PROGRESS_MSG_EXTRACT_METADATA,
893          * ::WIMLIB_PROGRESS_MSG_EXTRACT_TREE_END, and
894          * ::WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END.
895          *
896          * Note: most of the time of an extraction operation will be spent
897          * extracting file data, and the application will receive
898          * ::WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS during this time.  Using @p
899          * completed_bytes and @p total_bytes, the application can calculate a
900          * percentage complete.  However, there is no way for applications to
901          * know which file is currently being extracted.  This is by design
902          * because the best way to complete the extraction operation is not
903          * necessarily file-by-file.
904          */
905         struct wimlib_progress_info_extract {
906
907                 /** The 1-based index of the image from which files are being
908                  * extracted.  */
909                 uint32_t image;
910
911                 /** Extraction flags being used.  */
912                 uint32_t extract_flags;
913
914                 /** If the ::WIMStruct from which the extraction being performed
915                  * has a backing file, then this is an absolute path to that
916                  * backing file.  Otherwise, this is @c NULL.  */
917                 const wimlib_tchar *wimfile_name;
918
919                 /** Name of the image from which files are being extracted, or
920                  * the empty string if the image is unnamed.  */
921                 const wimlib_tchar *image_name;
922
923                 /** Path to the directory or NTFS volume to which the files are
924                  * being extracted.  */
925                 const wimlib_tchar *target;
926
927                 /** Reserved.  */
928                 const wimlib_tchar *reserved;
929
930                 /** The number of bytes of file data that will be extracted.  */
931                 uint64_t total_bytes;
932
933                 /** The number of bytes of file data that have been extracted so
934                  * far.  This starts at 0 and ends at @p total_bytes.  */
935                 uint64_t completed_bytes;
936
937                 /** The number of file streams that will be extracted.  This
938                  * will often be similar to the "number of files", but for
939                  * several reasons (hard links, named data streams, empty files,
940                  * etc.) it can be different.  */
941                 uint64_t total_streams;
942
943                 /** The number of file streams that have been extracted so far.
944                  * This starts at 0 and ends at @p total_streams.  */
945                 uint64_t completed_streams;
946
947                 /** Currently only used for
948                  * ::WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN.  */
949                 uint32_t part_number;
950
951                 /** Currently only used for
952                  * ::WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN.  */
953                 uint32_t total_parts;
954
955                 /** Currently only used for
956                  * ::WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN.  */
957                 uint8_t guid[WIMLIB_GUID_LEN];
958
959                 /** For ::WIMLIB_PROGRESS_MSG_EXTRACT_FILE_STRUCTURE and
960                  * ::WIMLIB_PROGRESS_MSG_EXTRACT_METADATA messages, this is the
961                  * number of files that have been processed so far.  Once the
962                  * corresponding phase of extraction is complete, this value
963                  * will be equal to @c end_file_count.  */
964                 uint64_t current_file_count;
965
966                 /** For ::WIMLIB_PROGRESS_MSG_EXTRACT_FILE_STRUCTURE and
967                  * ::WIMLIB_PROGRESS_MSG_EXTRACT_METADATA messages, this is
968                  * total number of files that will be processed.
969                  *
970                  * This number is provided for informational purposes only, e.g.
971                  * for a progress bar.  This number will not necessarily be
972                  * equal to the number of files actually being extracted.  This
973                  * is because extraction backends are free to implement an
974                  * extraction algorithm that might be more efficient than
975                  * processing every file in the "extract file structure" and
976                  * "extract file metadata" phases.  For example, the current
977                  * implementation of the UNIX extraction backend will create
978                  * files on-demand during the "extract file data" phase.
979                  * Therefore, when using that particular extraction backend, @p
980                  * end_file_count will only include directories and empty files.
981                  */
982                 uint64_t end_file_count;
983         } extract;
984
985         /** Valid on messages ::WIMLIB_PROGRESS_MSG_RENAME. */
986         struct wimlib_progress_info_rename {
987                 /** Name of the temporary file that the WIM was written to. */
988                 const wimlib_tchar *from;
989
990                 /** Name of the original WIM file to which the temporary file is
991                  * being renamed. */
992                 const wimlib_tchar *to;
993         } rename;
994
995         /** Valid on messages ::WIMLIB_PROGRESS_MSG_UPDATE_BEGIN_COMMAND and
996          * ::WIMLIB_PROGRESS_MSG_UPDATE_END_COMMAND. */
997         struct wimlib_progress_info_update {
998                 /** Pointer to the update command that will be executed or has
999                  * just been executed. */
1000                 const struct wimlib_update_command *command;
1001
1002                 /** Number of update commands that have been completed so far.
1003                  */
1004                 size_t completed_commands;
1005
1006                 /** Number of update commands that are being executed as part of
1007                  * this call to wimlib_update_image(). */
1008                 size_t total_commands;
1009         } update;
1010
1011         /** Valid on messages ::WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY and
1012          * ::WIMLIB_PROGRESS_MSG_CALC_INTEGRITY. */
1013         struct wimlib_progress_info_integrity {
1014
1015                 /** The number of bytes in the WIM file that are covered by
1016                  * integrity checks.  */
1017                 uint64_t total_bytes;
1018
1019                 /** The number of bytes that have been checksummed so far.  This
1020                  * starts at 0 and ends at @p total_bytes.  */
1021                 uint64_t completed_bytes;
1022
1023                 /** The number of individually checksummed "chunks" the
1024                  * integrity-checked region is divided into.  */
1025                 uint32_t total_chunks;
1026
1027                 /** The number of chunks that have been checksummed so far.
1028                  * This starts at 0 and ends at @p total_chunks.  */
1029                 uint32_t completed_chunks;
1030
1031                 /** The size of each individually checksummed "chunk" in the
1032                  * integrity-checked region.  */
1033                 uint32_t chunk_size;
1034
1035                 /** For ::WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY messages, this is
1036                  * the path to the WIM file being checked.  */
1037                 const wimlib_tchar *filename;
1038         } integrity;
1039
1040         /** Valid on messages ::WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART and
1041          * ::WIMLIB_PROGRESS_MSG_SPLIT_END_PART. */
1042         struct wimlib_progress_info_split {
1043                 /** Total size of the original WIM's file and metadata resources
1044                  * (compressed). */
1045                 uint64_t total_bytes;
1046
1047                 /** Number of bytes of file and metadata resources that have
1048                  * been copied out of the original WIM so far.  Will be 0
1049                  * initially, and equal to @p total_bytes at the end. */
1050                 uint64_t completed_bytes;
1051
1052                 /** Number of the split WIM part that is about to be started
1053                  * (::WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART) or has just been
1054                  * finished (::WIMLIB_PROGRESS_MSG_SPLIT_END_PART). */
1055                 unsigned cur_part_number;
1056
1057                 /** Total number of split WIM parts that are being written.  */
1058                 unsigned total_parts;
1059
1060                 /** Name of the split WIM part that is about to be started
1061                  * (::WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART) or has just been
1062                  * finished (::WIMLIB_PROGRESS_MSG_SPLIT_END_PART).  Since
1063                  * wimlib v1.7.0, the library user may change this when
1064                  * receiving ::WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART in order to
1065                  * cause the next split WIM part to be written to a different
1066                  * location.  */
1067                 wimlib_tchar *part_name;
1068         } split;
1069
1070         /** Valid on messages ::WIMLIB_PROGRESS_MSG_REPLACE_FILE_IN_WIM  */
1071         struct wimlib_progress_info_replace {
1072                 /** Path to the file in the image that is being replaced  */
1073                 const wimlib_tchar *path_in_wim;
1074         } replace;
1075
1076         /** Valid on messages ::WIMLIB_PROGRESS_MSG_WIMBOOT_EXCLUDE  */
1077         struct wimlib_progress_info_wimboot_exclude {
1078                 /** Path to the file in the image  */
1079                 const wimlib_tchar *path_in_wim;
1080
1081                 /** Path to which the file is being extracted  */
1082                 const wimlib_tchar *extraction_path;
1083         } wimboot_exclude;
1084
1085         /** Valid on messages ::WIMLIB_PROGRESS_MSG_UNMOUNT_BEGIN.  */
1086         struct wimlib_progress_info_unmount {
1087                 /** Path to directory being unmounted  */
1088                 const wimlib_tchar *mountpoint;
1089
1090                 /** Path to WIM file being unmounted  */
1091                 const wimlib_tchar *mounted_wim;
1092
1093                 /** 1-based index of image being unmounted.  */
1094                 uint32_t mounted_image;
1095
1096                 /** Flags that were passed to wimlib_mount_image() when the
1097                  * mountpoint was set up.  */
1098                 uint32_t mount_flags;
1099
1100                 /** Flags passed to wimlib_unmount_image().  */
1101                 uint32_t unmount_flags;
1102         } unmount;
1103
1104         /** Valid on messages ::WIMLIB_PROGRESS_MSG_DONE_WITH_FILE.  */
1105         struct wimlib_progress_info_done_with_file {
1106                 /**
1107                  * Path to the file whose data has been written to the WIM file,
1108                  * or is currently being asynchronously compressed in memory,
1109                  * and therefore is no longer needed by wimlib.
1110                  *
1111                  * WARNING: The file data will not actually be accessible in the
1112                  * WIM file until the WIM file has been completely written.
1113                  * Ordinarily you should <b>not</b> treat this message as a
1114                  * green light to go ahead and delete the specified file, since
1115                  * that would result in data loss if the WIM file cannot be
1116                  * successfully created for any reason.
1117                  *
1118                  * If a file has multiple names (hard links),
1119                  * ::WIMLIB_PROGRESS_MSG_DONE_WITH_FILE will only be received
1120                  * for one name.  Also, this message will not be received for
1121                  * empty files or reparse points (or symbolic links), unless
1122                  * they have nonempty named data streams.
1123                  */
1124                 const wimlib_tchar *path_to_file;
1125         } done_with_file;
1126
1127         /** Valid on messages ::WIMLIB_PROGRESS_MSG_BEGIN_VERIFY_IMAGE and
1128          * ::WIMLIB_PROGRESS_MSG_END_VERIFY_IMAGE.  */
1129         struct wimlib_progress_info_verify_image {
1130                 const wimlib_tchar *wimfile;
1131                 uint32_t total_images;
1132                 uint32_t current_image;
1133         } verify_image;
1134
1135         /** Valid on messages ::WIMLIB_PROGRESS_MSG_VERIFY_STREAMS.  */
1136         struct wimlib_progress_info_verify_streams {
1137                 const wimlib_tchar *wimfile;
1138                 uint64_t total_streams;
1139                 uint64_t total_bytes;
1140                 uint64_t completed_streams;
1141                 uint64_t completed_bytes;
1142         } verify_streams;
1143
1144         /** Valid on messages ::WIMLIB_PROGRESS_MSG_TEST_FILE_EXCLUSION.  */
1145         struct wimlib_progress_info_test_file_exclusion {
1146
1147                 /**
1148                  * Path to the file for which exclusion is being tested.
1149                  *
1150                  * UNIX capture mode:  The path will be a standard relative or
1151                  * absolute UNIX filesystem path.
1152                  *
1153                  * NTFS-3G capture mode:  The path will be given relative to the
1154                  * root of the NTFS volume, with a leading slash.
1155                  *
1156                  * Windows capture mode:  The path will be a Win32 namespace
1157                  * path to the file.
1158                  */
1159                 const wimlib_tchar *path;
1160
1161                 /**
1162                  * Indicates whether the file or directory will be excluded from
1163                  * capture or not.  This will be <c>false</c> by default.  The
1164                  * progress function can set this to <c>true</c> if it decides
1165                  * that the file needs to be excluded.
1166                  */
1167                 bool will_exclude;
1168         } test_file_exclusion;
1169
1170         /** Valid on messages ::WIMLIB_PROGRESS_MSG_HANDLE_ERROR.  */
1171         struct wimlib_progress_info_handle_error {
1172
1173                 /** Path to the file for which the error occurred, or NULL if
1174                  * not relevant.  */
1175                 const wimlib_tchar *path;
1176
1177                 /** The wimlib error code associated with the error.  */
1178                 int error_code;
1179
1180                 /**
1181                  * Indicates whether the error will be ignored or not.  This
1182                  * will be <c>false</c> by default; the progress function may
1183                  * set it to <c>true</c>.
1184                  */
1185                 bool will_ignore;
1186         } handle_error;
1187 };
1188
1189 /**
1190  * A user-supplied function that will be called periodically during certain WIM
1191  * operations.
1192  *
1193  * The first argument will be the type of operation that is being performed or
1194  * is about to be started or has been completed.
1195  *
1196  * The second argument will be a pointer to one of a number of structures
1197  * depending on the first argument.  It may be @c NULL for some message types.
1198  * Note that although this argument is not @c const, users should not modify it
1199  * except in explicitly documented cases.
1200  *
1201  * The third argument will be a user-supplied value that was provided when
1202  * registering or specifying the progress function.
1203  *
1204  * This function must return one of the ::wimlib_progress_status values.  By
1205  * default, you should return ::WIMLIB_PROGRESS_STATUS_CONTINUE (0).
1206  */
1207 typedef enum wimlib_progress_status
1208         (*wimlib_progress_func_t)(enum wimlib_progress_msg msg_type,
1209                                   union wimlib_progress_info *info,
1210                                   void *progctx);
1211
1212 /** @} */
1213 /** @addtogroup G_modifying_wims
1214  * @{ */
1215
1216 /** An array of these structures is passed to wimlib_add_image_multisource() to
1217  * specify the sources from which to create a WIM image. */
1218 struct wimlib_capture_source {
1219         /** Absolute or relative path to a file or directory on the external
1220          * filesystem to be included in the image. */
1221         wimlib_tchar *fs_source_path;
1222
1223         /** Destination path in the image.  To specify the root directory of the
1224          * image, use ::WIMLIB_WIM_ROOT_PATH.  */
1225         wimlib_tchar *wim_target_path;
1226
1227         /** Reserved; set to 0. */
1228         long reserved;
1229 };
1230
1231 /** Set or unset the "readonly" WIM header flag (<c>WIM_HDR_FLAG_READONLY</c> in
1232  * Microsoft's documentation), based on the ::wimlib_wim_info.is_marked_readonly
1233  * member of the @p info parameter.  This is distinct from basic file
1234  * permissions; this flag can be set on a WIM file that is physically writable.
1235  *
1236  * wimlib disallows modifying on-disk WIM files with the readonly flag set.
1237  * However, wimlib_overwrite() with ::WIMLIB_WRITE_FLAG_IGNORE_READONLY_FLAG
1238  * will override this --- and in fact, this is necessary to set the readonly
1239  * flag persistently on an existing WIM file.
1240  */
1241 #define WIMLIB_CHANGE_READONLY_FLAG             0x00000001
1242
1243 /** Set the GUID (globally unique identifier) of the WIM file to the value
1244  * specified in ::wimlib_wim_info.guid of the @p info parameter. */
1245 #define WIMLIB_CHANGE_GUID                      0x00000002
1246
1247 /** Change the bootable image of the WIM to the value specified in
1248  * ::wimlib_wim_info.boot_index of the @p info parameter.  */
1249 #define WIMLIB_CHANGE_BOOT_INDEX                0x00000004
1250
1251 /** Change the <c>WIM_HDR_FLAG_RP_FIX</c> flag of the WIM file to the value
1252  * specified in ::wimlib_wim_info.has_rpfix of the @p info parameter.  This flag
1253  * generally indicates whether an image in the WIM has been captured with
1254  * reparse-point fixups enabled.  wimlib also treats this flag as specifying
1255  * whether to do reparse-point fixups by default when capturing or applying WIM
1256  * images.  */
1257 #define WIMLIB_CHANGE_RPFIX_FLAG                0x00000008
1258
1259 /** @} */
1260
1261 /** @addtogroup G_wim_information  */
1262
1263 /** @{ */
1264
1265 /**
1266  * General information about a WIM file.
1267  *
1268  * This info can also be requested for a ::WIMStruct that does not have a
1269  * backing file.  In this case, fields that only make sense given a backing file
1270  * are set to default values.
1271  */
1272 struct wimlib_wim_info {
1273
1274         /** The globally unique identifier for this WIM.  (Note: all parts of a
1275          * split WIM normally have identical GUIDs.)  */
1276         uint8_t guid[WIMLIB_GUID_LEN];
1277
1278         /** The number of images in this WIM file.  */
1279         uint32_t image_count;
1280
1281         /** The 1-based index of the bootable image in this WIM file, or 0 if no
1282          * image is bootable.  */
1283         uint32_t boot_index;
1284
1285         /** The version of the WIM file format used in this WIM file.  */
1286         uint32_t wim_version;
1287
1288         /** The default compression chunk size of resources in this WIM file.
1289          */
1290         uint32_t chunk_size;
1291
1292         /** For split WIMs, the 1-based index of this part within the split WIM;
1293          * otherwise 1.  */
1294         uint16_t part_number;
1295
1296         /** For split WIMs, the total number of parts in the split WIM;
1297          * otherwise 1.  */
1298         uint16_t total_parts;
1299
1300         /** The default compression type of resources in this WIM file, as one
1301          * of the ::wimlib_compression_type constants.  */
1302         int32_t compression_type;
1303
1304         /** The size of this WIM file in bytes, excluding the XML data and
1305          * integrity table.  */
1306         uint64_t total_bytes;
1307
1308         /** 1 iff this WIM file has an integrity table.  */
1309         uint32_t has_integrity_table : 1;
1310
1311         /** 1 iff this info struct is for a ::WIMStruct that has a backing file.
1312          */
1313         uint32_t opened_from_file : 1;
1314
1315         /** 1 iff this WIM file is considered readonly for any reason (e.g. the
1316          * "readonly" header flag is set, or this is part of a split WIM, or
1317          * filesystem permissions deny writing)  */
1318         uint32_t is_readonly : 1;
1319
1320         /** 1 iff the "reparse point fix" flag is set in this WIM's header  */
1321         uint32_t has_rpfix : 1;
1322
1323         /** 1 iff the "readonly" flag is set in this WIM's header  */
1324         uint32_t is_marked_readonly : 1;
1325
1326         /** 1 iff the "spanned" flag is set in this WIM's header  */
1327         uint32_t spanned : 1;
1328
1329         /** 1 iff the "write in progress" flag is set in this WIM's header  */
1330         uint32_t write_in_progress : 1;
1331
1332         /** 1 iff the "metadata only" flag is set in this WIM's header  */
1333         uint32_t metadata_only : 1;
1334
1335         /** 1 iff the "resource only" flag is set in this WIM's header  */
1336         uint32_t resource_only : 1;
1337
1338         /** 1 iff this WIM file is pipable (see ::WIMLIB_WRITE_FLAG_PIPABLE).  */
1339         uint32_t pipable : 1;
1340         uint32_t reserved_flags : 22;
1341         uint32_t reserved[9];
1342 };
1343
1344 /**
1345  * Information about a "blob", which is a fixed length sequence of binary data.
1346  * Each nonempty stream of each file in a WIM image is associated with a blob.
1347  * Blobs are deduplicated within a WIM file.
1348  *
1349  * TODO: this struct needs to be renamed, and perhaps made into a union since
1350  * there are several cases.  I'll try to list them below:
1351  *
1352  * 1. The blob is "missing", meaning that it is referenced by hash but not
1353  *    actually present in the WIM file.  In this case we only know the
1354  *    sha1_hash.  This case can only occur with wimlib_iterate_dir_tree(), never
1355  *    wimlib_iterate_lookup_table().
1356  *
1357  * 2. Otherwise we know the sha1_hash, the uncompressed_size, the
1358  *    reference_count, and the is_metadata flag.  In addition:
1359  *
1360  *    A. If the blob is located in a non-solid WIM resource, then we also know
1361  *       the compressed_size and offset.
1362  *
1363  *    B. If the blob is located in a solid WIM resource, then we also know the
1364  *       offset, raw_resource_offset_in_wim, raw_resource_compressed_size, and
1365  *       raw_resource_uncompressed_size.  But the "offset" is actually the
1366  *       offset in the uncompressed solid resource rather than the offset from
1367  *       the beginning of the WIM file.
1368  *
1369  *    C. If the blob is *not* located in any type of WIM resource, then we don't
1370  *       know any additional information.
1371  *
1372  * Unknown or irrelevant fields are left zeroed.
1373  */
1374 struct wimlib_resource_entry {
1375
1376         /** If this blob is not missing, then this is the uncompressed size of
1377          * this blob in bytes.  */
1378         uint64_t uncompressed_size;
1379
1380         /** If this blob is located in a non-solid WIM resource, then this is
1381          * the compressed size of that resource.  */
1382         uint64_t compressed_size;
1383
1384         /** If this blob is located in a non-solid WIM resource, then this is
1385          * the offset of that resource within the WIM file containing it.  If
1386          * this blob is located in a solid WIM resource, then this is the offset
1387          * of this blob within that solid resource when uncompressed.  */
1388         uint64_t offset;
1389
1390         /** The SHA-1 message digest of the blob's uncompressed contents.  */
1391         uint8_t sha1_hash[20];
1392
1393         /** If this blob is located in a WIM resource, then this is the part
1394          * number of the WIM file containing it.  */
1395         uint32_t part_number;
1396
1397         /** If this blob is not missing, then this is the number of times this
1398          * blob is referenced over all images in the WIM.  This number is not
1399          * guaranteed to be correct.  */
1400         uint32_t reference_count;
1401
1402         /** 1 iff this blob is located in a non-solid compressed WIM resource.
1403          */
1404         uint32_t is_compressed : 1;
1405
1406         /** 1 iff this blob contains the metadata for an image.  */
1407         uint32_t is_metadata : 1;
1408
1409         uint32_t is_free : 1;
1410         uint32_t is_spanned : 1;
1411
1412         /** 1 iff a blob with this hash was not found in the blob lookup table
1413          * of the ::WIMStruct.  This normally implies a missing call to
1414          * wimlib_reference_resource_files() or wimlib_reference_resources(). */
1415         uint32_t is_missing : 1;
1416
1417         /** 1 iff this blob is located in a solid resource.  */
1418         uint32_t packed : 1;
1419
1420         uint32_t reserved_flags : 26;
1421
1422         /** If this blob is located in a solid WIM resource, then this is the
1423          * offset of that solid resource within the WIM file containing it.  */
1424         uint64_t raw_resource_offset_in_wim;
1425
1426         /** If this blob is located in a solid WIM resource, then this is the
1427          * compressed size of that solid resource.  */
1428         uint64_t raw_resource_compressed_size;
1429
1430         /** If this blob is located in a solid WIM resource, then this is the
1431          * uncompressed size of that solid resource.  */
1432         uint64_t raw_resource_uncompressed_size;
1433
1434         uint64_t reserved[1];
1435 };
1436
1437 /**
1438  * Information about a stream of a particular file in the WIM.
1439  *
1440  * Normally, only WIM images captured from NTFS filesystems will have multiple
1441  * streams per file.  In practice, this is a rarely used feature of the
1442  * filesystem.
1443  *
1444  * TODO: the library now explicitly tracks stream types, which allows it to have
1445  * multiple unnamed streams (e.g. both a reparse point stream and unnamed data
1446  * stream).  However, this isn't yet exposed by wimlib_iterate_dir_tree().
1447  */
1448 struct wimlib_stream_entry {
1449
1450         /** Name of the stream, or NULL if the stream is unnamed.  */
1451         const wimlib_tchar *stream_name;
1452
1453         /** Info about this stream's data, such as its hash and size if known.*/
1454         struct wimlib_resource_entry resource;
1455
1456         uint64_t reserved[4];
1457 };
1458
1459 /**
1460  * Since wimlib v1.9.1: an object ID, which is an extra piece of metadata that
1461  * may be associated with a file on NTFS filesystems.  See:
1462  * https://msdn.microsoft.com/en-us/library/windows/desktop/aa363997(v=vs.85).aspx
1463  */
1464 struct wimlib_object_id {
1465         uint8_t object_id[WIMLIB_GUID_LEN];
1466         uint8_t birth_volume_id[WIMLIB_GUID_LEN];
1467         uint8_t birth_object_id[WIMLIB_GUID_LEN];
1468         uint8_t domain_id[WIMLIB_GUID_LEN];
1469 };
1470
1471 /** Structure passed to the wimlib_iterate_dir_tree() callback function.
1472  * Roughly, the information about a "file" in the WIM image --- but really a
1473  * directory entry ("dentry") because hard links are allowed.  The
1474  * hard_link_group_id field can be used to distinguish actual file inodes.  */
1475 struct wimlib_dir_entry {
1476         /** Name of the file, or NULL if this file is unnamed.  Only the root
1477          * directory of an image will be unnamed.  */
1478         const wimlib_tchar *filename;
1479
1480         /** 8.3 name (or "DOS name", or "short name") of this file; or NULL if
1481          * this file has no such name.  */
1482         const wimlib_tchar *dos_name;
1483
1484         /** Full path to this file within the image.  Path separators will be
1485          * ::WIMLIB_WIM_PATH_SEPARATOR.  */
1486         const wimlib_tchar *full_path;
1487
1488         /** Depth of this directory entry, where 0 is the root, 1 is the root's
1489          * children, ..., etc. */
1490         size_t depth;
1491
1492         /** Pointer to the security descriptor for this file, in Windows
1493          * SECURITY_DESCRIPTOR_RELATIVE format, or NULL if this file has no
1494          * security descriptor.  */
1495         const char *security_descriptor;
1496
1497         /** Size of the above security descriptor, in bytes.  */
1498         size_t security_descriptor_size;
1499
1500 #define WIMLIB_FILE_ATTRIBUTE_READONLY            0x00000001
1501 #define WIMLIB_FILE_ATTRIBUTE_HIDDEN              0x00000002
1502 #define WIMLIB_FILE_ATTRIBUTE_SYSTEM              0x00000004
1503 #define WIMLIB_FILE_ATTRIBUTE_DIRECTORY           0x00000010
1504 #define WIMLIB_FILE_ATTRIBUTE_ARCHIVE             0x00000020
1505 #define WIMLIB_FILE_ATTRIBUTE_DEVICE              0x00000040
1506 #define WIMLIB_FILE_ATTRIBUTE_NORMAL              0x00000080
1507 #define WIMLIB_FILE_ATTRIBUTE_TEMPORARY           0x00000100
1508 #define WIMLIB_FILE_ATTRIBUTE_SPARSE_FILE         0x00000200
1509 #define WIMLIB_FILE_ATTRIBUTE_REPARSE_POINT       0x00000400
1510 #define WIMLIB_FILE_ATTRIBUTE_COMPRESSED          0x00000800
1511 #define WIMLIB_FILE_ATTRIBUTE_OFFLINE             0x00001000
1512 #define WIMLIB_FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
1513 #define WIMLIB_FILE_ATTRIBUTE_ENCRYPTED           0x00004000
1514 #define WIMLIB_FILE_ATTRIBUTE_VIRTUAL             0x00010000
1515         /** File attributes, such as whether the file is a directory or not.
1516          * These are the "standard" Windows FILE_ATTRIBUTE_* values, although in
1517          * wimlib.h they are defined as WIMLIB_FILE_ATTRIBUTE_* for convenience
1518          * on other platforms.  */
1519         uint32_t attributes;
1520
1521 #define WIMLIB_REPARSE_TAG_RESERVED_ZERO        0x00000000
1522 #define WIMLIB_REPARSE_TAG_RESERVED_ONE         0x00000001
1523 #define WIMLIB_REPARSE_TAG_MOUNT_POINT          0xA0000003
1524 #define WIMLIB_REPARSE_TAG_HSM                  0xC0000004
1525 #define WIMLIB_REPARSE_TAG_HSM2                 0x80000006
1526 #define WIMLIB_REPARSE_TAG_DRIVER_EXTENDER      0x80000005
1527 #define WIMLIB_REPARSE_TAG_SIS                  0x80000007
1528 #define WIMLIB_REPARSE_TAG_DFS                  0x8000000A
1529 #define WIMLIB_REPARSE_TAG_DFSR                 0x80000012
1530 #define WIMLIB_REPARSE_TAG_FILTER_MANAGER       0x8000000B
1531 #define WIMLIB_REPARSE_TAG_WOF                  0x80000017
1532 #define WIMLIB_REPARSE_TAG_SYMLINK              0xA000000C
1533         /** If the file is a reparse point (FILE_ATTRIBUTE_REPARSE_POINT set in
1534          * the attributes), this will give the reparse tag.  This tells you
1535          * whether the reparse point is a symbolic link, junction point, or some
1536          * other, more unusual kind of reparse point.  */
1537         uint32_t reparse_tag;
1538
1539         /** Number of links to this file's inode (hard links).
1540          *
1541          * Currently, this will always be 1 for directories.  However, it can be
1542          * greater than 1 for nondirectory files.  */
1543         uint32_t num_links;
1544
1545         /** Number of named data streams this file has.  Normally 0.  */
1546         uint32_t num_named_streams;
1547
1548         /** A unique identifier for this file's inode.  However, as a special
1549          * case, if the inode only has a single link (@p num_links == 1), this
1550          * value may be 0.
1551          *
1552          * Note: if a WIM image is captured from a filesystem, this value is not
1553          * guaranteed to be the same as the original number of the inode on the
1554          * filesystem.  */
1555         uint64_t hard_link_group_id;
1556
1557         /** Time this file was created.  */
1558         struct timespec creation_time;
1559
1560         /** Time this file was last written to.  */
1561         struct timespec last_write_time;
1562
1563         /** Time this file was last accessed.  */
1564         struct timespec last_access_time;
1565
1566         /** The UNIX user ID of this file.  This is a wimlib extension.
1567          *
1568          * This field is only valid if @p unix_mode != 0.  */
1569         uint32_t unix_uid;
1570
1571         /** The UNIX group ID of this file.  This is a wimlib extension.
1572          *
1573          * This field is only valid if @p unix_mode != 0.  */
1574         uint32_t unix_gid;
1575
1576         /** The UNIX mode of this file.  This is a wimlib extension.
1577          *
1578          * If this field is 0, then @p unix_uid, @p unix_gid, @p unix_mode, and
1579          * @p unix_rdev are all unknown (fields are not present in the WIM
1580          * image).  */
1581         uint32_t unix_mode;
1582
1583         /** The UNIX device ID (major and minor number) of this file.  This is a
1584          * wimlib extension.
1585          *
1586          * This field is only valid if @p unix_mode != 0.  */
1587         uint32_t unix_rdev;
1588
1589         /* The object ID of this file, if any.  Only valid if
1590          * object_id.object_id is not all zeroes.  */
1591         struct wimlib_object_id object_id;
1592
1593         uint64_t reserved[6];
1594
1595         /**
1596          * Variable-length array of streams that make up this file.
1597          *
1598          * The first entry will always exist and will correspond to the unnamed
1599          * data stream (default file contents), so it will have <c>stream_name
1600          * == NULL</c>.  Alternatively, for reparse point files, the first entry
1601          * will correspond to the reparse data stream.  Alternatively, for
1602          * encrypted files, the first entry will correspond to the encrypted
1603          * data.
1604          *
1605          * Then, following the first entry, there be @p num_named_streams
1606          * additional entries that specify the named data streams, if any, each
1607          * of which will have <c>stream_name != NULL</c>.
1608          */
1609         struct wimlib_stream_entry streams[];
1610 };
1611
1612 /**
1613  * Type of a callback function to wimlib_iterate_dir_tree().  Must return 0 on
1614  * success.
1615  */
1616 typedef int (*wimlib_iterate_dir_tree_callback_t)(const struct wimlib_dir_entry *dentry,
1617                                                   void *user_ctx);
1618
1619 /**
1620  * Type of a callback function to wimlib_iterate_lookup_table().  Must return 0
1621  * on success.
1622  */
1623 typedef int (*wimlib_iterate_lookup_table_callback_t)(const struct wimlib_resource_entry *resource,
1624                                                       void *user_ctx);
1625
1626 /** For wimlib_iterate_dir_tree(): Iterate recursively on children rather than
1627  * just on the specified path. */
1628 #define WIMLIB_ITERATE_DIR_TREE_FLAG_RECURSIVE 0x00000001
1629
1630 /** For wimlib_iterate_dir_tree(): Don't iterate on the file or directory
1631  * itself; only its children (in the case of a non-empty directory) */
1632 #define WIMLIB_ITERATE_DIR_TREE_FLAG_CHILDREN  0x00000002
1633
1634 /** Return ::WIMLIB_ERR_RESOURCE_NOT_FOUND if any file data blobs needed to fill
1635  * in the ::wimlib_resource_entry's for the iteration cannot be found in the
1636  * blob lookup table of the ::WIMStruct.  The default behavior without this flag
1637  * is to fill in the @ref wimlib_resource_entry::sha1_hash "sha1_hash" and set
1638  * the @ref wimlib_resource_entry::is_missing "is_missing" flag.  */
1639 #define WIMLIB_ITERATE_DIR_TREE_FLAG_RESOURCES_NEEDED  0x00000004
1640
1641
1642 /** @} */
1643 /** @addtogroup G_modifying_wims
1644  * @{ */
1645
1646 /** UNIX-like systems only: Directly capture an NTFS volume rather than a
1647  * generic directory.  This requires that wimlib was compiled with support for
1648  * libntfs-3g.
1649  *
1650  * This flag cannot be combined with ::WIMLIB_ADD_FLAG_DEREFERENCE or
1651  * ::WIMLIB_ADD_FLAG_UNIX_DATA.
1652  *
1653  * Do not use this flag on Windows, where wimlib already supports all
1654  * Windows-native filesystems, including NTFS, through the Windows APIs.  */
1655 #define WIMLIB_ADD_FLAG_NTFS                    0x00000001
1656
1657 /** Follow symbolic links when scanning the directory tree.  Currently only
1658  * supported on UNIX-like systems.  */
1659 #define WIMLIB_ADD_FLAG_DEREFERENCE             0x00000002
1660
1661 /** Call the progress function with the message
1662  * ::WIMLIB_PROGRESS_MSG_SCAN_DENTRY when each directory or file has been
1663  * scanned.  */
1664 #define WIMLIB_ADD_FLAG_VERBOSE                 0x00000004
1665
1666 /** Mark the image being added as the bootable image of the WIM.  This flag is
1667  * valid only for wimlib_add_image() and wimlib_add_image_multisource().
1668  *
1669  * Note that you can also change the bootable image of a WIM using
1670  * wimlib_set_wim_info().
1671  *
1672  * Note: ::WIMLIB_ADD_FLAG_BOOT does something different from, and independent
1673  * from, ::WIMLIB_ADD_FLAG_WIMBOOT.  */
1674 #define WIMLIB_ADD_FLAG_BOOT                    0x00000008
1675
1676 /** UNIX-like systems only: Store the UNIX owner, group, mode, and device ID
1677  * (major and minor number) of each file.  In addition, capture special files
1678  * such as device nodes and FIFOs.  See the documentation for the
1679  * <b>--unix-data</b> option to <b>wimcapture</b> for more information.  */
1680 #define WIMLIB_ADD_FLAG_UNIX_DATA               0x00000010
1681
1682 /** Do not capture security descriptors.  Only has an effect in NTFS-3G capture
1683  * mode, or in Windows native builds.  */
1684 #define WIMLIB_ADD_FLAG_NO_ACLS                 0x00000020
1685
1686 /** Fail immediately if the full security descriptor of any file or directory
1687  * cannot be accessed.  Only has an effect in Windows native builds.  The
1688  * default behavior without this flag is to first try omitting the SACL from the
1689  * security descriptor, then to try omitting the security descriptor entirely.
1690  */
1691 #define WIMLIB_ADD_FLAG_STRICT_ACLS             0x00000040
1692
1693 /** Call the progress function with the message
1694  * ::WIMLIB_PROGRESS_MSG_SCAN_DENTRY when a directory or file is excluded from
1695  * capture.  This is a subset of the messages provided by
1696  * ::WIMLIB_ADD_FLAG_VERBOSE.  */
1697 #define WIMLIB_ADD_FLAG_EXCLUDE_VERBOSE         0x00000080
1698
1699 /** Reparse-point fixups:  Modify absolute symbolic links (and junctions, in the
1700  * case of Windows) that point inside the directory being captured to instead be
1701  * absolute relative to the directory being captured.
1702  *
1703  * Without this flag, the default is to do reparse-point fixups if
1704  * <c>WIM_HDR_FLAG_RP_FIX</c> is set in the WIM header or if this is the first
1705  * image being added.  */
1706 #define WIMLIB_ADD_FLAG_RPFIX                   0x00000100
1707
1708 /** Don't do reparse point fixups.  See ::WIMLIB_ADD_FLAG_RPFIX.  */
1709 #define WIMLIB_ADD_FLAG_NORPFIX                 0x00000200
1710
1711 /** Do not automatically exclude unsupported files or directories from capture,
1712  * such as encrypted files in NTFS-3G capture mode, or device files and FIFOs on
1713  * UNIX-like systems when not also using ::WIMLIB_ADD_FLAG_UNIX_DATA.  Instead,
1714  * fail with ::WIMLIB_ERR_UNSUPPORTED_FILE when such a file is encountered.  */
1715 #define WIMLIB_ADD_FLAG_NO_UNSUPPORTED_EXCLUDE  0x00000400
1716
1717 /**
1718  * Automatically select a capture configuration appropriate for capturing
1719  * filesystems containing Windows operating systems.  For example,
1720  * <c>/pagefile.sys</c> and <c>"/System Volume Information"</c> will be
1721  * excluded.
1722  *
1723  * When this flag is specified, the corresponding @p config parameter (for
1724  * wimlib_add_image()) or member (for wimlib_update_image()) must be @c NULL.
1725  * Otherwise, ::WIMLIB_ERR_INVALID_PARAM will be returned.
1726  *
1727  * Note that the default behavior--- that is, when neither
1728  * ::WIMLIB_ADD_FLAG_WINCONFIG nor ::WIMLIB_ADD_FLAG_WIMBOOT is specified and @p
1729  * config is @c NULL--- is to use no capture configuration, meaning that no
1730  * files are excluded from capture.
1731  */
1732 #define WIMLIB_ADD_FLAG_WINCONFIG               0x00000800
1733
1734 /**
1735  * Capture image as "WIMBoot compatible".  In addition, if no capture
1736  * configuration file is explicitly specified use the capture configuration file
1737  * <c>$SOURCE/Windows/System32/WimBootCompress.ini</c> if it exists, where
1738  * <c>$SOURCE</c> is the directory being captured; or, if a capture
1739  * configuration file is explicitly specified, use it and also place it at
1740  * <c>/Windows/System32/WimBootCompress.ini</c> in the WIM image.
1741  *
1742  * This flag does not, by itself, change the compression type or chunk size.
1743  * Before writing the WIM file, you may wish to set the compression format to
1744  * be the same as that used by WIMGAPI and DISM:
1745  *
1746  * \code
1747  *      wimlib_set_output_compression_type(wim, WIMLIB_COMPRESSION_TYPE_XPRESS);
1748  *      wimlib_set_output_chunk_size(wim, 4096);
1749  * \endcode
1750  *
1751  * However, "WIMBoot" also works with other XPRESS chunk sizes as well as LZX
1752  * with 32768 byte chunks.
1753  *
1754  * Note: ::WIMLIB_ADD_FLAG_WIMBOOT does something different from, and
1755  * independent from, ::WIMLIB_ADD_FLAG_BOOT.
1756  *
1757  * Since wimlib v1.8.3, ::WIMLIB_ADD_FLAG_WIMBOOT also causes offline WIM-backed
1758  * files to be added as the "real" files rather than as their reparse points,
1759  * provided that their data is already present in the WIM.  This feature can be
1760  * useful when updating a backing WIM file in an "offline" state.
1761  */
1762 #define WIMLIB_ADD_FLAG_WIMBOOT                 0x00001000
1763
1764 /**
1765  * If the add command involves adding a non-directory file to a location at
1766  * which there already exists a nondirectory file in the image, issue
1767  * ::WIMLIB_ERR_INVALID_OVERLAY instead of replacing the file.  This was the
1768  * default behavior before wimlib v1.7.0.
1769  */
1770 #define WIMLIB_ADD_FLAG_NO_REPLACE              0x00002000
1771
1772 /**
1773  * Send ::WIMLIB_PROGRESS_MSG_TEST_FILE_EXCLUSION messages to the progress
1774  * function.
1775  *
1776  * Note: This method for file exclusions is independent from the capture
1777  * configuration file mechanism.
1778  */
1779 #define WIMLIB_ADD_FLAG_TEST_FILE_EXCLUSION     0x00004000
1780
1781 /**
1782  * Since wimlib v1.9.0: create a temporary filesystem snapshot of the source
1783  * directory and add the files from it.  Currently, this option is only
1784  * supported on Windows, where it uses the Volume Shadow Copy Service (VSS).
1785  * Using this option, you can create a consistent backup of the system volume of
1786  * a running Windows system without running into problems with locked files.
1787  * For the VSS snapshot to be successfully created, your application must be run
1788  * as an Administrator, and it cannot be run in WoW64 mode (i.e. if Windows is
1789  * 64-bit, then your application must be 64-bit as well).
1790  */
1791 #define WIMLIB_ADD_FLAG_SNAPSHOT                0x00008000
1792
1793 /**
1794  * Since wimlib v1.9.0: permit the library to discard file paths after the
1795  * initial scan.  If the application won't use
1796  * ::WIMLIB_WRITE_FLAG_SEND_DONE_WITH_FILE_MESSAGES while writing the WIM
1797  * archive, this flag can be used to allow the library to enable optimizations
1798  * such as opening files by inode number rather than by path.  Currently this
1799  * only makes a difference on Windows.
1800  */
1801 #define WIMLIB_ADD_FLAG_FILE_PATHS_UNNEEDED     0x00010000
1802
1803 /** @} */
1804 /** @addtogroup G_modifying_wims
1805  * @{ */
1806
1807 /** Do not issue an error if the path to delete does not exist. */
1808 #define WIMLIB_DELETE_FLAG_FORCE                        0x00000001
1809
1810 /** Delete the file or directory tree recursively; if not specified, an error is
1811  * issued if the path to delete is a directory. */
1812 #define WIMLIB_DELETE_FLAG_RECURSIVE                    0x00000002
1813
1814 /** @} */
1815 /** @addtogroup G_modifying_wims
1816  * @{ */
1817
1818 /**
1819  * If a single image is being exported, mark it bootable in the destination WIM.
1820  * Alternatively, if ::WIMLIB_ALL_IMAGES is specified as the image to export,
1821  * the image in the source WIM (if any) that is marked as bootable is also
1822  * marked as bootable in the destination WIM.
1823  */
1824 #define WIMLIB_EXPORT_FLAG_BOOT                         0x00000001
1825
1826 /** Give the exported image(s) no names.  Avoids problems with image name
1827  * collisions.
1828  */
1829 #define WIMLIB_EXPORT_FLAG_NO_NAMES                     0x00000002
1830
1831 /** Give the exported image(s) no descriptions.  */
1832 #define WIMLIB_EXPORT_FLAG_NO_DESCRIPTIONS              0x00000004
1833
1834 /** This advises the library that the program is finished with the source
1835  * WIMStruct and will not attempt to access it after the call to
1836  * wimlib_export_image(), with the exception of the call to wimlib_free().  */
1837 #define WIMLIB_EXPORT_FLAG_GIFT                         0x00000008
1838
1839 /**
1840  * Mark each exported image as WIMBoot-compatible.
1841  *
1842  * Note: by itself, this does change the destination WIM's compression type, nor
1843  * does it add the file @c \\Windows\\System32\\WimBootCompress.ini in the WIM
1844  * image.  Before writing the destination WIM, it's recommended to do something
1845  * like:
1846  *
1847  * \code
1848  *      wimlib_set_output_compression_type(wim, WIMLIB_COMPRESSION_TYPE_XPRESS);
1849  *      wimlib_set_output_chunk_size(wim, 4096);
1850  *      wimlib_add_tree(wim, image, L"myconfig.ini",
1851  *                      L"\\Windows\\System32\\WimBootCompress.ini", 0);
1852  * \endcode
1853  */
1854 #define WIMLIB_EXPORT_FLAG_WIMBOOT                      0x00000010
1855
1856 /** @} */
1857 /** @addtogroup G_extracting_wims
1858  * @{ */
1859
1860 /** Extract the image directly to an NTFS volume rather than a generic directory.
1861  * This mode is only available if wimlib was compiled with libntfs-3g support;
1862  * if not, ::WIMLIB_ERR_UNSUPPORTED will be returned.  In this mode, the
1863  * extraction target will be interpreted as the path to an NTFS volume image (as
1864  * a regular file or block device) rather than a directory.  It will be opened
1865  * using libntfs-3g, and the image will be extracted to the NTFS filesystem's
1866  * root directory.  Note: this flag cannot be used when wimlib_extract_image()
1867  * is called with ::WIMLIB_ALL_IMAGES as the @p image, nor can it be used with
1868  * wimlib_extract_paths() when passed multiple paths.  */
1869 #define WIMLIB_EXTRACT_FLAG_NTFS                        0x00000001
1870
1871 /** UNIX-like systems only:  Extract special UNIX data captured with
1872  * ::WIMLIB_ADD_FLAG_UNIX_DATA.  This flag cannot be combined with
1873  * ::WIMLIB_EXTRACT_FLAG_NTFS.  */
1874 #define WIMLIB_EXTRACT_FLAG_UNIX_DATA                   0x00000020
1875
1876 /** Do not extract security descriptors.  This flag cannot be combined with
1877  * ::WIMLIB_EXTRACT_FLAG_STRICT_ACLS.  */
1878 #define WIMLIB_EXTRACT_FLAG_NO_ACLS                     0x00000040
1879
1880 /**
1881  * Fail immediately if the full security descriptor of any file or directory
1882  * cannot be set exactly as specified in the WIM image.  On Windows, the default
1883  * behavior without this flag when wimlib does not have permission to set the
1884  * correct security descriptor is to fall back to setting the security
1885  * descriptor with the SACL omitted, then with the DACL omitted, then with the
1886  * owner omitted, then not at all.  This flag cannot be combined with
1887  * ::WIMLIB_EXTRACT_FLAG_NO_ACLS.
1888  */
1889 #define WIMLIB_EXTRACT_FLAG_STRICT_ACLS                 0x00000080
1890
1891 /**
1892  * This is the extraction equivalent to ::WIMLIB_ADD_FLAG_RPFIX.  This forces
1893  * reparse-point fixups on, so absolute symbolic links or junction points will
1894  * be fixed to be absolute relative to the actual extraction root.  Reparse-
1895  * point fixups are done by default for wimlib_extract_image() and
1896  * wimlib_extract_image_from_pipe() if <c>WIM_HDR_FLAG_RP_FIX</c> is set in the
1897  * WIM header.  This flag cannot be combined with ::WIMLIB_EXTRACT_FLAG_NORPFIX.
1898  */
1899 #define WIMLIB_EXTRACT_FLAG_RPFIX                       0x00000100
1900
1901 /** Force reparse-point fixups on extraction off, regardless of the state of the
1902  * WIM_HDR_FLAG_RP_FIX flag in the WIM header.  This flag cannot be combined
1903  * with ::WIMLIB_EXTRACT_FLAG_RPFIX.  */
1904 #define WIMLIB_EXTRACT_FLAG_NORPFIX                     0x00000200
1905
1906 /** For wimlib_extract_paths() and wimlib_extract_pathlist() only:  Extract the
1907  * paths, each of which must name a regular file, to standard output.  */
1908 #define WIMLIB_EXTRACT_FLAG_TO_STDOUT                   0x00000400
1909
1910 /**
1911  * Instead of ignoring files and directories with names that cannot be
1912  * represented on the current platform (note: Windows has more restrictions on
1913  * filenames than POSIX-compliant systems), try to replace characters or append
1914  * junk to the names so that they can be extracted in some form.
1915  *
1916  * Note: this flag is unlikely to have any effect when extracting a WIM image
1917  * that was captured on Windows.
1918  */
1919 #define WIMLIB_EXTRACT_FLAG_REPLACE_INVALID_FILENAMES   0x00000800
1920
1921 /**
1922  * On Windows, when there exist two or more files with the same case insensitive
1923  * name but different case sensitive names, try to extract them all by appending
1924  * junk to the end of them, rather than arbitrarily extracting only one.
1925  *
1926  * Note: this flag is unlikely to have any effect when extracting a WIM image
1927  * that was captured on Windows.
1928  */
1929 #define WIMLIB_EXTRACT_FLAG_ALL_CASE_CONFLICTS          0x00001000
1930
1931 /** Do not ignore failure to set timestamps on extracted files.  This flag
1932  * currently only has an effect when extracting to a directory on UNIX-like
1933  * systems.  */
1934 #define WIMLIB_EXTRACT_FLAG_STRICT_TIMESTAMPS           0x00002000
1935
1936 /** Do not ignore failure to set short names on extracted files.  This flag
1937  * currently only has an effect on Windows.  */
1938 #define WIMLIB_EXTRACT_FLAG_STRICT_SHORT_NAMES          0x00004000
1939
1940 /** Do not ignore failure to extract symbolic links and junctions due to
1941  * permissions problems.  This flag currently only has an effect on Windows.  By
1942  * default, such failures are ignored since the default configuration of Windows
1943  * only allows the Administrator to create symbolic links.  */
1944 #define WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS             0x00008000
1945
1946 /**
1947  * For wimlib_extract_paths() and wimlib_extract_pathlist() only:  Treat the
1948  * paths to extract as wildcard patterns ("globs") which may contain the
1949  * wildcard characters @c ? and @c *.  The @c ? character matches any
1950  * non-path-separator character, whereas the @c * character matches zero or more
1951  * non-path-separator characters.  Consequently, each glob may match zero or
1952  * more actual paths in the WIM image.
1953  *
1954  * By default, if a glob does not match any files, a warning but not an error
1955  * will be issued.  This is the case even if the glob did not actually contain
1956  * wildcard characters.  Use ::WIMLIB_EXTRACT_FLAG_STRICT_GLOB to get an error
1957  * instead.
1958  */
1959 #define WIMLIB_EXTRACT_FLAG_GLOB_PATHS                  0x00040000
1960
1961 /** In combination with ::WIMLIB_EXTRACT_FLAG_GLOB_PATHS, causes an error
1962  * (::WIMLIB_ERR_PATH_DOES_NOT_EXIST) rather than a warning to be issued when
1963  * one of the provided globs did not match a file.  */
1964 #define WIMLIB_EXTRACT_FLAG_STRICT_GLOB                 0x00080000
1965
1966 /**
1967  * Do not extract Windows file attributes such as readonly, hidden, etc.
1968  *
1969  * This flag has an effect on Windows as well as in the NTFS-3G extraction mode.
1970  */
1971 #define WIMLIB_EXTRACT_FLAG_NO_ATTRIBUTES               0x00100000
1972
1973 /**
1974  * For wimlib_extract_paths() and wimlib_extract_pathlist() only:  Do not
1975  * preserve the directory structure of the archive when extracting --- that is,
1976  * place each extracted file or directory tree directly in the target directory.
1977  * The target directory will still be created if it does not already exist.
1978  */
1979 #define WIMLIB_EXTRACT_FLAG_NO_PRESERVE_DIR_STRUCTURE   0x00200000
1980
1981 /**
1982  * Windows only: Extract files as "pointers" back to the WIM archive.
1983  *
1984  * The effects of this option are fairly complex.  See the documentation for the
1985  * <b>--wimboot</b> option of <b>wimapply</b> for more information.
1986  */
1987 #define WIMLIB_EXTRACT_FLAG_WIMBOOT                     0x00400000
1988
1989 /**
1990  * Since wimlib v1.8.2 and Windows-only: compress the extracted files using
1991  * System Compression, when possible.  This only works on either Windows 10 or
1992  * later, or on an older Windows to which Microsoft's wofadk.sys driver has been
1993  * added.  Several different compression formats may be used with System
1994  * Compression; this particular flag selects the XPRESS compression format with
1995  * 4096 byte chunks.
1996  */
1997 #define WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K            0x01000000
1998
1999 /** Like ::WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K, but use XPRESS compression with
2000  * 8192 byte chunks.  */
2001 #define WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS8K            0x02000000
2002
2003 /** Like ::WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K, but use XPRESS compression with
2004  * 16384 byte chunks.  */
2005 #define WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS16K           0x04000000
2006
2007 /** Like ::WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K, but use LZX compression with
2008  * 32768 byte chunks.  */
2009 #define WIMLIB_EXTRACT_FLAG_COMPACT_LZX                 0x08000000
2010
2011 /** @} */
2012 /** @addtogroup G_mounting_wim_images
2013  * @{ */
2014
2015 /** Mount the WIM image read-write rather than the default of read-only. */
2016 #define WIMLIB_MOUNT_FLAG_READWRITE                     0x00000001
2017
2018 /** Enable FUSE debugging by passing the @c -d option to @c fuse_main().  */
2019 #define WIMLIB_MOUNT_FLAG_DEBUG                         0x00000002
2020
2021 /** Do not allow accessing named data streams in the mounted WIM image.  */
2022 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE         0x00000004
2023
2024 /** Access named data streams in the mounted WIM image through extended file
2025  * attributes named "user.X", where X is the name of a data stream.  This is the
2026  * default mode.  */
2027 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR        0x00000008
2028
2029 /** Access named data streams in the mounted WIM image by specifying the file
2030  * name, a colon, then the name of the data stream.  */
2031 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS      0x00000010
2032
2033 /** Use UNIX metadata if available in the WIM image.  See
2034  * ::WIMLIB_ADD_FLAG_UNIX_DATA.  */
2035 #define WIMLIB_MOUNT_FLAG_UNIX_DATA                     0x00000020
2036
2037 /** Allow other users to see the mounted filesystem.  This passes the @c
2038  * allow_other option to fuse_main().  */
2039 #define WIMLIB_MOUNT_FLAG_ALLOW_OTHER                   0x00000040
2040
2041 /** @} */
2042 /** @addtogroup G_creating_and_opening_wims
2043  * @{ */
2044
2045 /** Verify the WIM contents against the WIM's integrity table, if present.  The
2046  * integrity table stores checksums for the raw data of the WIM file, divided
2047  * into fixed size chunks.  Verification will compute checksums and compare them
2048  * with the stored values.  If there are any mismatches, then
2049  * ::WIMLIB_ERR_INTEGRITY will be issued.  If the WIM file does not contain an
2050  * integrity table, then this flag has no effect.  */
2051 #define WIMLIB_OPEN_FLAG_CHECK_INTEGRITY                0x00000001
2052
2053 /** Issue an error (::WIMLIB_ERR_IS_SPLIT_WIM) if the WIM is part of a split
2054  * WIM.  Software can provide this flag for convenience if it explicitly does
2055  * not want to support split WIMs.  */
2056 #define WIMLIB_OPEN_FLAG_ERROR_IF_SPLIT                 0x00000002
2057
2058 /** Check if the WIM is writable and issue an error
2059  * (::WIMLIB_ERR_WIM_IS_READONLY) if it is not.  A WIM is considered writable
2060  * only if it is writable at the filesystem level, does not have the
2061  * <c>WIM_HDR_FLAG_READONLY</c> flag set in its header, and is not part of a
2062  * spanned set.  It is not required to provide this flag before attempting to
2063  * make changes to the WIM, but with this flag you get an error immediately
2064  * rather than potentially much later, when wimlib_overwrite() is finally
2065  * called.  */
2066 #define WIMLIB_OPEN_FLAG_WRITE_ACCESS                   0x00000004
2067
2068 /** @} */
2069 /** @addtogroup G_mounting_wim_images
2070  * @{ */
2071
2072 /** Provide ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY when committing the WIM image.
2073  * Ignored if ::WIMLIB_UNMOUNT_FLAG_COMMIT not also specified.  */
2074 #define WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY             0x00000001
2075
2076 /** Commit changes to the read-write mounted WIM image.
2077  * If this flag is not specified, changes will be discarded.  */
2078 #define WIMLIB_UNMOUNT_FLAG_COMMIT                      0x00000002
2079
2080 /** Provide ::WIMLIB_WRITE_FLAG_REBUILD when committing the WIM image.
2081  * Ignored if ::WIMLIB_UNMOUNT_FLAG_COMMIT not also specified.  */
2082 #define WIMLIB_UNMOUNT_FLAG_REBUILD                     0x00000004
2083
2084 /** Provide ::WIMLIB_WRITE_FLAG_RECOMPRESS when committing the WIM image.
2085  * Ignored if ::WIMLIB_UNMOUNT_FLAG_COMMIT not also specified.  */
2086 #define WIMLIB_UNMOUNT_FLAG_RECOMPRESS                  0x00000008
2087
2088 /**
2089  * In combination with ::WIMLIB_UNMOUNT_FLAG_COMMIT for a read-write mounted WIM
2090  * image, forces all file descriptors to the open WIM image to be closed before
2091  * committing it.
2092  *
2093  * Without ::WIMLIB_UNMOUNT_FLAG_COMMIT or with a read-only mounted WIM image,
2094  * this flag has no effect.
2095  */
2096 #define WIMLIB_UNMOUNT_FLAG_FORCE                       0x00000010
2097
2098 /** In combination with ::WIMLIB_UNMOUNT_FLAG_COMMIT for a read-write mounted
2099  * WIM image, causes the modified image to be committed to the WIM file as a
2100  * new, unnamed image appended to the archive.  The original image in the WIM
2101  * file will be unmodified.  */
2102 #define WIMLIB_UNMOUNT_FLAG_NEW_IMAGE                   0x00000020
2103
2104 /** @} */
2105 /** @addtogroup G_modifying_wims
2106  * @{ */
2107
2108 /** Send ::WIMLIB_PROGRESS_MSG_UPDATE_BEGIN_COMMAND and
2109  * ::WIMLIB_PROGRESS_MSG_UPDATE_END_COMMAND messages.  */
2110 #define WIMLIB_UPDATE_FLAG_SEND_PROGRESS                0x00000001
2111
2112 /** @} */
2113 /** @addtogroup G_writing_and_overwriting_wims
2114  * @{ */
2115
2116 /**
2117  * Include an integrity table in the resulting WIM file.
2118  *
2119  * For ::WIMStruct's created with wimlib_open_wim(), the default behavior is to
2120  * include an integrity table if and only if one was present before.  For
2121  * ::WIMStruct's created with wimlib_create_new_wim(), the default behavior is
2122  * to not include an integrity table.
2123  */
2124 #define WIMLIB_WRITE_FLAG_CHECK_INTEGRITY               0x00000001
2125
2126 /**
2127  * Do not include an integrity table in the resulting WIM file.  This is the
2128  * default behavior, unless the ::WIMStruct was created by opening a WIM with an
2129  * integrity table.
2130  */
2131 #define WIMLIB_WRITE_FLAG_NO_CHECK_INTEGRITY            0x00000002
2132
2133 /**
2134  * Write the WIM as "pipable".  After writing a WIM with this flag specified,
2135  * images from it can be applied directly from a pipe using
2136  * wimlib_extract_image_from_pipe().  See the documentation for the
2137  * <b>--pipable</b> option of <b>wimcapture</b> for more information.  Beware:
2138  * WIMs written with this flag will not be compatible with Microsoft's software.
2139  *
2140  * For ::WIMStruct's created with wimlib_open_wim(), the default behavior is to
2141  * write the WIM as pipable if and only if it was pipable before.  For
2142  * ::WIMStruct's created with wimlib_create_new_wim(), the default behavior is
2143  * to write the WIM as non-pipable.
2144  */
2145 #define WIMLIB_WRITE_FLAG_PIPABLE                       0x00000004
2146
2147 /**
2148  * Do not write the WIM as "pipable".  This is the default behavior, unless the
2149  * ::WIMStruct was created by opening a pipable WIM.
2150  */
2151 #define WIMLIB_WRITE_FLAG_NOT_PIPABLE                   0x00000008
2152
2153 /**
2154  * When writing data to the WIM file, recompress it, even if the data is already
2155  * available in the desired compressed form (for example, in a WIM file from
2156  * which an image has been exported using wimlib_export_image()).
2157  *
2158  * ::WIMLIB_WRITE_FLAG_RECOMPRESS can be used to recompress with a higher
2159  * compression ratio for the same compression type and chunk size.  Simply using
2160  * the default compression settings may suffice for this, especially if the WIM
2161  * file was created using another program/library that may not use as
2162  * sophisticated compression algorithms.  Or,
2163  * wimlib_set_default_compression_level() can be called beforehand to set an
2164  * even higher compression level than the default.
2165  *
2166  * If the WIM contains solid resources, then ::WIMLIB_WRITE_FLAG_RECOMPRESS can
2167  * be used in combination with ::WIMLIB_WRITE_FLAG_SOLID to prevent any solid
2168  * resources from being re-used.  Otherwise, solid resources are re-used
2169  * somewhat more liberally than normal compressed resources.
2170  *
2171  * ::WIMLIB_WRITE_FLAG_RECOMPRESS does <b>not</b> cause recompression of data
2172  * that would not otherwise be written.  For example, a call to
2173  * wimlib_overwrite() with ::WIMLIB_WRITE_FLAG_RECOMPRESS will not, by itself,
2174  * cause already-existing data in the WIM file to be recompressed.  To force the
2175  * WIM file to be fully rebuilt and recompressed, combine
2176  * ::WIMLIB_WRITE_FLAG_RECOMPRESS with ::WIMLIB_WRITE_FLAG_REBUILD.
2177  */
2178 #define WIMLIB_WRITE_FLAG_RECOMPRESS                    0x00000010
2179
2180 /**
2181  * Immediately before closing the WIM file, sync its data to disk.
2182  *
2183  * This flag forces the function to wait until the data is safely on disk before
2184  * returning success.  Otherwise, modern operating systems tend to cache data
2185  * for some time (in some cases, 30+ seconds) before actually writing it to
2186  * disk, even after reporting to the application that the writes have succeeded.
2187  *
2188  * wimlib_overwrite() will set this flag automatically if it decides to
2189  * overwrite the WIM file via a temporary file instead of in-place.  This is
2190  * necessary on POSIX systems; it will, for example, avoid problems with delayed
2191  * allocation on ext4.
2192  */
2193 #define WIMLIB_WRITE_FLAG_FSYNC                         0x00000020
2194
2195 /**
2196  * For wimlib_overwrite(): rebuild the entire WIM file, even if it otherwise
2197  * could be updated in-place by appending to it.  Any data that existed in the
2198  * original WIM file but is not actually needed by any of the remaining images
2199  * will not be included.  This can free up space left over after previous
2200  * in-place modifications to the WIM file.
2201  *
2202  * This flag can be combined with ::WIMLIB_WRITE_FLAG_RECOMPRESS to force all
2203  * data to be recompressed.  Otherwise, compressed data is re-used if possible.
2204  *
2205  * wimlib_write() ignores this flag.
2206  */
2207 #define WIMLIB_WRITE_FLAG_REBUILD                       0x00000040
2208
2209 /**
2210  * For wimlib_overwrite(): override the default behavior after one or more calls
2211  * to wimlib_delete_image(), which is to rebuild the entire WIM file.  With this
2212  * flag, only minimal changes to correctly remove the image from the WIM file
2213  * will be taken.  This can be much faster, but it will result in the WIM file
2214  * getting larger rather than smaller.
2215  *
2216  * wimlib_write() ignores this flag.
2217  */
2218 #define WIMLIB_WRITE_FLAG_SOFT_DELETE                   0x00000080
2219
2220 /**
2221  * For wimlib_overwrite(), allow overwriting the WIM file even if the readonly
2222  * flag (<c>WIM_HDR_FLAG_READONLY</c>) is set in the WIM header.  This can be
2223  * used following a call to wimlib_set_wim_info() with the
2224  * ::WIMLIB_CHANGE_READONLY_FLAG flag to actually set the readonly flag on the
2225  * on-disk WIM file.
2226  *
2227  * wimlib_write() ignores this flag.
2228  */
2229 #define WIMLIB_WRITE_FLAG_IGNORE_READONLY_FLAG          0x00000100
2230
2231 /**
2232  * Do not include file data already present in other WIMs.  This flag can be
2233  * used to write a "delta" WIM after the WIM files on which the delta is to be
2234  * based were referenced with wimlib_reference_resource_files() or
2235  * wimlib_reference_resources().
2236  */
2237 #define WIMLIB_WRITE_FLAG_SKIP_EXTERNAL_WIMS            0x00000200
2238
2239 /** Deprecated; this flag should not be used outside of the library itself.  */
2240 #define WIMLIB_WRITE_FLAG_STREAMS_OK                    0x00000400
2241
2242 /**
2243  * For wimlib_write(), retain the WIM's GUID instead of generating a new one.
2244  *
2245  * wimlib_overwrite() sets this by default, since the WIM remains, logically,
2246  * the same file.
2247  */
2248 #define WIMLIB_WRITE_FLAG_RETAIN_GUID                   0x00000800
2249
2250 /**
2251  * Concatenate files and compress them together, rather than compress each file
2252  * independently.  This is also known as creating a "solid archive".  This tends
2253  * to produce a better compression ratio at the cost of much slower random
2254  * access.
2255  *
2256  * WIM files created with this flag are only compatible with wimlib v1.6.0 or
2257  * later, WIMGAPI Windows 8 or later, and DISM Windows 8.1 or later.  WIM files
2258  * created with this flag use a different version number in their header (3584
2259  * instead of 68864) and are also called "ESD files".
2260  *
2261  * Note that providing this flag does not affect the "append by default"
2262  * behavior of wimlib_overwrite().  In other words, wimlib_overwrite() with just
2263  * ::WIMLIB_WRITE_FLAG_SOLID can be used to append solid-compressed data to a
2264  * WIM file that originally did not contain any solid-compressed data.  But if
2265  * you instead want to rebuild and recompress an entire WIM file in solid mode,
2266  * then also provide ::WIMLIB_WRITE_FLAG_REBUILD and
2267  * ::WIMLIB_WRITE_FLAG_RECOMPRESS.
2268  *
2269  * Currently, new solid resources will, by default, be written using LZMS
2270  * compression with 64 MiB (67108864 byte) chunks.  Use
2271  * wimlib_set_output_pack_compression_type() and/or
2272  * wimlib_set_output_pack_chunk_size() to change this.  This is independent of
2273  * the WIM's main compression type and chunk size; you can have a WIM that
2274  * nominally uses LZX compression and 32768 byte chunks but actually contains
2275  * LZMS-compressed solid resources, for example.  However, if including solid
2276  * resources, I suggest that you set the WIM's main compression type to LZMS as
2277  * well, either by creating the WIM with
2278  * ::wimlib_create_new_wim(::WIMLIB_COMPRESSION_TYPE_LZMS, ...) or by calling
2279  * ::wimlib_set_output_compression_type(..., ::WIMLIB_COMPRESSION_TYPE_LZMS).
2280  *
2281  * This flag will be set by default when writing or overwriting a WIM file that
2282  * either already contains solid resources, or has had solid resources exported
2283  * into it and the WIM's main compression type is LZMS.
2284  */
2285 #define WIMLIB_WRITE_FLAG_SOLID                         0x00001000
2286
2287 /**
2288  * Send ::WIMLIB_PROGRESS_MSG_DONE_WITH_FILE messages while writing the WIM
2289  * file.  This is only needed in the unusual case that the library user needs to
2290  * know exactly when wimlib has read each file for the last time.
2291  */
2292 #define WIMLIB_WRITE_FLAG_SEND_DONE_WITH_FILE_MESSAGES  0x00002000
2293
2294 /**
2295  * Do not consider content similarity when arranging file data for solid
2296  * compression.  Providing this flag will typically worsen the compression
2297  * ratio, so only provide this flag if you know what you are doing.
2298  */
2299 #define WIMLIB_WRITE_FLAG_NO_SOLID_SORT                 0x00004000
2300
2301 /**
2302  * Since wimlib v1.8.3 and for wimlib_overwrite() only: <b>unsafely</b> compact
2303  * the WIM file in-place, without appending.  Existing resources are shifted
2304  * down to fill holes and new resources are appended as needed.  The WIM file is
2305  * truncated to its final size, which may shrink the on-disk file.  <b>This
2306  * operation cannot be safely interrupted.  If the operation is interrupted,
2307  * then the WIM file will be corrupted, and it may be impossible (or at least
2308  * very difficult) to recover any data from it.  Users of this flag are expected
2309  * to know what they are doing and assume responsibility for any data corruption
2310  * that may result.</b>
2311  *
2312  * If the WIM file cannot be compacted in-place because of its structure, its
2313  * layout, or other requested write parameters, then wimlib_overwrite() fails
2314  * with ::WIMLIB_ERR_COMPACTION_NOT_POSSIBLE, and the caller may wish to retry
2315  * the operation without this flag.
2316  */
2317 #define WIMLIB_WRITE_FLAG_UNSAFE_COMPACT                0x00008000
2318
2319 /** @} */
2320 /** @addtogroup G_general
2321  * @{ */
2322
2323 /** Deprecated; no longer has any effect.  The library now always assumes UTF-8
2324  * encoding on non-Windows systems.  */
2325 #define WIMLIB_INIT_FLAG_ASSUME_UTF8                    0x00000001
2326
2327 /** Windows-only: do not attempt to acquire additional privileges (currently
2328  * SeBackupPrivilege, SeRestorePrivilege, SeSecurityPrivilege,
2329  * SeTakeOwnershipPrivilege, and SeManageVolumePrivilege) when initializing the
2330  * library.  This flag is intended for the case where the calling program
2331  * manages these privileges itself.  Note: by default, no error is issued if
2332  * privileges cannot be acquired, although related errors may be reported later,
2333  * depending on if the operations performed actually require additional
2334  * privileges or not.  */
2335 #define WIMLIB_INIT_FLAG_DONT_ACQUIRE_PRIVILEGES        0x00000002
2336
2337 /** Windows only:  If ::WIMLIB_INIT_FLAG_DONT_ACQUIRE_PRIVILEGES not specified,
2338  * return ::WIMLIB_ERR_INSUFFICIENT_PRIVILEGES if privileges that may be needed
2339  * to read all possible data and metadata for a capture operation could not be
2340  * acquired.  Can be combined with ::WIMLIB_INIT_FLAG_STRICT_APPLY_PRIVILEGES.
2341  */
2342 #define WIMLIB_INIT_FLAG_STRICT_CAPTURE_PRIVILEGES      0x00000004
2343
2344 /** Windows only:  If ::WIMLIB_INIT_FLAG_DONT_ACQUIRE_PRIVILEGES not specified,
2345  * return ::WIMLIB_ERR_INSUFFICIENT_PRIVILEGES if privileges that may be needed
2346  * to restore all possible data and metadata for an apply operation could not be
2347  * acquired.  Can be combined with ::WIMLIB_INIT_FLAG_STRICT_CAPTURE_PRIVILEGES.
2348  */
2349 #define WIMLIB_INIT_FLAG_STRICT_APPLY_PRIVILEGES        0x00000008
2350
2351 /** Default to interpreting WIM paths case sensitively (default on UNIX-like
2352  * systems).  */
2353 #define WIMLIB_INIT_FLAG_DEFAULT_CASE_SENSITIVE         0x00000010
2354
2355 /** Default to interpreting WIM paths case insensitively (default on Windows).
2356  * This does not apply to mounted images.  */
2357 #define WIMLIB_INIT_FLAG_DEFAULT_CASE_INSENSITIVE       0x00000020
2358
2359 /** @} */
2360 /** @addtogroup G_nonstandalone_wims
2361  * @{ */
2362
2363 /** For wimlib_reference_resource_files(), enable shell-style filename globbing.
2364  * Ignored by wimlib_reference_resources().  */
2365 #define WIMLIB_REF_FLAG_GLOB_ENABLE             0x00000001
2366
2367 /** For wimlib_reference_resource_files(), issue an error
2368  * (::WIMLIB_ERR_GLOB_HAD_NO_MATCHES) if a glob did not match any files.  The
2369  * default behavior without this flag is to issue no error at that point, but
2370  * then attempt to open the glob as a literal path, which of course will fail
2371  * anyway if no file exists at that path.  No effect if
2372  * ::WIMLIB_REF_FLAG_GLOB_ENABLE is not also specified.  Ignored by
2373  * wimlib_reference_resources().  */
2374 #define WIMLIB_REF_FLAG_GLOB_ERR_ON_NOMATCH     0x00000002
2375
2376 /** @} */
2377 /** @addtogroup G_modifying_wims
2378  * @{ */
2379
2380 /** The specific type of update to perform. */
2381 enum wimlib_update_op {
2382         /** Add a new file or directory tree to the image.  */
2383         WIMLIB_UPDATE_OP_ADD = 0,
2384
2385         /** Delete a file or directory tree from the image.  */
2386         WIMLIB_UPDATE_OP_DELETE = 1,
2387
2388         /** Rename a file or directory tree in the image.  */
2389         WIMLIB_UPDATE_OP_RENAME = 2,
2390 };
2391
2392 /** Data for a ::WIMLIB_UPDATE_OP_ADD operation. */
2393 struct wimlib_add_command {
2394         /** Filesystem path to the file or directory tree to add.  */
2395         wimlib_tchar *fs_source_path;
2396
2397         /** Destination path in the image.  To specify the root directory of the
2398          * image, use ::WIMLIB_WIM_ROOT_PATH.  */
2399         wimlib_tchar *wim_target_path;
2400
2401         /** Path to capture configuration file to use, or @c NULL if not
2402          * specified.  */
2403         wimlib_tchar *config_file;
2404
2405         /** Bitwise OR of WIMLIB_ADD_FLAG_* flags. */
2406         int add_flags;
2407 };
2408
2409 /** Data for a ::WIMLIB_UPDATE_OP_DELETE operation. */
2410 struct wimlib_delete_command {
2411
2412         /** The path to the file or directory within the image to delete.  */
2413         wimlib_tchar *wim_path;
2414
2415         /** Bitwise OR of WIMLIB_DELETE_FLAG_* flags.  */
2416         int delete_flags;
2417 };
2418
2419 /** Data for a ::WIMLIB_UPDATE_OP_RENAME operation. */
2420 struct wimlib_rename_command {
2421
2422         /** The path to the source file or directory within the image.  */
2423         wimlib_tchar *wim_source_path;
2424
2425         /** The path to the destination file or directory within the image.  */
2426         wimlib_tchar *wim_target_path;
2427
2428         /** Reserved; set to 0.  */
2429         int rename_flags;
2430 };
2431
2432 /** Specification of an update to perform on a WIM image. */
2433 struct wimlib_update_command {
2434
2435         enum wimlib_update_op op;
2436
2437         union {
2438                 struct wimlib_add_command add;
2439                 struct wimlib_delete_command delete_; /* Underscore is for C++
2440                                                          compatibility.  */
2441                 struct wimlib_rename_command rename;
2442         };
2443 };
2444
2445 /** @} */
2446 /** @addtogroup G_general
2447  * @{ */
2448
2449 /**
2450  * Possible values of the error code returned by many functions in wimlib.
2451  *
2452  * See the documentation for each wimlib function to see specifically what error
2453  * codes can be returned by a given function, and what they mean.
2454  */
2455 enum wimlib_error_code {
2456         WIMLIB_ERR_SUCCESS                            = 0,
2457         WIMLIB_ERR_ALREADY_LOCKED                     = 1,
2458         WIMLIB_ERR_DECOMPRESSION                      = 2,
2459         WIMLIB_ERR_FUSE                               = 6,
2460         WIMLIB_ERR_GLOB_HAD_NO_MATCHES                = 8,
2461         WIMLIB_ERR_IMAGE_COUNT                        = 10,
2462         WIMLIB_ERR_IMAGE_NAME_COLLISION               = 11,
2463         WIMLIB_ERR_INSUFFICIENT_PRIVILEGES            = 12,
2464         WIMLIB_ERR_INTEGRITY                          = 13,
2465         WIMLIB_ERR_INVALID_CAPTURE_CONFIG             = 14,
2466         WIMLIB_ERR_INVALID_CHUNK_SIZE                 = 15,
2467         WIMLIB_ERR_INVALID_COMPRESSION_TYPE           = 16,
2468         WIMLIB_ERR_INVALID_HEADER                     = 17,
2469         WIMLIB_ERR_INVALID_IMAGE                      = 18,
2470         WIMLIB_ERR_INVALID_INTEGRITY_TABLE            = 19,
2471         WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY         = 20,
2472         WIMLIB_ERR_INVALID_METADATA_RESOURCE          = 21,
2473         WIMLIB_ERR_INVALID_OVERLAY                    = 23,
2474         WIMLIB_ERR_INVALID_PARAM                      = 24,
2475         WIMLIB_ERR_INVALID_PART_NUMBER                = 25,
2476         WIMLIB_ERR_INVALID_PIPABLE_WIM                = 26,
2477         WIMLIB_ERR_INVALID_REPARSE_DATA               = 27,
2478         WIMLIB_ERR_INVALID_RESOURCE_HASH              = 28,
2479         WIMLIB_ERR_INVALID_UTF16_STRING               = 30,
2480         WIMLIB_ERR_INVALID_UTF8_STRING                = 31,
2481         WIMLIB_ERR_IS_DIRECTORY                       = 32,
2482         WIMLIB_ERR_IS_SPLIT_WIM                       = 33,
2483         WIMLIB_ERR_LINK                               = 35,
2484         WIMLIB_ERR_METADATA_NOT_FOUND                 = 36,
2485         WIMLIB_ERR_MKDIR                              = 37,
2486         WIMLIB_ERR_MQUEUE                             = 38,
2487         WIMLIB_ERR_NOMEM                              = 39,
2488         WIMLIB_ERR_NOTDIR                             = 40,
2489         WIMLIB_ERR_NOTEMPTY                           = 41,
2490         WIMLIB_ERR_NOT_A_REGULAR_FILE                 = 42,
2491         WIMLIB_ERR_NOT_A_WIM_FILE                     = 43,
2492         WIMLIB_ERR_NOT_PIPABLE                        = 44,
2493         WIMLIB_ERR_NO_FILENAME                        = 45,
2494         WIMLIB_ERR_NTFS_3G                            = 46,
2495         WIMLIB_ERR_OPEN                               = 47,
2496         WIMLIB_ERR_OPENDIR                            = 48,
2497         WIMLIB_ERR_PATH_DOES_NOT_EXIST                = 49,
2498         WIMLIB_ERR_READ                               = 50,
2499         WIMLIB_ERR_READLINK                           = 51,
2500         WIMLIB_ERR_RENAME                             = 52,
2501         WIMLIB_ERR_REPARSE_POINT_FIXUP_FAILED         = 54,
2502         WIMLIB_ERR_RESOURCE_NOT_FOUND                 = 55,
2503         WIMLIB_ERR_RESOURCE_ORDER                     = 56,
2504         WIMLIB_ERR_SET_ATTRIBUTES                     = 57,
2505         WIMLIB_ERR_SET_REPARSE_DATA                   = 58,
2506         WIMLIB_ERR_SET_SECURITY                       = 59,
2507         WIMLIB_ERR_SET_SHORT_NAME                     = 60,
2508         WIMLIB_ERR_SET_TIMESTAMPS                     = 61,
2509         WIMLIB_ERR_SPLIT_INVALID                      = 62,
2510         WIMLIB_ERR_STAT                               = 63,
2511         WIMLIB_ERR_UNEXPECTED_END_OF_FILE             = 65,
2512         WIMLIB_ERR_UNICODE_STRING_NOT_REPRESENTABLE   = 66,
2513         WIMLIB_ERR_UNKNOWN_VERSION                    = 67,
2514         WIMLIB_ERR_UNSUPPORTED                        = 68,
2515         WIMLIB_ERR_UNSUPPORTED_FILE                   = 69,
2516         WIMLIB_ERR_WIM_IS_READONLY                    = 71,
2517         WIMLIB_ERR_WRITE                              = 72,
2518         WIMLIB_ERR_XML                                = 73,
2519         WIMLIB_ERR_WIM_IS_ENCRYPTED                   = 74,
2520         WIMLIB_ERR_WIMBOOT                            = 75,
2521         WIMLIB_ERR_ABORTED_BY_PROGRESS                = 76,
2522         WIMLIB_ERR_UNKNOWN_PROGRESS_STATUS            = 77,
2523         WIMLIB_ERR_MKNOD                              = 78,
2524         WIMLIB_ERR_MOUNTED_IMAGE_IS_BUSY              = 79,
2525         WIMLIB_ERR_NOT_A_MOUNTPOINT                   = 80,
2526         WIMLIB_ERR_NOT_PERMITTED_TO_UNMOUNT           = 81,
2527         WIMLIB_ERR_FVE_LOCKED_VOLUME                  = 82,
2528         WIMLIB_ERR_UNABLE_TO_READ_CAPTURE_CONFIG      = 83,
2529         WIMLIB_ERR_WIM_IS_INCOMPLETE                  = 84,
2530         WIMLIB_ERR_COMPACTION_NOT_POSSIBLE            = 85,
2531         WIMLIB_ERR_IMAGE_HAS_MULTIPLE_REFERENCES      = 86,
2532         WIMLIB_ERR_DUPLICATE_EXPORTED_IMAGE           = 87,
2533         WIMLIB_ERR_CONCURRENT_MODIFICATION_DETECTED   = 88,
2534         WIMLIB_ERR_SNAPSHOT_FAILURE                   = 89,
2535 };
2536
2537
2538 /** Used to indicate no image or an invalid image. */
2539 #define WIMLIB_NO_IMAGE         0
2540
2541 /** Used to specify all images in the WIM. */
2542 #define WIMLIB_ALL_IMAGES       (-1)
2543
2544 /** @}  */
2545
2546 /**
2547  * @ingroup G_modifying_wims
2548  *
2549  * Append an empty image to a ::WIMStruct.
2550  *
2551  * The new image will initially contain no files or directories, although if
2552  * written without further modifications, then a root directory will be created
2553  * automatically for it.
2554  *
2555  * After calling this function, you can use wimlib_update_image() to add files
2556  * to the new image.  This gives you more control over making the new image
2557  * compared to calling wimlib_add_image() or wimlib_add_image_multisource().
2558  *
2559  * @param wim
2560  *      Pointer to the ::WIMStruct to which to add the image.
2561  * @param name
2562  *      Name to give the new image.  If @c NULL or empty, the new image is given
2563  *      no name.  If nonempty, it must specify a name that does not already
2564  *      exist in @p wim.
2565  * @param new_idx_ret
2566  *      If non-<c>NULL</c>, the index of the newly added image is returned in
2567  *      this location.
2568  *
2569  * @return 0 on success; a ::wimlib_error_code value on failure.
2570  *
2571  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
2572  *      The WIM already contains an image with the requested name.
2573  */
2574 extern int
2575 wimlib_add_empty_image(WIMStruct *wim,
2576                        const wimlib_tchar *name,
2577                        int *new_idx_ret);
2578
2579 /**
2580  * @ingroup G_modifying_wims
2581  *
2582  * Add an image to a ::WIMStruct from an on-disk directory tree or NTFS volume.
2583  *
2584  * The directory tree or NTFS volume is scanned immediately to load the dentry
2585  * tree into memory, and file metadata is read.  However, actual file data may
2586  * not be read until the ::WIMStruct is persisted to disk using wimlib_write()
2587  * or wimlib_overwrite().
2588  *
2589  * See the documentation for the @b wimlib-imagex program for more information
2590  * about the "normal" capture mode versus the NTFS capture mode (entered by
2591  * providing the flag ::WIMLIB_ADD_FLAG_NTFS).
2592  *
2593  * Note that no changes are committed to disk until wimlib_write() or
2594  * wimlib_overwrite() is called.
2595  *
2596  * @param wim
2597  *      Pointer to the ::WIMStruct to which to add the image.
2598  * @param source
2599  *      A path to a directory or unmounted NTFS volume that will be captured as
2600  *      a WIM image.
2601  * @param name
2602  *      Name to give the new image.  If @c NULL or empty, the new image is given
2603  *      no name.  If nonempty, it must specify a name that does not already
2604  *      exist in @p wim.
2605  * @param config_file
2606  *      Path to capture configuration file, or @c NULL.  This file may specify,
2607  *      among other things, which files to exclude from capture.  See the
2608  *      documentation for <b>wimcapture</b> (<b>--config</b> option) for details
2609  *      of the file format.  If @c NULL, the default capture configuration will
2610  *      be used.  Ordinarily, the default capture configuration will result in
2611  *      no files being excluded from capture purely based on name; however, the
2612  *      ::WIMLIB_ADD_FLAG_WINCONFIG and ::WIMLIB_ADD_FLAG_WIMBOOT flags modify
2613  *      the default.
2614  * @param add_flags
2615  *      Bitwise OR of flags prefixed with WIMLIB_ADD_FLAG.
2616  *
2617  * @return 0 on success; a ::wimlib_error_code value on failure.
2618  *
2619  * This function is implemented by calling wimlib_add_empty_image(), then
2620  * calling wimlib_update_image() with a single "add" command, so any error code
2621  * returned by wimlib_add_empty_image() may be returned, as well as any error
2622  * codes returned by wimlib_update_image() other than ones documented as only
2623  * being returned specifically by an update involving delete or rename commands.
2624  *
2625  * If a progress function is registered with @p wim, then it will receive the
2626  * messages ::WIMLIB_PROGRESS_MSG_SCAN_BEGIN and ::WIMLIB_PROGRESS_MSG_SCAN_END.
2627  * In addition, if ::WIMLIB_ADD_FLAG_VERBOSE is specified in @p add_flags, it
2628  * will receive ::WIMLIB_PROGRESS_MSG_SCAN_DENTRY.
2629  */
2630 extern int
2631 wimlib_add_image(WIMStruct *wim,
2632                  const wimlib_tchar *source,
2633                  const wimlib_tchar *name,
2634                  const wimlib_tchar *config_file,
2635                  int add_flags);
2636
2637 /**
2638  * @ingroup G_modifying_wims
2639  *
2640  * This function is equivalent to wimlib_add_image() except it allows for
2641  * multiple sources to be combined into a single WIM image.  This is done by
2642  * specifying the @p sources and @p num_sources parameters instead of the @p
2643  * source parameter of wimlib_add_image().  The rest of the parameters are the
2644  * same as wimlib_add_image().  See the documentation for <b>wimcapture</b> for
2645  * full details on how this mode works.
2646  */
2647 extern int
2648 wimlib_add_image_multisource(WIMStruct *wim,
2649                              const struct wimlib_capture_source *sources,
2650                              size_t num_sources,
2651                              const wimlib_tchar *name,
2652                              const wimlib_tchar *config_file,
2653                              int add_flags);
2654
2655 /**
2656  * @ingroup G_modifying_wims
2657  *
2658  * Add the file or directory tree at @p fs_source_path on the filesystem to the
2659  * location @p wim_target_path within the specified @p image of the @p wim.
2660  *
2661  * This just builds an appropriate ::wimlib_add_command and passes it to
2662  * wimlib_update_image().
2663  */
2664 extern int
2665 wimlib_add_tree(WIMStruct *wim, int image,
2666                 const wimlib_tchar *fs_source_path,
2667                 const wimlib_tchar *wim_target_path, int add_flags);
2668
2669 /**
2670  * @ingroup G_creating_and_opening_wims
2671  *
2672  * Create a ::WIMStruct which initially contains no images and is not backed by
2673  * an on-disk file.
2674  *
2675  * @param ctype
2676  *      The "output compression type" to assign to the ::WIMStruct.  This is the
2677  *      compression type that will be used if the ::WIMStruct is later persisted
2678  *      to an on-disk file using wimlib_write().
2679  *      <br/>
2680  *      This choice is not necessarily final.  If desired, it can still be
2681  *      changed at any time before wimlib_write() is called, using
2682  *      wimlib_set_output_compression_type().  In addition, if you wish to use a
2683  *      non-default compression chunk size, then you will need to call
2684  *      wimlib_set_output_chunk_size().
2685  * @param wim_ret
2686  *      On success, a pointer to the new ::WIMStruct is written to the memory
2687  *      location pointed to by this parameter.  This ::WIMStruct must be freed
2688  *      using using wimlib_free() when finished with it.
2689  *
2690  * @return 0 on success; a ::wimlib_error_code value on failure.
2691  *
2692  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
2693  *      @p ctype was not a supported compression type.
2694  * @retval ::WIMLIB_ERR_NOMEM
2695  *      Insufficient memory to allocate a new ::WIMStruct.
2696  */
2697 extern int
2698 wimlib_create_new_wim(enum wimlib_compression_type ctype, WIMStruct **wim_ret);
2699
2700 /**
2701  * @ingroup G_modifying_wims
2702  *
2703  * Delete an image, or all images, from a ::WIMStruct.
2704  *
2705  * Note that no changes are committed to disk until wimlib_write() or
2706  * wimlib_overwrite() is called.
2707  *
2708  * @param wim
2709  *      Pointer to the ::WIMStruct from which to delete the image.
2710  * @param image
2711  *      The 1-based index of the image to delete, or ::WIMLIB_ALL_IMAGES to
2712  *      delete all images.
2713  *
2714  * @return 0 on success; a ::wimlib_error_code value on failure.
2715  *
2716  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2717  *      @p image does not exist in the WIM.
2718  *
2719  * This function can additionally return ::WIMLIB_ERR_DECOMPRESSION,
2720  * ::WIMLIB_ERR_INVALID_METADATA_RESOURCE, ::WIMLIB_ERR_METADATA_NOT_FOUND,
2721  * ::WIMLIB_ERR_READ, or ::WIMLIB_ERR_UNEXPECTED_END_OF_FILE, all of which
2722  * indicate failure (for different reasons) to read the metadata resource for an
2723  * image that needed to be deleted.
2724  *
2725  * If this function fails when @p image was ::WIMLIB_ALL_IMAGES, then it's
2726  * possible that some but not all of the images were deleted.
2727  */
2728 extern int
2729 wimlib_delete_image(WIMStruct *wim, int image);
2730
2731 /**
2732  * @ingroup G_modifying_wims
2733  *
2734  * Delete the @p path from the specified @p image of the @p wim.
2735  *
2736  * This just builds an appropriate ::wimlib_delete_command and passes it to
2737  * wimlib_update_image().
2738  */
2739 extern int
2740 wimlib_delete_path(WIMStruct *wim, int image,
2741                    const wimlib_tchar *path, int delete_flags);
2742
2743 /**
2744  * @ingroup G_modifying_wims
2745  *
2746  * Export an image, or all images, from a ::WIMStruct into another ::WIMStruct.
2747  *
2748  * Specifically, if the destination ::WIMStruct contains <tt>n</tt> images, then
2749  * the source image(s) will be appended, in order, starting at destination index
2750  * <tt>n + 1</tt>.  By default, all image metadata will be exported verbatim,
2751  * but certain changes can be made by passing appropriate parameters.
2752  *
2753  * wimlib_export_image() is only an in-memory operation; no changes are
2754  * committed to disk until wimlib_write() or wimlib_overwrite() is called.
2755  *
2756  * A limitation of the current implementation of wimlib_export_image() is that
2757  * the directory tree of a source or destination image cannot be updated
2758  * following an export until one of the two images has been freed from memory.
2759  *
2760  * @param src_wim
2761  *      The WIM from which to export the images, specified as a pointer to the
2762  *      ::WIMStruct for a standalone WIM file, a delta WIM file, or part 1 of a
2763  *      split WIM.  In the case of a WIM file that is not standalone, this
2764  *      ::WIMStruct must have had any needed external resources previously
2765  *      referenced using wimlib_reference_resources() or
2766  *      wimlib_reference_resource_files().
2767  * @param src_image
2768  *      The 1-based index of the image from @p src_wim to export, or
2769  *      ::WIMLIB_ALL_IMAGES.
2770  * @param dest_wim
2771  *      The ::WIMStruct to which to export the images.
2772  * @param dest_name
2773  *      For single-image exports, the name to give the exported image in @p
2774  *      dest_wim.  If left @c NULL, the name from @p src_wim is used.  For
2775  *      ::WIMLIB_ALL_IMAGES exports, this parameter must be left @c NULL; in
2776  *      that case, the names are all taken from @p src_wim.  This parameter is
2777  *      overridden by ::WIMLIB_EXPORT_FLAG_NO_NAMES.
2778  * @param dest_description
2779  *      For single-image exports, the description to give the exported image in
2780  *      the new WIM file.  If left @c NULL, the description from @p src_wim is
2781  *      used.  For ::WIMLIB_ALL_IMAGES exports, this parameter must be left @c
2782  *      NULL; in that case, the description are all taken from @p src_wim.  This
2783  *      parameter is overridden by ::WIMLIB_EXPORT_FLAG_NO_DESCRIPTIONS.
2784  * @param export_flags
2785  *      Bitwise OR of flags prefixed with WIMLIB_EXPORT_FLAG.
2786  *
2787  * @return 0 on success; a ::wimlib_error_code value on failure.
2788  *
2789  * @retval ::WIMLIB_ERR_DUPLICATE_EXPORTED_IMAGE
2790  *      One or more of the source images had already been exported into the
2791  *      destination WIM.
2792  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
2793  *      One or more of the names being given to an exported image was already in
2794  *      use in the destination WIM.
2795  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2796  *      @p src_image does not exist in @p src_wim.
2797  * @retval ::WIMLIB_ERR_METADATA_NOT_FOUND
2798  *      At least one of @p src_wim and @p dest_wim does not contain image
2799  *      metadata; for example, one of them represents a non-first part of a
2800  *      split WIM.
2801  * @retval ::WIMLIB_ERR_RESOURCE_NOT_FOUND
2802  *      A file data blob that needed to be exported could not be found in the
2803  *      blob lookup table of @p src_wim.  See @ref G_nonstandalone_wims.
2804  *
2805  * This function can additionally return ::WIMLIB_ERR_DECOMPRESSION,
2806  * ::WIMLIB_ERR_INVALID_METADATA_RESOURCE, ::WIMLIB_ERR_METADATA_NOT_FOUND,
2807  * ::WIMLIB_ERR_READ, or ::WIMLIB_ERR_UNEXPECTED_END_OF_FILE, all of which
2808  * indicate failure (for different reasons) to read the metadata resource for an
2809  * image in @p src_wim that needed to be exported.
2810  */
2811 extern int
2812 wimlib_export_image(WIMStruct *src_wim, int src_image,
2813                     WIMStruct *dest_wim,
2814                     const wimlib_tchar *dest_name,
2815                     const wimlib_tchar *dest_description,
2816                     int export_flags);
2817
2818 /**
2819  * @ingroup G_extracting_wims
2820  *
2821  * Extract an image, or all images, from a ::WIMStruct.
2822  *
2823  * The exact behavior of how wimlib extracts files from a WIM image is
2824  * controllable by the @p extract_flags parameter, but there also are
2825  * differences depending on the platform (UNIX-like vs Windows).  See the
2826  * documentation for <b>wimapply</b> for more information, including about the
2827  * NTFS-3G extraction mode.
2828  *
2829  * @param wim
2830  *      The WIM from which to extract the image(s), specified as a pointer to the
2831  *      ::WIMStruct for a standalone WIM file, a delta WIM file, or part 1 of a
2832  *      split WIM.  In the case of a WIM file that is not standalone, this
2833  *      ::WIMStruct must have had any needed external resources previously
2834  *      referenced using wimlib_reference_resources() or
2835  *      wimlib_reference_resource_files().
2836  * @param image
2837  *      The 1-based index of the image to extract, or ::WIMLIB_ALL_IMAGES to
2838  *      extract all images.  Note: ::WIMLIB_ALL_IMAGES is unsupported in NTFS-3G
2839  *      extraction mode.
2840  * @param target
2841  *      A null-terminated string which names the location to which the image(s)
2842  *      will be extracted.  By default, this is interpreted as a path to a
2843  *      directory.  Alternatively, if ::WIMLIB_EXTRACT_FLAG_NTFS is specified in
2844  *      @p extract_flags, then this is interpreted as a path to an unmounted
2845  *      NTFS volume.
2846  * @param extract_flags
2847  *      Bitwise OR of flags prefixed with WIMLIB_EXTRACT_FLAG.
2848  *
2849  * @return 0 on success; a ::wimlib_error_code value on failure.
2850  *
2851  * @retval ::WIMLIB_ERR_DECOMPRESSION
2852  *      The WIM file contains invalid compressed data.
2853  * @retval ::WIMLIB_ERR_INVALID_IMAGE
2854  *      @p image does not exist in @p wim.
2855  * @retval ::WIMLIB_ERR_INVALID_METADATA_RESOURCE
2856  *      The metadata for an image to extract was invalid.
2857  * @retval ::WIMLIB_ERR_INVALID_PARAM
2858  *      The extraction flags were invalid; more details may be found in the
2859  *      documentation for the specific extraction flags that were specified.  Or
2860  *      @p target was @c NULL or an empty string, or @p wim was @c NULL.
2861  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_HASH
2862  *      The data of a file that needed to be extracted was corrupt.
2863  * @retval ::WIMLIB_ERR_LINK
2864  *      Failed to create a symbolic link or a hard link.
2865  * @retval ::WIMLIB_ERR_METADATA_NOT_FOUND
2866  *      @p wim does not contain image metadata; for example, it represents a
2867  *      non-first part of a split WIM.
2868  * @retval ::WIMLIB_ERR_MKDIR
2869  *      Failed create a directory.
2870  * @retval ::WIMLIB_ERR_NTFS_3G
2871  *      libntfs-3g reported that a problem occurred while writing to the NTFS
2872  *      volume.
2873  * @retval ::WIMLIB_ERR_OPEN
2874  *      Could not create a file, or failed to open an already-extracted file.
2875  * @retval ::WIMLIB_ERR_READ
2876  *      Failed to read data from the WIM.
2877  * @retval ::WIMLIB_ERR_READLINK
2878  *      Failed to determine the target of a symbolic link in the WIM.
2879  * @retval ::WIMLIB_ERR_REPARSE_POINT_FIXUP_FAILED
2880  *      Failed to fix the target of an absolute symbolic link (e.g. if the
2881  *      target would have exceeded the maximum allowed length).  (Only if
2882  *      reparse data was supported by the extraction mode and
2883  *      ::WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS was specified in @p
2884  *      extract_flags.)
2885  * @retval ::WIMLIB_ERR_RESOURCE_NOT_FOUND
2886  *      A file data blob that needed to be extracted could not be found in the
2887  *      blob lookup table of @p wim.  See @ref G_nonstandalone_wims.
2888  * @retval ::WIMLIB_ERR_SET_ATTRIBUTES
2889  *      Failed to set attributes on a file.
2890  * @retval ::WIMLIB_ERR_SET_REPARSE_DATA
2891  *      Failed to set reparse data on a file (only if reparse data was supported
2892  *      by the extraction mode).
2893  * @retval ::WIMLIB_ERR_SET_SECURITY
2894  *      Failed to set security descriptor on a file.
2895  * @retval ::WIMLIB_ERR_SET_SHORT_NAME
2896  *      Failed to set the short name of a file.
2897  * @retval ::WIMLIB_ERR_SET_TIMESTAMPS
2898  *      Failed to set timestamps on a file.
2899  * @retval ::WIMLIB_ERR_UNEXPECTED_END_OF_FILE
2900  *      Unexpected end-of-file occurred when reading data from the WIM.
2901  * @retval ::WIMLIB_ERR_UNSUPPORTED
2902  *      A requested extraction flag, or the data or metadata that must be
2903  *      extracted to support it, is unsupported in the build and configuration
2904  *      of wimlib, or on the current platform or extraction mode or target
2905  *      volume.  Flags affected by this include ::WIMLIB_EXTRACT_FLAG_NTFS,
2906  *      ::WIMLIB_EXTRACT_FLAG_UNIX_DATA, ::WIMLIB_EXTRACT_FLAG_STRICT_ACLS,
2907  *      ::WIMLIB_EXTRACT_FLAG_STRICT_SHORT_NAMES,
2908  *      ::WIMLIB_EXTRACT_FLAG_STRICT_TIMESTAMPS, and
2909  *      ::WIMLIB_EXTRACT_FLAG_STRICT_SYMLINKS.  For example, if
2910  *      ::WIMLIB_EXTRACT_FLAG_STRICT_SHORT_NAMES is specified in @p
2911  *      extract_flags, ::WIMLIB_ERR_UNSUPPORTED will be returned if the WIM
2912  *      image contains one or more files with short names, but extracting short
2913  *      names is not supported --- on Windows, this occurs if the target volume
2914  *      does not support short names, while on non-Windows, this occurs if
2915  *      ::WIMLIB_EXTRACT_FLAG_NTFS was not specified in @p extract_flags.
2916  * @retval ::WIMLIB_ERR_WIMBOOT
2917  *      ::WIMLIB_EXTRACT_FLAG_WIMBOOT was specified in @p extract_flags, but
2918  *      there was a problem creating WIMBoot pointer files or registering a
2919  *      source WIM file with the Windows Overlay Filesystem (WOF) driver.
2920  * @retval ::WIMLIB_ERR_WRITE
2921  *      Failed to write data to a file being extracted.
2922  *
2923  * If a progress function is registered with @p wim, then as each image is
2924  * extracted it will receive ::WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN, then
2925  * zero or more ::WIMLIB_PROGRESS_MSG_EXTRACT_FILE_STRUCTURE messages, then zero
2926  * or more ::WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS messages, then zero or more
2927  * ::WIMLIB_PROGRESS_MSG_EXTRACT_METADATA messages, then
2928  * ::WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END.
2929  */
2930 extern int
2931 wimlib_extract_image(WIMStruct *wim, int image,
2932                      const wimlib_tchar *target, int extract_flags);
2933
2934 /**
2935  * @ingroup G_extracting_wims
2936  *
2937  * Extract one image from a pipe on which a pipable WIM is being sent.
2938  *
2939  * See the documentation for ::WIMLIB_WRITE_FLAG_PIPABLE, and @ref
2940  * subsec_pipable_wims, for more information about pipable WIMs.
2941  *
2942  * This function operates in a special way to read the WIM fully sequentially.
2943  * As a result, there is no ::WIMStruct is made visible to library users, and
2944  * you cannot call wimlib_open_wim() on the pipe.  (You can, however, use
2945  * wimlib_open_wim() to transparently open a pipable WIM if it's available as a
2946  * seekable file, not a pipe.)
2947  *
2948  * @param pipe_fd
2949  *      File descriptor, which may be a pipe, opened for reading and positioned
2950  *      at the start of the pipable WIM.
2951  * @param image_num_or_name
2952  *      String that specifies the 1-based index or name of the image to extract.
2953  *      It is translated to an image index using the same rules that
2954  *      wimlib_resolve_image() uses.  However, unlike wimlib_extract_image(),
2955  *      only a single image (not all images) can be specified.  Alternatively,
2956  *      specify @p NULL here to use the first image in the WIM if it contains
2957  *      exactly one image but otherwise return ::WIMLIB_ERR_INVALID_IMAGE.
2958  * @param target
2959  *      Same as the corresponding parameter to wimlib_extract_image().
2960  * @param extract_flags
2961  *      Same as the corresponding parameter to wimlib_extract_image().
2962  *
2963  * @return 0 on success; a ::wimlib_error_code value on failure.  The possible
2964  * error codes include those returned by wimlib_extract_image() and
2965  * wimlib_open_wim() as well as the following:
2966  *
2967  * @retval ::WIMLIB_ERR_INVALID_PIPABLE_WIM
2968  *      Data read from the pipable WIM was invalid.
2969  * @retval ::WIMLIB_ERR_NOT_PIPABLE
2970  *      The WIM being piped over @p pipe_fd is a normal WIM, not a pipable WIM.
2971  */
2972 extern int
2973 wimlib_extract_image_from_pipe(int pipe_fd,
2974                                const wimlib_tchar *image_num_or_name,
2975                                const wimlib_tchar *target, int extract_flags);
2976
2977 /**
2978  * @ingroup G_extracting_wims
2979  *
2980  * Same as wimlib_extract_image_from_pipe(), but allows specifying a progress
2981  * function.  The progress function will be used while extracting the image and
2982  * will receive the normal extraction progress messages, such as
2983  * ::WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS, in addition to
2984  * ::WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN.
2985  */
2986 extern int
2987 wimlib_extract_image_from_pipe_with_progress(int pipe_fd,
2988                                              const wimlib_tchar *image_num_or_name,
2989                                              const wimlib_tchar *target,
2990                                              int extract_flags,
2991                                              wimlib_progress_func_t progfunc,
2992                                              void *progctx);
2993
2994 /**
2995  * @ingroup G_extracting_wims
2996  *
2997  * Similar to wimlib_extract_paths(), but the paths to extract from the WIM
2998  * image are specified in the ASCII, UTF-8, or UTF-16LE text file named by @p
2999  * path_list_file which itself contains the list of paths to use, one per line.
3000  * Leading and trailing whitespace is ignored.  Empty lines and lines beginning
3001  * with the ';' or '#' characters are ignored.  No quotes are needed, as paths
3002  * are otherwise delimited by the newline character.  However, quotes will be
3003  * stripped if present.
3004  *
3005  * The error codes are the same as those returned by wimlib_extract_paths(),
3006  * except that wimlib_extract_pathlist() returns an appropriate error code if it
3007  * cannot read the path list file (e.g. ::WIMLIB_ERR_OPEN, ::WIMLIB_ERR_STAT,
3008  * ::WIMLIB_ERR_READ).
3009  */
3010 extern int
3011 wimlib_extract_pathlist(WIMStruct *wim, int image,
3012                         const wimlib_tchar *target,
3013                         const wimlib_tchar *path_list_file,
3014                         int extract_flags);
3015
3016 /**
3017  * @ingroup G_extracting_wims
3018  *
3019  * Extract zero or more paths (files or directory trees) from the specified WIM
3020  * image.
3021  *
3022  * By default, each path will be extracted to a corresponding subdirectory of
3023  * the target based on its location in the image.  For example, if one of the
3024  * paths to extract is <c>/Windows/explorer.exe</c> and the target is
3025  * <c>outdir</c>, the file will be extracted to
3026  * <c>outdir/Windows/explorer.exe</c>.  This behavior can be changed by
3027  * providing the flag ::WIMLIB_EXTRACT_FLAG_NO_PRESERVE_DIR_STRUCTURE, which
3028  * will cause each file or directory tree to be placed directly in the target
3029  * directory --- so the same example would extract <c>/Windows/explorer.exe</c>
3030  * to <c>outdir/explorer.exe</c>.
3031  *
3032  * With globbing turned off (the default), paths are always checked for
3033  * existence strictly; that is, if any path to extract does not exist in the
3034  * image, then nothing is extracted and the function fails with
3035  * ::WIMLIB_ERR_PATH_DOES_NOT_EXIST.  But with globbing turned on
3036  * (::WIMLIB_EXTRACT_FLAG_GLOB_PATHS specified), globs are by default permitted
3037  * to match no files, and there is a flag (::WIMLIB_EXTRACT_FLAG_STRICT_GLOB) to
3038  * enable the strict behavior if desired.
3039  *
3040  * Symbolic links are not dereferenced when paths in the image are interpreted.
3041  *
3042  * @param wim
3043  *      WIM from which to extract the paths, specified as a pointer to the
3044  *      ::WIMStruct for a standalone WIM file, a delta WIM file, or part 1 of a
3045  *      split WIM.  In the case of a WIM file that is not standalone, this
3046  *      ::WIMStruct must have had any needed external resources previously
3047  *      referenced using wimlib_reference_resources() or
3048  *      wimlib_reference_resource_files().
3049  * @param image
3050  *      The 1-based index of the WIM image from which to extract the paths.
3051  * @param paths
3052  *      Array of paths to extract.  Each element must be the absolute path to a
3053  *      file or directory within the image.  Path separators may be either
3054  *      forwards or backwards slashes, and leading path separators are optional.
3055  *      The paths will be interpreted either case-sensitively (UNIX default) or
3056  *      case-insensitively (Windows default); however, the case sensitivity can
3057  *      be configured explicitly at library initialization time by passing an
3058  *      appropriate flag to wimlib_global_init().
3059  *      <br/>
3060  *      By default, "globbing" is disabled, so the characters @c * and @c ? are
3061  *      interpreted literally.  This can be changed by specifying
3062  *      ::WIMLIB_EXTRACT_FLAG_GLOB_PATHS in @p extract_flags.
3063  * @param num_paths
3064  *      Number of paths specified in @p paths.
3065  * @param target
3066  *      Directory to which to extract the paths.
3067  * @param extract_flags
3068  *      Bitwise OR of flags prefixed with WIMLIB_EXTRACT_FLAG.
3069  *
3070  * @return 0 on success; a ::wimlib_error_code value on failure.  Most of the
3071  * error codes are the same as those returned by wimlib_extract_image().  Below,
3072  * some of the error codes returned in situations specific to path-mode
3073  * extraction are documented:
3074  *
3075  * @retval ::WIMLIB_ERR_NOT_A_REGULAR_FILE
3076  *      ::WIMLIB_EXTRACT_FLAG_TO_STDOUT was specified in @p extract_flags, but
3077  *      one of the paths to extract did not name a regular file.
3078  * @retval ::WIMLIB_ERR_PATH_DOES_NOT_EXIST
3079  *      One of the paths to extract does not exist in the image; see discussion
3080  *      above about strict vs. non-strict behavior.
3081  *
3082  * If a progress function is registered with @p wim, then it will receive
3083  * ::WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS.
3084  */
3085 extern int
3086 wimlib_extract_paths(WIMStruct *wim,
3087                      int image,
3088                      const wimlib_tchar *target,
3089                      const wimlib_tchar * const *paths,
3090                      size_t num_paths,
3091                      int extract_flags);
3092
3093 /**
3094  * @ingroup G_wim_information
3095  *
3096  * Similar to wimlib_get_xml_data(), but the XML document will be written to the
3097  * specified standard C <c>FILE*</c> instead of retrieved in an in-memory
3098  * buffer.
3099  *
3100  * @return 0 on success; a ::wimlib_error_code value on failure.  This may
3101  * return any error code which can be returned by wimlib_get_xml_data() as well
3102  * as the following error codes:
3103  *
3104  * @retval ::WIMLIB_ERR_WRITE
3105  *      Failed to write the data to the requested file.
3106  */
3107 extern int
3108 wimlib_extract_xml_data(WIMStruct *wim, FILE *fp);
3109
3110 /**
3111  * @ingroup G_general
3112  *
3113  * Release a reference to a ::WIMStruct.  If the ::WIMStruct is still referenced
3114  * by other ::WIMStruct's (e.g. following calls to wimlib_export_image() or
3115  * wimlib_reference_resources()), then the library will free it later, when the
3116  * last reference is released; otherwise it is freed immediately and any
3117  * associated file descriptors are closed.
3118  *
3119  * @param wim
3120  *      Pointer to the ::WIMStruct to release.  If @c NULL, no action is taken.
3121  */
3122 extern void
3123 wimlib_free(WIMStruct *wim);
3124
3125 /**
3126  * @ingroup G_general
3127  *
3128  * Convert a ::wimlib_compression_type value into a string.
3129  *
3130  * @param ctype
3131  *      The compression type value to convert.
3132  *
3133  * @return
3134  *      A statically allocated string naming the compression type, such as
3135  *      "None", "LZX", or "XPRESS".  If the value was unrecognized, then
3136  *      the resulting string will be "Invalid".
3137  */
3138 extern const wimlib_tchar *
3139 wimlib_get_compression_type_string(enum wimlib_compression_type ctype);
3140
3141 /**
3142  * @ingroup G_general
3143  *
3144  * Convert a wimlib error code into a string describing it.
3145  *
3146  * @param code
3147  *      An error code returned by one of wimlib's functions.
3148  *
3149  * @return
3150  *      Pointer to a statically allocated string describing the error code.  If
3151  *      the value was unrecognized, then the resulting string will be "Unknown
3152  *      error".
3153  */
3154 extern const wimlib_tchar *
3155 wimlib_get_error_string(enum wimlib_error_code code);
3156
3157 /**
3158  * @ingroup G_wim_information
3159  *
3160  * Get the description of the specified image.  Equivalent to
3161  * <tt>wimlib_get_image_property(wim, image, "DESCRIPTION")</tt>.
3162  */
3163 extern const wimlib_tchar *
3164 wimlib_get_image_description(const WIMStruct *wim, int image);
3165
3166 /**
3167  * @ingroup G_wim_information
3168  *
3169  * Get the name of the specified image.  Equivalent to
3170  * <tt>wimlib_get_image_property(wim, image, "NAME")</tt>, except that
3171  * wimlib_get_image_name() will return an empty string if the image is unnamed
3172  * whereas wimlib_get_image_property() may return @c NULL in that case.
3173  */
3174 extern const wimlib_tchar *
3175 wimlib_get_image_name(const WIMStruct *wim, int image);
3176
3177 /**
3178  * @ingroup G_wim_information
3179  *
3180  * Since wimlib v1.8.3: get a per-image property from the WIM's XML document.
3181  * This is an alternative to wimlib_get_image_name() and
3182  * wimlib_get_image_description() which allows getting any simple string
3183  * property.
3184  *
3185  * @param wim
3186  *      Pointer to the ::WIMStruct for the WIM.
3187  * @param image
3188  *      The 1-based index of the image for which to get the property.
3189  * @param property_name
3190  *      The name of the image property, for example "NAME", "DESCRIPTION", or
3191  *      "TOTALBYTES".  The name can contain forward slashes to indicate a nested
3192  *      XML element; for example, "WINDOWS/VERSION/BUILD" indicates the BUILD
3193  *      element nested within the VERSION element nested within the WINDOWS
3194  *      element.  Since wimlib v1.9.0, a bracketed number can be used to
3195  *      indicate one of several identically-named elements; for example,
3196  *      "WINDOWS/LANGUAGES/LANGUAGE[2]" indicates the second "LANGUAGE" element
3197  *      nested within the "WINDOWS/LANGUAGES" element.  Note that element names
3198  *      are case sensitive.
3199  *
3200  * @return
3201  *      The property's value as a ::wimlib_tchar string, or @c NULL if there is
3202  *      no such property.  The string may not remain valid after later library
3203  *      calls, so the caller should duplicate it if needed.
3204  */
3205 extern const wimlib_tchar *
3206 wimlib_get_image_property(const WIMStruct *wim, int image,
3207                           const wimlib_tchar *property_name);
3208
3209 /**
3210  * @ingroup G_general
3211  *
3212  * Return the version of wimlib as a 32-bit number whose top 12 bits contain the
3213  * major version, the next 10 bits contain the minor version, and the low 10
3214  * bits contain the patch version.
3215  *
3216  * In other words, the returned value is equal to <c>((WIMLIB_MAJOR_VERSION <<
3217  * 20) | (WIMLIB_MINOR_VERSION << 10) | WIMLIB_PATCH_VERSION)</c> for the
3218  * corresponding header file.
3219  */
3220 extern uint32_t
3221 wimlib_get_version(void);
3222
3223 /**
3224  * @ingroup G_wim_information
3225  *
3226  * Get basic information about a WIM file.
3227  *
3228  * @param wim
3229  *      Pointer to the ::WIMStruct to query.  This need not represent a
3230  *      standalone WIM (e.g. it could represent part of a split WIM).
3231  * @param info
3232  *      A ::wimlib_wim_info structure that will be filled in with information
3233  *      about the WIM file.
3234  *
3235  * @return 0
3236  */
3237 extern int
3238 wimlib_get_wim_info(WIMStruct *wim, struct wimlib_wim_info *info);
3239
3240 /**
3241  * @ingroup G_wim_information
3242  *
3243  * Read a WIM file's XML document into an in-memory buffer.
3244  *
3245  * The XML document contains metadata about the WIM file and the images stored
3246  * in it.
3247  *
3248  * @param wim
3249  *      Pointer to the ::WIMStruct to query.  This need not represent a
3250  *      standalone WIM (e.g. it could represent part of a split WIM).
3251  * @param buf_ret
3252  *      On success, a pointer to an allocated buffer containing the raw UTF16-LE
3253  *      XML document is written to this location.
3254  * @param bufsize_ret
3255  *      The size of the XML document in bytes is written to this location.
3256  *
3257  * @return 0 on success; a ::wimlib_error_code value on failure.
3258  *
3259  * @retval ::WIMLIB_ERR_NO_FILENAME
3260  *      @p wim is not backed by a file and therefore does not have an XML
3261  *      document.
3262  * @retval ::WIMLIB_ERR_READ
3263  *      Failed to read the XML document from the WIM file.
3264  * @retval ::WIMLIB_ERR_UNEXPECTED_END_OF_FILE
3265  *      Failed to read the XML document from the WIM file.
3266  */
3267 extern int
3268 wimlib_get_xml_data(WIMStruct *wim, void **buf_ret, size_t *bufsize_ret);
3269
3270 /**
3271  * @ingroup G_general
3272  *
3273  * Initialization function for wimlib.  Call before using any other wimlib
3274  * function (except possibly wimlib_set_print_errors()).  If not done manually,
3275  * this function will be called automatically with a flags argument of 0.  This
3276  * function does nothing if called again after it has already successfully run.
3277  *
3278  * @param init_flags
3279  *      Bitwise OR of flags prefixed with WIMLIB_INIT_FLAG.
3280  *
3281  * @return 0 on success; a ::wimlib_error_code value on failure.
3282  *
3283  * @retval ::WIMLIB_ERR_INSUFFICIENT_PRIVILEGES
3284  *      ::WIMLIB_INIT_FLAG_STRICT_APPLY_PRIVILEGES and/or
3285  *      ::WIMLIB_INIT_FLAG_STRICT_CAPTURE_PRIVILEGES were specified in @p
3286  *      init_flags, but the corresponding privileges could not be acquired.
3287  */
3288 extern int
3289 wimlib_global_init(int init_flags);
3290
3291 /**
3292  * @ingroup G_general
3293  *
3294  * Cleanup function for wimlib.  You are not required to call this function, but
3295  * it will release any global resources allocated by the library.
3296  */
3297 extern void
3298 wimlib_global_cleanup(void);
3299
3300 /**
3301  * @ingroup G_wim_information
3302  *
3303  * Determine if an image name is already used by some image in the WIM.
3304  *
3305  * @param wim
3306  *      Pointer to the ::WIMStruct to query.  This need not represent a
3307  *      standalone WIM (e.g. it could represent part of a split WIM).
3308  * @param name
3309  *      The name to check.
3310  *
3311  * @return
3312  *      @c true if there is already an image in @p wim named @p name; @c false
3313  *      if there is no image named @p name in @p wim.  If @p name is @c NULL or
3314  *      the empty string, then @c false is returned.
3315  */
3316 extern bool
3317 wimlib_image_name_in_use(const WIMStruct *wim, const wimlib_tchar *name);
3318
3319 /**
3320  * @ingroup G_wim_information
3321  *
3322  * Iterate through a file or directory tree in a WIM image.  By specifying
3323  * appropriate flags and a callback function, you can get the attributes of a
3324  * file in the image, get a directory listing, or even get a listing of the
3325  * entire image.
3326  *
3327  * @param wim
3328  *      The ::WIMStruct containing the image(s) over which to iterate.  This
3329  *      ::WIMStruct must contain image metadata, so it cannot be the non-first
3330  *      part of a split WIM (for example).
3331  * @param image
3332  *      The 1-based index of the image that contains the files or directories to
3333  *      iterate over, or ::WIMLIB_ALL_IMAGES to iterate over all images.
3334  * @param path
3335  *      Path in the image at which to do the iteration.
3336  * @param flags
3337  *      Bitwise OR of flags prefixed with WIMLIB_ITERATE_DIR_TREE_FLAG.
3338  * @param cb
3339  *      A callback function that will receive each directory entry.
3340  * @param user_ctx
3341  *      An extra parameter that will always be passed to the callback function
3342  *      @p cb.
3343  *
3344  * @return Normally, returns 0 if all calls to @p cb returned 0; otherwise the
3345  * first nonzero value that was returned from @p cb.  However, additional
3346  * ::wimlib_error_code values may be returned, including the following:
3347  *
3348  * @retval ::WIMLIB_ERR_INVALID_IMAGE
3349  *      @p image does not exist in @p wim.
3350  * @retval ::WIMLIB_ERR_PATH_DOES_NOT_EXIST
3351  *      @p path does not exist in the image.
3352  * @retval ::WIMLIB_ERR_RESOURCE_NOT_FOUND
3353  *      ::WIMLIB_ITERATE_DIR_TREE_FLAG_RESOURCES_NEEDED was specified, but the
3354  *      data for some files could not be found in the blob lookup table of @p
3355  *      wim.
3356  *
3357  * This function can additionally return ::WIMLIB_ERR_DECOMPRESSION,
3358  * ::WIMLIB_ERR_INVALID_METADATA_RESOURCE, ::WIMLIB_ERR_METADATA_NOT_FOUND,
3359  * ::WIMLIB_ERR_READ, or ::WIMLIB_ERR_UNEXPECTED_END_OF_FILE, all of which
3360  * indicate failure (for different reasons) to read the metadata resource for an
3361  * image over which iteration needed to be done.
3362  */
3363 extern int
3364 wimlib_iterate_dir_tree(WIMStruct *wim, int image, const wimlib_tchar *path,
3365                         int flags,
3366                         wimlib_iterate_dir_tree_callback_t cb, void *user_ctx);
3367
3368 /**
3369  * @ingroup G_wim_information
3370  *
3371  * Iterate through the blob lookup table of a ::WIMStruct.  This can be used to
3372  * directly get a listing of the unique "blobs" contained in a WIM file, which
3373  * are deduplicated over all images.
3374  *
3375  * Specifically, each listed blob may be from any of the following sources:
3376  *
3377  * - Metadata blobs, if the ::WIMStruct contains image metadata
3378  * - File blobs from the on-disk WIM file (if any) backing the ::WIMStruct
3379  * - File blobs from files that have been added to the in-memory ::WIMStruct,
3380  *   e.g. by using wimlib_add_image()
3381  * - File blobs from external WIMs referenced by
3382  *   wimlib_reference_resource_files() or wimlib_reference_resources()
3383  *
3384  * @param wim
3385  *      Pointer to the ::WIMStruct for which to get the blob listing.
3386  * @param flags
3387  *      Reserved; set to 0.
3388  * @param cb
3389  *      A callback function that will receive each blob.
3390  * @param user_ctx
3391  *      An extra parameter that will always be passed to the callback function
3392  *      @p cb.
3393  *
3394  * @return 0 if all calls to @p cb returned 0; otherwise the first nonzero value
3395  * that was returned from @p cb.
3396  */
3397 extern int
3398 wimlib_iterate_lookup_table(WIMStruct *wim, int flags,
3399                             wimlib_iterate_lookup_table_callback_t cb,
3400                             void *user_ctx);
3401
3402 /**
3403  * @ingroup G_nonstandalone_wims
3404  *
3405  * Join a split WIM into a stand-alone (one-part) WIM.
3406  *
3407  * @param swms
3408  *      An array of strings that gives the filenames of all parts of the split
3409  *      WIM.  No specific order is required, but all parts must be included with
3410  *      no duplicates.
3411  * @param num_swms
3412  *      Number of filenames in @p swms.
3413  * @param swm_open_flags
3414  *      Open flags for the split WIM parts (e.g.
3415  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY).
3416  * @param wim_write_flags
3417  *      Bitwise OR of relevant flags prefixed with WIMLIB_WRITE_FLAG, which will
3418  *      be used to write the joined WIM.
3419  * @param output_path
3420  *      The path to write the joined WIM file to.
3421  *
3422  * @return 0 on success; a ::wimlib_error_code value on failure.  This function
3423  * may return most error codes that can be returned by wimlib_open_wim() and
3424  * wimlib_write(), as well as the following error codes:
3425  *
3426  * @retval ::WIMLIB_ERR_SPLIT_INVALID
3427  *      The split WIMs do not form a valid WIM because they do not include all
3428  *      the parts of the original WIM, there are duplicate parts, or not all the
3429  *      parts have the same GUID and compression type.
3430  *
3431  * Note: wimlib is generalized enough that this function is not actually needed
3432  * to join a split WIM; instead, you could open the first part of the split WIM,
3433  * then reference the other parts with wimlib_reference_resource_files(), then
3434  * write the joined WIM using wimlib_write().  However, wimlib_join() provides
3435  * an easy-to-use wrapper around this that has some advantages (e.g.  extra
3436  * sanity checks).
3437  */
3438 extern int
3439 wimlib_join(const wimlib_tchar * const *swms,
3440             unsigned num_swms,
3441             const wimlib_tchar *output_path,
3442             int swm_open_flags,
3443             int wim_write_flags);
3444
3445 /**
3446  * @ingroup G_nonstandalone_wims
3447  *
3448  * Same as wimlib_join(), but allows specifying a progress function.  The
3449  * progress function will receive the write progress messages, such as
3450  * ::WIMLIB_PROGRESS_MSG_WRITE_STREAMS, while writing the joined WIM.  In
3451  * addition, if ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY is specified in @p
3452  * swm_open_flags, the progress function will receive a series of
3453  * ::WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY messages when each of the split WIM
3454  * parts is opened.
3455  */
3456 extern int
3457 wimlib_join_with_progress(const wimlib_tchar * const *swms,
3458                           unsigned num_swms,
3459                           const wimlib_tchar *output_path,
3460                           int swm_open_flags,
3461                           int wim_write_flags,
3462                           wimlib_progress_func_t progfunc,
3463                           void *progctx);
3464
3465
3466 /**
3467  * @ingroup G_mounting_wim_images
3468  *
3469  * Mount an image from a WIM file on a directory read-only or read-write.
3470  *
3471  * @param wim
3472  *      Pointer to the ::WIMStruct containing the image to be mounted.  This
3473  *      ::WIMStruct must have a backing file.
3474  * @param image
3475  *      The 1-based index of the image to mount.  This image cannot have been
3476  *      previously modified in memory.
3477  * @param dir
3478  *      The path to an existing empty directory on which to mount the image.
3479  * @param mount_flags
3480  *      Bitwise OR of flags prefixed with WIMLIB_MOUNT_FLAG.  Use
3481  *      ::WIMLIB_MOUNT_FLAG_READWRITE to request a read-write mount instead of a
3482  *      read-only mount.
3483  * @param staging_dir
3484  *      If non-NULL, the name of a directory in which a temporary directory for
3485  *      storing modified or added files will be created.  Ignored if
3486  *      ::WIMLIB_MOUNT_FLAG_READWRITE is not specified in @p mount_flags.  If
3487  *      left @c NULL, the staging directory is created in the same directory as
3488  *      the backing WIM file.  The staging directory is automatically deleted
3489  *      when the image is unmounted.
3490  *
3491  * @return 0 on success; a ::wimlib_error_code value on failure.
3492  *
3493  * @retval ::WIMLIB_ERR_ALREADY_LOCKED
3494  *      Another process is currently modifying the WIM file.
3495  * @retval ::WIMLIB_ERR_FUSE
3496  *      A non-zero status code was returned by @c fuse_main().
3497  * @retval ::WIMLIB_ERR_IMAGE_HAS_MULTIPLE_REFERENCES
3498  *      There are currently multiple references to the image as a result of a
3499  *      call to wimlib_export_image().  Free one before attempting the
3500  *      read-write mount.
3501  * @retval ::WIMLIB_ERR_INVALID_IMAGE
3502  *      @p image does not exist in @p wim.
3503  * @retval ::WIMLIB_ERR_INVALID_PARAM
3504  *      @p wim was @c NULL; or @p dir was NULL or an empty string; or an
3505  *      unrecognized flag was specified in @p mount_flags; or the image has
3506  *      already been modified in memory (e.g. by wimlib_update_image()).
3507  * @retval ::WIMLIB_ERR_MKDIR
3508  *      ::WIMLIB_MOUNT_FLAG_READWRITE was specified in @p mount_flags, but the
3509  *      staging directory could not be created.
3510  * @retval ::WIMLIB_ERR_WIM_IS_READONLY
3511  *      ::WIMLIB_MOUNT_FLAG_READWRITE was specified in @p mount_flags, but the
3512  *      WIM file is considered read-only because of any of the reasons mentioned
3513  *      in the documentation for the ::WIMLIB_OPEN_FLAG_WRITE_ACCESS flag.
3514  * @retval ::WIMLIB_ERR_UNSUPPORTED
3515  *      Mounting is not supported in this build of the library.
3516  *
3517  * This function can additionally return ::WIMLIB_ERR_DECOMPRESSION,
3518  * ::WIMLIB_ERR_INVALID_METADATA_RESOURCE, ::WIMLIB_ERR_METADATA_NOT_FOUND,
3519  * ::WIMLIB_ERR_READ, or ::WIMLIB_ERR_UNEXPECTED_END_OF_FILE, all of which
3520  * indicate failure (for different reasons) to read the metadata resource for
3521  * the image to mount.
3522  *
3523  * The ability to mount WIM images is implemented using FUSE (Filesystem in
3524  * UserSpacE).  Depending on how FUSE is set up on your system, this function
3525  * may work as normal users in addition to the root user.
3526  *
3527  * Mounting WIM images is not supported if wimlib was configured
3528  * <c>--without-fuse</c>.  This includes Windows builds of wimlib;
3529  * ::WIMLIB_ERR_UNSUPPORTED will be returned in such cases.
3530  *
3531  * Calling this function daemonizes the process, unless
3532  * ::WIMLIB_MOUNT_FLAG_DEBUG was specified or an early error occurs.
3533  *
3534  * It is safe to mount multiple images from the same WIM file read-only at the
3535  * same time, but only if different ::WIMStruct's are used.  It is @b not safe
3536  * to mount multiple images from the same WIM file read-write at the same time.
3537  *
3538  * To unmount the image, call wimlib_unmount_image().  This may be done in a
3539  * different process.
3540  */
3541 extern int
3542 wimlib_mount_image(WIMStruct *wim,
3543                    int image,
3544                    const wimlib_tchar *dir,
3545                    int mount_flags,
3546                    const wimlib_tchar *staging_dir);
3547
3548 /**
3549  * @ingroup G_creating_and_opening_wims
3550  *
3551  * Open a WIM file and create a ::WIMStruct for it.
3552  *
3553  * @param wim_file
3554  *      The path to the WIM file to open.
3555  * @param open_flags
3556  *      Bitwise OR of flags prefixed with WIMLIB_OPEN_FLAG.
3557  * @param wim_ret
3558  *      On success, a pointer to a new ::WIMStruct backed by the specified
3559  *      on-disk WIM file is written to the memory location pointed to by this
3560  *      parameter.  This ::WIMStruct must be freed using using wimlib_free()
3561  *      when finished with it.
3562  *
3563  * @return 0 on success; a ::wimlib_error_code value on failure.
3564  *
3565  * @retval ::WIMLIB_ERR_IMAGE_COUNT
3566  *      The number of metadata resources found in the WIM did not match the
3567  *      image count specified in the WIM header, or the number of &lt;IMAGE&gt;
3568  *      elements in the XML data of the WIM did not match the image count
3569  *      specified in the WIM header.
3570  * @retval ::WIMLIB_ERR_INTEGRITY
3571  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY was specified in @p open_flags, and
3572  *      the WIM file failed the integrity check.
3573  * @retval ::WIMLIB_ERR_INVALID_CHUNK_SIZE
3574  *      The library did not recognize the compression chunk size of the WIM as
3575  *      valid for its compression type.
3576  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
3577  *      The library did not recognize the compression type of the WIM.
3578  * @retval ::WIMLIB_ERR_INVALID_HEADER
3579  *      The header of the WIM was otherwise invalid.
3580  * @retval ::WIMLIB_ERR_INVALID_INTEGRITY_TABLE
3581  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY was specified in @p open_flags and
3582  *      the WIM contained an integrity table, but the integrity table was
3583  *      invalid.
3584  * @retval ::WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY
3585  *      The lookup table of the WIM was invalid.
3586  * @retval ::WIMLIB_ERR_INVALID_PARAM
3587  *      @p wim_ret was @c NULL; or, @p wim_file was not a nonempty string.
3588  * @retval ::WIMLIB_ERR_IS_SPLIT_WIM
3589  *      The WIM was a split WIM and ::WIMLIB_OPEN_FLAG_ERROR_IF_SPLIT was
3590  *      specified in @p open_flags.
3591  * @retval ::WIMLIB_ERR_NOT_A_WIM_FILE
3592  *      The file did not begin with the magic characters that identify a WIM
3593  *      file.
3594  * @retval ::WIMLIB_ERR_OPEN
3595  *      Failed to open the WIM file for reading.  Some possible reasons: the WIM
3596  *      file does not exist, or the calling process does not have permission to
3597  *      open it.
3598  * @retval ::WIMLIB_ERR_READ
3599  *      Failed to read data from the WIM file.
3600  * @retval ::WIMLIB_ERR_UNEXPECTED_END_OF_FILE
3601  *      Unexpected end-of-file while reading data from the WIM file.
3602  * @retval ::WIMLIB_ERR_UNKNOWN_VERSION
3603  *      The WIM version number was not recognized. (May be a pre-Vista WIM.)
3604  * @retval ::WIMLIB_ERR_WIM_IS_ENCRYPTED
3605  *      The WIM cannot be opened because it contains encrypted segments.  (It
3606  *      may be a Windows 8 "ESD" file.)
3607  * @retval ::WIMLIB_ERR_WIM_IS_INCOMPLETE
3608  *      The WIM file is not complete (e.g. the program which wrote it was
3609  *      terminated before it finished)
3610  * @retval ::WIMLIB_ERR_WIM_IS_READONLY
3611  *      ::WIMLIB_OPEN_FLAG_WRITE_ACCESS was specified but the WIM file was
3612  *      considered read-only because of any of the reasons mentioned in the
3613  *      documentation for the ::WIMLIB_OPEN_FLAG_WRITE_ACCESS flag.
3614  * @retval ::WIMLIB_ERR_XML
3615  *      The XML data of the WIM was invalid.
3616  */
3617 extern int
3618 wimlib_open_wim(const wimlib_tchar *wim_file,
3619                 int open_flags,
3620                 WIMStruct **wim_ret);
3621
3622 /**
3623  * @ingroup G_creating_and_opening_wims
3624  *
3625  * Same as wimlib_open_wim(), but allows specifying a progress function and
3626  * progress context.  If successful, the progress function will be registered in
3627  * the newly open ::WIMStruct, as if by an automatic call to
3628  * wimlib_register_progress_function().  In addition, if
3629  * ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY is specified in @p open_flags, then the
3630  * progress function will receive ::WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY
3631  * messages while checking the WIM file's integrity.
3632  */
3633 extern int
3634 wimlib_open_wim_with_progress(const wimlib_tchar *wim_file,
3635                               int open_flags,
3636                               WIMStruct **wim_ret,
3637                               wimlib_progress_func_t progfunc,
3638                               void *progctx);
3639
3640 /**
3641  * @ingroup G_writing_and_overwriting_wims
3642  *
3643  * Commit a ::WIMStruct to disk, updating its backing file.
3644  *
3645  * There are several alternative ways in which changes may be committed:
3646  *
3647  *   1. Full rebuild: write the updated WIM to a temporary file, then rename the
3648  *      temporary file to the original.
3649  *   2. Appending: append updates to the new original WIM file, then overwrite
3650  *      its header such that those changes become visible to new readers.
3651  *   3. Compaction: normally should not be used; see
3652  *      ::WIMLIB_WRITE_FLAG_UNSAFE_COMPACT for details.
3653  *
3654  * Append mode is often much faster than a full rebuild, but it wastes some
3655  * amount of space due to leaving "holes" in the WIM file.  Because of the
3656  * greater efficiency, wimlib_overwrite() normally defaults to append mode.
3657  * However, ::WIMLIB_WRITE_FLAG_REBUILD can be used to explicitly request a full
3658  * rebuild.  In addition, if wimlib_delete_image() has been used on the
3659  * ::WIMStruct, then the default mode switches to rebuild mode, and
3660  * ::WIMLIB_WRITE_FLAG_SOFT_DELETE can be used to explicitly request append
3661  * mode.
3662  *
3663  * If this function completes successfully, then no more functions can be called
3664  * on the ::WIMStruct other than wimlib_free().  If you need to continue using
3665  * the WIM file, you must use wimlib_open_wim() to open a new ::WIMStruct for
3666  * it.
3667  *
3668  * @param wim
3669  *      Pointer to a ::WIMStruct to commit to its backing file.
3670  * @param write_flags
3671  *      Bitwise OR of relevant flags prefixed with WIMLIB_WRITE_FLAG.
3672  * @param num_threads
3673  *      The number of threads to use for compressing data, or 0 to have the
3674  *      library automatically choose an appropriate number.
3675  *
3676  * @return 0 on success; a ::wimlib_error_code value on failure.  This function
3677  * may return most error codes returned by wimlib_write() as well as the
3678  * following error codes:
3679  *
3680  * @retval ::WIMLIB_ERR_ALREADY_LOCKED
3681  *      Another process is currently modifying the WIM file.
3682  * @retval ::WIMLIB_ERR_NO_FILENAME
3683  *      @p wim is not backed by an on-disk file.  In other words, it is a
3684  *      ::WIMStruct created by wimlib_create_new_wim() rather than
3685  *      wimlib_open_wim().
3686  * @retval ::WIMLIB_ERR_RENAME
3687  *      The temporary file to which the WIM was written could not be renamed to
3688  *      the original file.
3689  * @retval ::WIMLIB_ERR_WIM_IS_READONLY
3690  *      The WIM file is considered read-only because of any of the reasons
3691  *      mentioned in the documentation for the ::WIMLIB_OPEN_FLAG_WRITE_ACCESS
3692  *      flag.
3693  *
3694  * If a progress function is registered with @p wim, then it will receive the
3695  * messages ::WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
3696  * ::WIMLIB_PROGRESS_MSG_WRITE_METADATA_BEGIN, and
3697  * ::WIMLIB_PROGRESS_MSG_WRITE_METADATA_END.
3698  */
3699 extern int
3700 wimlib_overwrite(WIMStruct *wim, int write_flags, unsigned num_threads);
3701
3702 /**
3703  * @ingroup G_wim_information
3704  *
3705  * (Deprecated) Print information about one image, or all images, contained in a
3706  * WIM.
3707  *
3708  * @param wim
3709  *      Pointer to the ::WIMStruct to query.  This need not represent a
3710  *      standalone WIM (e.g. it could represent part of a split WIM).
3711  * @param image
3712  *      The 1-based index of the image for which to print information, or
3713  *      ::WIMLIB_ALL_IMAGES to print information about all images.
3714  *
3715  * @return This function has no return value.  No error checking is done when
3716  * printing the information.  If @p image is invalid, an error message is
3717  * printed.
3718  *
3719  * This function is deprecated; use wimlib_get_xml_data() or
3720  * wimlib_get_image_property() to query image information instead.
3721  */
3722 extern void
3723 wimlib_print_available_images(const WIMStruct *wim, int image);
3724
3725 /**
3726  * @ingroup G_wim_information
3727  *
3728  * Print the header of the WIM file (intended for debugging only).
3729  */
3730 extern void
3731 wimlib_print_header(const WIMStruct *wim);
3732
3733 /**
3734  * @ingroup G_nonstandalone_wims
3735  *
3736  * Reference file data from other WIM files or split WIM parts.  This function
3737  * can be used on WIMs that are not standalone, such as split or "delta" WIMs,
3738  * to load additional file data before calling a function such as
3739  * wimlib_extract_image() that requires the file data to be present.
3740  *
3741  * @param wim
3742  *      The ::WIMStruct for a WIM that contains metadata resources, but is not
3743  *      necessarily "standalone".  In the case of split WIMs, this should be the
3744  *      first part, since only the first part contains the metadata resources.
3745  *      In the case of delta WIMs, this should be the delta WIM rather than the
3746  *      WIM on which it is based.
3747  * @param resource_wimfiles_or_globs
3748  *      Array of paths to WIM files and/or split WIM parts to reference.
3749  *      Alternatively, when ::WIMLIB_REF_FLAG_GLOB_ENABLE is specified in @p
3750  *      ref_flags, these are treated as globs rather than literal paths.  That
3751  *      is, using this function you can specify zero or more globs, each of
3752  *      which expands to one or more literal paths.
3753  * @param count
3754  *      Number of entries in @p resource_wimfiles_or_globs.
3755  * @param ref_flags
3756  *      Bitwise OR of ::WIMLIB_REF_FLAG_GLOB_ENABLE and/or
3757  *      ::WIMLIB_REF_FLAG_GLOB_ERR_ON_NOMATCH.
3758  * @param open_flags
3759  *      Additional open flags, such as ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY, to
3760  *      pass to internal calls to wimlib_open_wim() on the reference files.
3761  *
3762  * @return 0 on success; a ::wimlib_error_code value on failure.
3763  *
3764  * @retval ::WIMLIB_ERR_GLOB_HAD_NO_MATCHES
3765  *      One of the specified globs did not match any paths (only with both
3766  *      ::WIMLIB_REF_FLAG_GLOB_ENABLE and ::WIMLIB_REF_FLAG_GLOB_ERR_ON_NOMATCH
3767  *      specified in @p ref_flags).
3768  * @retval ::WIMLIB_ERR_READ
3769  *      I/O or permissions error while processing a file glob.
3770  *
3771  * This function can additionally return most values that can be returned by
3772  * wimlib_open_wim().
3773  */
3774 extern int
3775 wimlib_reference_resource_files(WIMStruct *wim,
3776                                 const wimlib_tchar * const *resource_wimfiles_or_globs,
3777                                 unsigned count,
3778                                 int ref_flags,
3779                                 int open_flags);
3780
3781 /**
3782  * @ingroup G_nonstandalone_wims
3783  *
3784  * Similar to wimlib_reference_resource_files(), but operates at a lower level
3785  * where the caller must open the ::WIMStruct for each referenced file itself.
3786  *
3787  * @param wim
3788  *      The ::WIMStruct for a WIM that contains metadata resources, but is not
3789  *      necessarily "standalone".  In the case of split WIMs, this should be the
3790  *      first part, since only the first part contains the metadata resources.
3791  * @param resource_wims
3792  *      Array of pointers to the ::WIMStruct's for additional resource WIMs or
3793  *      split WIM parts to reference.
3794  * @param num_resource_wims
3795  *      Number of entries in @p resource_wims.
3796  * @param ref_flags
3797  *      Reserved; must be 0.
3798  *
3799  * @return 0 on success; a ::wimlib_error_code value on failure.
3800  */
3801 extern int
3802 wimlib_reference_resources(WIMStruct *wim, WIMStruct **resource_wims,
3803                            unsigned num_resource_wims, int ref_flags);
3804
3805 /**
3806  * @ingroup G_modifying_wims
3807  *
3808  * Declare that a newly added image is mostly the same as a prior image, but
3809  * captured at a later point in time, possibly with some modifications in the
3810  * intervening time.  This is designed to be used in incremental backups of the
3811  * same filesystem or directory tree.
3812  *
3813  * This function compares the metadata of the directory tree of the newly added
3814  * image against that of the old image.  Any files that are present in both the
3815  * newly added image and the old image and have timestamps that indicate they
3816  * haven't been modified are deemed not to have been modified and have their
3817  * checksums copied from the old image.  Because of this and because WIM uses
3818  * single-instance streams, such files need not be read from the filesystem when
3819  * the WIM is being written or overwritten.  Note that these unchanged files
3820  * will still be "archived" and will be logically present in the new image; the
3821  * optimization is that they don't need to actually be read from the filesystem
3822  * because the WIM already contains them.
3823  *
3824  * This function is provided to optimize incremental backups.  The resulting WIM
3825  * file will still be the same regardless of whether this function is called.
3826  * (This is, however, assuming that timestamps have not been manipulated or
3827  * unmaintained as to trick this function into thinking a file has not been
3828  * modified when really it has.  To partly guard against such cases, other
3829  * metadata such as file sizes will be checked as well.)
3830  *
3831  * This function must be called after adding the new image (e.g. with
3832  * wimlib_add_image()), but before writing the updated WIM file (e.g. with
3833  * wimlib_overwrite()).
3834  *
3835  * @param wim
3836  *      Pointer to the ::WIMStruct containing the newly added image.
3837  * @param new_image
3838  *      The 1-based index in @p wim of the newly added image.
3839  * @param template_wim
3840  *      Pointer to the ::WIMStruct containing the template image.  This can be,
3841  *      but does not have to be, the same ::WIMStruct as @p wim.
3842  * @param template_image
3843  *      The 1-based index in @p template_wim of the template image.
3844  * @param flags
3845  *      Reserved; must be 0.
3846  *
3847  * @return 0 on success; a ::wimlib_error_code value on failure.
3848  *
3849  * @retval ::WIMLIB_ERR_INVALID_IMAGE
3850  *      @p new_image does not exist in @p wim or @p template_image does not
3851  *      exist in @p template_wim.
3852  * @retval ::WIMLIB_ERR_METADATA_NOT_FOUND
3853  *      At least one of @p wim and @p template_wim does not contain image
3854  *      metadata; for example, one of them represents a non-first part of a
3855  *      split WIM.
3856  * @retval ::WIMLIB_ERR_INVALID_PARAM
3857  *      Identical values were provided for the template and new image; or @p
3858  *      new_image specified an image that had not been modified since opening
3859  *      the WIM.
3860  *
3861  * This function can additionally return ::WIMLIB_ERR_DECOMPRESSION,
3862  * ::WIMLIB_ERR_INVALID_METADATA_RESOURCE, ::WIMLIB_ERR_METADATA_NOT_FOUND,
3863  * ::WIMLIB_ERR_READ, or ::WIMLIB_ERR_UNEXPECTED_END_OF_FILE, all of which
3864  * indicate failure (for different reasons) to read the metadata resource for
3865  * the template image.
3866  */
3867 extern int
3868 wimlib_reference_template_image(WIMStruct *wim, int new_image,
3869                                 WIMStruct *template_wim, int template_image,
3870                                 int flags);
3871
3872 /**
3873  * @ingroup G_general
3874  *
3875  * Register a progress function with a ::WIMStruct.
3876  *
3877  * @param wim
3878  *      The ::WIMStruct for which to register the progress function.
3879  * @param progfunc
3880  *      Pointer to the progress function to register.  If the WIM already has a
3881  *      progress function registered, it will be replaced with this one.  If @p
3882  *      NULL, the current progress function (if any) will be unregistered.
3883  * @param progctx
3884  *      The value which will be passed as the third argument to calls to @p
3885  *      progfunc.
3886  */
3887 extern void
3888 wimlib_register_progress_function(WIMStruct *wim,
3889                                   wimlib_progress_func_t progfunc,
3890                                   void *progctx);
3891
3892 /**
3893  * @ingroup G_modifying_wims
3894  *
3895  * Rename the @p source_path to the @p dest_path in the specified @p image of
3896  * the @p wim.
3897  *
3898  * This just builds an appropriate ::wimlib_rename_command and passes it to
3899  * wimlib_update_image().
3900  */
3901 extern int
3902 wimlib_rename_path(WIMStruct *wim, int image,
3903                    const wimlib_tchar *source_path, const wimlib_tchar *dest_path);
3904
3905 /**
3906  * @ingroup G_wim_information
3907  *
3908  * Translate a string specifying the name or number of an image in the WIM into
3909  * the number of the image.  The images are numbered starting at 1.
3910  *
3911  * @param wim
3912  *      Pointer to the ::WIMStruct for a WIM.
3913  * @param image_name_or_num
3914  *      A string specifying the name or number of an image in the WIM.  If it
3915  *      parses to a positive integer, this integer is taken to specify the
3916  *      number of the image, indexed starting at 1.  Otherwise, it is taken to
3917  *      be the name of an image, as given in the XML data for the WIM file.  It
3918  *      also may be the keyword "all" or the string "*", both of which will
3919  *      resolve to ::WIMLIB_ALL_IMAGES.
3920  *      <br/> <br/>
3921  *      There is no way to search for an image actually named "all", "*", or an
3922  *      integer number, or an image that has no name.  However, you can use
3923  *      wimlib_get_image_name() to get the name of any image.
3924  *
3925  * @return
3926  *      If the string resolved to a single existing image, the number of that
3927  *      image, indexed starting at 1, is returned.  If the keyword "all" or "*"
3928  *      was specified, ::WIMLIB_ALL_IMAGES is returned.  Otherwise,
3929  *      ::WIMLIB_NO_IMAGE is returned.  If @p image_name_or_num was @c NULL or
3930  *      the empty string, ::WIMLIB_NO_IMAGE is returned, even if one or more
3931  *      images in @p wim has no name.  (Since a WIM may have multiple unnamed
3932  *      images, an unnamed image must be specified by index to eliminate the
3933  *      ambiguity.)
3934  */
3935 extern int
3936 wimlib_resolve_image(WIMStruct *wim,
3937                      const wimlib_tchar *image_name_or_num);
3938
3939 /**
3940  * @ingroup G_general
3941  *
3942  * Set the file to which the library will print error and warning messages.
3943  *
3944  * This version of the function takes a C library <c>FILE*</c> opened for
3945  * writing (or appending).  Use wimlib_set_error_file_by_name() to specify the
3946  * file by name instead.
3947  *
3948  * This also enables error messages, as if by a call to
3949  * wimlib_set_print_errors(true).
3950  *
3951  * @return 0 on success; a ::wimlib_error_code value on failure.
3952  *
3953  * @retval ::WIMLIB_ERR_UNSUPPORTED
3954  *      wimlib was compiled using the <c>--without-error-messages</c> option.
3955  */
3956 extern int
3957 wimlib_set_error_file(FILE *fp);
3958
3959 /**
3960  * @ingroup G_general
3961  *
3962  * Set the path to the file to which the library will print error and warning
3963  * messages.  The library will open this file for appending.
3964  *
3965  * This also enables error messages, as if by a call to
3966  * wimlib_set_print_errors(true).
3967  *
3968  * @return 0 on success; a ::wimlib_error_code value on failure.
3969  *
3970  * @retval ::WIMLIB_ERR_OPEN
3971  *      The file named by @p path could not be opened for appending.
3972  * @retval ::WIMLIB_ERR_UNSUPPORTED
3973  *      wimlib was compiled using the <c>--without-error-messages</c> option.
3974  */
3975 extern int
3976 wimlib_set_error_file_by_name(const wimlib_tchar *path);
3977
3978 /**
3979  * @ingroup G_modifying_wims
3980  *
3981  * Change the description of a WIM image.  Equivalent to
3982  * <tt>wimlib_set_image_property(wim, image, "DESCRIPTION", description)</tt>.
3983  *
3984  * Note that "description" is misspelled in the name of this function.
3985  */
3986 extern int
3987 wimlib_set_image_descripton(WIMStruct *wim, int image,
3988                             const wimlib_tchar *description);
3989
3990 /**
3991  * @ingroup G_modifying_wims
3992  *
3993  * Change what is stored in the \<FLAGS\> element in the WIM XML document
3994  * (usually something like "Core" or "Ultimate").  Equivalent to
3995  * <tt>wimlib_set_image_property(wim, image, "FLAGS", flags)</tt>.
3996  */
3997 extern int
3998 wimlib_set_image_flags(WIMStruct *wim, int image, const wimlib_tchar *flags);
3999
4000 /**
4001  * @ingroup G_modifying_wims
4002  *
4003  * Change the name of a WIM image.  Equivalent to
4004  * <tt>wimlib_set_image_property(wim, image, "NAME", name)</tt>.
4005  */
4006 extern int
4007 wimlib_set_image_name(WIMStruct *wim, int image, const wimlib_tchar *name);
4008
4009 /**
4010  * @ingroup G_modifying_wims
4011  *
4012  * Since wimlib v1.8.3: add, modify, or remove a per-image property from the
4013  * WIM's XML document.  This is an alternative to wimlib_set_image_name(),
4014  * wimlib_set_image_descripton(), and wimlib_set_image_flags() which allows
4015  * manipulating any simple string property.
4016  *
4017  * @param wim
4018  *      Pointer to the ::WIMStruct for the WIM.
4019  * @param image
4020  *      The 1-based index of the image for which to set the property.
4021  * @param property_name
4022  *      The name of the image property in the same format documented for
4023  *      wimlib_get_image_property().
4024  *      <br/>
4025  *      Note: if creating a new element using a bracketed index such as
4026  *      "WINDOWS/LANGUAGES/LANGUAGE[2]", the highest index that can be specified
4027  *      is one greater than the number of existing elements with that same name,
4028  *      excluding the index.  That means that if you are adding a list of new
4029  *      elements, they must be added sequentially from the first index (1) to
4030  *      the last index (n).
4031  * @param property_value
4032  *      If not NULL and not empty, the property is set to this value.
4033  *      Otherwise, the property is removed from the XML document.
4034  *
4035  * @return 0 on success; a ::wimlib_error_code value on failure.
4036  *
4037  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
4038  *      The user requested to set the image name (the <tt>NAME</tt> property),
4039  *      but another image in the WIM already had the requested name.
4040  * @retval ::WIMLIB_ERR_INVALID_IMAGE
4041  *      @p image does not exist in @p wim.
4042  * @retval ::WIMLIB_ERR_INVALID_PARAM
4043  *      @p property_name has an unsupported format, or @p property_name included
4044  *      a bracketed index that was too high.
4045  */
4046 extern int
4047 wimlib_set_image_property(WIMStruct *wim, int image,
4048                           const wimlib_tchar *property_name,
4049                           const wimlib_tchar *property_value);
4050
4051 /**
4052  * @ingroup G_general
4053  *
4054  * Set the functions that wimlib uses to allocate and free memory.
4055  *
4056  * These settings are global and not per-WIM.
4057  *
4058  * The default is to use the default @c malloc(), @c free(), and @c realloc()
4059  * from the standard C library.
4060  *
4061  * Note: some external functions, such as those in @c libntfs-3g, may use the
4062  * standard memory allocation functions regardless of this setting.
4063  *
4064  * @param malloc_func
4065  *      A function equivalent to @c malloc() that wimlib will use to allocate
4066  *      memory.  If @c NULL, the allocator function is set back to the default
4067  *      @c malloc() from the C library.
4068  * @param free_func
4069  *      A function equivalent to @c free() that wimlib will use to free memory.
4070  *      If @c NULL, the free function is set back to the default @c free() from
4071  *      the C library.
4072  * @param realloc_func
4073  *      A function equivalent to @c realloc() that wimlib will use to reallocate
4074  *      memory.  If @c NULL, the free function is set back to the default @c
4075  *      realloc() from the C library.
4076  *
4077  * @return 0
4078  */
4079 extern int
4080 wimlib_set_memory_allocator(void *(*malloc_func)(size_t),
4081                             void (*free_func)(void *),
4082                             void *(*realloc_func)(void *, size_t));
4083
4084 /**
4085  * @ingroup G_writing_and_overwriting_wims
4086  *
4087  * Set a ::WIMStruct's output compression chunk size.  This is the compression
4088  * chunk size that will be used for writing non-solid resources in subsequent
4089  * calls to wimlib_write() or wimlib_overwrite().  A larger compression chunk
4090  * size often results in a better compression ratio, but compression may be
4091  * slower and the speed of random access to data may be reduced.  In addition,
4092  * some chunk sizes are not compatible with Microsoft software.
4093  *
4094  * @param wim
4095  *      The ::WIMStruct for which to set the output chunk size.
4096  * @param chunk_size
4097  *      The chunk size (in bytes) to set.  The valid chunk sizes are dependent
4098  *      on the compression type.  See the documentation for each
4099  *      ::wimlib_compression_type constant for more information.  As a special
4100  *      case, if @p chunk_size is specified as 0, then the chunk size will be
4101  *      reset to the default for the currently selected output compression type.
4102  *
4103  * @return 0 on success; a ::wimlib_error_code value on failure.
4104  *
4105  * @retval ::WIMLIB_ERR_INVALID_CHUNK_SIZE
4106  *      @p chunk_size was not 0 or a supported chunk size for the currently
4107  *      selected output compression type.
4108  */
4109 extern int
4110 wimlib_set_output_chunk_size(WIMStruct *wim, uint32_t chunk_size);
4111
4112 /**
4113  * @ingroup G_writing_and_overwriting_wims
4114  *
4115  * Similar to wimlib_set_output_chunk_size(), but set the chunk size for writing
4116  * solid resources.
4117  */
4118 extern int
4119 wimlib_set_output_pack_chunk_size(WIMStruct *wim, uint32_t chunk_size);
4120
4121 /**
4122  * @ingroup G_writing_and_overwriting_wims
4123  *
4124  * Set a ::WIMStruct's output compression type.  This is the compression type
4125  * that will be used for writing non-solid resources in subsequent calls to
4126  * wimlib_write() or wimlib_overwrite().
4127  *
4128  * @param wim
4129  *      The ::WIMStruct for which to set the output compression type.
4130  * @param ctype
4131  *      The compression type to set.  If this compression type is incompatible
4132  *      with the current output chunk size, then the output chunk size will be
4133  *      reset to the default for the new compression type.
4134  *
4135  * @return 0 on success; a ::wimlib_error_code value on failure.
4136  *
4137  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
4138  *      @p ctype did not specify a valid compression type.
4139  */
4140 extern int
4141 wimlib_set_output_compression_type(WIMStruct *wim,
4142                                    enum wimlib_compression_type ctype);
4143
4144 /**
4145  * @ingroup G_writing_and_overwriting_wims
4146  *
4147  * Similar to wimlib_set_output_compression_type(), but set the compression type
4148  * for writing solid resources.  This cannot be ::WIMLIB_COMPRESSION_TYPE_NONE.
4149  */
4150 extern int
4151 wimlib_set_output_pack_compression_type(WIMStruct *wim,
4152                                         enum wimlib_compression_type ctype);
4153
4154 /**
4155  * @ingroup G_general
4156  *
4157  * Set whether wimlib can print error and warning messages to the error file,
4158  * which defaults to standard error.  Error and warning messages may provide
4159  * information that cannot be determined only from returned error codes.
4160  *
4161  * By default, error messages are not printed.
4162  *
4163  * This setting applies globally (it is not per-WIM).
4164  *
4165  * This can be called before wimlib_global_init().
4166  *
4167  * @param show_messages
4168  *      @c true if messages are to be printed; @c false if messages are not to
4169  *      be printed.
4170  *
4171  * @return 0 on success; a ::wimlib_error_code value on failure.
4172  *
4173  * @retval ::WIMLIB_ERR_UNSUPPORTED
4174  *      wimlib was compiled using the <c>--without-error-messages</c> option.
4175  */
4176 extern int
4177 wimlib_set_print_errors(bool show_messages);
4178
4179 /**
4180  * @ingroup G_modifying_wims
4181  *
4182  * Set basic information about a WIM.
4183  *
4184  * @param wim
4185  *      Pointer to the ::WIMStruct for a WIM.
4186  * @param info
4187  *      Pointer to a ::wimlib_wim_info structure that contains the information
4188  *      to set.  Only the information explicitly specified in the @p which flags
4189  *      need be valid.
4190  * @param which
4191  *      Flags that specify which information to set.  This is a bitwise OR of
4192  *      ::WIMLIB_CHANGE_READONLY_FLAG, ::WIMLIB_CHANGE_GUID,
4193  *      ::WIMLIB_CHANGE_BOOT_INDEX, and/or ::WIMLIB_CHANGE_RPFIX_FLAG.
4194  *
4195  * @return 0 on success; a ::wimlib_error_code value on failure.
4196  *
4197  * @retval ::WIMLIB_ERR_IMAGE_COUNT
4198  *      ::WIMLIB_CHANGE_BOOT_INDEX was specified, but
4199  *      ::wimlib_wim_info.boot_index did not specify 0 or a valid 1-based image
4200  *      index in the WIM.
4201  */
4202 extern int
4203 wimlib_set_wim_info(WIMStruct *wim, const struct wimlib_wim_info *info,
4204                     int which);
4205
4206 /**
4207  * @ingroup G_nonstandalone_wims
4208  *
4209  * Split a WIM into multiple parts.
4210  *
4211  * @param wim
4212  *      The ::WIMStruct for the WIM to split.
4213  * @param swm_name
4214  *      Name of the split WIM (SWM) file to create.  This will be the name of
4215  *      the first part.  The other parts will, by default, have the same name
4216  *      with 2, 3, 4, ..., etc.  appended before the suffix.  However, the exact
4217  *      names can be customized using the progress function.
4218  * @param part_size
4219  *      The maximum size per part, in bytes.  Unfortunately, it is not
4220  *      guaranteed that this will really be the maximum size per part, because
4221  *      some file resources in the WIM may be larger than this size, and the WIM
4222  *      file format provides no way to split up file resources among multiple
4223  *      WIMs.
4224  * @param write_flags
4225  *      Bitwise OR of relevant flags prefixed with @c WIMLIB_WRITE_FLAG.  These
4226  *      flags will be used to write each split WIM part.  Specify 0 here to get
4227  *      the default behavior.
4228  *
4229  * @return 0 on success; a ::wimlib_error_code value on failure.  This function
4230  * may return most error codes that can be returned by wimlib_write() as well as
4231  * the following error codes:
4232  *
4233  * @retval ::WIMLIB_ERR_INVALID_PARAM
4234  *      @p swm_name was not a nonempty string, or @p part_size was 0.
4235  * @retval ::WIMLIB_ERR_UNSUPPORTED
4236  *      The WIM contains solid resources.  Splitting a WIM containing solid
4237  *      resources is not supported.
4238  *
4239  * If a progress function is registered with @p wim, then for each split WIM
4240  * part that is written it will receive the messages
4241  * ::WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART and
4242  * ::WIMLIB_PROGRESS_MSG_SPLIT_END_PART.
4243  */
4244 extern int
4245 wimlib_split(WIMStruct *wim,
4246              const wimlib_tchar *swm_name,
4247              uint64_t part_size,
4248              int write_flags);
4249
4250 /**
4251  * @ingroup G_general
4252  *
4253  * Perform verification checks on a WIM file.
4254  *
4255  * This function is intended for safety checking and/or debugging.  If used on a
4256  * well-formed WIM file, it should always succeed.
4257  *
4258  * @param wim
4259  *      The ::WIMStruct for the WIM file to verify.  Note: for an extra layer of
4260  *      verification, it is a good idea to have used
4261  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY when you opened the file.
4262  *      <br/>
4263  *      If verifying a split WIM, specify the first part of the split WIM here,
4264  *      and reference the other parts using wimlib_reference_resource_files()
4265  *      before calling this function.
4266  * @param verify_flags
4267  *      Reserved; must be 0.
4268  *
4269  * @return 0 if the WIM file was successfully verified; a ::wimlib_error_code
4270  * value if it failed verification or another error occurred.
4271  *
4272  * @retval ::WIMLIB_ERR_DECOMPRESSION
4273  *      The WIM file contains invalid compressed data.
4274  * @retval ::WIMLIB_ERR_INVALID_METADATA_RESOURCE
4275  *      The metadata resource for an image is invalid.
4276  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_HASH
4277  *      File data stored in the WIM file is corrupt.
4278  * @retval ::WIMLIB_ERR_RESOURCE_NOT_FOUND
4279  *      The data for a file in an image could not be found.  See @ref
4280  *      G_nonstandalone_wims.
4281  *
4282  * If a progress function is registered with @p wim, then it will receive the
4283  * following progress messages: ::WIMLIB_PROGRESS_MSG_BEGIN_VERIFY_IMAGE,
4284  * ::WIMLIB_PROGRESS_MSG_END_VERIFY_IMAGE, and
4285  * ::WIMLIB_PROGRESS_MSG_VERIFY_STREAMS.
4286  */
4287 extern int
4288 wimlib_verify_wim(WIMStruct *wim, int verify_flags);
4289
4290 /**
4291  * @ingroup G_mounting_wim_images
4292  *
4293  * Unmount a WIM image that was mounted using wimlib_mount_image().
4294  *
4295  * When unmounting a read-write mounted image, the default behavior is to
4296  * discard changes to the image.  Use ::WIMLIB_UNMOUNT_FLAG_COMMIT to cause the
4297  * image to be committed.
4298  *
4299  * @param dir
4300  *      The directory on which the WIM image is mounted.
4301  * @param unmount_flags
4302  *      Bitwise OR of flags prefixed with @p WIMLIB_UNMOUNT_FLAG.
4303  *
4304  * @return 0 on success; a ::wimlib_error_code value on failure.
4305  *
4306  * @retval ::WIMLIB_ERR_NOT_A_MOUNTPOINT
4307  *      There is no WIM image mounted on the specified directory.
4308  * @retval ::WIMLIB_ERR_MOUNTED_IMAGE_IS_BUSY
4309  *      The read-write mounted image cannot be committed because there are file
4310  *      descriptors open to it, and ::WIMLIB_UNMOUNT_FLAG_FORCE was not
4311  *      specified.
4312  * @retval ::WIMLIB_ERR_MQUEUE
4313  *      Could not create a POSIX message queue.
4314  * @retval ::WIMLIB_ERR_NOT_PERMITTED_TO_UNMOUNT
4315  *      The image was mounted by a different user.
4316  * @retval ::WIMLIB_ERR_UNSUPPORTED
4317  *      Mounting is not supported in this build of the library.
4318  *
4319  * Note: you can also unmount the image by using the @c umount() system call, or
4320  * by using the @c umount or @c fusermount programs.  However, you need to call
4321  * this function if you want changes to be committed.
4322  */
4323 extern int
4324 wimlib_unmount_image(const wimlib_tchar *dir, int unmount_flags);
4325
4326 /**
4327  * @ingroup G_mounting_wim_images
4328  *
4329  * Same as wimlib_unmount_image(), but allows specifying a progress function.
4330  * The progress function will receive a ::WIMLIB_PROGRESS_MSG_UNMOUNT_BEGIN
4331  * message.  In addition, if changes are committed from a read-write mount, the
4332  * progress function will receive ::WIMLIB_PROGRESS_MSG_WRITE_STREAMS messages.
4333  */
4334 extern int
4335 wimlib_unmount_image_with_progress(const wimlib_tchar *dir,
4336                                    int unmount_flags,
4337                                    wimlib_progress_func_t progfunc,
4338                                    void *progctx);
4339
4340 /**
4341  * @ingroup G_modifying_wims
4342  *
4343  * Update a WIM image by adding, deleting, and/or renaming files or directories.
4344  *
4345  * @param wim
4346  *      Pointer to the ::WIMStruct containing the image to update.
4347  * @param image
4348  *      The 1-based index of the image to update.
4349  * @param cmds
4350  *      An array of ::wimlib_update_command's that specify the update operations
4351  *      to perform.
4352  * @param num_cmds
4353  *      Number of commands in @p cmds.
4354  * @param update_flags
4355  *      ::WIMLIB_UPDATE_FLAG_SEND_PROGRESS or 0.
4356  *
4357  * @return 0 on success; a ::wimlib_error_code value on failure.  On failure,
4358  * all update commands will be rolled back, and no visible changes will have
4359  * been made to @p wim.
4360  *
4361  * @retval ::WIMLIB_ERR_FVE_LOCKED_VOLUME
4362  *      Windows-only: One of the "add" commands attempted to add files from an
4363  *      encrypted BitLocker volume that hasn't yet been unlocked.
4364  * @retval ::WIMLIB_ERR_IMAGE_HAS_MULTIPLE_REFERENCES
4365  *      There are currently multiple references to the image as a result of a
4366  *      call to wimlib_export_image().  Free one before attempting the update.
4367  * @retval ::WIMLIB_ERR_INVALID_CAPTURE_CONFIG
4368  *      The contents of a capture configuration file were invalid.
4369  * @retval ::WIMLIB_ERR_INVALID_IMAGE
4370  *      @p image did not exist in @p wim.
4371  * @retval ::WIMLIB_ERR_INVALID_OVERLAY
4372  *      An add command with ::WIMLIB_ADD_FLAG_NO_REPLACE specified attempted to
4373  *      replace an existing nondirectory file.
4374  * @retval ::WIMLIB_ERR_INVALID_PARAM
4375  *      An unknown operation type was provided in the update commands; or
4376  *      unknown or incompatible flags were provided in a flags parameter; or
4377  *      there was another problem with the provided parameters.
4378  * @retval ::WIMLIB_ERR_INVALID_REPARSE_DATA
4379  *      While executing an add command, a reparse point had invalid data.
4380  * @retval ::WIMLIB_ERR_IS_DIRECTORY
4381  *      An add command attempted to replace a directory with a non-directory; or
4382  *      a delete command without ::WIMLIB_DELETE_FLAG_RECURSIVE attempted to
4383  *      delete a directory; or a rename command attempted to rename a directory
4384  *      to a non-directory.
4385  * @retval ::WIMLIB_ERR_NOTDIR
4386  *      An add command attempted to replace a non-directory with a directory; or
4387  *      an add command attempted to set the root of the image to a
4388  *      non-directory; or a rename command attempted to rename a directory to a
4389  *      non-directory; or a component of an image path that was used as a
4390  *      directory was not, in fact, a directory.
4391  * @retval ::WIMLIB_ERR_NOTEMPTY
4392  *      A rename command attempted to rename a directory to a non-empty
4393  *      directory; or a rename command would have created a loop.
4394  * @retval ::WIMLIB_ERR_NTFS_3G
4395  *      While executing an add command with ::WIMLIB_ADD_FLAG_NTFS specified, an
4396  *      error occurred while reading data from the NTFS volume using libntfs-3g.
4397  * @retval ::WIMLIB_ERR_OPEN
4398  *      Failed to open a file to be captured while executing an add command.
4399  * @retval ::WIMLIB_ERR_OPENDIR
4400  *      Failed to open a directory to be captured while executing an add
4401  *      command.
4402  * @retval ::WIMLIB_ERR_PATH_DOES_NOT_EXIST
4403  *      A delete command without ::WIMLIB_DELETE_FLAG_FORCE specified was for a
4404  *      WIM path that did not exist; or a rename command attempted to rename a
4405  *      file that does not exist.
4406  * @retval ::WIMLIB_ERR_READ
4407  *      While executing an add command, failed to read data from a file or
4408  *      directory to be captured.
4409  * @retval ::WIMLIB_ERR_READLINK
4410  *      While executing an add command, failed to read the target of a symbolic
4411  *      link, junction, or other reparse point.
4412  * @retval ::WIMLIB_ERR_STAT
4413  *      While executing an add command, failed to read metadata for a file or
4414  *      directory.
4415  * @retval ::WIMLIB_ERR_UNABLE_TO_READ_CAPTURE_CONFIG
4416  *      A capture configuration file could not be read.
4417  * @retval ::WIMLIB_ERR_UNSUPPORTED
4418  *      A command had flags provided that are not supported on this platform or
4419  *      in this build of the library.
4420  * @retval ::WIMLIB_ERR_UNSUPPORTED_FILE
4421  *      An add command with ::WIMLIB_ADD_FLAG_NO_UNSUPPORTED_EXCLUDE specified
4422  *      discovered a file that was not of a supported type.
4423  *
4424  * This function can additionally return ::WIMLIB_ERR_DECOMPRESSION,
4425  * ::WIMLIB_ERR_INVALID_METADATA_RESOURCE, ::WIMLIB_ERR_METADATA_NOT_FOUND,
4426  * ::WIMLIB_ERR_READ, or ::WIMLIB_ERR_UNEXPECTED_END_OF_FILE, all of which
4427  * indicate failure (for different reasons) to read the metadata resource for an
4428  * image that needed to be updated.
4429  */
4430 extern int
4431 wimlib_update_image(WIMStruct *wim,
4432                     int image,
4433                     const struct wimlib_update_command *cmds,
4434                     size_t num_cmds,
4435                     int update_flags);
4436
4437 /**
4438  * @ingroup G_writing_and_overwriting_wims
4439  *
4440  * Persist a ::WIMStruct to a new on-disk WIM file.
4441  *
4442  * This brings in file data from any external locations, such as directory trees
4443  * or NTFS volumes scanned with wimlib_add_image(), or other WIM files via
4444  * wimlib_export_image(), and incorporates it into a new on-disk WIM file.
4445  *
4446  * By default, the new WIM file is written as stand-alone.  Using the
4447  * ::WIMLIB_WRITE_FLAG_SKIP_EXTERNAL_WIMS flag, a "delta" WIM can be written
4448  * instead.  However, this function cannot directly write a "split" WIM; use
4449  * wimlib_split() for that.
4450  *
4451  * @param wim
4452  *      Pointer to the ::WIMStruct being persisted.
4453  * @param path
4454  *      The path to the on-disk file to write.
4455  * @param image
4456  *      Normally, specify ::WIMLIB_ALL_IMAGES here.  This indicates that all
4457  *      images are to be included in the new on-disk WIM file.  If for some
4458  *      reason you only want to include a single image, specify the 1-based
4459  *      index of that image instead.
4460  * @param write_flags
4461  *      Bitwise OR of flags prefixed with @c WIMLIB_WRITE_FLAG.
4462  * @param num_threads
4463  *      The number of threads to use for compressing data, or 0 to have the
4464  *      library automatically choose an appropriate number.
4465  *
4466  * @return 0 on success; a ::wimlib_error_code value on failure.
4467  *
4468  * @retval ::WIMLIB_ERR_CONCURRENT_MODIFICATION_DETECTED
4469  *      A file that had previously been scanned for inclusion in the WIM was
4470  *      concurrently modified.
4471  * @retval ::WIMLIB_ERR_INVALID_IMAGE
4472  *      @p image did not exist in @p wim.
4473  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_HASH
4474  *      A file, stored in another WIM, which needed to be written was corrupt.
4475  * @retval ::WIMLIB_ERR_INVALID_PARAM
4476  *      @p path was not a nonempty string, or invalid flags were passed.
4477  * @retval ::WIMLIB_ERR_OPEN
4478  *      Failed to open the output WIM file for writing, or failed to open a file
4479  *      whose data needed to be included in the WIM.
4480  * @retval ::WIMLIB_ERR_READ
4481  *      Failed to read data that needed to be included in the WIM.
4482  * @retval ::WIMLIB_ERR_RESOURCE_NOT_FOUND
4483  *      A file data blob that needed to be written could not be found in the
4484  *      blob lookup table of @p wim.  See @ref G_nonstandalone_wims.
4485  * @retval ::WIMLIB_ERR_WRITE
4486  *      An error occurred when trying to write data to the new WIM file.
4487  *
4488  * This function can additionally return ::WIMLIB_ERR_DECOMPRESSION,
4489  * ::WIMLIB_ERR_INVALID_METADATA_RESOURCE, ::WIMLIB_ERR_METADATA_NOT_FOUND,
4490  * ::WIMLIB_ERR_READ, or ::WIMLIB_ERR_UNEXPECTED_END_OF_FILE, all of which
4491  * indicate failure (for different reasons) to read the data from a WIM file.
4492  *
4493  * If a progress function is registered with @p wim, then it will receive the
4494  * messages ::WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
4495  * ::WIMLIB_PROGRESS_MSG_WRITE_METADATA_BEGIN, and
4496  * ::WIMLIB_PROGRESS_MSG_WRITE_METADATA_END.
4497  */
4498 extern int
4499 wimlib_write(WIMStruct *wim,
4500              const wimlib_tchar *path,
4501              int image,
4502              int write_flags,
4503              unsigned num_threads);
4504
4505 /**
4506  * @ingroup G_writing_and_overwriting_wims
4507  *
4508  * Same as wimlib_write(), but write the WIM directly to a file descriptor,
4509  * which need not be seekable if the write is done in a special pipable WIM
4510  * format by providing ::WIMLIB_WRITE_FLAG_PIPABLE in @p write_flags.  This can,
4511  * for example, allow capturing a WIM image and streaming it over the network.
4512  * See @ref subsec_pipable_wims for more information about pipable WIMs.
4513  *
4514  * The file descriptor @p fd will @b not be closed when the write is complete;
4515  * the calling code is responsible for this.
4516  *
4517  * @return 0 on success; a ::wimlib_error_code value on failure.  The possible
4518  * error codes include those that can be returned by wimlib_write() as well as
4519  * the following:
4520  *
4521  * @retval ::WIMLIB_ERR_INVALID_PARAM
4522  *      @p fd was not seekable, but ::WIMLIB_WRITE_FLAG_PIPABLE was not
4523  *      specified in @p write_flags.
4524  */
4525 extern int
4526 wimlib_write_to_fd(WIMStruct *wim,
4527                    int fd,
4528                    int image,
4529                    int write_flags,
4530                    unsigned num_threads);
4531
4532 /**
4533  * @defgroup G_compression Compression and decompression functions
4534  *
4535  * @brief Functions for XPRESS, LZX, and LZMS compression and decompression.
4536  *
4537  * These functions are already used by wimlib internally when appropriate for
4538  * reading and writing WIM archives.  But they are exported and documented so
4539  * that they can be used in other applications or libraries for general-purpose
4540  * lossless data compression.  They are implemented in highly optimized C code,
4541  * using state-of-the-art compression techniques.  The main limitation is the
4542  * lack of sliding window support; this has, however, allowed the algorithms to
4543  * be optimized for block-based compression.
4544  *
4545  * @{
4546  */
4547
4548 /** Opaque compressor handle.  */
4549 struct wimlib_compressor;
4550
4551 /** Opaque decompressor handle.  */
4552 struct wimlib_decompressor;
4553
4554 /**
4555  * Set the default compression level for the specified compression type.  This
4556  * is the compression level that wimlib_create_compressor() assumes if it is
4557  * called with @p compression_level specified as 0.
4558  *
4559  * wimlib's WIM writing code (e.g. wimlib_write()) will pass 0 to
4560  * wimlib_create_compressor() internally.  Therefore, calling this function will
4561  * affect the compression level of any data later written to WIM files using the
4562  * specified compression type.
4563  *
4564  * The initial state, before this function is called, is that all compression
4565  * types have a default compression level of 50.
4566  *
4567  * @param ctype
4568  *      Compression type for which to set the default compression level, as one
4569  *      of the ::wimlib_compression_type constants.  Or, if this is the special
4570  *      value -1, the default compression levels for all compression types will
4571  *      be set.
4572  * @param compression_level
4573  *      The default compression level to set.  If 0, the "default default" level
4574  *      of 50 is restored.  Otherwise, a higher value indicates higher
4575  *      compression, whereas a lower value indicates lower compression.  See
4576  *      wimlib_create_compressor() for more information.
4577  *
4578  * @return 0 on success; a ::wimlib_error_code value on failure.
4579  *
4580  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
4581  *      @p ctype was neither a supported compression type nor -1.
4582  */
4583 extern int
4584 wimlib_set_default_compression_level(int ctype, unsigned int compression_level);
4585
4586 /**
4587  * Return the approximate number of bytes needed to allocate a compressor with
4588  * wimlib_create_compressor() for the specified compression type, maximum block
4589  * size, and compression level.  @p compression_level may be 0, in which case
4590  * the current default compression level for @p ctype is used.  Returns 0 if the
4591  * compression type is invalid, or the @p max_block_size for that compression
4592  * type is invalid.
4593  */
4594 extern uint64_t
4595 wimlib_get_compressor_needed_memory(enum wimlib_compression_type ctype,
4596                                     size_t max_block_size,
4597                                     unsigned int compression_level);
4598
4599 #define WIMLIB_COMPRESSOR_FLAG_DESTRUCTIVE      0x80000000
4600
4601 /**
4602  * Allocate a compressor for the specified compression type using the specified
4603  * parameters.  This function is part of wimlib's compression API; it is not
4604  * necessary to call this to process a WIM file.
4605  *
4606  * @param ctype
4607  *      Compression type for which to create the compressor, as one of the
4608  *      ::wimlib_compression_type constants.
4609  * @param max_block_size
4610  *      The maximum compression block size to support.  This specifies the
4611  *      maximum allowed value for the @p uncompressed_size parameter of
4612  *      wimlib_compress() when called using this compressor.
4613  *      <br/>
4614  *      Usually, the amount of memory used by the compressor will scale in
4615  *      proportion to the @p max_block_size parameter.
4616  *      wimlib_get_compressor_needed_memory() can be used to query the specific
4617  *      amount of memory that will be required.
4618  *      <br/>
4619  *      This parameter must be at least 1 and must be less than or equal to a
4620  *      compression-type-specific limit.
4621  *      <br/>
4622  *      In general, the same value of @p max_block_size must be passed to
4623  *      wimlib_create_decompressor() when the data is later decompressed.
4624  *      However, some compression types have looser requirements regarding this.
4625  * @param compression_level
4626  *      The compression level to use.  If 0, the default compression level (50,
4627  *      or another value as set through wimlib_set_default_compression_level())
4628  *      is used.  Otherwise, a higher value indicates higher compression.  The
4629  *      values are scaled so that 10 is low compression, 50 is medium
4630  *      compression, and 100 is high compression.  This is not a percentage;
4631  *      values above 100 are also valid.
4632  *      <br/>
4633  *      Using a higher-than-default compression level can result in a better
4634  *      compression ratio, but can significantly reduce performance.  Similarly,
4635  *      using a lower-than-default compression level can result in better
4636  *      performance, but can significantly worsen the compression ratio.  The
4637  *      exact results will depend heavily on the compression type and what
4638  *      algorithms are implemented for it.  If you are considering using a
4639  *      non-default compression level, you should run benchmarks to see if it is
4640  *      worthwhile for your application.
4641  *      <br/>
4642  *      The compression level does not affect the format of the compressed data.
4643  *      Therefore, it is a compressor-only parameter and does not need to be
4644  *      passed to the decompressor.
4645  *      <br/>
4646  *      Since wimlib v1.8.0, this parameter can be OR-ed with the flag
4647  *      ::WIMLIB_COMPRESSOR_FLAG_DESTRUCTIVE.  This creates the compressor in a
4648  *      mode where it is allowed to modify the input buffer.  Specifically, in
4649  *      this mode, if compression succeeds, the input buffer may have been
4650  *      modified, whereas if compression does not succeed the input buffer still
4651  *      may have been written to but will have been restored exactly to its
4652  *      original state.  This mode is designed to save some memory when using
4653  *      large buffer sizes.
4654  * @param compressor_ret
4655  *      A location into which to return the pointer to the allocated compressor.
4656  *      The allocated compressor can be used for any number of calls to
4657  *      wimlib_compress() before being freed with wimlib_free_compressor().
4658  *
4659  * @return 0 on success; a ::wimlib_error_code value on failure.
4660  *
4661  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
4662  *      @p ctype was not a supported compression type.
4663  * @retval ::WIMLIB_ERR_INVALID_PARAM
4664  *      @p max_block_size was invalid for the compression type, or @p
4665  *      compressor_ret was @c NULL.
4666  * @retval ::WIMLIB_ERR_NOMEM
4667  *      Insufficient memory to allocate the compressor.
4668  */
4669 extern int
4670 wimlib_create_compressor(enum wimlib_compression_type ctype,
4671                          size_t max_block_size,
4672                          unsigned int compression_level,
4673                          struct wimlib_compressor **compressor_ret);
4674
4675 /**
4676  * Compress a buffer of data.
4677  *
4678  * @param uncompressed_data
4679  *      Buffer containing the data to compress.
4680  * @param uncompressed_size
4681  *      Size, in bytes, of the data to compress.  This cannot be greater than
4682  *      the @p max_block_size with which wimlib_create_compressor() was called.
4683  *      (If it is, the data will not be compressed and 0 will be returned.)
4684  * @param compressed_data
4685  *      Buffer into which to write the compressed data.
4686  * @param compressed_size_avail
4687  *      Number of bytes available in @p compressed_data.
4688  * @param compressor
4689  *      A compressor previously allocated with wimlib_create_compressor().
4690  *
4691  * @return
4692  *      The size of the compressed data, in bytes, or 0 if the data could not be
4693  *      compressed to @p compressed_size_avail or fewer bytes.
4694  */
4695 extern size_t
4696 wimlib_compress(const void *uncompressed_data, size_t uncompressed_size,
4697                 void *compressed_data, size_t compressed_size_avail,
4698                 struct wimlib_compressor *compressor);
4699
4700 /**
4701  * Free a compressor previously allocated with wimlib_create_compressor().
4702  *
4703  * @param compressor
4704  *      The compressor to free.  If @c NULL, no action is taken.
4705  */
4706 extern void
4707 wimlib_free_compressor(struct wimlib_compressor *compressor);
4708
4709 /**
4710  * Allocate a decompressor for the specified compression type.  This function is
4711  * part of wimlib's compression API; it is not necessary to call this to process
4712  * a WIM file.
4713  *
4714  * @param ctype
4715  *      Compression type for which to create the decompressor, as one of the
4716  *      ::wimlib_compression_type constants.
4717  * @param max_block_size
4718  *      The maximum compression block size to support.  This specifies the
4719  *      maximum allowed value for the @p uncompressed_size parameter of
4720  *      wimlib_decompress().
4721  *      <br/>
4722  *      In general, this parameter must be the same as the @p max_block_size
4723  *      that was passed to wimlib_create_compressor() when the data was
4724  *      compressed.  However, some compression types have looser requirements
4725  *      regarding this.
4726  * @param decompressor_ret
4727  *      A location into which to return the pointer to the allocated
4728  *      decompressor.  The allocated decompressor can be used for any number of
4729  *      calls to wimlib_decompress() before being freed with
4730  *      wimlib_free_decompressor().
4731  *
4732  * @return 0 on success; a ::wimlib_error_code value on failure.
4733  *
4734  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
4735  *      @p ctype was not a supported compression type.
4736  * @retval ::WIMLIB_ERR_INVALID_PARAM
4737  *      @p max_block_size was invalid for the compression type, or @p
4738  *      decompressor_ret was @c NULL.
4739  * @retval ::WIMLIB_ERR_NOMEM
4740  *      Insufficient memory to allocate the decompressor.
4741  */
4742 extern int
4743 wimlib_create_decompressor(enum wimlib_compression_type ctype,
4744                            size_t max_block_size,
4745                            struct wimlib_decompressor **decompressor_ret);
4746
4747 /**
4748  * Decompress a buffer of data.
4749  *
4750  * @param compressed_data
4751  *      Buffer containing the data to decompress.
4752  * @param compressed_size
4753  *      Size, in bytes, of the data to decompress.
4754  * @param uncompressed_data
4755  *      Buffer into which to write the uncompressed data.
4756  * @param uncompressed_size
4757  *      Size, in bytes, of the data when uncompressed.  This cannot exceed the
4758  *      @p max_block_size with which wimlib_create_decompressor() was called.
4759  *      (If it does, the data will not be decompressed and a nonzero value will
4760  *      be returned.)
4761  * @param decompressor
4762  *      A decompressor previously allocated with wimlib_create_decompressor().
4763  *
4764  * @return 0 on success; nonzero on failure.
4765  *
4766  * No specific error codes are defined; any nonzero value indicates that the
4767  * decompression failed.  This can only occur if the data is truly invalid;
4768  * there will never be transient errors like "out of memory", for example.
4769  *
4770  * This function requires that the exact uncompressed size of the data be passed
4771  * as the @p uncompressed_size parameter.  If this is not done correctly,
4772  * decompression may fail or the data may be decompressed incorrectly.
4773  */
4774 extern int
4775 wimlib_decompress(const void *compressed_data, size_t compressed_size,
4776                   void *uncompressed_data, size_t uncompressed_size,
4777                   struct wimlib_decompressor *decompressor);
4778
4779 /**
4780  * Free a decompressor previously allocated with wimlib_create_decompressor().
4781  *
4782  * @param decompressor
4783  *      The decompressor to free.  If @c NULL, no action is taken.
4784  */
4785 extern void
4786 wimlib_free_decompressor(struct wimlib_decompressor *decompressor);
4787
4788
4789 /**
4790  * @}
4791  */
4792
4793
4794 #ifdef __cplusplus
4795 }
4796 #endif
4797
4798 #endif /* _WIMLIB_H */