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