]> wimlib.net Git - wimlib/blob - src/wimlib.h
Image capture configuration
[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 compression type of a WIM file.
206  */
207
208 enum wim_compression_type {
209         /** An invalid compression type. */
210         WIM_COMPRESSION_TYPE_INVALID = -1,
211
212         /** The WIM does not include any compressed resources. */
213         WIM_COMPRESSION_TYPE_NONE = 0,
214
215         /** Compressed resources in the WIM use LZX compression. */
216         WIM_COMPRESSION_TYPE_LZX = 1,
217
218         /** Compressed resources in the WIM use XPRESS compression. */
219         WIM_COMPRESSION_TYPE_XPRESS = 2,
220 };
221
222 /** Mount the WIM read-write. */
223 #define WIMLIB_MOUNT_FLAG_READWRITE             0x00000001
224
225 /** For debugging only. (This passes the @c -d flag to @c fuse_main()).*/
226 #define WIMLIB_MOUNT_FLAG_DEBUG                 0x00000002
227
228 /** Do not allow accessing alternate data streams. */
229 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE         0x00000010
230
231 /** Access alternate data streams through extended file attributes.  This is the
232  * default mode. */
233 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR        0x00000020
234
235 /** Access alternate data streams by specifying the file name, a colon, then the
236  * alternate file stream name. */
237 #define WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS      0x00000040
238
239 /** Include an integrity table in the new WIM being written during the unmount. 
240  * Ignored for read-only mounts. */
241 #define WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY     0x00000001
242
243 /** Unless this flag is given, changes to a mounted WIM are discarded.  Ignored
244  * for read-only mounts. */
245 #define WIMLIB_UNMOUNT_FLAG_COMMIT              0x00000002
246
247 /** Include an integrity table in the new WIM file. */
248 #define WIMLIB_WRITE_FLAG_CHECK_INTEGRITY       0x00000001
249
250 /** Print progress information when writing the integrity table. */
251 #define WIMLIB_WRITE_FLAG_SHOW_PROGRESS         0x00000002
252
253 /** Print file paths as we write then */
254 #define WIMLIB_WRITE_FLAG_VERBOSE               0x00000004
255
256 /** Mark the image being added as the bootable image of the WIM. */
257 #define WIMLIB_ADD_IMAGE_FLAG_BOOT              0x00000001
258
259 /** Print the name of each file or directory as it is scanned to be included in
260  * the WIM image. */
261 #define WIMLIB_ADD_IMAGE_FLAG_VERBOSE           0x00000002
262
263 /** Follow symlinks; archive and dump the files they point to. */
264 #define WIMLIB_ADD_IMAGE_FLAG_DEREFERENCE       0x00000004
265
266 /** See documentation for wimlib_export_image(). */
267 #define WIMLIB_EXPORT_FLAG_BOOT                 0x00000001
268
269 /** Verify the integrity of the WIM if an integrity table is present. */
270 #define WIMLIB_OPEN_FLAG_CHECK_INTEGRITY        0x00000001
271
272 /** Print progress information when verifying integrity table. */
273 #define WIMLIB_OPEN_FLAG_SHOW_PROGRESS          0x00000002
274
275 /** If this flag is not given, an error is issued if the WIM is part of a split
276  * WIM.  */
277 #define WIMLIB_OPEN_FLAG_SPLIT_OK               0x00000004
278
279
280 /** When identical files are extracted from the WIM, always hard link them
281  * together. */
282 #define WIMLIB_EXTRACT_FLAG_HARDLINK            0x00000001
283
284 /** When identical files are extracted from the WIM, always symlink them
285  * together. */
286 #define WIMLIB_EXTRACT_FLAG_SYMLINK             0x00000002
287
288 /** Print the name of each file as it is extracted from the WIM image. */
289 #define WIMLIB_EXTRACT_FLAG_VERBOSE             0x00000008
290
291 /**
292  * Possible values of the error code returned by many functions in wimlib.
293  *
294  * See the documentation for each wimlib function to see specifically what error
295  * codes can be returned by a given function, and what they mean.
296  */
297 enum wimlib_error_code {
298         WIMLIB_ERR_SUCCESS = 0,
299         WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE,
300         WIMLIB_ERR_DECOMPRESSION,
301         WIMLIB_ERR_DELETE_STAGING_DIR,
302         WIMLIB_ERR_FORK,
303         WIMLIB_ERR_FUSE,
304         WIMLIB_ERR_FUSERMOUNT,
305         WIMLIB_ERR_IMAGE_COUNT,
306         WIMLIB_ERR_IMAGE_NAME_COLLISION,
307         WIMLIB_ERR_INTEGRITY,
308         WIMLIB_ERR_INVALID_CAPTURE_CONFIG,
309         WIMLIB_ERR_INVALID_CHUNK_SIZE,
310         WIMLIB_ERR_INVALID_COMPRESSION_TYPE,
311         WIMLIB_ERR_INVALID_DENTRY,
312         WIMLIB_ERR_INVALID_HEADER_SIZE,
313         WIMLIB_ERR_INVALID_IMAGE,
314         WIMLIB_ERR_INVALID_INTEGRITY_TABLE,
315         WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY,
316         WIMLIB_ERR_INVALID_PARAM,
317         WIMLIB_ERR_INVALID_RESOURCE_HASH,
318         WIMLIB_ERR_INVALID_RESOURCE_SIZE,
319         WIMLIB_ERR_INVALID_SECURITY_DATA,
320         WIMLIB_ERR_LINK,
321         WIMLIB_ERR_MKDIR,
322         WIMLIB_ERR_MQUEUE,
323         WIMLIB_ERR_NOMEM,
324         WIMLIB_ERR_NOTDIR,
325         WIMLIB_ERR_NOT_A_WIM_FILE,
326         WIMLIB_ERR_NO_FILENAME,
327         WIMLIB_ERR_NTFS_3G,
328         WIMLIB_ERR_OPEN,
329         WIMLIB_ERR_OPENDIR,
330         WIMLIB_ERR_READLINK,
331         WIMLIB_ERR_READ,
332         WIMLIB_ERR_RENAME,
333         WIMLIB_ERR_SPECIAL_FILE,
334         WIMLIB_ERR_SPLIT_INVALID,
335         WIMLIB_ERR_SPLIT_UNSUPPORTED,
336         WIMLIB_ERR_STAT,
337         WIMLIB_ERR_TIMEOUT,
338         WIMLIB_ERR_UNKNOWN_VERSION,
339         WIMLIB_ERR_UNSUPPORTED,
340         WIMLIB_ERR_WRITE,
341         WIMLIB_ERR_XML,
342 };
343
344
345 /** Used to indicate that no WIM image is currently selected. */
346 #define WIM_NO_IMAGE    0
347
348 /** Used to specify all images in the WIM. */
349 #define WIM_ALL_IMAGES  (-1)
350
351
352 /**
353  * Adds an image to a WIM file from a directory tree on disk.
354  *
355  * The directory tree is read immediately for the purpose of constructing a
356  * directory entry tree in-memory.  Also, all files are read to calculate their
357  * SHA1 message digests.  However, because the directory tree may contain a very
358  * large amount of data, the files themselves are not read into memory
359  * permanently, and instead references to their paths saved.  This means that
360  * the directory tree must not be modified, other than by adding entirely new
361  * files or directories, before executing a call to wimlib_write() or
362  * wimlib_overwrite(). Otherwise, wimlib_write() may fail or incorrect files may
363  * be included in the WIM written by wimlib_write().
364  *
365  * @param wim
366  *      Pointer to the ::WIMStruct for a WIM file to which the image will be
367  *      added.
368  * @param dir
369  *      A path to a directory in the outside filesystem.  It will become the
370  *      root directory for the WIM image.
371  * @param name
372  *      The name to give the image.  This must be non-@c NULL.
373  * @param description
374  *      The description to give the image.  This parameter may be left @c
375  *      NULL, in which case no description is given to the image.
376  * @param flags_element
377  *      What to put in the &lt;FLAGS&gt; element for the image's XML data.  This
378  *      parameter may be left @c NULL, in which case no &lt;FLAGS&gt; element is
379  *      given to the image.
380  * @param flags
381  *      If set to ::WIMLIB_ADD_IMAGE_FLAG_BOOT, change the image in @a wim
382  *      marked as bootable to the one being added. Otherwise, leave the boot
383  *      index unchanged.
384  *
385  * @return 0 on success; nonzero on error.  On error, changes to @a wim are
386  * discarded so that it appears to be in the same state as when this function
387  * was called.
388  *
389  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION 
390  *      There is already an image named @a name in @a w.
391  * @retval ::WIMLIB_ERR_INVALID_PARAM 
392  *      @a dir was @c NULL, @a name was @c NULL, or @a name was the empty string.
393  * @retval ::WIMLIB_ERR_NOMEM
394  *      Failed to allocate needed memory.
395  * @retval ::WIMLIB_ERR_NOTDIR
396  *      @a dir is not a directory.
397  * @retval ::WIMLIB_ERR_OPEN
398  *      Failed to open a file or directory in the directory tree rooted at @a
399  *      dir.
400  * @retval ::WIMLIB_ERR_READ
401  *      Failed to read a file in the directory tree rooted at @a dir.
402  * @retval ::WIMLIB_ERR_STAT
403  *      Failed obtain the metadata for a file or directory in the directory tree
404  *      rooted at @a dir.
405  *
406  */
407 extern int wimlib_add_image(WIMStruct *wim, const char *dir, 
408                             const char *name, const char *description, 
409                             const char *flags_element,
410                             const char *config, size_t config_len,
411                             int flags);
412
413 extern int wimlib_add_image_from_ntfs_volume(WIMStruct *w, const char *device,
414                                              const char *name,
415                                              const char *description,
416                                              const char *flags_element,
417                                              const char *config,
418                                              size_t config_len,
419                                              int flags);
420
421 extern int wimlib_apply_image_to_ntfs_volume(WIMStruct *w, int image,
422                                              const char *device, int flags);
423
424 /** 
425  * Creates a WIMStruct for a new WIM file.
426  *
427  * @param ctype 
428  *      The type of compression to be used in the new WIM file.  Must be
429  *      ::WIM_COMPRESSION_TYPE_NONE, ::WIM_COMPRESSION_TYPE_LZX, or
430  *      ::WIM_COMPRESSION_TYPE_XPRESS.
431  * @param wim_ret
432  *      On success, a pointer to an opaque ::WIMStruct for the new WIM file is
433  *      written to the memory location pointed to by this paramater.  The
434  *      ::WIMStruct must be freed using using wimlib_free() when finished with
435  *      it.
436  * @return 0 on success; nonzero on error.
437  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
438  *      @a ctype was not ::WIM_COMPRESSION_TYPE_NONE,
439  *      ::WIM_COMPRESSION_TYPE_LZX, or ::WIM_COMPRESSION_TYPE_XPRESS.
440  * @retval ::WIMLIB_ERR_NOMEM
441  *      Failed to allocate needed memory.
442  */
443 extern int wimlib_create_new_wim(int ctype, WIMStruct **wim_ret);
444
445 /**
446  * Deletes an image, or all images, from a WIM file.
447  *
448  * All file resources referenced by the image(s) being deleted are removed from
449  * the WIM if they are not referenced by any other images in the WIM.
450  *
451  * @param wim
452  *      Pointer to the ::WIMStruct for the WIM file that contains the image(s)
453  *      being deleted.
454  * @param image
455  *      The number of the image to delete, or ::WIM_ALL_IMAGES to delete all
456  *      images.
457  * @return 0 on success; nonzero on error.  On error, @a wim is left in an
458  * indeterminate state and should be freed with wimlib_free().
459  * @retval ::WIMLIB_ERR_DECOMPRESSION
460  *      Could not decompress the metadata resource for @a image.
461  * @retval ::WIMLIB_ERR_INVALID_DENTRY
462  *      A directory entry in the metadata resource for @a image in the WIM is
463  *      invalid.
464  * @retval ::WIMLIB_ERR_INVALID_IMAGE
465  *      @a image does not exist in the WIM and is not ::WIM_ALL_IMAGES.
466  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
467  *      The metadata resource for @a image in the WIM is invalid.       
468  * @retval ::WIMLIB_ERR_NOMEM Failed to allocate needed memory.
469  * @retval ::WIMLIB_ERR_READ
470  *      Could not read the metadata resource for @a image from the WIM.
471  */
472 extern int wimlib_delete_image(WIMStruct *wim, int image);
473
474 /**
475  * Copies an image, or all the images, from a WIM file, into another WIM file.
476  *
477  * @param src_wim
478  *      Pointer to the ::WIMStruct for a WIM file that contains the image(s)
479  *      being exported.
480  * @param src_image
481  *      The image to export from @a src_wim.  Can be the number of an image, or
482  *      ::WIM_ALL_IMAGES to export all images.
483  * @param dest_wim
484  *      Pointer to the ::WIMStruct for a WIM filethat will receive the images being
485  *      exported.
486  * @param dest_name
487  *      The name to give the exported image in the new WIM file.  If left @c NULL,
488  *      the name from @a src_wim is used.  This parameter must be left @c NULL
489  *      if @a src_image is ::WIM_ALL_IMAGES and @a src_wim contains more than one
490  *      image; in that case, the names are all taken from the @a src_wim.
491  * @param dest_description
492  *      The description to give the exported image in the new WIM file.  If left
493  *      @c NULL, the description from the @a src_wim is used.  This parameter must
494  *      be left @c NULL if @a src_image is ::WIM_ALL_IMAGES and @a src_wim contains
495  *      more than one image; in that case, the descriptions are all taken from
496  *      @a src_wim.
497  * @param flags
498  *      ::WIMLIB_EXPORT_FLAG_BOOT if the image being exported is to be made
499  *      bootable, or 0 if which image is marked as bootable in the destination
500  *      WIM is to be left unchanged.  If @a src_image is ::WIM_ALL_IMAGES and
501  *      there are multiple images in @a src_wim, specifying
502  *      ::WIMLIB_EXPORT_FLAG_BOOT is valid only if one of the exported images is
503  *      currently marked as bootable in @a src_wim; if that is the case, then
504  *      that image is marked as bootable in the destination WIM.
505  *
506  * @return 0 on success; nonzero on error.  On error, @dest_wim is left in an
507  * indeterminate state and should be freed with wimlib_free().
508  * @retval ::WIMLIB_ERR_DECOMPRESSION
509  *      Could not decompress the metadata resource for @a src_image
510  *      in @a src_wim
511  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
512  *      One or more of the names being given to an exported image was already in
513  *      use in the destination WIM.
514  * @retval ::WIMLIB_ERR_INVALID_DENTRY 
515  *      A directory entry in the metadata resource for @a src_image in @a
516  *      src_wim is invalid.
517  * @retval ::WIMLIB_ERR_INVALID_IMAGE
518  *      @a src_image does not exist in @a src_wim.
519  * @retval ::WIMLIB_ERR_INVALID_PARAM
520  *      ::WIMLIB_EXPORT_FLAG_BOOT was specified in @a flags, @a src_image was
521  *      ::WIM_ALL_IMAGES, @a src_wim contains multiple images, and no images in
522  *      @a src_wim are marked as bootable; or @a dest_name and/or @a
523  *      dest_description were non-<code>NULL</code>, @a src_image was
524  *      ::WIM_ALL_IMAGES, and @a src_wim contains multiple images.
525  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
526  *      The metadata resource for @a src_image in @a src_wim is invalid.        
527  * @retval ::WIMLIB_ERR_NOMEM 
528  *      Failed to allocate needed memory.
529  * @retval ::WIMLIB_ERR_READ
530  *      Could not read the metadata resource for @a src_image from @a src_wim.
531  */
532 extern int wimlib_export_image(WIMStruct *src_wim, int src_image, 
533                                WIMStruct *dest_wim, const char *dest_name, 
534                                const char *dest_description, int flags);
535
536 /**
537  * Extracts an image, or all images, from a WIM file.
538  *
539  * The output directory must have been previously set with
540  * wimlib_set_output_dir().
541  *
542  * The link type used for extracted files is that specified by a previous call
543  * to wimlib_set_link_type(), or ::WIM_LINK_TYPE_NONE by default.
544  *
545  * @param wim
546  *      Pointer to the ::WIMStruct for a WIM file.
547  * @param image
548  *      The image to extract.  Can be the number of an image, or ::WIM_ALL_IMAGES
549  *      to specify that all images are to be extracted.
550  *
551  * @return 0 on success; nonzero on error.
552  * @retval ::WIMLIB_ERR_DECOMPRESSION
553  *      Could not decompress a resource (file or metadata) for @a image in @a
554  *      wim.
555  * @retval ::WIMLIB_ERR_INVALID_DENTRY 
556  *      A directory entry in the metadata resource for @a image in @a wim is
557  *      invalid.
558  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
559  *      A resource (file or metadata) for @a image in @a wim is invalid.        
560  * @retval ::WIMLIB_ERR_LINK
561  *      Failed to create a symbolic link or a hard link.
562  * @retval ::WIMLIB_ERR_MKDIR
563  *      Failed create a needed directory.
564  * @retval ::WIMLIB_ERR_NOMEM
565  *      Failed to allocate needed memory.
566  * @retval ::WIMLIB_ERR_NOTDIR
567  *      wimlib_set_output_dir() has not been successfully called on @a wim.
568  * @retval ::WIMLIB_ERR_OPEN
569  *      Could not open one of the files being extracted for writing.
570  * @retval ::WIMLIB_ERR_READ
571  *      A unexpected end-of-file or read error occurred when trying to read data
572  *      from the WIM file associated with @a wim.
573  * @retval ::WIMLIB_ERR_WRITE
574  *      Failed to write a file being extracted.
575  */
576 extern int wimlib_extract_image(WIMStruct *wim, int image,
577                                 const char *output_dir, int flags);
578
579 /**
580  * Extracts the XML data for a WIM file to a file stream.  Every WIM file
581  * includes a string of XML that describes the images contained in the WIM.
582  *
583  * @param wim
584  *      Pointer to the ::WIMStruct for a WIM file.
585  * @param fp 
586  *      @c stdout, or a FILE* opened for writing, to extract the data to.  
587  *
588  * @return 0 on success; nonzero on error.
589  * @retval ::WIMLIB_ERR_WRITE
590  *      Failed to completely write the XML data to @a fp.
591  */
592 extern int wimlib_extract_xml_data(WIMStruct *wim, FILE *fp);
593
594 /**
595  * Frees all memory allocated for a WIMStruct and closes all files associated
596  * with it. 
597  *
598  * @param wim
599  *      Pointer to the ::WIMStruct for a WIM file.
600  *
601  * @return This function has no return value.
602  */
603 extern void wimlib_free(WIMStruct *wim);
604
605 /**
606  * Finds which image in a WIM is bootable.
607  *
608  * @param wim
609  *      Pointer to the ::WIMStruct for a WIM file.
610  * 
611  * @return
612  *      0 if no image is marked as bootable, or the number of the image marked
613  *      as bootable (numbered starting at 1).
614  */
615 extern int wimlib_get_boot_idx(const WIMStruct *wim);
616
617 /**
618  * Gets the compression type used in the WIM.
619  *
620  * @param wim
621  *      Pointer to the ::WIMStruct for a WIM file
622  * 
623  * @return
624  *      ::WIM_COMPRESSION_TYPE_NONE, ::WIM_COMPRESSION_TYPE_LZX, or
625  *      ::WIM_COMPRESSION_TYPE_XPRESS.
626  */
627 extern int wimlib_get_compression_type(const WIMStruct *wim);
628
629 /**
630  * Converts a compression type enumeration value into a string.
631  *
632  * @param ctype
633  *      ::WIM_COMPRESSION_TYPE_NONE, ::WIM_COMPRESSION_TYPE_LZX,
634  *      ::WIM_COMPRESSION_TYPE_XPRESS, or another value.
635  *
636  * @return
637  *      A statically allocated string: "None", "LZX", "XPRESS", or "Invalid",
638  *      respectively.
639  */
640 extern const char *wimlib_get_compression_type_string(int ctype);
641
642 /**
643  * Converts an error code into a string describing it.
644  *
645  * @param code
646  *      The error code returned by one of wimlib's functions.
647  *
648  * @return
649  *      Pointer to a statically allocated string describing the error code,
650  *      or @c NULL if the error code is not valid.
651  */
652 extern const char *wimlib_get_error_string(enum wimlib_error_code code);
653
654 /**
655  * Returns the description of the specified image.
656  *
657  * @param wim
658  *      Pointer to the ::WIMStruct for a WIM file.
659  * @param image
660  *      The number of the image, numbered starting at 1.
661  *
662  * @return
663  *      The description of the image, or @c NULL if there is no such image, or @c NULL
664  *      if the specified image has no description.
665  */
666 extern const char *wimlib_get_image_description(const WIMStruct *wim, int image);
667
668 /**
669  * Returns the name of the specified image.
670  *
671  * @param wim
672  *      Pointer to the ::WIMStruct for a WIM file.
673  * @param image
674  *      The number of the image, numbered starting at 1.
675  *
676  * @return
677  *      The name of the image, or @c NULL if there is no such image.
678  */
679 extern const char *wimlib_get_image_name(const WIMStruct *wim, int image);
680
681
682 /**
683  * Gets the number of images contained in the WIM.
684  *
685  * @param wim
686  *      Pointer to the ::WIMStruct for a WIM file.
687  * 
688  * @return
689  *      The number of images contained in the WIM file.
690  */
691 extern int wimlib_get_num_images(const WIMStruct *wim);
692
693 /**
694  * Gets the part number of the wim (in a split WIM).
695  *
696  * @param wim
697  *      Pointer to the ::WIMStruct for a WIM file.
698  * @param total_parts_ret
699  *      If non-@c NULL, the total number of parts in the split WIM (1 for
700  *      non-split WIMs) is written to this location.
701  *
702  * @return 
703  *      The part number of the WIM (1 for non-split WIMs)
704  */
705 extern int wimlib_get_part_number(const WIMStruct *wim, int *total_parts_ret);
706
707 /**
708  * Returns true if the WIM has an integrity table.
709  *
710  * @param wim
711  *      Pointer to the ::WIMStruct for a WIM file.
712  * @return
713  *      @c true if the WIM has an integrity table; false otherwise.
714  */
715 extern bool wimlib_has_integrity_table(const WIMStruct *wim);
716
717
718 /**
719  * Determines if an image name is already used by some image in the WIM.
720  *
721  * @param wim
722  *      Pointer to the ::WIMStruct for a WIM file.
723  * @param name
724  *      The name to check.
725  *
726  * @return
727  *      @c true if there is already an image in @a wim named @a name; @c
728  *      false if there is no image named @a name in @a wim.
729  */
730 extern bool wimlib_image_name_in_use(const WIMStruct *wim, const char *name);
731
732 /**
733  * Joins a set of split WIMs into a one-part WIM.
734  *
735  * @param swms
736  *      An array of strings that give the filenames of all parts of the split
737  *      WIM.
738  * @param num_swms
739  *      Number of filenames in @a swms.
740  * @param output_path
741  *      The path to write the one-part WIM to.
742  * @param flags
743  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY to check the split WIMs' integrity
744  *      tables (if present) when opening them, and include an integrity table in
745  *      the output WIM.
746  *
747  * @return 0 on success; nonzero on error.  This function may return any value
748  * returned by wimlib_open_wim() except ::WIMLIB_ERR_SPLIT_UNSUPPORTED, as well
749  * as the following error codes:
750  *
751  * @retval ::WIMLIB_ERR_SPLIT_INVALID
752  *      The split WIMs do not form a valid WIM because they do not include all
753  *      the parts of the original WIM, there are duplicate parts, or not all the
754  *      parts have the same GUID and compression type.
755  * @retval ::WIMLIB_ERR_WRITE
756  *      An error occurred when trying to write data to the new WIM at @a output_path.
757  *
758  * Note that this function merely copies the resources, so it will not check to
759  * see if the resources, including the metadata resource, are valid or not.
760  */
761 extern int wimlib_join(const char **swms, int num_swms,
762                        const char *output_path, int flags);
763
764 /**
765  * Mounts an image in a WIM file on a directory read-only or read-write.
766  *
767  * A daemon will be forked to service the filesystem.
768  *
769  * If the mount is read-write, modifications to the WIM are staged in a staging
770  * directory.
771  *
772  * wimlib_mount() currently cannot be used with multiple ::WIMStruct's without
773  * intervening wimlib_unmount()s.  If there was a way to have libfuse pass a
774  * pointer to user data to each FUSE callback, then this would be possible, but
775  * there doesn't seem to be a way to do this currently.
776  *
777  * @param wim
778  *      Pointer to the ::WIMStruct for the WIM file to be mounted.
779  * @param image
780  *      The number of the image to mount, numbered from 1.  It must be an
781  *      existing, single image.
782  * @param dir
783  *      The path to an existing directory to mount the image on.
784  * @param flags
785  *      Bitwise OR of the flags ::WIMLIB_MOUNT_FLAG_READWRITE or
786  *      ::WIMLIB_MOUNT_FLAG_DEBUG.  If ::WIMLIB_MOUNT_FLAG_READWRITE is not
787  *      given, the WIM is mounted read-only.
788  *
789  * @return 0 on success; nonzero on error.
790  * @retval ::WIMLIB_ERR_DECOMPRESSION
791  *      Could not decompress the metadata resource for @a image in @a wim.
792  * @retval ::WIMLIB_ERR_FUSE
793  *      A non-zero status was returned by @c fuse_main().
794  * @retval ::WIMLIB_ERR_INVALID_DENTRY 
795  *      A directory entry in the metadata resource for @a image in @a wim is
796  *      invalid.
797  * @retval ::WIMLIB_ERR_INVALID_IMAGE
798  *      @a image does not specify an existing, single image in @a wim.
799  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
800  *      The metadata resource for @a image in @a wim is invalid.        
801  * @retval ::WIMLIB_ERR_MKDIR
802  *      ::WIMLIB_MOUNT_FLAG_READWRITE was specified in @a flags, but the staging
803  *      directory could not be created.
804  * @retval ::WIMLIB_ERR_NOMEM
805  *      Failed to allocate needed memory.
806  * @retval ::WIMLIB_ERR_NOTDIR
807  *      Could not determine the current working directory.
808  * @retval ::WIMLIB_ERR_READ
809  *      An unexpected end-of-file or read error occurred when trying to read
810  *      data from the WIM file associated with @a wim.
811  *
812  */
813 extern int wimlib_mount(WIMStruct *wim, int image, const char *dir, int flags);
814
815 /**
816  * Opens a WIM file and creates a ::WIMStruct for it.
817  *
818  * @param wim_file 
819  *      The path to the WIM file to open.
820  * @param flags
821  *      Bitwise OR of ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY and/or
822  *      ::WIMLIB_OPEN_FLAG_SHOW_PROGRESS.
823  *      If ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY is given, the integrity table
824  *      of the WIM, if it exists, is checked, and the function will fail with an
825  *      ::WIMLIB_ERR_INTEGRITY status if any of the computed SHA1 message
826  *      digests of the WIM do not exactly match the corresponding message
827  *      digests given in the integrity table.
828  *      If ::WIMLIB_OPEN_FLAG_SHOW_PROGRESS is given, progress information will
829  *      be shown if the integrity of the WIM is checked.
830  *      If ::WIMLIB_OPEN_FLAG_SPLIT_OK is given, no error will be issued if the
831  *      WIM is part of a split WIM.  However, wimlib does not fully support
832  *      split WIMs, so not all functions will work correctly after opening a
833  *      split WIM.  For example, you cannot use wimlib_mount() or
834  *      wimlib_extract_image() on a split WIM.
835  *
836  * @param wim_ret
837  *      On success, a pointer to an opaque ::WIMStruct for the opened WIM file
838  *      is written to the memory location pointed to by this parameter.  The
839  *      ::WIMStruct must be freed using using wimlib_free() when finished with
840  *      it.
841  *
842  * @return 0 on success; nonzero on error.
843  * @retval ::WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE
844  *      The lookup table of @a wim_file is compressed.  Support for this can be
845  *      added to wimlib if needed, but it appears to be the case that the lookup
846  *      table is never compressed.
847  * @retval ::WIMLIB_ERR_IMAGE_COUNT
848  *      The WIM is not the non-first part of a split WIM, and the number of
849  *      metadata resources found in the WIM did not match the image count given
850  *      in the WIM header, or the number of &lt;IMAGE&gt; elements in the XML
851  *      data for the WIM did not match the image count given in the WIM header.
852  * @retval ::WIMLIB_ERR_INTEGRITY
853  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY was specified in @a flags and @a
854  *      wim_file contains an integrity table, but the SHA1 message digest for a
855  *      chunk of the WIM does not match the corresponding message digest given
856  *      in the integrity table.
857  * @retval ::WIMLIB_ERR_INVALID_CHUNK_SIZE
858  *      Resources in @a wim_file are compressed, but the chunk size is not 32768.
859  * @retval ::WIMLIB_ERR_INVALID_COMPRESSION_TYPE
860  *      The header of @a wim_file says that resources in the WIM are compressed,
861  *      but the header flag indicating LZX or XPRESS compression is not set.
862  * @retval ::WIMLIB_ERR_INVALID_HEADER_SIZE
863  *      The length field of the WIM header is not 208.
864  * @retval ::WIMLIB_ERR_INVALID_INTEGRITY_TABLE
865  *      ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY was specified in @a flags and @a
866  *      wim_file contains an integrity table, but the integrity table is
867  *      invalid.
868  * @retval ::WIMLIB_ERR_NOMEM
869  *      Failed to allocated needed memory.
870  * @retval ::WIMLIB_ERR_NOT_A_WIM_FILE
871  *      @a wim_file does not begin with the expected magic characters.
872  * @retval ::WIMLIB_ERR_OPEN
873  *      Failed to open the file @a wim_file for reading.
874  * @retval ::WIMLIB_ERR_READ
875  *      An unexpected end-of-file or read error occurred when trying to read
876  *      data from @a wim_file.
877  * @retval ::WIMLIB_ERR_SPLIT_UNSUPPORTED
878  *      @a wim_file is a split WIM, but ::WIMLIB_OPEN_FLAG_SPLIT_OK was not
879  *      givin in @a flags.
880  * @retval ::WIMLIB_ERR_UNKNOWN_VERSION
881  *      A number other than 0x10d00 is written in the version field of the WIM
882  *      header of @a wim_file.
883  * @retval ::WIMLIB_ERR_XML
884  *      The XML data for @a wim_file is invalid.
885  */
886 extern int wimlib_open_wim(const char *wim_file, int flags, 
887                            WIMStruct **wim_ret);
888
889 /**
890  * Overwrites the file that the WIM was originally read from, with changes made.
891  *
892  * The new WIM is written to a temporary file and then renamed to the original
893  * file after it is has been completely written.  The temporary file currently
894  * is made in the same directory as the original WIM file.
895  *
896  * Note that it is not possible for this function to delete the original file
897  * before having written the new file because it is very likely that file
898  * resources in the new WIM file need to be retrieved from the old WIM file.
899  *
900  * After this function returns, @a wim must be freed using wimlib_free().  Any
901  * further actions on @a wim before doing this are undefined.
902  *
903  * @param wim
904  *      Pointer to the ::WIMStruct for the WIM file to write.  There may have
905  *      been in-memory changes made to it, which are then reflected in the
906  *      output file.
907  * @param flags 
908  *      Bitwise OR of ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY and/or
909  *      ::WIMLIB_WRITE_FLAG_SHOW_PROGRESS.
910  *
911  * @return 0 on success; nonzero on error.  This function may return any value
912  * returned by wimlib_write() as well as the following error codes:
913  * @retval ::WIMLIB_ERR_NO_FILENAME
914  *      @a wim corresponds to a WIM created with wimlib_create_new_wim() rather
915  *      than a WIM read with wimlib_open_wim().
916  * @retval ::WIMLIB_ERR_RENAME
917  *      The temporary file that the WIM was written to could not be renamed to
918  *      the original filename of @a wim.
919  */
920 extern int wimlib_overwrite(WIMStruct *wim, int flags);
921
922 /**
923  * Updates the header and XML data of the WIM file, without the need to write
924  * out the entire WIM to a temporary file as in wimlib_write().
925  *
926  * This function must only be used if no files, directories, or images have been
927  * added, removed, or changed in the WIM.  It must be used when only the boot
928  * index or the name or description of image(s) has been changed.
929  *
930  * After this function returns, @a wim must be freed using wimlib_free().  Any
931  * further actions on @a wim before doing this are undefined.
932  *
933  * @param wim
934  *      Pointer to the ::WIMStruct for the WIM file to overwrite.
935  * @param flags 
936  *      Bitwise OR of ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY and/or
937  *      ::WIMLIB_WRITE_FLAG_SHOW_PROGRESS.
938  *
939  * @return 0 on success; nonzero on error.
940  *
941  * @retval ::WIMLIB_ERR_NO_FILENAME
942  *      @a wim corresponds to a WIM created with wimlib_create_new_wim() rather
943  *      than a WIM read with wimlib_open_wim().
944  * @retval ::WIMLIB_ERR_NOMEM
945  *      Failed to allocate needed memory.
946  * @retval ::WIMLIB_ERR_OPEN
947  *      The WIM file associated with @a wim could not be re-opened read-write.
948  * @retval ::WIMLIB_ERR_READ
949  *      ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY was specified in @a flags, but data
950  *      from the WIM file associated with @a wim could not be read to compute
951  *      the SHA1 message digests, or the old integrity table (if it existed)
952  *      could not be read.
953  * @retval ::WIMLIB_ERR_WRITE
954  *      Failed to write the WIM header, the XML data, or the integrity table to
955  *      the WIM file associated with @a wim.
956  */
957 extern int wimlib_overwrite_xml_and_header(WIMStruct *wim, int flags);
958
959 /**
960  * Prints information about one image, or all images, contained in a WIM.
961  *
962  * @param wim
963  *      Pointer to the ::WIMStruct for a WIM file.
964  * @param image 
965  *      The image about which to print information.  Can be the number of an
966  *      image, or ::WIM_ALL_IMAGES to print information about all images in the
967  *      WIM.
968  * 
969  * @return This function has no return value.
970  */
971 extern void wimlib_print_available_images(const WIMStruct *wim, int image);
972
973 /**
974  * Prints the full paths to all files contained in an image, or all images, in a
975  * WIM file.
976  *
977  * @param wim
978  *      Pointer to the ::WIMStruct for a WIM file.
979  * @param image 
980  *      Which image to print files for.  Can be the number of an image, or
981  *      ::WIM_ALL_IMAGES to print the files contained in all images.  
982  *
983  * @return 0 on success; nonzero on error.
984  * @retval ::WIMLIB_ERR_DECOMPRESSION
985  *      The metadata resource for one of the specified images could not be
986  *      decompressed.
987  * @retval ::WIMLIB_ERR_INVALID_DENTRY
988  *      A directory entry in the metadata resource for one of the specified
989  *      images is invaled.
990  * @retval ::WIMLIB_ERR_INVALID_IMAGE
991  *      @a image does not specify a valid image in @a wim, and is not
992  *      ::WIM_ALL_IMAGES.
993  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
994  *      The metadata resource for one of the specified images is invalid.
995  * @retval ::WIMLIB_ERR_NOMEM
996  *      Failed to allocate needed memory.
997  * @retval ::WIMLIB_ERR_READ
998  *      An unexpected read error or end-of-file occurred when reading the
999  *      metadata resource for one of the specified images.
1000  */
1001 extern int wimlib_print_files(WIMStruct *wim, int image);
1002
1003 /**
1004  * Prints detailed information from the header of a WIM file.
1005  *
1006  * @param wim
1007  *      Pointer to the ::WIMStruct for a WIM file.
1008  *
1009  * @return This function has no return value.
1010  *
1011  */
1012 extern void wimlib_print_header(const WIMStruct *wim);
1013
1014 /** 
1015  * Prints the lookup table of a WIM file.  The lookup table maps SHA1 message
1016  * digests, as found in the directory entry tree in the WIM file, to file
1017  * resources in the WIM file.  This table includes one entry for each unique
1018  * file in the WIM, so it can be quite long.  There is only one lookup table per
1019  * WIM.
1020  *
1021  * @param wim
1022  *      Pointer to the ::WIMStruct for a WIM file.
1023  *
1024  * @return This function has no return value.
1025  */
1026 extern void wimlib_print_lookup_table(WIMStruct *wim);
1027
1028 /**
1029  * Prints the metadata of the specified image in a WIM file.  The metadata
1030  * consists of the security data as well as the directory entry tree, and each
1031  * image has its own metadata.  
1032  *
1033  * @param wim
1034  *      Pointer to the ::WIMStruct for a WIM file.
1035  * @param image 
1036  *      Which image to print the metadata for.  Can be the number of an image,
1037  *      or ::WIM_ALL_IMAGES to print the metadata for all images in the WIM.
1038  *
1039  * @return 0 on success; nonzero on error.
1040  * @retval ::WIMLIB_ERR_DECOMPRESSION
1041  *      The metadata resource for one of the specified images could not be
1042  *      decompressed.
1043  * @retval ::WIMLIB_ERR_INVALID_DENTRY
1044  *      A directory entry in the metadata resource for one of the specified
1045  *      images is invaled.
1046  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1047  *      @a image does not specify a valid image in @a wim, and is not
1048  *      ::WIM_ALL_IMAGES.
1049  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1050  *      The metadata resource for one of the specified images is invalid.
1051  * @retval ::WIMLIB_ERR_NOMEM
1052  *      Failed to allocate needed memory.
1053  * @retval ::WIMLIB_ERR_READ
1054  *      An unexpected read error or end-of-file occurred when reading the
1055  *      metadata resource for one of the specified images.
1056  */
1057 extern int wimlib_print_metadata(WIMStruct *wim, int image);
1058
1059 /**
1060  * Prints some basic information about a WIM file.  All information printed by
1061  * this function is also printed by wimlib_print_header(), but
1062  * wimlib_print_wim_information() prints some of this information more concisely
1063  * and in a more readable form.
1064  *
1065  * @param wim
1066  *      Pointer to the ::WIMStruct for a WIM file.
1067  *
1068  * @return This function has no return value.  
1069  */
1070 extern void wimlib_print_wim_information(const WIMStruct *wim);
1071
1072 /**
1073  * Translates a string specifying the name or number of an image in the WIM into
1074  * the number of the image.  The images are numbered starting at 1.
1075  *
1076  * @param wim
1077  *      Pointer to the ::WIMStruct for a WIM file.
1078  * @param image_name_or_num  
1079  *      A string specifying which image.  If it begins with a number, it is
1080  *      taken to be a string specifying the image number.  Otherwise, it is
1081  *      taken to be the name of an image, as specified in the XML data for the
1082  *      WIM file.  It also may be the keyword "all", which will resolve to
1083  *      ::WIM_ALL_IMAGES.
1084  *
1085  * @return 
1086  *      If the string resolved to a single existing image, the number of that
1087  *      image, counting starting at 1, is returned.  If the keyword "all" was
1088  *      specified, ::WIM_ALL_IMAGES is returned.  Otherwise, ::WIM_NO_IMAGE is
1089  *      returned.
1090  */
1091 extern int wimlib_resolve_image(WIMStruct *wim, const char *image_name_or_num);
1092
1093 /**
1094  * Sets which image in the WIM is marked as bootable.
1095  *
1096  * @param wim
1097  *      Pointer to the ::WIMStruct for a WIM file.
1098  * @param boot_idx
1099  *      The number of the image to mark as bootable, or 0 to mark no image as
1100  *      bootable.
1101  * @return 0 on success; nonzero on error.
1102  * @retval ::WIMLIB_ERR_INVALID_IMAGE 
1103  *      @a boot_idx does not specify an existing image in @a wim, and it was not
1104  *      0.
1105  */
1106 extern int wimlib_set_boot_idx(WIMStruct *wim, int boot_idx);
1107
1108 /**
1109  * Changes the description of an image in the WIM.
1110  *
1111  * @param wim
1112  *      Pointer to the ::WIMStruct for a WIM file.
1113  * @param image
1114  *      The number of the image for which to change the description.
1115  * @param description
1116  *      The new description to give the image.  It may be @c NULL, which
1117  *      indicates that the image is to be given no description.
1118  *
1119  * @return 0 on success; nonzero on error.
1120  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1121  *      @a image does not specify a single existing image in @a wim.
1122  * @retval ::WIMLIB_ERR_NOMEM
1123  *      Failed to allocate the memory needed to duplicate the @a description
1124  *      string.
1125  */
1126 extern int wimlib_set_image_descripton(WIMStruct *wim, int image, 
1127                                        const char *description);
1128
1129 /**
1130  * Changes the name of an image in the WIM.
1131  *
1132  * @param wim
1133  *      Pointer to the ::WIMStruct for a WIM file.
1134  * @param image
1135  *      The number of the image for which to change the name.
1136  * @param name
1137  *      The new name to give the image.  It must not be @c NULL.
1138  *
1139  * @return 0 on success; nonzero on error.
1140  * @retval ::WIMLIB_ERR_IMAGE_NAME_COLLISION
1141  *      There is already an image named @a name in @a wim.
1142  * @retval ::WIMLIB_ERR_INVALID_PARAM
1143  *      @a name was @c NULL or the empty string.
1144  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1145  *      @a image does not specify a single existing image in @a wim.
1146  * @retval ::WIMLIB_ERR_NOMEM
1147  *      Failed to allocate the memory needed to duplicate the @a name string.
1148  */
1149 extern int wimlib_set_image_name(WIMStruct *wim, int image, const char *name);
1150
1151 /**
1152  * Set the functions that wimlib uses to allocate and free memory.
1153  *
1154  * These settings are global and not per-WIM.
1155  *
1156  * The default is to use the default @c malloc() and @c free() from the C
1157  * library.
1158  *
1159  * @param malloc_func
1160  *      A function equivalent to @c malloc() that wimlib will use to allocate
1161  *      memory.  If @c NULL, the allocator function is set back to the default
1162  *      @c malloc() from the C library.
1163  * @param free_func
1164  *      A function equivalent to @c free() that wimlib will use to free memory.
1165  *      If @c NULL, the free function is set back to the default @c free() from
1166  *      the C library.
1167  * @param realloc_func
1168  *      A function equivalent to @c realloc() that wimlib will use to reallocate
1169  *      memory.  If @c NULL, the free function is set back to the default @c
1170  *      realloc() from the C library.
1171  * @return 0 on success; nonzero on error.
1172  * @retval ::WIMLIB_ERR_UNSUPPORTED
1173  *      wimlib was compiled with the @c --without-custom-memory-allocator flag,
1174  *      so custom memory allocators are unsupported.
1175  */
1176 int wimlib_set_memory_allocator(void *(*malloc_func)(size_t),
1177                                  void (*free_func)(void *),
1178                                  void *(*realloc_func)(void *, size_t));
1179
1180 /**
1181  * Sets whether wimlib is to print error messages to @c stderr when a function
1182  * fails or not.  These error messages may provide information that cannot be
1183  * determined only from the error code that is returned.
1184  *
1185  * This setting is global and not per-WIM.
1186  *
1187  * By default, error messages are not printed.
1188  *
1189  * @param show_messages
1190  *      @c true if error messages are to be printed; @c false if error messages
1191  *      are not to be printed.
1192  *
1193  * @return 0 on success; nonzero on error.
1194  * @retval ::WIMLIB_ERR_UNSUPPORTED
1195  *      @a show_messages was @c true, but wimlib was compiled with the @c
1196  *      --without-error-messages option.   Therefore, error messages cannot be
1197  *      shown.
1198  */
1199 extern int wimlib_set_print_errors(bool show_messages);
1200
1201 /**
1202  * Splits a WIM into multiple parts.
1203  *
1204  * @param wimfile
1205  *      Name of the WIM file to split.  It must be a standalone, one-part WIM.
1206  * @param swm_name
1207  *      Name of the SWM file to create.  This will be the name of the first
1208  *      part.  The other parts will have the same name with 2, 3, 4, ..., etc.
1209  *      appended.
1210  * @param part_size
1211  *      The maximum size per part.  It is not guaranteed that this will really
1212  *      be the maximum size per part, because some file resources in the WIM may
1213  *      be larger than this size, and the WIM file format provides no way to
1214  *      split up file resources among multiple WIMs.
1215  * @param flags
1216  *      Bitwise OR of ::WIMLIB_OPEN_FLAG_CHECK_INTEGRITY and/or
1217  *      ::WIMLIB_OPEN_FLAG_SHOW_PROGRESS.
1218  *
1219  * @return 0 on success; nonzero on error.  This function may return any value
1220  * returned by wimlib_open_wim() as well as the following error codes:
1221  *
1222  * @retval ::WIMLIB_ERR_WRITE
1223  *      An error occurred when trying to write data to one of the split WIMs.
1224  *
1225  */
1226 extern int wimlib_split(const char *wimfile, const char *swm_name, 
1227                         size_t part_size, int flags);
1228
1229 /**
1230  * Unmounts a WIM image that was mounted using wimlib_mount().
1231  *
1232  * Blocks until it is known whether the mount succeeded or failed.
1233  *
1234  * To perform this operation, the process calling wimlib_unmount() communicates
1235  * with the process that had called wimlib_mount().
1236  *
1237  * There is currently a design problem with this function because it is hard to
1238  * know whether the filesystem daemon is still working or whether it has
1239  * crashed, has been killed, or has reached an infinite loop. However, ideally
1240  * there should be no infinite loops or crashes in the code, so this wouldn't be
1241  * much of a problem.  Currently, a timeout of 600 seconds (so long because WIMs
1242  * can be very large) is implemented so that this function will not wait forever
1243  * before returning failure.  
1244  *
1245  * @param dir
1246  *      The directory that the WIM image was mounted on.
1247  * @param flags
1248  *      Bitwise OR of the flags ::WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY or
1249  *      ::WIMLIB_UNMOUNT_FLAG_COMMIT.  Neither of these flags affect read-only
1250  *      mounts.
1251  *
1252  * @return 0 on success; nonzero on error.
1253  * @retval ::WIMLIB_ERR_DELETE_STAGING_DIR
1254  *      The filesystem daemon was unable to remove the staging directory and the
1255  *      temporary files that it contains.
1256  * @retval ::WIMLIB_ERR_FORK
1257  *      Could not @c fork() the process.
1258  * @retval ::WIMLIB_ERR_FUSERMOUNT
1259  *      The @b fusermount program could not be executed or exited with a failure
1260  *      status.
1261  * @retval ::WIMLIB_ERR_MQUEUE
1262  *      Could not open a POSIX message queue to communicate with the filesystem
1263  *      daemon servicing the mounted filesystem, could not send a message
1264  *      through the queue, or could not receive a message through the queue.
1265  * @retval ::WIMLIB_ERR_NOMEM
1266  *      Failed to allocate needed memory.
1267  * @retval ::WIMLIB_ERR_OPEN
1268  *      The filesystem daemon could not open a temporary file for writing the
1269  *      new WIM.
1270  * @retval ::WIMLIB_ERR_TIMEOUT
1271  *      600 seconds elapsed while waiting for the filesystem daemon to notify
1272  *      the process of its exit status, so the WIM file probably was not written
1273  *      successfully.
1274  * @retval ::WIMLIB_ERR_READ
1275  *      A read error occurred when the filesystem daemon tried to a file from
1276  *      the staging directory
1277  * @retval ::WIMLIB_ERR_RENAME
1278  *      The filesystem daemon failed to rename the newly written WIM file to the
1279  *      original WIM file.
1280  * @retval ::WIMLIB_ERR_WRITE
1281  *      A write error occurred when the filesystem daemon was writing to the new
1282  *      WIM file, or the filesystem daemon was unable to flush changes that had
1283  *      been made to files in the staging directory.
1284  */
1285 extern int wimlib_unmount(const char *dir, int flags);
1286
1287 /**
1288  * Writes the WIM to a file.
1289  *
1290  * @param wim
1291  *      Pointer to the ::WIMStruct for a WIM file.  There may have been
1292  *      in-memory changes made to it, which are then reflected in the output
1293  *      file.
1294  * @param path
1295  *      The path to the file to write the WIM to.
1296  * @param image
1297  *      The image inside the WIM to write.  Use ::WIM_ALL_IMAGES to include all
1298  *      images.
1299  * @param flags 
1300  *      Bitwise OR of ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY and/or
1301  *      ::WIMLIB_WRITE_FLAG_SHOW_PROGRESS.  If
1302  *      ::WIMLIB_WRITE_FLAG_CHECK_INTEGRITY is given, an integrity table is
1303  *      included in the WIM being written.  If ::WIMLIB_WRITE_FLAG_SHOW_PROGRESS
1304  *      is given, the progress of the calculation of the integrity table is
1305  *      shown.
1306  *
1307  * @return 0 on success; nonzero on error.
1308  * @retval ::WIMLIB_ERR_DECOMPRESSION
1309  *      Failed to decompress a metadata or file resource in @a wim.
1310  * @retval ::WIMLIB_ERR_INVALID_DENTRY 
1311  *      A directory entry in the metadata resource for @a image in @a wim is
1312  *      invalid.
1313  * @retval ::WIMLIB_ERR_INVALID_IMAGE
1314  *      @a image does not specify a single existing image in @a wim, and is not
1315  *      ::WIM_ALL_IMAGES.
1316  * @retval ::WIMLIB_ERR_INVALID_RESOURCE_SIZE
1317  *      The metadata resource for @a image in @a wim is invalid.        
1318  * @retval ::WIMLIB_ERR_NOMEM
1319  *      Failed to allocate needed memory.
1320  * @retval ::WIMLIB_ERR_OPEN
1321  *      Failed to open @a path for writing, or some file resources in @a
1322  *      wim refer to files in the outside filesystem, and one of these files
1323  *      could not be opened for reading.
1324  * @retval ::WIMLIB_ERR_READ
1325  *      An error occurred when trying to read data from the WIM file associated
1326  *      with @a wim, or some file resources in @a wim refer to files in the
1327  *      outside filesystem, and a read error occurred when reading one of these
1328  *      files.
1329  * @retval ::WIMLIB_ERR_WRITE
1330  *      An error occurred when trying to write data to the new WIM file at @a
1331  *      path.
1332  */
1333 extern int wimlib_write(WIMStruct *wim, const char *path, int image, int flags);
1334
1335
1336
1337 #endif /* _WIMLIB_H */
1338