]> wimlib.net Git - wimlib/blob - src/wimlib_internal.h
1d3edcd7cc3f43cf1c03cdf56b03b929812a9fef
[wimlib] / src / wimlib_internal.h
1 /*
2  * wimlib_internal.h
3  *
4  * Internal header for wimlib.
5  */
6
7 /*
8  * Copyright (C) 2012, 2013 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 General Public License as published by the Free
14  * Software Foundation; either version 3 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 General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with wimlib; if not, see http://www.gnu.org/licenses/.
24  */
25
26 #ifndef _WIMLIB_INTERNAL_H
27 #define _WIMLIB_INTERNAL_H
28
29 #include "config.h"
30 #include "util.h"
31 #include "list.h"
32 #include "wimlib.h"
33
34 #if defined(WITH_FUSE) || defined(ENABLE_MULTITHREADED_COMPRESSION)
35 #include <pthread.h>
36 #endif
37
38 #define WIMLIB_MAKEVERSION(major, minor, patch) \
39         ((major << 20) | (minor << 10) | patch)
40
41
42 #define WIMLIB_VERSION_CODE \
43                 WIMLIB_MAKEVERSION(WIMLIB_MAJOR_VERSION,\
44                                    WIMLIB_MINOR_VERSION,\
45                                    WIMLIB_PATCH_VERSION)
46
47 #define WIMLIB_GET_PATCH_VERSION(version) \
48         ((version >> 0) & ((1 << 10) - 1))
49 #define WIMLIB_GET_MINOR_VERSION(version) \
50         ((version >> 10) & ((1 << 10) - 1))
51 #define WIMLIB_GET_MAJOR_VERSION(version) \
52         ((version >> 20) & ((1 << 10) - 1))
53
54
55 struct stat;
56 struct wim_dentry;
57 struct wim_inode;
58 struct sd_set;
59
60 #define WIM_MAGIC_LEN  8
61 #define WIM_GID_LEN    16
62 #define WIM_UNUSED_LEN 60
63
64 /* Length of the WIM header on disk. */
65 #define WIM_HEADER_DISK_SIZE (148 + WIM_UNUSED_LEN)
66
67 /* Compressed resources in the WIM are divided into separated compressed chunks
68  * of this size. */
69 #define WIM_CHUNK_SIZE 32768
70
71 /* Version of the WIM file.  There is an older version, but we don't support it
72  * yet.  The differences between the versions are undocumented. */
73 #define WIM_VERSION 0x10d00
74
75 #define REPARSE_POINT_MAX_SIZE (16 * 1024)
76
77 /* Metadata for a resource in a WIM file. */
78 struct resource_entry {
79         /* Size, in bytes, of the resource in the WIM file. */
80         u64 size  : 56;
81
82         /* Bitwise or of one or more of the WIM_RESHDR_FLAG_* flags. */
83         u64 flags : 8;
84
85         /* Offset, in bytes, of the resource in the WIM file. */
86         u64 offset;
87
88         /* Uncompressed size of the resource in the WIM file.  Is the same as
89          * @size if the resource is uncompressed. */
90         u64 original_size;
91 };
92
93 /* Flags for the `flags' field of the struct resource_entry structure. */
94
95 /* I haven't seen this flag used in any of the WIMs I have examined.  I assume
96  * it means that there are no references to the stream, so the space is free.
97  * However, even after deleting files from a WIM mounted with `imagex.exe
98  * /mountrw', I could not see this flag being used.  Either way, we don't
99  * actually use this flag for anything. */
100 #define WIM_RESHDR_FLAG_FREE            0x01
101
102 /* Indicates that the stream is a metadata resource for a WIM image. */
103 #define WIM_RESHDR_FLAG_METADATA        0x02
104
105 /* Indicates that the stream is compressed. */
106 #define WIM_RESHDR_FLAG_COMPRESSED      0x04
107
108 /* I haven't seen this flag used in any of the WIMs I have examined.  Perhaps it
109  * means that a stream could possibly be split among multiple split WIM parts.
110  * However, `imagex.exe /split' does not seem to create any WIMs like this.
111  * Either way, we don't actually use this flag for anything.  */
112 #define WIM_RESHDR_FLAG_SPANNED         0x08
113
114 /* Header at the very beginning of the WIM file. */
115 struct wim_header {
116         /* Identifies the file as WIM file. Must be exactly
117          * {'M', 'S', 'W', 'I', 'M', 0, 0, 0}  */
118         //u8  magic[WIM_MAGIC_LEN];
119
120         /* size of WIM header in bytes. */
121         //u32 hdr_size;
122
123         /* Version of the WIM file.  Microsoft provides no documentation about
124          * exactly what this field affects about the file format, other than the
125          * fact that more recent versions have a higher value. */
126         //u32 version;
127
128         /* Bitwise OR of one or more of the WIM_HDR_FLAG_* defined below. */
129         u32 flags;
130
131         /* The size of the pieces that the uncompressed files were split up into
132          * when they were compressed.  This should be the same as
133          * WIM_CHUNK_SIZE.  Microsoft incorrectly documents this as "the size of
134          * the compressed .wim file in bytes".*/
135         //u32 chunk_size;
136
137         /* A unique identifier for the WIM file. */
138         u8 guid[WIM_GID_LEN];
139
140         /* Part number of the WIM file in a spanned set. */
141         u16 part_number;
142
143         /* Total number of parts in a spanned set. */
144         u16 total_parts;
145
146         /* Number of images in the WIM file. */
147         u32 image_count;
148
149         /* Location, size, and flags of the lookup table of the WIM. */
150         struct resource_entry lookup_table_res_entry;
151
152         /* Location, size, and flags for the XML data of the WIM. */
153         struct resource_entry xml_res_entry;
154
155         /* Location, size, and flags for the boot metadata.  This means the
156          * metadata resource for the image specified by boot_idx below.  Should
157          * be zeroed out if boot_idx is 0. */
158         struct resource_entry boot_metadata_res_entry;
159
160         /* The index of the bootable image in the WIM file. If 0, there are no
161          * bootable images available. */
162         u32 boot_idx;
163
164         /* The location of the optional integrity table used to verify the
165          * integrity WIM.  Zeroed out if there is no integrity table.*/
166         struct resource_entry integrity;
167
168         /* Reserved for future disuse */
169         //u8 unused[WIM_UNUSED_LEN];
170 };
171
172 /* Flags for the `flags' field of the struct wim_header: */
173
174 /* Reserved for future use */
175 #define WIM_HDR_FLAG_RESERVED           0x00000001
176
177 /* Files and metadata in the WIM are compressed. */
178 #define WIM_HDR_FLAG_COMPRESSION        0x00000002
179
180 /* WIM is read-only (wimlib ignores this because it's pretty much pointless) */
181 #define WIM_HDR_FLAG_READONLY           0x00000004
182
183 /* Resource data specified by images in this WIM may be contained in a different
184  * WIM.  Or in other words, this WIM is part of a split WIM.  */
185 #define WIM_HDR_FLAG_SPANNED            0x00000008
186
187 /* The WIM contains resources only; no filesystem metadata.  wimlib ignores this
188  * flag, as it looks for resources in all the WIMs anyway. */
189 #define WIM_HDR_FLAG_RESOURCE_ONLY      0x00000010
190
191 /* The WIM contains metadata only.  wimlib ignores this flag.  Note that all the
192  * metadata resources for a split WIM should be in the first part. */
193 #define WIM_HDR_FLAG_METADATA_ONLY      0x00000020
194
195 /* Lock field to prevent multiple writers from writing the WIM concurrently.
196  * wimlib ignores this flag as it uses flock() to acquire a real lock on the
197  * file (if supported by the underlying filesystem). */
198 #define WIM_HDR_FLAG_WRITE_IN_PROGRESS  0x00000040
199
200 /* Reparse point fixup flag.  See docs for --rpfix and --norpfix in imagex, or
201  * WIMLIB_ADD_IMAGE_FLAG_{RPFIX,NORPFIX} in wimlib.h.  Note that
202  * WIM_HDR_FLAG_RP_FIX is a header flag and just sets the default behavior for
203  * the WIM; it can still be overridder on a per-image basis.  But there is no
204  * flag to set the default behavior for a specific image. */
205 #define WIM_HDR_FLAG_RP_FIX             0x00000080
206
207 /* Unused, reserved flag for another compression type */
208 #define WIM_HDR_FLAG_COMPRESS_RESERVED  0x00010000
209
210 /* Resources within the WIM are compressed using "XPRESS" compression, which is
211  * a LZ77-based compression algorithm. */
212 #define WIM_HDR_FLAG_COMPRESS_XPRESS    0x00020000
213
214 /* Resources within the WIM are compressed using "LZX" compression.  This is also
215  * a LZ77-based algorithm. */
216 #define WIM_HDR_FLAG_COMPRESS_LZX       0x00040000
217
218 #ifdef WITH_NTFS_3G
219 struct _ntfs_volume;
220 #endif
221
222 /* Table of security descriptors for a WIM image. */
223 struct wim_security_data {
224         /* The total length of the security data, in bytes.  If there are no
225          * security descriptors, this field, when read from the on-disk metadata
226          * resource, may be either 8 (which is correct) or 0 (which is
227          * interpreted as 0). */
228         u32 total_length;
229
230         /* The number of security descriptors in the array @descriptors, below.
231          * It is really an unsigned int on-disk, but it must fit into an int
232          * because the security ID's are signed.  (Not like you would ever have
233          * more than a few hundred security descriptors anyway.) */
234         int32_t num_entries;
235
236         /* Array of sizes of the descriptors in the array @descriptors. */
237         u64 *sizes;
238
239         /* Array of descriptors. */
240         u8 **descriptors;
241 };
242
243 /* Metadata for a WIM image */
244 struct wim_image_metadata {
245
246         /* Number of WIMStruct's that are sharing this image metadata (from
247          * calls to wimlib_export_image().) */
248         unsigned long refcnt;
249
250         /* Pointer to the root dentry of the image. */
251         struct wim_dentry *root_dentry;
252
253         /* Pointer to the security data of the image. */
254         struct wim_security_data *security_data;
255
256         /* Pointer to the lookup table entry for this image's metadata resource
257          */
258         struct wim_lookup_table_entry *metadata_lte;
259
260         /* Linked list of 'struct wim_inode's for this image. */
261         struct list_head inode_list;
262
263         /* Linked list of 'struct wim_lookup_table_entry's for this image that
264          * are referred to in the dentry tree, but have not had a SHA1 message
265          * digest calculated yet and therefore have not been inserted into the
266          * WIM's lookup table.  This list is added to during wimlib_add_image()
267          * and wimlib_mount_image() (read-write only). */
268         struct list_head unhashed_streams;
269
270         /* 1 iff the dentry tree has been modified.  If this is the case, the
271          * memory for the dentry tree should not be freed when switching to a
272          * different WIM image. */
273         u8 modified : 1;
274
275 #ifdef WITH_NTFS_3G
276         struct _ntfs_volume *ntfs_vol;
277 #endif
278 };
279
280 /* The opaque structure exposed to the wimlib API. */
281 struct WIMStruct {
282
283         /* A pointer to the file indicated by @filename, opened for reading. */
284         FILE *fp;
285
286 #if defined(WITH_FUSE) || defined(ENABLE_MULTITHREADED_COMPRESSION)
287         /* Extra file pointers to be used by concurrent readers */
288         FILE **fp_tab;
289         size_t num_allocated_fps;
290         pthread_mutex_t fp_tab_mutex;
291 #endif
292
293         /* FILE pointer for the WIM file (if any) currently being written. */
294         FILE *out_fp;
295
296         /* The name of the WIM file (if any) that has been opened. */
297         tchar *filename;
298
299         /* The lookup table for the WIM file. */
300         struct wim_lookup_table *lookup_table;
301
302         /* Information retrieved from the XML data, arranged in an orderly
303          * manner. */
304         struct wim_info *wim_info;
305
306         /* Array of the image metadata, one for each image in the WIM. */
307         struct wim_image_metadata **image_metadata;
308
309         /* The header of the WIM file. */
310         struct wim_header hdr;
311
312         /* Temporary field */
313         void *private;
314
315         /* The currently selected image, indexed starting at 1.  If not 0,
316          * subtract 1 from this to get the index of the current image in the
317          * image_metadata array. */
318         int current_image;
319
320         u8 deletion_occurred : 1;
321         u8 all_images_verified : 1;
322         u8 wim_locked : 1;
323 };
324
325 /* Inline utility functions for WIMStructs. */
326
327 static inline struct wim_image_metadata *
328 wim_get_current_image_metadata(WIMStruct *w)
329 {
330         return w->image_metadata[w->current_image - 1];
331 }
332
333 static inline const struct wim_image_metadata *
334 wim_get_const_current_image_metadata(const WIMStruct *w)
335 {
336         return w->image_metadata[w->current_image - 1];
337 }
338
339 static inline struct wim_dentry *
340 wim_root_dentry(WIMStruct *w)
341 {
342         return wim_get_current_image_metadata(w)->root_dentry;
343 }
344
345 static inline struct wim_security_data *
346 wim_security_data(WIMStruct *w)
347 {
348         return wim_get_current_image_metadata(w)->security_data;
349 }
350
351 static inline const struct wim_security_data *
352 wim_const_security_data(const WIMStruct *w)
353 {
354         return wim_get_const_current_image_metadata(w)->security_data;
355 }
356
357 /* Nonzero if a struct resource_entry indicates a compressed resource. */
358 static inline int
359 resource_is_compressed(const struct resource_entry *entry)
360 {
361         return (entry->flags & WIM_RESHDR_FLAG_COMPRESSED);
362 }
363
364 /* Iterate over each inode in a WIM image that has not yet been hashed */
365 #define image_for_each_inode(inode, imd) \
366         list_for_each_entry(inode, &imd->inode_list, i_list)
367
368 /* Iterate over each stream in a WIM image that has not yet been hashed */
369 #define image_for_each_unhashed_stream(lte, imd) \
370         list_for_each_entry(lte, &imd->unhashed_streams, unhashed_list)
371
372 /* Iterate over each stream in a WIM image that has not yet been hashed (safe
373  * against stream removal) */
374 #define image_for_each_unhashed_stream_safe(lte, tmp, imd) \
375         list_for_each_entry_safe(lte, tmp, &imd->unhashed_streams, unhashed_list)
376
377 #if 1
378 #  define copy_resource_entry(dst, src) memcpy(dst, src, sizeof(struct resource_entry))
379 #  define zero_resource_entry(entry) memset(entry, 0, sizeof(struct resource_entry))
380 #else
381 static inline void
382 copy_resource_entry(struct resource_entry *dst,
383                     const struct resource_entry *src)
384 {
385         BUILD_BUG_ON(sizeof(struct resource_entry) != 24);
386         ((u64*)dst)[0] = ((u64*)src)[0];
387         ((u64*)dst)[1] = ((u64*)src)[1];
388         ((u64*)dst)[2] = ((u64*)src)[2];
389 }
390
391 static inline void
392 zero_resource_entry(struct resource_entry *entry)
393 {
394         BUILD_BUG_ON(sizeof(struct resource_entry) != 24);
395         ((u64*)entry)[0] = 0;
396         ((u64*)entry)[1] = 0;
397         ((u64*)entry)[2] = 0;
398 }
399 #endif
400
401 /* add_image.c */
402
403 /* Hash table to find inodes, given an inode number (in the case of reading
404  * a WIM images), or both an inode number and a device number (in the case of
405  * capturing a WIM image). */
406 struct wim_inode_table {
407         /* Fields for the hash table */
408         struct hlist_head *array;
409         u64 num_entries;
410         u64 capacity;
411
412         /*
413          * Linked list of "extra" inodes.  These may be:
414          *
415          * - inodes with link count 1, which are all allowed to have 0 for their
416          *   inode number, meaning we cannot insert them into the hash table.
417          *
418          * - Groups we create ourselves by splitting a nominal inode due to
419          *   inconsistencies in the dentries.  These inodes will share an inode
420          *   number with some other inode until assign_inode_numbers() is
421          *   called.
422          */
423         struct list_head extra_inodes;
424 };
425
426 /* Common parameters to implementations of building an in-memory dentry tree
427  * from an on-disk directory structure. */
428 struct add_image_params {
429         /* Pointer to the lookup table of the WIM. */
430         struct wim_lookup_table *lookup_table;
431
432         /* Pointer to a hash table of inodes that have been captured for this
433          * WIM image so far. */
434         struct wim_inode_table *inode_table;
435
436         /* Pointer to the set of security descriptors that have been captured
437          * for this image so far. */
438         struct sd_set *sd_set;
439
440         /* Pointer to the capture configuration, which indicates whether any
441          * files should be excluded from capture or not. */
442         const struct wimlib_capture_config *config;
443
444         /* Flags that affect the capture operation (WIMLIB_ADD_IMAGE_FLAG_*) */
445         int add_image_flags;
446
447         /* If non-NULL, the user-supplied progress function. */
448         wimlib_progress_func_t progress_func;
449
450         /* Extra argument; set to point to a pointer to the ntfs_volume for
451          * libntfs-3g capture.  */
452         void *extra_arg;
453
454         u64 capture_root_ino;
455         u64 capture_root_dev;
456 };
457
458 extern bool
459 exclude_path(const tchar *path, size_t path_len,
460              const struct wimlib_capture_config *config,
461              bool exclude_prefix);
462
463 /* extract_image.c */
464
465 /* Internal use only */
466 #define WIMLIB_EXTRACT_FLAG_MULTI_IMAGE         0x80000000
467 #define WIMLIB_EXTRACT_FLAG_NO_STREAMS          0x40000000
468 #define WIMLIB_EXTRACT_MASK_PUBLIC              0x3fffffff
469
470 /* hardlink.c */
471
472 extern int
473 init_inode_table(struct wim_inode_table *table, size_t capacity);
474
475 extern int
476 inode_table_new_dentry(struct wim_inode_table *table, const tchar *name,
477                        u64 ino, u64 devno, struct wim_dentry **dentry_ret);
478
479 extern void
480 inode_ref_streams(struct wim_inode *inode);
481
482 extern void
483 inode_table_prepare_inode_list(struct wim_inode_table *table,
484                                struct list_head *head);
485
486 static inline void
487 destroy_inode_table(struct wim_inode_table *table)
488 {
489         FREE(table->array);
490 }
491
492
493 extern int
494 dentry_tree_fix_inodes(struct wim_dentry *root, struct list_head *inode_list);
495
496 /* header.c */
497
498 extern int
499 read_header(FILE *fp, struct wim_header *hdr, int split_ok);
500
501 extern int
502 write_header(const struct wim_header *hdr, FILE *out);
503
504 extern int
505 init_header(struct wim_header *hdr, int ctype);
506
507 /* integrity.c */
508
509 #define WIM_INTEGRITY_OK 0
510 #define WIM_INTEGRITY_NOT_OK -1
511 #define WIM_INTEGRITY_NONEXISTENT -2
512
513 extern int
514 write_integrity_table(FILE *out, struct resource_entry *integrity_res_entry,
515                       off_t new_lookup_table_end,
516                       off_t old_lookup_table_end,
517                       wimlib_progress_func_t progress_func);
518
519 extern int
520 check_wim_integrity(WIMStruct *w, wimlib_progress_func_t progress_func);
521
522 /* join.c */
523
524 extern int
525 new_joined_lookup_table(WIMStruct *w, WIMStruct **additional_swms,
526                         unsigned num_additional_swms,
527                         struct wim_lookup_table **table_ret);
528
529 /* metadata_resource.c */
530
531 extern int
532 read_metadata_resource(WIMStruct *w,
533                                   struct wim_image_metadata *image_metadata);
534
535 extern int
536 write_metadata_resource(WIMStruct *w);
537
538 /* ntfs-apply.c */
539
540 struct apply_args {
541         WIMStruct *w;
542         const tchar *target;
543         tchar *target_realpath;
544         unsigned target_realpath_len;
545         int extract_flags;
546         union wimlib_progress_info progress;
547         wimlib_progress_func_t progress_func;
548         int (*apply_dentry)(struct wim_dentry *, void *);
549         union {
550         #ifdef WITH_NTFS_3G
551                 struct {
552                         /* NTFS apply only */
553                         struct _ntfs_volume *vol;
554                 };
555         #endif
556                 struct {
557                         /* Normal apply only (UNIX) */
558                         unsigned long num_utime_warnings;
559                 };
560
561                 struct {
562                         /* Normal apply only (Win32) */
563                         unsigned long num_set_sacl_priv_notheld;
564                         unsigned long num_set_sd_access_denied;
565                         unsigned vol_flags;
566                         bool have_vol_flags;
567                 };
568         };
569 };
570
571 extern int
572 apply_dentry_ntfs(struct wim_dentry *dentry, void *arg);
573
574 extern int
575 apply_dentry_timestamps_ntfs(struct wim_dentry *dentry, void *arg);
576
577 extern void
578 libntfs3g_global_init();
579
580 /* ntfs-capture.c */
581
582 typedef int (*consume_data_callback_t)(const void *buf, size_t len, void *ctx);
583
584 extern int
585 read_ntfs_file_prefix(const struct wim_lookup_table_entry *lte,
586                       u64 size,
587                       consume_data_callback_t cb,
588                       void *ctx_or_buf,
589                       int _ignored_flags);
590 extern int
591 build_dentry_tree_ntfs(struct wim_dentry **root_p,
592                        const tchar *device,
593                        struct add_image_params *ctx);
594
595 #ifdef WITH_NTFS_3G
596 extern int
597 do_ntfs_umount(struct _ntfs_volume *vol);
598 #endif
599
600 /* resource.c */
601
602 #define WIMLIB_RESOURCE_FLAG_RAW                0x1
603 #define WIMLIB_RESOURCE_FLAG_THREADSAFE_READ    0x2
604 #define WIMLIB_RESOURCE_FLAG_RECOMPRESS         0x4
605
606 extern int
607 read_resource_prefix(const struct wim_lookup_table_entry *lte,
608                      u64 size, consume_data_callback_t cb, void *ctx_or_buf,
609                      int flags);
610
611 extern const void *
612 get_resource_entry(const void *p, struct resource_entry *entry);
613
614 extern void *
615 put_resource_entry(void *p, const struct resource_entry *entry);
616
617 extern int
618 read_uncompressed_resource(FILE *fp, u64 offset, u64 size, void *buf);
619
620 extern int
621 read_partial_wim_resource_into_buf(const struct wim_lookup_table_entry *lte,
622                                    size_t size, u64 offset, void *buf,
623                                    bool threadsafe);
624 extern int
625 read_full_resource_into_buf(const struct wim_lookup_table_entry *lte,
626                             void *buf, bool thread_safe);
627
628 extern int
629 write_wim_resource(struct wim_lookup_table_entry *lte, FILE *out_fp,
630                    int out_ctype, struct resource_entry *out_res_entry,
631                    int flags);
632
633 extern int
634 extract_wim_resource(const struct wim_lookup_table_entry *lte,
635                      u64 size,
636                      consume_data_callback_t extract_chunk,
637                      void *extract_chunk_arg);
638
639 extern int
640 extract_wim_resource_to_fd(const struct wim_lookup_table_entry *lte,
641                            int fd, u64 size);
642
643 extern int
644 sha1_resource(struct wim_lookup_table_entry *lte);
645
646 extern int
647 copy_resource(struct wim_lookup_table_entry *lte, void *w);
648
649 /* security.c */
650 extern int
651 read_security_data(const u8 metadata_resource[],
652                    u64 metadata_resource_len, struct wim_security_data **sd_p);
653 extern void
654 print_security_data(const struct wim_security_data *sd);
655
656 extern u8 *
657 write_security_data(const struct wim_security_data *sd, u8 *p);
658
659 extern void
660 free_security_data(struct wim_security_data *sd);
661
662 /* symlink.c */
663
664 #ifndef __WIN32__
665 ssize_t
666 inode_readlink(const struct wim_inode *inode, char *buf, size_t buf_len,
667                const WIMStruct *w, bool threadsafe);
668
669 extern int
670 inode_set_symlink(struct wim_inode *inode, const char *target,
671                   struct wim_lookup_table *lookup_table,
672                   struct wim_lookup_table_entry **lte_ret);
673 #endif
674
675 /* verify.c */
676
677 extern int
678 verify_dentry(struct wim_dentry *dentry, void *wim);
679
680 extern int
681 wim_run_full_verifications(WIMStruct *w);
682
683 extern int
684 verify_swm_set(WIMStruct *w,
685                WIMStruct **additional_swms, unsigned num_additional_swms);
686
687 /* wim.c */
688
689 extern int
690 select_wim_image(WIMStruct *w, int image);
691
692 extern int
693 for_image(WIMStruct *w, int image, int (*visitor)(WIMStruct *));
694
695 extern void
696 destroy_image_metadata(struct wim_image_metadata *imd,
697                        struct wim_lookup_table *table,
698                        bool free_metadata_lte);
699
700 extern void
701 put_image_metadata(struct wim_image_metadata *imd,
702                    struct wim_lookup_table *table);
703
704 extern int
705 append_image_metadata(WIMStruct *w, struct wim_image_metadata *imd);
706
707 extern struct wim_image_metadata *
708 new_image_metadata();
709
710 extern struct wim_image_metadata **
711 new_image_metadata_array(unsigned num_images);
712
713 extern int
714 wim_checksum_unhashed_streams(WIMStruct *w);
715
716 /* write.c */
717
718 /* Internal use only */
719 #define WIMLIB_WRITE_FLAG_NO_LOOKUP_TABLE       0x80000000
720 #define WIMLIB_WRITE_FLAG_REUSE_INTEGRITY_TABLE 0x40000000
721 #define WIMLIB_WRITE_FLAG_CHECKPOINT_AFTER_XML  0x20000000
722 #define WIMLIB_WRITE_MASK_PUBLIC                0x1fffffff
723
724 /* We are capturing a tree to be placed in the root of the WIM image */
725 #define WIMLIB_ADD_IMAGE_FLAG_ROOT      0x80000000
726
727 /* We are capturing a dentry that will become the root of a tree to be added to
728  * the WIM image */
729 #define WIMLIB_ADD_IMAGE_FLAG_SOURCE    0x40000000
730
731 extern int
732 begin_write(WIMStruct *w, const tchar *path, int write_flags);
733
734 extern void
735 close_wim_writable(WIMStruct *w);
736
737 extern int
738 finish_write(WIMStruct *w, int image, int write_flags,
739              wimlib_progress_func_t progress_func);
740
741 #if defined(HAVE_SYS_FILE_H) && defined(HAVE_FLOCK)
742 extern int
743 lock_wim(WIMStruct *w, FILE *fp);
744 #else
745 static inline int
746 lock_wim(WIMStruct *w, FILE *fp)
747 {
748         return 0;
749 }
750 #endif
751
752 #endif /* _WIMLIB_INTERNAL_H */
753