]> wimlib.net Git - wimlib/blob - src/wimlib.h
d2b230be1bf16348118b1eb88ee1373d0d513b3a
[wimlib] / src / wimlib.h
1 /*
2  * wimlib.h
3  *
4  * External header for wimlib.
5  */
6
7 /* 
8  * Copyright (C) 2012 Eric Biggers
9  *
10  * This file is part of wimlib, a library for working with WIM files.
11  *
12  * wimlib is free software; you can redistribute it and/or modify it under the
13  * terms of the GNU Lesser General Public License as published by the Free
14  * Software Foundation; either version 2.1 of the License, or (at your option)
15  * any later version.
16  *
17  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
18  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19  * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU Lesser General Public License
23  * along with wimlib; if not, see http://www.gnu.org/licenses/.
24  */
25
26 /** \mainpage
27  *
28  * \section intro Introduction
29  *
30  * wimlib is a C library to read, write, and mount archive files in the Windows
31  * Imaging Format (WIM files).  These files are normally created using the @c
32  * imagex.exe utility on Windows, but this library provides a free
33  * implementetion of @c imagex for UNIX-based systems and an API to allow other
34  * programs to read, write, and mount WIM files.  wimlib is comparable to
35  * Microsoft's WIMGAPI, but was designed independently and is not a clone of it.
36  * 
37  * The main intended use of wimlib is to create customized images of Windows PE,
38  * the Windows Preinstallation Environment, without having to rely on Windows.
39  * Windows PE, which is the operating system that runs when you boot from the
40  * Windows Vista or Windows 7 DVD, is a lightweight version of Windows that can
41  * run entirely from memory. It can be used to install Windows from local media
42  * or a network drive or perform maintenance. 
43  * 
44  * You can find Windows PE on the installation media for Windows Vista, Windows
45  * 7, and Windows 8.  The Windows PE image itself is a WIM file, @c
46  * sources/boot.wim, on the ISO filesystem.  Windows PE can also be found in the
47  * Windows Automated Installation Kit (WAIK) inside the @c WinPE.cab file, which
48  * you can extract if you install the @c cabextract program.
49  *
50  * \section format WIM files
51  *
52  * A <b>Windows Imaging (WIM)</b> file is an archive.  Like some other archive
53  * formats such as ZIP, files in WIM archives may be compressed.  WIM archives
54  * support two Microsoft-specific compression formats:  @b LZX and @b XPRESS.
55  * Both are based on LZ77 and Huffman encoding, and both are supported by
56  * wimlib.
57  *
58  * Unlike ZIP files, WIM files can contain multiple independent toplevel
59  * directory trees known as @a images.  While each image has its own metadata,
60  * files are not duplicated for each image; instead, each file is included only
61  * once in the entire WIM. Microsoft did this so that in one WIM file, they
62  * could do things like have 5 different versions of Windows that are almost
63  * exactly the same.
64  *
65  * WIM files may contain a integrity table.  The integrity table, if it exists,
66  * is located at the end of the WIM file and contains SHA1 message digests of
67  * 10MB chunks of the WIM.
68  *
69  * Microsoft provides documentation for the WIM file format, XPRESS compression
70  * format, and LZX compression format.  However, there are errors and omissions
71  * in some places in their documentation.
72  *
73  * \section starting Getting Started
74  *
75  * wimlib uses the GNU autotools, so it should be easy to install with
76  * <code>configure && make && sudo make install</code>, provided that you have
77  * @c libxml2 and @c libfuse installed.  To use wimlib in a program after
78  * installing it, include @c wimlib.h and link your program with @c -lwim.
79  *
80  * wimlib wraps up a WIM file in an opaque ::WIMStruct structure.
81  *
82  * All functions in wimlib's public API are prefixed with @c wimlib.  Most
83  * return an integer error code on failure.  Use wimlib_get_error_string() to
84  * get a string that describes an error code.  wimlib also can print error
85  * messages itself when an error happens, and these may be more informative than
86  * the error code; to enable this, call wimlib_set_print_errors().
87  *
88  * wimlib is thread-safe as long as different ::WIMStruct's are used, with the
89  * following exceptions:  wimlib_set_print_errors() and
90  * wimlib_set_memory_allocator() apply globally, and wimlib_mount() can only be
91  * used by one ::WIMStruct at a time.
92  *
93  * To open an existing WIM, use wimlib_open_wim().
94  *
95  * To create a new WIM that initially contains no images, use
96  * wimlib_create_new_wim().
97  *
98  * To add an image to a WIM file from a directory tree on your filesystem, call
99  * wimlib_add_image().  This can be done with a ::WIMStruct gotten from
100  * wimlib_open_wim() or from wimlib_create_new_wim().
101  *
102  * To extract an image from a WIM file, call wimlib_set_output_dir() to set the
103  * output directory, then call wimlib_extract_image().
104  *
105  * wimlib supports mounting WIM files either read-only or read-write.  Mounting
106  * is done using wimlib_mount() and unmounting is done using wimlib_unmount().
107  * Mounting can be done without root privileges because it is implemented using
108  * FUSE (Filesystem in Userspace).  If wimlib is compiled with the
109  * <code>--without-fuse</code> flag, these functions will be available but will
110  * fail.
111  *
112  * After creating or modifying a WIM file, you can write it to a file using
113  * wimlib_write().  Alternatively,  if the WIM was originally read from a file,
114  * you can use wimlib_overwrite() to overwrite the original file.  In some
115  * cases, wimlib_overwrite_xml_and_header() can be used instead.
116  *
117  * After you are done with the WIM file, use wimlib_free() to free all memory
118  * associated with a ::WIMStruct and close all files associated with it.
119  *
120  * To see an example of how to use wimlib, see the file
121  * @c programs/imagex.c in wimlib's source tree.
122  *
123  * wimlib supports custom memory allocators; use wimlib_set_memory_allocator()
124  * for this.
125  *
126  * \section imagex imagex
127  *
128  * wimlib comes with the <b>imagex</b> program, which is documented in man pages.
129  *
130  * \section mkwinpeimg mkwinpeimg
131  * 
132  * wimlib comes with the <b>mkwinpeimg</b> script, which is documented in a man
133  * page.
134  *
135  * \section Limitations
136  *
137  * While wimlib supports the main features of WIM files, wimlib currently has
138  * the following limitations:
139  * - wimlib does not support modifying or creating "security data", which
140  *   describes the access rights of the files in the WIM.  This data is very
141  *   Windows-specific, and it would be difficult to do anything with it.
142  *   Microsoft's software can still read a WIM without security data, including
143  *   a boot.wim for Windows PE, but <b>do not expect to be able to use wimlib to
144  *   image a Windows installation and preserve file attributes</b>.  However, by
145  *   default, wimlib will preserve security data for existing WIMs.
146  * - There is no way to directly extract or mount split WIMs.
147  * - There is not yet any code to verify that there are no collisions between
148  *   different files that happen to have the same SHA1 message digest.
149  *   This is extremely unlikely, but could result in something bad such as a
150  *   file going missing.
151  * - Alternate stream entries for directory entries are ignored.
152  * - Different versions of the WIM file format, if they even exist, are
153  *   unsupported.  Let me know if you notice WIM files with a different version.
154  * - Chunk sizes other than 32768 are unsupported (except for uncompressed WIMs,
155  *   for which the chunk size field is ignored).  As far as I can tell, other
156  *   chunk sizes are not used in compressed WIMs.  Let me know if you find a WIM
157  *   file with a different chunk size.
158  * - wimlib does not provide a clone of the @b PEImg tool that allows you to
159  *   make certain Windows-specific modifications to a Windows PE image, such as
160  *   adding a driver or Windows component.  Such a tool could conceivably be
161  *   implemented on top of wimlib, although it likely would be hard to implement
162  *   because it would have to do very Windows-specific things such as
163  *   manipulating the driver store.  wimlib does provide the @b mkwinpeimg
164  *   script for a similar purpose, however.  With regards to adding drivers to
165  *   Windows PE, you have the option of putting them anywhere in the Windows PE
166  *   image, then loading them after boot using @b drvload.exe.
167  * - There is not yet a way to extract specific files or directories from a WIM
168  *   file without mounting it, or to add, remove, or modify files in a WIM
169  *   without mounting it, other than by adding or removing an entire image.  I
170  *   can implement this if requested, but I intend the FUSE mount feature to be
171  *   used for this purpose, as it is easy to do these things in whatever way you
172  *   want after the image is mounted.
173  *
174  * Currently, Microsoft's @a image.exe can create slightly smaller WIM files
175  * than wimlib when using maximum (LZX) compression because it knows how to
176  * split up LZX compressed blocks, which is not yet implemented in wimlib.
177  *
178  * wimlib is experimental and likely contains bugs; use Microsoft's @a
179  * imagex.exe if you want to make sure your WIM files are made "correctly".
180  *
181  * \section legal License
182  *
183  * The wimlib library is licensed under the GNU Lesser General Public License
184  * version 2.1 or later.
185  *
186  * @b imagex and @b mkwinpeiso are licensed under the GNU General Public License
187  * version 3 or later.
188  */
189
190 #ifndef _WIMLIB_H
191 #define _WIMLIB_H
192
193 #include <stdio.h>
194 #include <stddef.h>
195 #include <stdbool.h>
196
197 #ifndef _WIMLIB_INTERNAL_H
198 /** 
199  * Opaque structure that represents a WIM file. 
200  */
201 typedef struct WIMStruct WIMStruct;
202 #endif
203
204 /** 
205  * Specifies the way in which identical files are linked when extracting
206  * image(s) from the WIM. 
207  */
208 enum wim_link_type {
209 /** Hard link identical files when extracting files from the WIM. */
210         WIM_LINK_TYPE_HARD = 0,
211 /** Symbolic link identical files when extracting files from the WIM. */
212         WIM_LINK_TYPE_SYMBOLIC = 1,
213 /** Do not create links when extracting identical files from the WIM (default).
214  * */
215         WIM_LINK_TYPE_NONE = 2,
216 };
217
218 /**
219  * Specifies the compression type of a WIM file.
220  */
221
222 enum wim_compression_type {
223         /** An invalid compression type. */
224         WIM_COMPRESSION_TYPE_INVALID = -1,
225
226         /** The WIM does not include any compressed resources. */
227         WIM_COMPRESSION_TYPE_NONE = 0,
228
229         /** Compressed resources in the WIM use LZX compression. */
230         WIM_COMPRESSION_TYPE_LZX = 1,
231
232         /** Compressed resources in the WIM use XPRESS compression. */
233         WIM_COMPRESSION_TYPE_XPRESS = 2,
234 };
235
236 /** Mount the WIM read-write. */
237 #define WIMLIB_MOUNT_FLAG_READWRITE             0x00000001
238
239 /** For debugging only. (This passes the @c -d flag to @c fuse_main()).*/
240 #define WIMLIB_MOUNT_FLAG_DEBUG                 0x00000002
241
242 /** Do not allow accessing alternate data streams. */
243 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE         0x00000010
244
245 /** Access alternate data streams through extended file attributes.  This is the
246  * default mode. */
247 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR        0x00000020
248
249 /** Access alternate data streams by specifying the file name, a colon, then the
250  * alternate file stream name. */
251 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS      0x00000040
252
253 /** Include an integrity table in the new WIM being written during the unmount. 
254  * Ignored for read-only mounts. */
255 #define WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY     0x00000001
256
257 /** Unless this flag is given, changes to a mounted WIM are discarded.  Ignored
258  * for read-only mounts. */
259 #define WIMLIB_UNMOUNT_FLAG_COMMIT              0x00000002
260
261 /** Include an integrity table in the new WIM file. */
262 #define WIMLIB_WRITE_FLAG_CHECK_INTEGRITY       0x00000001
263
264 /** Print progress information when writing the integrity table. */
265 #define WIMLIB_WRITE_FLAG_SHOW_PROGRESS         0x00000002
266
267 /** Mark the image being added as the bootable image of the WIM. */
268 #define WIMLIB_ADD_IMAGE_FLAG_BOOT              0x00000001
269
270 /** Print the name of each file or directory as it is scanned to be included in
271  * the WIM image. */
272 #define WIMLIB_ADD_IMAGE_FLAG_VERBOSE           0x00000002
273
274 /** Apply NTFS-specific information to the captured WIM image.  This flag can
275  * only be specified if the directory being captured is on a NTFS filesystem
276  * mounted with NTFS-3g, and wimlib was compiled with support for NTFS-3g  */
277 #define WIMLIB_ADD_IMAGE_FLAG_NTFS              0x00000004
278
279 /** Follow symlinks; archive and dump the files they point to. */
280 #define WIMLIB_ADD_IMAGE_FLAG_DEREFERENCE       0x00000008
281
282 /** See documentation for wimlib_export_image(). */
283 #define WIMLIB_EXPORT_FLAG_BOOT                 0x00000001
284
285 /** Verify the integrity of the WIM if an integrity table is present. */
286 #define WIMLIB_OPEN_FLAG_CHECK_INTEGRITY        0x00000001
287
288 /** Print progress information when verifying integrity table. */
289 #define WIMLIB_OPEN_FLAG_SHOW_PROGRESS          0x00000002
290
291 /** If this flag is not given, an error is issued if the WIM is part of a split
292  * WIM.  */
293 #define WIMLIB_OPEN_FLAG_SPLIT_OK               0x00000004
294
295
296 /** When identical files are extracted from the WIM, hard link them together. */
297 #define WIMLIB_EXTRACT_FLAG_HARDLINK            0x00000001
298
299 /** When identical files are extracted from the WIM, symlink them together. */
300 #define WIMLIB_EXTRACT_FLAG_SYMLINK             0x00000002
301
302 /** Apply NTFS-specific information when applying the WIM image.  This flag can
303  * only be specified if the output directory is on a NTFS filesystem mounted
304  * with NTFS-3g, and wimlib was compiled with support for NTFS-3g  */
305 #define WIMLIB_EXTRACT_FLAG_NTFS                0x00000004
306
307 /** Print the name of each file as it is extracted from the WIM image. */
308 #define WIMLIB_EXTRACT_FLAG_VERBOSE             0x00000008
309
310 /**
311  * Possible values of the error code returned by many functions in wimlib.
312  *
313  * See the documentation for each wimlib function to see specifically what error
314  * codes can be returned by a given function, and what they mean.
315  */
316 enum wimlib_error_code {
317         WIMLIB_ERR_SUCCESS = 0,
318         WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE,
319         WIMLIB_ERR_DECOMPRESSION,
320         WIMLIB_ERR_DELETE_STAGING_DIR,
321         WIMLIB_ERR_FORK,
322         WIMLIB_ERR_FUSE,
323         WIMLIB_ERR_FUSERMOUNT,
324         WIMLIB_ERR_IMAGE_COUNT,
325         WIMLIB_ERR_IMAGE_NAME_COLLISION,
326         WIMLIB_ERR_INTEGRITY,
327         WIMLIB_ERR_INVALID_CHUNK_SIZE,
328         WIMLIB_ERR_INVALID_COMPRESSION_TYPE,
329         WIMLIB_ERR_INVALID_DENTRY,
330         WIMLIB_ERR_INVALID_HEADER_SIZE,
331         WIMLIB_ERR_INVALID_IMAGE,
332         WIMLIB_ERR_INVALID_INTEGRITY_TABLE,
333         WIMLIB_ERR_INVALID_PARAM,
334         WIMLIB_ERR_INVALID_RESOURCE_SIZE,
335         WIMLIB_ERR_INVALID_SECURITY_DATA,
336         WIMLIB_ERR_LINK,
337         WIMLIB_ERR_MKDIR,
338         WIMLIB_ERR_MQUEUE,
339         WIMLIB_ERR_NOMEM,
340         WIMLIB_ERR_NOTDIR,
341         WIMLIB_ERR_NOT_A_WIM_FILE,
342         WIMLIB_ERR_NO_FILENAME,
343         WIMLIB_ERR_NTFS_3G,
344         WIMLIB_ERR_OPEN,
345         WIMLIB_ERR_OPENDIR,
346         WIMLIB_ERR_READLINK,
347         WIMLIB_ERR_READ,
348         WIMLIB_ERR_RENAME,
349         WIMLIB_ERR_SPECIAL_FILE,
350         WIMLIB_ERR_SPLIT_INVALID,
351         WIMLIB_ERR_SPLIT_UNSUPPORTED,
352         WIMLIB_ERR_STAT,
353         WIMLIB_ERR_TIMEOUT,
354         WIMLIB_ERR_UNKNOWN_VERSION,
355         WIMLIB_ERR_UNSUPPORTED,
356         WIMLIB_ERR_WRITE,
357         WIMLIB_ERR_XML,
358 };
359
360
361 /** Used to indicate that no WIM image is currently selected. */
362 #define WIM_NO_IMAGE    0
363
364 /** Used to specify all images in the WIM. */
365 #define WIM_ALL_IMAGES  (-1)
366
367
368 /**
369  * Adds an image to a WIM file from a directory tree on disk.
370  *
371  * The directory tree is read immediately for the purpose of constructing a
372  * directory entry tree in-memory.  Also, all files are read to calculate their
373  * SHA1 message digests.  However, because the directory tree may contain a very
374  * large amount of data, the files themselves are not read into memory
375  * permanently, and instead references to their paths saved.  This means that
376  * the directory tree must not be modified, other than by adding entirely new
377  * files or directories, before executing a call to wimlib_write() or
378  * wimlib_overwrite(). Otherwise, wimlib_write() may fail or incorrect files may
379  * be included in the WIM written by wimlib_write().
380  *
381  * @param wim
382  *      Pointer to the ::WIMStruct for a WIM file to which the image will be
383  *      added.
384  * @param dir
385  *      A path to a directory in the outside filesystem.  It will become the
386  *      root directory for the WIM image.
387  * @param name
388  *      The name to give the image.  This must be non-@c NULL.
389  * @param description
390  *      The description to give the image.  This parameter may be left @c
391  *      NULL, in which case no description is given to the image.
392  * @param flags_element
393  *      What to put in the &lt;FLAGS&gt; element for the image's XML data.  This
394  *      parameter may be left @c NULL, in which case no &lt;FLAGS&gt; element is
395  *      given to the image.
396  * @param flags
397  *      If set to ::WIMLIB_ADD_IMAGE_FLAG_BOOT, change the image in @a wim
398  *      marked as bootable to the one being added. Otherwise, leave the boot
399  *      index unchanged.
400  *
401  * @return 0 on success; nonzero on error.  On error, changes to @a wim are
402  * discarded so that it appears to be in the same state as when this function
403  * was called.
404  *
405  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION 
406  *      There is already an image named @a name in @a w.
407  * @retval ::WIMLIB_ERR_INVALID_PARAM 
408  *      @a dir was @c NULL, @a name was @c NULL, or @a name was the empty string.
409  * @retval ::WIMLIB_ERR_NOMEM
410  *      Failed to allocate needed memory.
411  * @retval ::WIMLIB_ERR_NOTDIR
412  *      @a dir is not a directory.
413  * @retval ::WIMLIB_ERR_OPEN
414  *      Failed to open a file or directory in the directory tree rooted at @a
415  *      dir.
416  * @retval ::WIMLIB_ERR_READ
417  *      Failed to read a file in the directory tree rooted at @a dir.
418  * @retval ::WIMLIB_ERR_STAT
419  *      Failed obtain the metadata for a file or directory in the directory tree
420  *      rooted at @a dir.
421  *
422  */
423 extern int wimlib_add_image(WIMStruct *wim, const char *dir, 
424                             const char *name, const char *description, 
425                             const char *flags_element, int flags);
426
427 /** 
428  * Creates a WIMStruct for a new WIM file.
429  *
430  * @param ctype 
431  *      The type of compression to be used in the new WIM file.  Must be
432  *      ::WIM_COMPRESSION_TYPE_NONE, ::WIM_COMPRESSION_TYPE_LZX, or
433  *      ::WIM_COMPRESSION_TYPE_XPRESS.
434  * @param wim_ret
435  *      On success, a pointer to an opaque ::WIMStruct for the new WIM file is
436  *      written to the memory location pointed to by this paramater.  The
437  *      ::WIMStruct must be freed using using wimlib_free() when finished with
438  *      it.
439  * @return 0 on success; nonzero on error.
440  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
441  *      @a ctype was not ::WIM_COMPRESSION_TYPE_NONE,
442  *      ::WIM_COMPRESSION_TYPE_LZX, or ::WIM_COMPRESSION_TYPE_XPRESS.
443  * @retval ::WIMLIB_ERR_NOMEM
444  *      Failed to allocate needed memory.
445  */
446 extern int wimlib_create_new_wim(int ctype, WIMStruct **wim_ret);
447
448 /**
449  * Deletes an image, or all images, from a WIM file.
450  *
451  * All file resources referenced by the image(s) being deleted are removed from
452  * the WIM if they are not referenced by any other images in the WIM.
453  *
454  * @param wim
455  *      Pointer to the ::WIMStruct for the WIM file that contains the image(s)
456  *      being deleted.
457  * @param image
458  *      The number of the image to delete, or ::WIM_ALL_IMAGES to delete all
459  *      images.
460  * @return 0 on success; nonzero on error.  On error, @a wim is left in an
461  * indeterminate state and should be freed with wimlib_free().
462  * @retval ::WIMLIB_ERR_DECOMPRESSION
463  *      Could not decompress the metadata resource for @a image.
464  * @retval ::WIMLIB_ERR_INVALID_DENTRY
465  *      A directory entry in the metadata resource for @a image in the WIM is
466  *      invalid.
467  * @retval ::WIMLIB_ERR_INVALID_IMAGE
468  *      @a image does not exist in the WIM and is not ::WIM_ALL_IMAGES.
469  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
470  *      The metadata resource for @a image in the WIM is invalid.       
471  * @retval ::WIMLIB_ERR_NOMEM Failed to allocate needed memory.
472  * @retval ::WIMLIB_ERR_READ
473  *      Could not read the metadata resource for @a image from the WIM.
474  */
475 extern int wimlib_delete_image(WIMStruct *wim, int image);
476
477 /**
478  * Copies an image, or all the images, from a WIM file, into another WIM file.
479  *
480  * @param src_wim
481  *      Pointer to the ::WIMStruct for a WIM file that contains the image(s)
482  *      being exported.
483  * @param src_image
484  *      The image to export from @a src_wim.  Can be the number of an image, or
485  *      ::WIM_ALL_IMAGES to export all images.
486  * @param dest_wim
487  *      Pointer to the ::WIMStruct for a WIM filethat will receive the images being
488  *      exported.
489  * @param dest_name
490  *      The name to give the exported image in the new WIM file.  If left @c NULL,
491  *      the name from @a src_wim is used.  This parameter must be left @c NULL
492  *      if @a src_image is ::WIM_ALL_IMAGES and @a src_wim contains more than one
493  *      image; in that case, the names are all taken from the @a src_wim.
494  * @param dest_description
495  *      The description to give the exported image in the new WIM file.  If left
496  *      @c NULL, the description from the @a src_wim is used.  This parameter must
497  *      be left @c NULL if @a src_image is ::WIM_ALL_IMAGES and @a src_wim contains
498  *      more than one image; in that case, the descriptions are all taken from
499  *      @a src_wim.
500  * @param flags
501  *      ::WIMLIB_EXPORT_FLAG_BOOT if the image being exported is to be made
502  *      bootable, or 0 if which image is marked as bootable in the destination
503  *      WIM is to be left unchanged.  If @a src_image is ::WIM_ALL_IMAGES and
504  *      there are multiple images in @a src_wim, specifying
505  *      ::WIMLIB_EXPORT_FLAG_BOOT is valid only if one of the exported images is
506  *      currently marked as bootable in @a src_wim; if that is the case, then
507  *      that image is marked as bootable in the destination WIM.
508  *
509  * @return 0 on success; nonzero on error.  On error, @dest_wim is left in an
510  * indeterminate state and should be freed with wimlib_free().
511  * @retval ::WIMLIB_ERR_DECOMPRESSION
512  *      Could not decompress the metadata resource for @a src_image
513  *      in @a src_wim
514  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
515  *      One or more of the names being given to an exported image was already in
516  *      use in the destination WIM.
517  * @retval ::WIMLIB_ERR_INVALID_DENTRY 
518  *      A directory entry in the metadata resource for @a src_image in @a
519  *      src_wim is invalid.
520  * @retval ::WIMLIB_ERR_INVALID_IMAGE
521  *      @a src_image does not exist in @a src_wim.
522  * @retval ::WIMLIB_ERR_INVALID_PARAM
523  *      ::WIMLIB_EXPORT_FLAG_BOOT was specified in @a flags, @a src_image was
524  *      ::WIM_ALL_IMAGES, @a src_wim contains multiple images, and no images in
525  *      @a src_wim are marked as bootable; or @a dest_name and/or @a
526  *      dest_description were non-<code>NULL</code>, @a src_image was
527  *      ::WIM_ALL_IMAGES, and @a src_wim contains multiple images.
528  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
529  *      The metadata resource for @a src_image in @a src_wim is invalid.        
530  * @retval ::WIMLIB_ERR_NOMEM 
531  *      Failed to allocate needed memory.
532  * @retval ::WIMLIB_ERR_READ
533  *      Could not read the metadata resource for @a src_image from @a src_wim.
534  */
535 extern int wimlib_export_image(WIMStruct *src_wim, int src_image, 
536                                WIMStruct *dest_wim, const char *dest_name, 
537                                const char *dest_description, int flags);
538
539 /**
540  * Extracts an image, or all images, from a WIM file.
541  *
542  * The output directory must have been previously set with
543  * wimlib_set_output_dir().
544  *
545  * The link type used for extracted files is that specified by a previous call
546  * to wimlib_set_link_type(), or ::WIM_LINK_TYPE_NONE by default.
547  *
548  * @param wim
549  *      Pointer to the ::WIMStruct for a WIM file.
550  * @param image
551  *      The image to extract.  Can be the number of an image, or ::WIM_ALL_IMAGES
552  *      to specify that all images are to be extracted.
553  *
554  * @return 0 on success; nonzero on error.
555  * @retval ::WIMLIB_ERR_DECOMPRESSION
556  *      Could not decompress a resource (file or metadata) for @a image in @a
557  *      wim.
558  * @retval ::WIMLIB_ERR_INVALID_DENTRY 
559  *      A directory entry in the metadata resource for @a image in @a wim is
560  *      invalid.
561  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
562  *      A resource (file or metadata) for @a image in @a wim is invalid.        
563  * @retval ::WIMLIB_ERR_LINK
564  *      Failed to create a symbolic link or a hard link.
565  * @retval ::WIMLIB_ERR_MKDIR
566  *      Failed create a needed directory.
567  * @retval ::WIMLIB_ERR_NOMEM
568  *      Failed to allocate needed memory.
569  * @retval ::WIMLIB_ERR_NOTDIR
570  *      wimlib_set_output_dir() has not been successfully called on @a wim.
571  * @retval ::WIMLIB_ERR_OPEN
572  *      Could not open one of the files being extracted for writing.
573  * @retval ::WIMLIB_ERR_READ
574  *      A unexpected end-of-file or read error occurred when trying to read data
575  *      from the WIM file associated with @a wim.
576  * @retval ::WIMLIB_ERR_WRITE
577  *      Failed to write a file being extracted.
578  */
579 extern int wimlib_extract_image(WIMStruct *wim, int image,
580                                 const char *output_dir, int flags);
581
582 /**
583  * Extracts the XML data for a WIM file to a file stream.  Every WIM file
584  * includes a string of XML that describes the images contained in the WIM.
585  *
586  * @param wim
587  *      Pointer to the ::WIMStruct for a WIM file.
588  * @param fp 
589  *      @c stdout, or a FILE* opened for writing, to extract the data to.  
590  *
591  * @return 0 on success; nonzero on error.
592  * @retval ::WIMLIB_ERR_WRITE
593  *      Failed to completely write the XML data to @a fp.
594  */
595 extern int wimlib_extract_xml_data(WIMStruct *wim, FILE *fp);
596
597 /**
598  * Frees all memory allocated for a WIMStruct and closes all files associated
599  * with it. 
600  *
601  * @param wim
602  *      Pointer to the ::WIMStruct for a WIM file.
603  *
604  * @return This function has no return value.
605  */
606 extern void wimlib_free(WIMStruct *wim);
607
608 /**
609  * Finds which image in a WIM is bootable.
610  *
611  * @param wim
612  *      Pointer to the ::WIMStruct for a WIM file.
613  * 
614  * @return
615  *      0 if no image is marked as bootable, or the number of the image marked
616  *      as bootable (numbered starting at 1).
617  */
618 extern int wimlib_get_boot_idx(const WIMStruct *wim);
619
620 /**
621  * Gets the compression type used in the WIM.
622  *
623  * @param wim
624  *      Pointer to the ::WIMStruct for a WIM file
625  * 
626  * @return
627  *      ::WIM_COMPRESSION_TYPE_NONE, ::WIM_COMPRESSION_TYPE_LZX, or
628  *      ::WIM_COMPRESSION_TYPE_XPRESS.
629  */
630 extern int wimlib_get_compression_type(const WIMStruct *wim);
631
632 /**
633  * Converts a compression type enumeration value into a string.
634  *
635  * @param ctype
636  *      ::WIM_COMPRESSION_TYPE_NONE, ::WIM_COMPRESSION_TYPE_LZX,
637  *      ::WIM_COMPRESSION_TYPE_XPRESS, or another value.
638  *
639  * @return
640  *      A statically allocated string: "None", "LZX", "XPRESS", or "Invalid",
641  *      respectively.
642  */
643 extern const char *wimlib_get_compression_type_string(int ctype);
644
645 /**
646  * Converts an error code into a string describing it.
647  *
648  * @param code
649  *      The error code returned by one of wimlib's functions.
650  *
651  * @return
652  *      Pointer to a statically allocated string describing the error code,
653  *      or @c NULL if the error code is not valid.
654  */
655 extern const char *wimlib_get_error_string(enum wimlib_error_code code);
656
657 /**
658  * Returns the description of the specified image.
659  *
660  * @param wim
661  *      Pointer to the ::WIMStruct for a WIM file.
662  * @param image
663  *      The number of the image, numbered starting at 1.
664  *
665  * @return
666  *      The description of the image, or @c NULL if there is no such image, or @c NULL
667  *      if the specified image has no description.
668  */
669 extern const char *wimlib_get_image_description(const WIMStruct *wim, int image);
670
671 /**
672  * Returns the name of the specified image.
673  *
674  * @param wim
675  *      Pointer to the ::WIMStruct for a WIM file.
676  * @param image
677  *      The number of the image, numbered starting at 1.
678  *
679  * @return
680  *      The name of the image, or @c NULL if there is no such image.
681  */
682 extern const char *wimlib_get_image_name(const WIMStruct *wim, int image);
683
684
685 /**
686  * Gets the number of images contained in the WIM.
687  *
688  * @param wim
689  *      Pointer to the ::WIMStruct for a WIM file.
690  * 
691  * @return
692  *      The number of images contained in the WIM file.
693  */
694 extern int wimlib_get_num_images(const WIMStruct *wim);
695
696 /**
697  * Gets the part number of the wim (in a split WIM).
698  *
699  * @param wim
700  *      Pointer to the ::WIMStruct for a WIM file.
701  * @param total_parts_ret
702  *      If non-@c NULL, the total number of parts in the split WIM (1 for
703  *      non-split WIMs) is written to this location.
704  *
705  * @return 
706  *      The part number of the WIM (1 for non-split WIMs)
707  */
708 extern int wimlib_get_part_number(const WIMStruct *wim, int *total_parts_ret);
709
710 /**
711  * Returns true if the WIM has an integrity table.
712  *
713  * @param wim
714  *      Pointer to the ::WIMStruct for a WIM file.
715  * @return
716  *      @c true if the WIM has an integrity table; false otherwise.
717  */
718 extern bool wimlib_has_integrity_table(const WIMStruct *wim);
719
720
721 /**
722  * Determines if an image name is already used by some image in the WIM.
723  *
724  * @param wim
725  *      Pointer to the ::WIMStruct for a WIM file.
726  * @param name
727  *      The name to check.
728  *
729  * @return
730  *      @c true if there is already an image in @a wim named @a name; @c
731  *      false if there is no image named @a name in @a wim.
732  */
733 extern bool wimlib_image_name_in_use(const WIMStruct *wim, const char *name);
734
735 /**
736  * Joins a set of split WIMs into a one-part WIM.
737  *
738  * @param swms
739  *      An array of strings that give the filenames of all parts of the split
740  *      WIM.
741  * @param num_swms
742  *      Number of filenames in @a swms.
743  * @param output_path
744  *      The path to write the one-part WIM to.
745  * @param flags
746  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY to check the split WIMs' integrity
747  *      tables (if present) when opening them, and include an integrity table in
748  *      the output WIM.
749  *
750  * @return 0 on success; nonzero on error.  This function may return any value
751  * returned by wimlib_open_wim() except ::WIMLIB_ERR_SPLIT_UNSUPPORTED, as well
752  * as the following error codes:
753  *
754  * @retval ::WIMLIB_ERR_SPLIT_INVALID
755  *      The split WIMs do not form a valid WIM because they do not include all
756  *      the parts of the original WIM, there are duplicate parts, or not all the
757  *      parts have the same GUID and compression type.
758  * @retval ::WIMLIB_ERR_WRITE
759  *      An error occurred when trying to write data to the new WIM at @a output_path.
760  *
761  * Note that this function merely copies the resources, so it will not check to
762  * see if the resources, including the metadata resource, are valid or not.
763  */
764 extern int wimlib_join(const char **swms, int num_swms,
765                        const char *output_path, int flags);
766
767 /**
768  * Mounts an image in a WIM file on a directory read-only or read-write.
769  *
770  * A daemon will be forked to service the filesystem.
771  *
772  * If the mount is read-write, modifications to the WIM are staged in a staging
773  * directory.
774  *
775  * wimlib_mount() currently cannot be used with multiple ::WIMStruct's without
776  * intervening wimlib_unmount()s.  If there was a way to have libfuse pass a
777  * pointer to user data to each FUSE callback, then this would be possible, but
778  * there doesn't seem to be a way to do this currently.
779  *
780  * @param wim
781  *      Pointer to the ::WIMStruct for the WIM file to be mounted.
782  * @param image
783  *      The number of the image to mount, numbered from 1.  It must be an
784  *      existing, single image.
785  * @param dir
786  *      The path to an existing directory to mount the image on.
787  * @param flags
788  *      Bitwise OR of the flags ::WIMLIB_MOUNT_FLAG_READWRITE or
789  *      ::WIMLIB_MOUNT_FLAG_DEBUG.  If ::WIMLIB_MOUNT_FLAG_READWRITE is not
790  *      given, the WIM is mounted read-only.
791  *
792  * @return 0 on success; nonzero on error.
793  * @retval ::WIMLIB_ERR_DECOMPRESSION
794  *      Could not decompress the metadata resource for @a image in @a wim.
795  * @retval ::WIMLIB_ERR_FUSE
796  *      A non-zero status was returned by @c fuse_main().
797  * @retval ::WIMLIB_ERR_INVALID_DENTRY 
798  *      A directory entry in the metadata resource for @a image in @a wim is
799  *      invalid.
800  * @retval ::WIMLIB_ERR_INVALID_IMAGE
801  *      @a image does not specify an existing, single image in @a wim.
802  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
803  *      The metadata resource for @a image in @a wim is invalid.        
804  * @retval ::WIMLIB_ERR_MKDIR
805  *      ::WIMLIB_MOUNT_FLAG_READWRITE was specified in @a flags, but the staging
806  *      directory could not be created.
807  * @retval ::WIMLIB_ERR_NOMEM
808  *      Failed to allocate needed memory.
809  * @retval ::WIMLIB_ERR_NOTDIR
810  *      Could not determine the current working directory.
811  * @retval ::WIMLIB_ERR_READ
812  *      An unexpected end-of-file or read error occurred when trying to read
813  *      data from the WIM file associated with @a wim.
814  *
815  */
816 extern int wimlib_mount(WIMStruct *wim, int image, const char *dir, int flags);
817
818 /**
819  * Opens a WIM file and creates a ::WIMStruct for it.
820  *
821  * @param wim_file 
822  *      The path to the WIM file to open.
823  * @param flags
824  *      Bitwise OR of ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY and/or
825  *      ::WIMLIB_OPEN_FLAG_SHOW_PROGRESS.
826  *      If ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY is given, the integrity table
827  *      of the WIM, if it exists, is checked, and the function will fail with an
828  *      ::WIMLIB_ERR_INTEGRITY status if any of the computed SHA1 message
829  *      digests of the WIM do not exactly match the corresponding message
830  *      digests given in the integrity table.
831  *      If ::WIMLIB_OPEN_FLAG_SHOW_PROGRESS is given, progress information will
832  *      be shown if the integrity of the WIM is checked.
833  *      If ::WIMLIB_OPEN_FLAG_SPLIT_OK is given, no error will be issued if the
834  *      WIM is part of a split WIM.  However, wimlib does not fully support
835  *      split WIMs, so not all functions will work correctly after opening a
836  *      split WIM.  For example, you cannot use wimlib_mount() or
837  *      wimlib_extract_image() on a split WIM.
838  *
839  * @param wim_ret
840  *      On success, a pointer to an opaque ::WIMStruct for the opened WIM file
841  *      is written to the memory location pointed to by this parameter.  The
842  *      ::WIMStruct must be freed using using wimlib_free() when finished with
843  *      it.
844  *
845  * @return 0 on success; nonzero on error.
846  * @retval ::WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE
847  *      The lookup table of @a wim_file is compressed.  Support for this can be
848  *      added to wimlib if needed, but it appears to be the case that the lookup
849  *      table is never compressed.
850  * @retval ::WIMLIB_ERR_IMAGE_COUNT
851  *      The WIM is not the non-first part of a split WIM, and the number of
852  *      metadata resources found in the WIM did not match the image count given
853  *      in the WIM header, or the number of &lt;IMAGE&gt; elements in the XML
854  *      data for the WIM did not match the image count given in the WIM header.
855  * @retval ::WIMLIB_ERR_INTEGRITY
856  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY was specified in @a flags and @a
857  *      wim_file contains an integrity table, but the SHA1 message digest for a
858  *      chunk of the WIM does not match the corresponding message digest given
859  *      in the integrity table.
860  * @retval ::WIMLIB_ERR_INVALID_CHUNK_SIZE
861  *      Resources in @a wim_file are compressed, but the chunk size is not 32768.
862  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
863  *      The header of @a wim_file says that resources in the WIM are compressed,
864  *      but the header flag indicating LZX or XPRESS compression is not set.
865  * @retval ::WIMLIB_ERR_INVALID_HEADER_SIZE
866  *      The length field of the WIM header is not 208.
867  * @retval ::WIMLIB_ERR_INVALID_INTEGRITY_TABLE
868  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY was specified in @a flags and @a
869  *      wim_file contains an integrity table, but the integrity table is
870  *      invalid.
871  * @retval ::WIMLIB_ERR_NOMEM
872  *      Failed to allocated needed memory.
873  * @retval ::WIMLIB_ERR_NOT_A_WIM_FILE
874  *      @a wim_file does not begin with the expected magic characters.
875  * @retval ::WIMLIB_ERR_OPEN
876  *      Failed to open the file @a wim_file for reading.
877  * @retval ::WIMLIB_ERR_READ
878  *      An unexpected end-of-file or read error occurred when trying to read
879  *      data from @a wim_file.
880  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
881  *      @a wim_file is a split WIM, but ::WIMLIB_OPEN_FLAG_SPLIT_OK was not
882  *      givin in @a flags.
883  * @retval ::WIMLIB_ERR_UNKNOWN_VERSION
884  *      A number other than 0x10d00 is written in the version field of the WIM
885  *      header of @a wim_file.
886  * @retval ::WIMLIB_ERR_XML
887  *      The XML data for @a wim_file is invalid.
888  */
889 extern int wimlib_open_wim(const char *wim_file, int flags, 
890                            WIMStruct **wim_ret);
891
892 /**
893  * Overwrites the file that the WIM was originally read from, with changes made.
894  *
895  * The new WIM is written to a temporary file and then renamed to the original
896  * file after it is has been completely written.  The temporary file currently
897  * is made in the same directory as the original WIM file.
898  *
899  * Note that it is not possible for this function to delete the original file
900  * before having written the new file because it is very likely that file
901  * resources in the new WIM file need to be retrieved from the old WIM file.
902  *
903  * After this function returns, @a wim must be freed using wimlib_free().  Any
904  * further actions on @a wim before doing this are undefined.
905  *
906  * @param wim
907  *      Pointer to the ::WIMStruct for the WIM file to write.  There may have
908  *      been in-memory changes made to it, which are then reflected in the
909  *      output file.
910  * @param flags 
911  *      Bitwise OR of ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY and/or
912  *      ::WIMLIB_WRITE_FLAG_SHOW_PROGRESS.
913  *
914  * @return 0 on success; nonzero on error.  This function may return any value
915  * returned by wimlib_write() as well as the following error codes:
916  * @retval ::WIMLIB_ERR_NO_FILENAME
917  *      @a wim corresponds to a WIM created with wimlib_create_new_wim() rather
918  *      than a WIM read with wimlib_open_wim().
919  * @retval ::WIMLIB_ERR_RENAME
920  *      The temporary file that the WIM was written to could not be renamed to
921  *      the original filename of @a wim.
922  */
923 extern int wimlib_overwrite(WIMStruct *wim, int flags);
924
925 /**
926  * Updates the header and XML data of the WIM file, without the need to write
927  * out the entire WIM to a temporary file as in wimlib_write().
928  *
929  * This function must only be used if no files, directories, or images have been
930  * added, removed, or changed in the WIM.  It must be used when only the boot
931  * index or the name or description of image(s) has been changed.
932  *
933  * After this function returns, @a wim must be freed using wimlib_free().  Any
934  * further actions on @a wim before doing this are undefined.
935  *
936  * @param wim
937  *      Pointer to the ::WIMStruct for the WIM file to overwrite.
938  * @param flags 
939  *      Bitwise OR of ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY and/or
940  *      ::WIMLIB_WRITE_FLAG_SHOW_PROGRESS.
941  *
942  * @return 0 on success; nonzero on error.
943  *
944  * @retval ::WIMLIB_ERR_NO_FILENAME
945  *      @a wim corresponds to a WIM created with wimlib_create_new_wim() rather
946  *      than a WIM read with wimlib_open_wim().
947  * @retval ::WIMLIB_ERR_NOMEM
948  *      Failed to allocate needed memory.
949  * @retval ::WIMLIB_ERR_OPEN
950  *      The WIM file associated with @a wim could not be re-opened read-write.
951  * @retval ::WIMLIB_ERR_READ
952  *      ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY was specified in @a flags, but data
953  *      from the WIM file associated with @a wim could not be read to compute
954  *      the SHA1 message digests, or the old integrity table (if it existed)
955  *      could not be read.
956  * @retval ::WIMLIB_ERR_WRITE
957  *      Failed to write the WIM header, the XML data, or the integrity table to
958  *      the WIM file associated with @a wim.
959  */
960 extern int wimlib_overwrite_xml_and_header(WIMStruct *wim, int flags);
961
962 /**
963  * Prints information about one image, or all images, contained in a WIM.
964  *
965  * @param wim
966  *      Pointer to the ::WIMStruct for a WIM file.
967  * @param image 
968  *      The image about which to print information.  Can be the number of an
969  *      image, or ::WIM_ALL_IMAGES to print information about all images in the
970  *      WIM.
971  * 
972  * @return This function has no return value.
973  */
974 extern void wimlib_print_available_images(const WIMStruct *wim, int image);
975
976 /**
977  * Prints the full paths to all files contained in an image, or all images, in a
978  * WIM file.
979  *
980  * @param wim
981  *      Pointer to the ::WIMStruct for a WIM file.
982  * @param image 
983  *      Which image to print files for.  Can be the number of an image, or
984  *      ::WIM_ALL_IMAGES to print the files contained in all images.  
985  *
986  * @return 0 on success; nonzero on error.
987  * @retval ::WIMLIB_ERR_DECOMPRESSION
988  *      The metadata resource for one of the specified images could not be
989  *      decompressed.
990  * @retval ::WIMLIB_ERR_INVALID_DENTRY
991  *      A directory entry in the metadata resource for one of the specified
992  *      images is invaled.
993  * @retval ::WIMLIB_ERR_INVALID_IMAGE
994  *      @a image does not specify a valid image in @a wim, and is not
995  *      ::WIM_ALL_IMAGES.
996  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
997  *      The metadata resource for one of the specified images is invalid.
998  * @retval ::WIMLIB_ERR_NOMEM
999  *      Failed to allocate needed memory.
1000  * @retval ::WIMLIB_ERR_READ
1001  *      An unexpected read error or end-of-file occurred when reading the
1002  *      metadata resource for one of the specified images.
1003  */
1004 extern int wimlib_print_files(WIMStruct *wim, int image);
1005
1006 /**
1007  * Prints detailed information from the header of a WIM file.
1008  *
1009  * @param wim
1010  *      Pointer to the ::WIMStruct for a WIM file.
1011  *
1012  * @return This function has no return value.
1013  *
1014  */
1015 extern void wimlib_print_header(const WIMStruct *wim);
1016
1017 /** 
1018  * Prints the lookup table of a WIM file.  The lookup table maps SHA1 message
1019  * digests, as found in the directory entry tree in the WIM file, to file
1020  * resources in the WIM file.  This table includes one entry for each unique
1021  * file in the WIM, so it can be quite long.  There is only one lookup table per
1022  * WIM.
1023  *
1024  * @param wim
1025  *      Pointer to the ::WIMStruct for a WIM file.
1026  *
1027  * @return This function has no return value.
1028  */
1029 extern void wimlib_print_lookup_table(WIMStruct *wim);
1030
1031 /**
1032  * Prints the metadata of the specified image in a WIM file.  The metadata
1033  * consists of the security data as well as the directory entry tree, and each
1034  * image has its own metadata.  
1035  *
1036  * @param wim
1037  *      Pointer to the ::WIMStruct for a WIM file.
1038  * @param image 
1039  *      Which image to print the metadata for.  Can be the number of an image,
1040  *      or ::WIM_ALL_IMAGES to print the metadata for all images in the WIM.
1041  *
1042  * @return 0 on success; nonzero on error.
1043  * @retval ::WIMLIB_ERR_DECOMPRESSION
1044  *      The metadata resource for one of the specified images could not be
1045  *      decompressed.
1046  * @retval ::WIMLIB_ERR_INVALID_DENTRY
1047  *      A directory entry in the metadata resource for one of the specified
1048  *      images is invaled.
1049  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1050  *      @a image does not specify a valid image in @a wim, and is not
1051  *      ::WIM_ALL_IMAGES.
1052  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1053  *      The metadata resource for one of the specified images is invalid.
1054  * @retval ::WIMLIB_ERR_NOMEM
1055  *      Failed to allocate needed memory.
1056  * @retval ::WIMLIB_ERR_READ
1057  *      An unexpected read error or end-of-file occurred when reading the
1058  *      metadata resource for one of the specified images.
1059  */
1060 extern int wimlib_print_metadata(WIMStruct *wim, int image);
1061
1062 /**
1063  * Prints some basic information about a WIM file.  All information printed by
1064  * this function is also printed by wimlib_print_header(), but
1065  * wimlib_print_wim_information() prints some of this information more concisely
1066  * and in a more readable form.
1067  *
1068  * @param wim
1069  *      Pointer to the ::WIMStruct for a WIM file.
1070  *
1071  * @return This function has no return value.  
1072  */
1073 extern void wimlib_print_wim_information(const WIMStruct *wim);
1074
1075 /**
1076  * Translates a string specifying the name or number of an image in the WIM into
1077  * the number of the image.  The images are numbered starting at 1.
1078  *
1079  * @param wim
1080  *      Pointer to the ::WIMStruct for a WIM file.
1081  * @param image_name_or_num  
1082  *      A string specifying which image.  If it begins with a number, it is
1083  *      taken to be a string specifying the image number.  Otherwise, it is
1084  *      taken to be the name of an image, as specified in the XML data for the
1085  *      WIM file.  It also may be the keyword "all", which will resolve to
1086  *      ::WIM_ALL_IMAGES.
1087  *
1088  * @return 
1089  *      If the string resolved to a single existing image, the number of that
1090  *      image, counting starting at 1, is returned.  If the keyword "all" was
1091  *      specified, ::WIM_ALL_IMAGES is returned.  Otherwise, ::WIM_NO_IMAGE is
1092  *      returned.
1093  */
1094 extern int wimlib_resolve_image(WIMStruct *wim, const char *image_name_or_num);
1095
1096 /**
1097  * Sets which image in the WIM is marked as bootable.
1098  *
1099  * @param wim
1100  *      Pointer to the ::WIMStruct for a WIM file.
1101  * @param boot_idx
1102  *      The number of the image to mark as bootable, or 0 to mark no image as
1103  *      bootable.
1104  * @return 0 on success; nonzero on error.
1105  * @retval ::WIMLIB_ERR_INVALID_IMAGE 
1106  *      @a boot_idx does not specify an existing image in @a wim, and it was not
1107  *      0.
1108  */
1109 extern int wimlib_set_boot_idx(WIMStruct *wim, int boot_idx);
1110
1111 /**
1112  * Changes the description of an image in the WIM.
1113  *
1114  * @param wim
1115  *      Pointer to the ::WIMStruct for a WIM file.
1116  * @param image
1117  *      The number of the image for which to change the description.
1118  * @param description
1119  *      The new description to give the image.  It may be @c NULL, which
1120  *      indicates that the image is to be given no description.
1121  *
1122  * @return 0 on success; nonzero on error.
1123  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1124  *      @a image does not specify a single existing image in @a wim.
1125  * @retval ::WIMLIB_ERR_NOMEM
1126  *      Failed to allocate the memory needed to duplicate the @a description
1127  *      string.
1128  */
1129 extern int wimlib_set_image_descripton(WIMStruct *wim, int image, 
1130                                        const char *description);
1131
1132 /**
1133  * Changes the name of an image in the WIM.
1134  *
1135  * @param wim
1136  *      Pointer to the ::WIMStruct for a WIM file.
1137  * @param image
1138  *      The number of the image for which to change the name.
1139  * @param name
1140  *      The new name to give the image.  It must not be @c NULL.
1141  *
1142  * @return 0 on success; nonzero on error.
1143  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
1144  *      There is already an image named @a name in @a wim.
1145  * @retval ::WIMLIB_ERR_INVALID_PARAM
1146  *      @a name was @c NULL or the empty string.
1147  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1148  *      @a image does not specify a single existing image in @a wim.
1149  * @retval ::WIMLIB_ERR_NOMEM
1150  *      Failed to allocate the memory needed to duplicate the @a name string.
1151  */
1152 extern int wimlib_set_image_name(WIMStruct *wim, int image, const char *name);
1153
1154 /**
1155  * Sets the link type to use when extracting files from a WIM.  This applies
1156  * when extracting one image as well as when extracting all images.  Cross-image
1157  * links may save a lot of space because it is common for files to be referenced
1158  * multiple times in WIM files.  By default, the link type used for extraction
1159  * is ::WIM_LINK_TYPE_NONE, meaning that links are not created.
1160  *
1161  * @param wim
1162  *      Pointer to the ::WIMStruct for a WIM file
1163  * @param link_type
1164  *      ::WIM_LINK_TYPE_NONE, ::WIM_LINK_TYPE_SYMBOLIC, or ::WIM_LINK_TYPE_HARD.
1165  *
1166  * @return 0 on success; nonzero on error.
1167  * @retval ::WIMLIB_ERR_INVALID_PARAM
1168  *      @a link_type was not ::WIM_LINK_TYPE_NONE, ::WIM_LINK_TYPE_SYMBOLIC,
1169  *      or ::WIM_LINK_TYPE_HARD.
1170  */
1171 extern int wimlib_set_link_type(WIMStruct *wim, int link_type);
1172
1173 /**
1174  * Set the functions that wimlib uses to allocate and free memory.
1175  *
1176  * These settings are global and not per-WIM.
1177  *
1178  * The default is to use the default @c malloc() and @c free() from the C
1179  * library.
1180  *
1181  * @param malloc_func
1182  *      A function equivalent to @c malloc() that wimlib will use to allocate
1183  *      memory.  If @c NULL, the allocator function is set back to the default
1184  *      @c malloc() from the C library.
1185  * @param free_func
1186  *      A function equivalent to @c free() that wimlib will use to free memory.
1187  *      If @c NULL, the free function is set back to the default @c free() from
1188  *      the C library.
1189  * @param realloc_func
1190  *      A function equivalent to @c realloc() that wimlib will use to reallocate
1191  *      memory.  If @c NULL, the free function is set back to the default @c
1192  *      realloc() from the C library.
1193  * @return 0 on success; nonzero on error.
1194  * @retval ::WIMLIB_ERR_UNSUPPORTED
1195  *      wimlib was compiled with the @c --without-custom-memory-allocator flag,
1196  *      so custom memory allocators are unsupported.
1197  */
1198 int wimlib_set_memory_allocator(void *(*malloc_func)(size_t),
1199                                  void (*free_func)(void *),
1200                                  void *(*realloc_func)(void *, size_t));
1201
1202 /**
1203  * Sets whether wimlib is to print error messages to @c stderr when a function
1204  * fails or not.  These error messages may provide information that cannot be
1205  * determined only from the error code that is returned.
1206  *
1207  * This setting is global and not per-WIM.
1208  *
1209  * By default, error messages are not printed.
1210  *
1211  * @param show_messages
1212  *      @c true if error messages are to be printed; @c false if error messages
1213  *      are not to be printed.
1214  *
1215  * @return 0 on success; nonzero on error.
1216  * @retval ::WIMLIB_ERR_UNSUPPORTED
1217  *      @a show_messages was @c true, but wimlib was compiled with the @c
1218  *      --without-error-messages option.   Therefore, error messages cannot be
1219  *      shown.
1220  */
1221 extern int wimlib_set_print_errors(bool show_messages);
1222
1223 /**
1224  * Splits a WIM into multiple parts.
1225  *
1226  * @param wimfile
1227  *      Name of the WIM file to split.  It must be a standalone, one-part WIM.
1228  * @param swm_name
1229  *      Name of the SWM file to create.  This will be the name of the first
1230  *      part.  The other parts will have the same name with 2, 3, 4, ..., etc.
1231  *      appended.
1232  * @param part_size
1233  *      The maximum size per part.  It is not guaranteed that this will really
1234  *      be the maximum size per part, because some file resources in the WIM may
1235  *      be larger than this size, and the WIM file format provides no way to
1236  *      split up file resources among multiple WIMs.
1237  * @param flags
1238  *      Bitwise OR of ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY and/or
1239  *      ::WIMLIB_OPEN_FLAG_SHOW_PROGRESS.
1240  *
1241  * @return 0 on success; nonzero on error.  This function may return any value
1242  * returned by wimlib_open_wim() as well as the following error codes:
1243  *
1244  * @retval ::WIMLIB_ERR_WRITE
1245  *      An error occurred when trying to write data to one of the split WIMs.
1246  *
1247  */
1248 extern int wimlib_split(const char *wimfile, const char *swm_name, 
1249                         size_t part_size, int flags);
1250
1251 /**
1252  * Unmounts a WIM image that was mounted using wimlib_mount().
1253  *
1254  * Blocks until it is known whether the mount succeeded or failed.
1255  *
1256  * To perform this operation, the process calling wimlib_unmount() communicates
1257  * with the process that had called wimlib_mount().
1258  *
1259  * There is currently a design problem with this function because it is hard to
1260  * know whether the filesystem daemon is still working or whether it has
1261  * crashed, has been killed, or has reached an infinite loop. However, ideally
1262  * there should be no infinite loops or crashes in the code, so this wouldn't be
1263  * much of a problem.  Currently, a timeout of 600 seconds (so long because WIMs
1264  * can be very large) is implemented so that this function will not wait forever
1265  * before returning failure.  
1266  *
1267  * @param dir
1268  *      The directory that the WIM image was mounted on.
1269  * @param flags
1270  *      Bitwise OR of the flags ::WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY or
1271  *      ::WIMLIB_UNMOUNT_FLAG_COMMIT.  Neither of these flags affect read-only
1272  *      mounts.
1273  *
1274  * @return 0 on success; nonzero on error.
1275  * @retval ::WIMLIB_ERR_DELETE_STAGING_DIR
1276  *      The filesystem daemon was unable to remove the staging directory and the
1277  *      temporary files that it contains.
1278  * @retval ::WIMLIB_ERR_FORK
1279  *      Could not @c fork() the process.
1280  * @retval ::WIMLIB_ERR_FUSERMOUNT
1281  *      The @b fusermount program could not be executed or exited with a failure
1282  *      status.
1283  * @retval ::WIMLIB_ERR_MQUEUE
1284  *      Could not open a POSIX message queue to communicate with the filesystem
1285  *      daemon servicing the mounted filesystem, could not send a message
1286  *      through the queue, or could not receive a message through the queue.
1287  * @retval ::WIMLIB_ERR_NOMEM
1288  *      Failed to allocate needed memory.
1289  * @retval ::WIMLIB_ERR_OPEN
1290  *      The filesystem daemon could not open a temporary file for writing the
1291  *      new WIM.
1292  * @retval ::WIMLIB_ERR_TIMEOUT
1293  *      600 seconds elapsed while waiting for the filesystem daemon to notify
1294  *      the process of its exit status, so the WIM file probably was not written
1295  *      successfully.
1296  * @retval ::WIMLIB_ERR_READ
1297  *      A read error occurred when the filesystem daemon tried to a file from
1298  *      the staging directory
1299  * @retval ::WIMLIB_ERR_RENAME
1300  *      The filesystem daemon failed to rename the newly written WIM file to the
1301  *      original WIM file.
1302  * @retval ::WIMLIB_ERR_WRITE
1303  *      A write error occurred when the filesystem daemon was writing to the new
1304  *      WIM file, or the filesystem daemon was unable to flush changes that had
1305  *      been made to files in the staging directory.
1306  */
1307 extern int wimlib_unmount(const char *dir, int flags);
1308
1309 /**
1310  * Writes the WIM to a file.
1311  *
1312  * @param wim
1313  *      Pointer to the ::WIMStruct for a WIM file.  There may have been
1314  *      in-memory changes made to it, which are then reflected in the output
1315  *      file.
1316  * @param path
1317  *      The path to the file to write the WIM to.
1318  * @param image
1319  *      The image inside the WIM to write.  Use ::WIM_ALL_IMAGES to include all
1320  *      images.
1321  * @param flags 
1322  *      Bitwise OR of ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY and/or
1323  *      ::WIMLIB_WRITE_FLAG_SHOW_PROGRESS.  If
1324  *      ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY is given, an integrity table is
1325  *      included in the WIM being written.  If ::WIMLIB_WRITE_FLAG_SHOW_PROGRESS
1326  *      is given, the progress of the calculation of the integrity table is
1327  *      shown.
1328  *
1329  * @return 0 on success; nonzero on error.
1330  * @retval ::WIMLIB_ERR_DECOMPRESSION
1331  *      Failed to decompress a metadata or file resource in @a wim.
1332  * @retval ::WIMLIB_ERR_INVALID_DENTRY 
1333  *      A directory entry in the metadata resource for @a image in @a wim is
1334  *      invalid.
1335  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1336  *      @a image does not specify a single existing image in @a wim, and is not
1337  *      ::WIM_ALL_IMAGES.
1338  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1339  *      The metadata resource for @a image in @a wim is invalid.        
1340  * @retval ::WIMLIB_ERR_NOMEM
1341  *      Failed to allocate needed memory.
1342  * @retval ::WIMLIB_ERR_OPEN
1343  *      Failed to open @a path for writing, or some file resources in @a
1344  *      wim refer to files in the outside filesystem, and one of these files
1345  *      could not be opened for reading.
1346  * @retval ::WIMLIB_ERR_READ
1347  *      An error occurred when trying to read data from the WIM file associated
1348  *      with @a wim, or some file resources in @a wim refer to files in the
1349  *      outside filesystem, and a read error occurred when reading one of these
1350  *      files.
1351  * @retval ::WIMLIB_ERR_WRITE
1352  *      An error occurred when trying to write data to the new WIM file at @a
1353  *      path.
1354  */
1355 extern int wimlib_write(WIMStruct *wim, const char *path, int image, int flags);
1356
1357
1358
1359 #endif /* _WIMLIB_H */
1360