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