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