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