]> wimlib.net Git - wimlib/blob - src/wimlib_internal.h
Various fixes
[wimlib] / src / wimlib_internal.h
1 /*
2  * wimlib_internal.h
3  *
4  * Internal header for wimlib.
5  */
6
7 /*
8  * Copyright (C) 2010 Carl Thijssen
9  * Copyright (C) 2012 Eric Biggers
10  *
11  * This file is part of wimlib, a library for working with WIM files.
12  *
13  * wimlib is free software; you can redistribute it and/or modify it under the
14  * terms of the GNU Lesser General Public License as published by the Free
15  * Software Foundation; either version 2.1 of the License, or (at your option)
16  * any later version.
17  *
18  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
19  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20  * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU Lesser General Public License
24  * along with wimlib; if not, see http://www.gnu.org/licenses/.
25  */
26
27 #ifndef _WIMLIB_INTERNAL_H
28 #define _WIMLIB_INTERNAL_H
29
30 #include "util.h"
31
32 struct stat;
33
34 #ifndef WIM_HASH_SIZE
35 #define WIM_HASH_SIZE  20
36 #endif
37
38 #define WIM_MAGIC_LEN  8
39 #define WIM_GID_LEN    16
40 #define WIM_UNUSED_LEN 60
41
42
43 /* Length of the WIM header on disk. */
44 #define WIM_HEADER_DISK_SIZE (148 + WIM_UNUSED_LEN)
45
46 /* Compressed resources in the WIM are divided into separated compressed chunks
47  * of this size. */
48 #define WIM_CHUNK_SIZE 32768
49
50 /* Version of the WIM file.  There is an older version, but we don't support it
51  * yet.  The differences between the versions are undocumented. */
52 #define WIM_VERSION 0x10d00
53
54 enum wim_integrity_status {
55         WIM_INTEGRITY_OK,
56         WIM_INTEGRITY_NOT_OK,
57         WIM_INTEGRITY_NONEXISTENT,
58 };
59
60 /* Metadata for a resource in a WIM file. */
61 struct resource_entry {
62         /* Size, in bytes, of the resource in the WIM file. */
63         u64 size  : 56;
64
65         /* Bitwise or of one or more of the WIM_RESHDR_FLAG_* flags. */
66         u64 flags : 8;
67
68         /* Offset, in bytes, of the resource in the WIM file. */
69         u64 offset;
70
71         /* Uncompressed size of the resource in the WIM file.  Is the same as
72          * @size if the resource is uncompressed. */
73         u64 original_size;
74 };
75
76 /* Flags for the `flags' field of the struct resource_entry structure. */
77
78 /* ??? */
79 #define WIM_RESHDR_FLAG_FREE            0x01
80
81 /* Indicates that a file resource is a metadata resource. */
82 #define WIM_RESHDR_FLAG_METADATA        0x02
83
84 /* Indicates that a file resource is compressed. */
85 #define WIM_RESHDR_FLAG_COMPRESSED      0x04
86
87 /* ??? */
88 #define WIM_RESHDR_FLAG_SPANNED         0x08
89
90
91 /* Header at the very beginning of the WIM file. */
92 struct wim_header { 
93         /* Identifies the file as WIM file. Must be exactly
94          * {'M', 'S', 'W', 'I', 'M', 0, 0, 0}  */
95         //u8  magic[WIM_MAGIC_LEN];     
96
97         /* size of WIM header in bytes. */
98         //u32 hdr_size;
99
100         /* Version of the WIM file.  M$ provides no documentation about exactly
101          * what this field affects about the file format, other than the fact
102          * that more recent versions have a higher value. */
103         //u32 version;
104
105         /* Bitwise OR of one or more of the WIM_HDR_FLAG_* defined below. */
106         u32 flags;
107
108         /* The size of the pieces that the uncompressed files were split up into
109          * when they were compressed.  This should be the same as
110          * WIM_CHUNK_SIZE.  M$ incorrectly documents this as "the size of the
111          * compressed .wim file in bytes".*/
112         //u32 chunk_size;
113         
114         /* A unique identifier for the WIM file. */
115         u8  guid[WIM_GID_LEN];
116
117         /* Part number of the WIM file in a spanned set. */
118         u16 part_number;
119
120         /* Total number of parts in a spanned set. */
121         u16 total_parts;
122
123         /* Number of images in the WIM file. */
124         u32 image_count;
125
126         /* Location, size, and flags of the lookup table of the WIM. */
127         struct resource_entry lookup_table_res_entry;
128
129         /* Location, size, and flags for the XML data of the WIM. */
130         struct resource_entry xml_res_entry;
131
132         /* Location, size, and flags for the boot metadata.  This means the
133          * metadata resource for the image specified by boot_idx below.  Should
134          * be zeroed out if boot_idx is 0. */
135         struct resource_entry boot_metadata_res_entry;
136
137         /* The index of the bootable image in the WIM file. If 0, there are no
138          * bootable images available. */
139         u32 boot_idx; 
140
141         /* The location of the optional integrity table used to verify the
142          * integrity WIM.  Zeroed out if there is no integrity table.*/
143         struct resource_entry integrity;
144
145         /* Reserved for future disuse */
146         //u8 unused[WIM_UNUSED_LEN];
147 };
148
149 /* Flags for the `flags' field of the struct wim_header. */
150
151
152 /* Reserved for future use by M$ */
153 #define WIM_HDR_FLAG_RESERVED           0x00000001
154
155 /* Files and metadata in the WIM are compressed. */
156 #define WIM_HDR_FLAG_COMPRESSION        0x00000002
157
158 /* WIM is read-only. */
159 #define WIM_HDR_FLAG_READONLY           0x00000004
160
161 /* Resource data specified by images in this WIM may be contained in a different
162  * WIM */
163 #define WIM_HDR_FLAG_SPANNED            0x00000008
164
165 /* The WIM contains resources only; no filesystem metadata. */
166 #define WIM_HDR_FLAG_RESOURCE_ONLY      0x00000010
167
168 /* The WIM contains metadata only. */
169 #define WIM_HDR_FLAG_METADATA_ONLY      0x00000020
170
171 /* Lock field to prevent multiple writers from writing the WIM concurrently. */
172 #define WIM_HDR_FLAG_WRITE_IN_PROGRESS  0x00000040 
173
174 /* Reparse point fixup ??? */
175 #define WIM_HDR_FLAG_RP_FIX             0x00000080
176
177 /* Unknown compression type */
178 #define WIM_HDR_FLAG_COMPRESS_RESERVED  0x00010000
179
180 /* Resources within the WIM are compressed using "XPRESS" compression, which is
181  * a LZ77-based compression algorithm. */
182 #define WIM_HDR_FLAG_COMPRESS_XPRESS    0x00020000
183
184 /* Resources within the WIM are compressed using "LZX" compression.  This is also
185  * a LZ77-based algorithm. */
186 #define WIM_HDR_FLAG_COMPRESS_LZX       0x00040000
187
188
189 /* Structure for security data.  Each image in the WIM file has its own security
190  * data. */
191 struct wim_security_data {
192         /* The total length of the security data, in bytes.  A typical size is
193          * 2048 bytes.  If there is no security data, though (as in the WIMs
194          * that wimlib writes, currently), it will be 8 bytes. */
195         u32 total_length;
196
197         /* The number of security descriptors in the array @descriptors, below. */
198         u32 num_entries;
199
200         /* Array of sizes of the descriptors in the array @descriptors. */
201         u64 *sizes;
202
203         /* Array of descriptors. */
204         u8 **descriptors;
205
206         /* keep track of how many WIMs reference this security data (used when
207          * exporting images between WIMs) */
208         u32 refcnt;
209 } WIMSecurityData;
210
211 struct link_group_table;
212
213
214 /* Metadata resource for an image. */
215 struct image_metadata {
216         /* Pointer to the root dentry for the image. */
217         struct dentry    *root_dentry;
218
219         /* Pointer to the security data for the image. */
220         struct wim_security_data *security_data;
221
222         /* A pointer to the lookup table entry for this image's metadata
223          * resource. */
224         struct lookup_table_entry *metadata_lte;
225
226         /* Hard link group table */
227         struct link_group_table *lgt;
228
229         /* True if the filesystem of the image has been modified.  If this is
230          * the case, the memory for the filesystem is not freed when switching
231          * to a different WIM image. */
232         bool modified;
233
234 };
235
236 /* The opaque structure exposed to the wimlib API. */
237 typedef struct WIMStruct {
238
239         /* A pointer to the file indicated by @filename, opened for reading. */
240         FILE                *fp;
241
242         /* FILE pointer for the WIM file that is being written. */
243         FILE  *out_fp;
244
245         /* The name of the WIM file that has been opened. */
246         char                *filename;
247
248         /* The lookup table for the WIM file. */ 
249         struct lookup_table *lookup_table;
250
251         /* Pointer to the XML data read from the WIM file. */
252         u8                  *xml_data;
253
254         /* Information retrieved from the XML data, arranged
255          * in an orderly manner. */
256         struct wim_info      *wim_info;
257
258         /* Array of the image metadata of length image_count.  Each image in the
259          * WIM has a image metadata associated with it. */
260         struct image_metadata     *image_metadata;
261
262         /* Name of the output directory for extraction. */
263         char  *output_dir;
264
265         /* The header of the WIM file. */
266         struct wim_header    hdr;
267
268         /* Temporary flags to use when extracting a WIM image or adding a WIM
269          * image. */
270         union {
271                 int extract_flags;
272                 int add_flags;
273         };
274
275         /* The currently selected image, indexed starting at 1.  If not 0,
276          * subtract 1 from this to get the index of the current image in the
277          * image_metadata array. */
278         int current_image;
279
280         union {
281                 /* Set to true when extracting multiple images */
282                 bool is_multi_image_extraction;
283
284                 bool write_metadata;
285         };
286 } WIMStruct;
287
288
289 /* Inline utility functions for WIMStructs. */
290
291 static inline struct dentry *wim_root_dentry(WIMStruct *w)
292 {
293         return w->image_metadata[w->current_image - 1].root_dentry;
294 }
295
296 static inline struct dentry **wim_root_dentry_p(WIMStruct *w)
297 {
298         return &w->image_metadata[w->current_image - 1].root_dentry;
299 }
300
301 static inline struct wim_security_data *wim_security_data(WIMStruct *w)
302 {
303         return w->image_metadata[w->current_image - 1].security_data;
304 }
305
306 static inline struct lookup_table_entry*
307 wim_metadata_lookup_table_entry(WIMStruct *w)
308 {
309         return w->image_metadata[w->current_image - 1].metadata_lte;
310 }
311
312 /* Nonzero if a struct resource_entry indicates a compressed resource. */
313 static inline int resource_is_compressed(const struct resource_entry *entry)
314 {
315         return (entry->flags & WIM_RESHDR_FLAG_COMPRESSED);
316 }
317
318 static inline struct image_metadata *wim_get_current_image_metadata(WIMStruct *w)
319 {
320         return &w->image_metadata[w->current_image - 1];
321 }
322
323 /* Prints a hash code field. */
324 static inline void print_hash(const u8 hash[])
325 {
326         print_byte_field(hash, WIM_HASH_SIZE);
327 }
328
329 /* hardlink.c */
330
331 struct link_group_table *new_link_group_table(u64 capacity);
332 int link_group_table_insert(struct dentry *dentry,
333                             struct link_group_table *table);
334 void free_link_group_table(struct link_group_table *table);
335 u64 assign_link_groups(struct link_group_table *table);
336 int link_groups_free_duplicate_data(struct link_group_table *table);
337
338
339 /* header.c */
340 extern int read_header(FILE *fp, struct wim_header *hdr, int split_ok);
341 extern int write_header(const struct wim_header *hdr, FILE *out);
342 extern int init_header(struct wim_header *hdr, int ctype);
343
344 /* integrity.c */
345 extern int write_integrity_table(FILE *out, u64 end_header_offset, 
346                                  u64 end_lookup_table_offset,
347                                  int show_progress);
348 extern int check_wim_integrity(WIMStruct *w, int show_progress, int *status);
349
350 /* modify.c */
351 extern void destroy_image_metadata(struct image_metadata *imd,
352                                    struct lookup_table *lt);
353
354 /* resource.c */
355 extern const u8 *get_resource_entry(const u8 *p, struct resource_entry *entry);
356 extern u8 *put_resource_entry(u8 *p, const struct resource_entry *entry);
357
358 extern int read_resource(FILE *fp, u64 resource_size, 
359                          u64 resource_original_size,
360                          u64 resource_offset, int resource_ctype, u64 len, 
361                          u64 offset, void *contents_ret);
362
363 extern int read_uncompressed_resource(FILE *fp, u64 offset, u64 len, 
364                                         u8 contents_ret[]);
365
366
367 extern int extract_resource_to_fd(WIMStruct *w, 
368                                   const struct resource_entry *entry, 
369                                   int fd, 
370                                   u64 size);
371
372 extern int extract_full_resource_to_fd(WIMStruct *w, 
373                                        const struct resource_entry *entry, 
374                                        int fd);
375
376 extern int read_metadata_resource(FILE *fp, int wim_ctype, 
377                                   struct image_metadata *image_metadata);
378
379 extern int resource_compression_type(int wim_ctype, int reshdr_flags);
380
381 static inline int read_full_resource(FILE *fp, u64 resource_size, 
382                                      u64 resource_original_size,
383                                      u64 resource_offset, 
384                                      int resource_ctype, void *contents_ret)
385 {
386         return read_resource(fp, resource_size, resource_original_size, 
387                                 resource_offset, resource_ctype,
388                                 resource_original_size, 0, contents_ret);
389 }
390
391 extern int write_dentry_resources(struct dentry *dentry, void *wim_p);
392 extern int copy_resource(struct lookup_table_entry *lte, void *w);
393 extern int copy_between_files(FILE *in, off_t in_offset, FILE *out, size_t len);
394 extern int write_resource_from_memory(const u8 resource[], int out_ctype,
395                                       u64 resource_original_size, FILE *out,
396                                       u64 *resource_size_ret);
397 extern int write_metadata_resource(WIMStruct *w);
398
399
400 /* security.c */
401 int read_security_data(const u8 metadata_resource[], 
402                 u64 metadata_resource_len, struct wim_security_data **sd_p);
403
404 void print_security_data(const struct wim_security_data *sd);
405 u8 *write_security_data(const struct wim_security_data *sd, u8 *p);
406 void free_security_data(struct wim_security_data *sd);
407
408 /* symlink.c */
409 ssize_t dentry_readlink(const struct dentry *dentry, char *buf, size_t buf_len,
410                         const WIMStruct *w);
411 extern void *make_symlink_reparse_data_buf(const char *symlink_target,
412                                            size_t *len_ret);
413 extern int dentry_set_symlink(struct dentry *dentry,
414                               const char *target,
415                               struct lookup_table *lookup_table);
416
417 /* wim.c */
418 extern WIMStruct *new_wim_struct();
419 extern int wimlib_select_image(WIMStruct *w, int image);
420 extern int wim_hdr_flags_compression_type(int wim_hdr_flags);
421 extern int wim_resource_compression_type(const WIMStruct *w, 
422                                          const struct resource_entry *entry);
423 extern int for_image(WIMStruct *w, int image, int (*visitor)(WIMStruct *));
424
425 /* write.c */
426 extern int finish_write(WIMStruct *w, int image, int flags, 
427                         int write_lookup_table);
428
429 extern int begin_write(WIMStruct *w, const char *path, int flags);
430
431
432 #include "wimlib.h"
433
434 #endif /* _WIMLIB_INTERNAL_H */
435