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