]> wimlib.net Git - wimlib/blob - src/wim.c
imagex-apply.1 updates
[wimlib] / src / wim.c
1 /*
2  * wim.c
3  */
4
5 /*
6  * Copyright (C) 2010 Carl Thijssen
7  * Copyright (C) 2012 Eric Biggers
8  *
9  * wimlib - Library for working with WIM files 
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 General Public License as published by the Free
15  * Software Foundation; either version 3 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 General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with wimlib; if not, see http://www.gnu.org/licenses/.
25  */
26
27 #include "wimlib_internal.h"
28 #include "io.h"
29 #include "lookup_table.h"
30 #include "xml.h"
31 #include <stdlib.h>
32
33 #ifdef WITH_NTFS_3G
34 #include <ntfs-3g/volume.h>
35 #endif
36
37 static int print_metadata(WIMStruct *w)
38 {
39         print_security_data(wim_security_data(w));
40         return for_dentry_in_tree(wim_root_dentry(w), print_dentry, 
41                                   w->lookup_table);
42 }
43
44
45 static int print_files(WIMStruct *w)
46 {
47         return for_dentry_in_tree(wim_root_dentry(w), print_dentry_full_path, 
48                                   NULL);
49 }
50
51 WIMStruct *new_wim_struct()
52 {
53         return CALLOC(1, sizeof(WIMStruct));
54 }
55
56 /* 
57  * Calls a function on images in the WIM.  If @image is WIM_ALL_IMAGES, @visitor
58  * is called on the WIM once for each image, with each image selected as the
59  * current image in turn.  If @image is a certain image, @visitor is called on
60  * the WIM only once, with that image selected.
61  */
62 int for_image(WIMStruct *w, int image, int (*visitor)(WIMStruct *))
63 {
64         int ret;
65         int i;
66         int end;
67
68         if (image == WIM_ALL_IMAGES) {
69                 i = 1;
70                 end = w->hdr.image_count;
71         } else {
72                 if (image < 1 || image > w->hdr.image_count)
73                         return WIMLIB_ERR_INVALID_IMAGE;
74                 i = image;
75                 end = image;
76         }
77         for (; i <= end; i++) {
78                 ret = wimlib_select_image(w, i);
79                 if (ret != 0)
80                         return ret;
81                 ret = visitor(w);
82                 if (ret != 0)
83                         return ret;
84         }
85         return 0;
86 }
87
88 static int sort_image_metadata_by_position(const void *p1, const void *p2)
89 {
90         struct image_metadata *bmd1 = (struct image_metadata*)p1;
91         struct image_metadata *bmd2 = (struct image_metadata*)p2;
92         u64 offset1 = bmd1->metadata_lte->resource_entry.offset;
93         u64 offset2 = bmd2->metadata_lte->resource_entry.offset;
94         if (offset1 < offset2)
95                 return -1;
96         else if (offset1 > offset2)
97                 return 1;
98         else
99                 return 0;
100 }
101
102 /* 
103  * If @lte points to a metadata resource, append it to the list of metadata
104  * resources in the WIMStruct.  Otherwise, do nothing.
105  */
106 static int append_metadata_resource_entry(struct lookup_table_entry *lte, 
107                                           void *wim_p)
108 {
109         WIMStruct *w = wim_p;
110
111         if (lte->resource_entry.flags & WIM_RESHDR_FLAG_METADATA) {
112                 /*fprintf(stderr, "found mlte at %u\n", lte->resource_entry.offset);*/
113                 if (w->current_image == w->hdr.image_count) {
114                         ERROR("Expected only %u images, but found more",
115                               w->hdr.image_count);
116                         return WIMLIB_ERR_IMAGE_COUNT;
117                 } else {
118                         DEBUG("Found metadata resource for image %u at "
119                               "offset %"PRIu64".",
120                               w->current_image + 1, 
121                               lte->resource_entry.offset);
122                         w->image_metadata[
123                                 w->current_image++].metadata_lte = lte;
124                 }
125         }
126         return 0;
127 }
128
129 /* Returns the compression type given in the flags of a WIM header. */
130 int wim_hdr_flags_compression_type(int wim_hdr_flags)
131 {
132         if (wim_hdr_flags & WIM_HDR_FLAG_COMPRESSION) {
133                 if (wim_hdr_flags & WIM_HDR_FLAG_COMPRESS_LZX)
134                         return WIM_COMPRESSION_TYPE_LZX;
135                 else if (wim_hdr_flags & WIM_HDR_FLAG_COMPRESS_XPRESS)
136                         return WIM_COMPRESSION_TYPE_XPRESS;
137                 else
138                         return WIM_COMPRESSION_TYPE_INVALID;
139         } else {
140                 return WIM_COMPRESSION_TYPE_NONE;
141         }
142 }
143
144 /*
145  * Creates a WIMStruct for a new WIM file.
146  */
147 WIMLIBAPI int wimlib_create_new_wim(int ctype, WIMStruct **w_ret)
148 {
149         WIMStruct *w;
150         struct lookup_table *table;
151         int ret;
152
153         DEBUG("Creating new WIM with %s compression.",
154               wimlib_get_compression_type_string(ctype));
155
156         /* Allocate the WIMStruct. */
157         w = new_wim_struct();
158         if (!w)
159                 return WIMLIB_ERR_NOMEM;
160
161         ret = init_header(&w->hdr, ctype);
162         if (ret != 0)
163                 goto out_free;
164
165         table = new_lookup_table(9001);
166         if (!table) {
167                 ret = WIMLIB_ERR_NOMEM;
168                 goto out_free;
169         }
170         w->lookup_table = table;
171         *w_ret = w;
172         return 0;
173 out_free:
174         FREE(w);
175         return ret;
176 }
177
178 WIMLIBAPI int wimlib_get_num_images(const WIMStruct *w)
179 {
180         return w->hdr.image_count;
181 }
182
183 int wimlib_select_image(WIMStruct *w, int image)
184 {
185         struct image_metadata *imd;
186
187         DEBUG("Selecting image %d", image);
188
189         if (image == w->current_image)
190                 return 0;
191
192         if (image < 1 || image > w->hdr.image_count) {
193                 ERROR("Cannot select image %d: There are only %u images",
194                       image, w->hdr.image_count);
195                 return WIMLIB_ERR_INVALID_IMAGE;
196         }
197
198
199         /* If a valid image is currently selected, it can be freed if it is not
200          * modified.  */
201         if (w->current_image != WIM_NO_IMAGE) {
202                 imd = wim_get_current_image_metadata(w);
203                 if (!imd->modified) {
204                         DEBUG("Freeing image %u", w->current_image);
205                         destroy_image_metadata(imd, NULL);
206                         imd->root_dentry = NULL;
207                         imd->security_data = NULL;
208                         imd->lgt = NULL;
209                 }
210         }
211
212         w->current_image = image;
213         imd = wim_get_current_image_metadata(w);
214
215         if (imd->root_dentry) {
216                 return 0;
217         } else {
218                 #ifdef ENABLE_DEBUG
219                 DEBUG("Reading metadata resource specified by the following "
220                       "lookup table entry:");
221                 print_lookup_table_entry(imd->metadata_lte);
222                 #endif
223                 return read_metadata_resource(w, imd);
224         }
225 }
226
227
228 /* Returns the compression type of the WIM file. */
229 WIMLIBAPI int wimlib_get_compression_type(const WIMStruct *w)
230 {
231         return wim_hdr_flags_compression_type(w->hdr.flags);
232 }
233
234 WIMLIBAPI const char *wimlib_get_compression_type_string(int ctype)
235 {
236         switch (ctype) {
237                 case WIM_COMPRESSION_TYPE_NONE:
238                         return "None";
239                 case WIM_COMPRESSION_TYPE_LZX:
240                         return "LZX";
241                 case WIM_COMPRESSION_TYPE_XPRESS:
242                         return "XPRESS";
243                 default:
244                         return "Invalid";
245         }
246 }
247
248 /*
249  * Returns the number of an image in the WIM file, given a string that is either
250  * the number of the image, or the name of the image.  The images are numbered
251  * starting at 1.
252  */
253 WIMLIBAPI int wimlib_resolve_image(WIMStruct *w, const char *image_name_or_num)
254 {
255         char *p;
256         int image;
257         int i;
258
259         if (!image_name_or_num)
260                 return WIM_NO_IMAGE;
261
262         if (strcmp(image_name_or_num, "all") == 0
263             || strcmp(image_name_or_num, "*") == 0)
264                 return WIM_ALL_IMAGES;
265         image = strtol(image_name_or_num, &p, 10);
266         if (p != image_name_or_num && *p == '\0') {
267                 if (image < 1 || image > w->hdr.image_count)
268                         return WIM_NO_IMAGE;
269                 return image;
270         } else {
271                 for (i = 1; i <= w->hdr.image_count; i++) {
272                         if (strcmp(image_name_or_num,
273                                    wimlib_get_image_name(w, i)) == 0)
274                                 return i;
275                 }
276                 return WIM_NO_IMAGE;
277         }
278 }
279
280
281 /* Prints some basic information about a WIM file. */
282 WIMLIBAPI void wimlib_print_wim_information(const WIMStruct *w)
283 {
284         const struct wim_header *hdr;
285         
286         hdr = &w->hdr;
287         puts("WIM Information:");
288         puts("----------------");
289         printf("Path:           %s\n", w->filename);
290         fputs ("GUID:           0x", stdout);
291         print_byte_field(hdr->guid, WIM_GID_LEN);
292         putchar('\n');
293         printf("Image Count:    %d\n", hdr->image_count);
294         printf("Compression:    %s\n", wimlib_get_compression_type_string(
295                                                 wimlib_get_compression_type(w)));
296         printf("Part Number:    %d/%d\n", hdr->part_number, hdr->total_parts);
297         printf("Boot Index:     %d\n", hdr->boot_idx);
298         printf("Size:           %"PRIu64" bytes\n", 
299                                 wim_info_get_total_bytes(w->wim_info));
300         printf("Integrity Info: %s\n", (w->hdr.integrity.size != 0) ? "yes" : "no");
301         putchar('\n');
302 }
303
304 WIMLIBAPI bool wimlib_has_integrity_table(const WIMStruct *w)
305 {
306         return w->hdr.integrity.size != 0;
307 }
308
309 WIMLIBAPI void wimlib_print_available_images(const WIMStruct *w, int image)
310 {
311         if (image == WIM_ALL_IMAGES) {
312                 puts("Available Images:");
313                 puts("-----------------");
314         } else {
315                 int n;
316                 int i;
317
318                 n = printf("Information for Image %d\n", image);
319                 for (i = 0; i < n - 1; i++)
320                         putchar('-');
321                 putchar('\n');
322
323         }
324         print_image_info(w->wim_info, image);
325 }
326
327
328 /* Prints the metadata for the specified image, which may be WIM_ALL_IMAGES, but
329  * not WIM_NO_IMAGE. */
330 WIMLIBAPI int wimlib_print_metadata(WIMStruct *w, int image)
331 {
332         if (!w)
333                 return WIMLIB_ERR_INVALID_PARAM;
334         if (w->hdr.part_number != 1) {
335                 ERROR("We cannot show the metadata from part %hu of a %hu-part split WIM.",
336                        w->hdr.part_number, w->hdr.total_parts);
337                 ERROR("Select the first part of the split WIM to see the metadata.");
338                 return WIMLIB_ERR_SPLIT_UNSUPPORTED;
339         }
340         if (image == WIM_ALL_IMAGES)
341                 DEBUG("Printing metadata for all images");
342         else
343                 DEBUG("Printing metadata for image %d", image);
344         return for_image(w, image, print_metadata);
345 }
346
347 WIMLIBAPI int wimlib_print_files(WIMStruct *w, int image)
348 {
349         if (!w)
350                 return WIMLIB_ERR_INVALID_PARAM;
351         if (w->hdr.part_number != 1) {
352                 ERROR("We cannot list the files from part %hu of a %hu-part split WIM",
353                        w->hdr.part_number, w->hdr.total_parts);
354                 ERROR("Select the first part of the split WIM if you'd like to list the files.");
355                 return WIMLIB_ERR_SPLIT_UNSUPPORTED;
356         }
357         return for_image(w, image, print_files);
358 }
359
360 /* Sets the index of the bootable image. */
361 WIMLIBAPI int wimlib_set_boot_idx(WIMStruct *w, int boot_idx)
362 {
363         if (!w)
364                 return WIMLIB_ERR_INVALID_PARAM;
365         if (w->hdr.total_parts != 1) {
366                 ERROR("We cannot modify the boot index of a split WIM");
367                 return WIMLIB_ERR_SPLIT_UNSUPPORTED;
368         }
369         if (boot_idx < 0 || boot_idx > w->hdr.image_count)
370                 return WIMLIB_ERR_INVALID_IMAGE;
371         w->hdr.boot_idx = boot_idx;
372         if (boot_idx == 0) {
373                 memset(&w->hdr.boot_metadata_res_entry, 0, 
374                        sizeof(struct resource_entry));
375         } else {
376                 memcpy(&w->hdr.boot_metadata_res_entry,
377                        &w->image_metadata[
378                                 boot_idx - 1].metadata_lte->resource_entry, 
379                        sizeof(struct resource_entry));
380         }
381         return 0;
382 }
383
384 WIMLIBAPI int wimlib_get_part_number(const WIMStruct *w, int *total_parts_ret)
385 {
386         if (total_parts_ret)
387                 *total_parts_ret = w->hdr.total_parts;
388         return w->hdr.part_number;
389 }
390                                     
391
392 WIMLIBAPI int wimlib_get_boot_idx(const WIMStruct *w)
393 {
394         return w->hdr.boot_idx;
395 }
396
397 /* 
398  * Begins the reading of a WIM file; opens the file and reads its header and
399  * lookup table, and optionally checks the integrity.
400  */
401 static int begin_read(WIMStruct *w, const char *in_wim_path, int flags)
402 {
403         int ret;
404         uint xml_num_images;
405
406         DEBUG("Reading the WIM file `%s'", in_wim_path);
407
408         w->filename = STRDUP(in_wim_path);
409         if (!w->filename) {
410                 ERROR("Failed to allocate memory for WIM filename");
411                 return WIMLIB_ERR_NOMEM;
412         }
413
414         w->fp = fopen(in_wim_path, "rb");
415
416         if (!w->fp) {
417                 ERROR_WITH_ERRNO("Failed to open the file `%s' for reading",
418                                  in_wim_path);
419                 return WIMLIB_ERR_OPEN;
420         }
421
422         ret = read_header(w->fp, &w->hdr, flags & WIMLIB_OPEN_FLAG_SPLIT_OK);
423         if (ret != 0)
424                 return ret;
425
426         DEBUG("Wim file contains %u images", w->hdr.image_count);
427
428         /* If the boot index is invalid, print a warning and set it to 0 */
429         if (w->hdr.boot_idx > w->hdr.image_count) {
430                 WARNING("In `%s', image %u is marked as bootable, "
431                         "but there are only %u images",
432                          in_wim_path, w->hdr.boot_idx, w->hdr.image_count);
433                 w->hdr.boot_idx = 0;
434         }
435
436         if (wimlib_get_compression_type(w) == WIM_COMPRESSION_TYPE_INVALID) {
437                 ERROR("Invalid compression type (WIM header flags = %x)",
438                       w->hdr.flags);
439                 return WIMLIB_ERR_INVALID_COMPRESSION_TYPE;
440         }
441
442
443         if (flags & WIMLIB_OPEN_FLAG_CHECK_INTEGRITY) {
444                 int integrity_status;
445                 ret = check_wim_integrity(w, 
446                                           flags & WIMLIB_OPEN_FLAG_SHOW_PROGRESS, 
447                                           &integrity_status);
448                 if (ret != 0) {
449                         ERROR("Error in check_wim_integrity()");
450                         return ret;
451                 }
452                 if (integrity_status == WIM_INTEGRITY_NONEXISTENT) {
453                         WARNING("No integrity information for `%s'; skipping "
454                                 "integrity check.", w->filename);
455                 } else if (integrity_status == WIM_INTEGRITY_NOT_OK) {
456                         ERROR("WIM is not intact! (Failed integrity check)");
457                         return WIMLIB_ERR_INTEGRITY;
458                 }
459         }
460
461         if (resource_is_compressed(&w->hdr.lookup_table_res_entry)) {
462                 ERROR("Didn't expect a compressed lookup table!");
463                 ERROR("Ask the author to implement support for this.");
464                 return WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE;
465         }
466
467         ret = read_lookup_table(w);
468         if (ret != 0)
469                 return ret;
470
471         w->image_metadata = CALLOC(w->hdr.image_count, 
472                                    sizeof(struct image_metadata));
473
474         if (!w->image_metadata) {
475                 ERROR("Failed to allocate memory for %u metadata structures",
476                       w->hdr.image_count);
477                 return WIMLIB_ERR_NOMEM;
478         }
479         w->current_image = 0;
480
481         DEBUG("Looking for metadata resources in the lookup table.");
482
483         /* Find the images in the WIM by searching the lookup table. */
484         ret = for_lookup_table_entry(w->lookup_table, 
485                                      append_metadata_resource_entry, w);
486
487         if (ret != 0)
488                 return ret;
489
490         /* Make sure all the expected images were found.  (We already have
491          * returned false if *extra* images were found) */
492         if (w->current_image != w->hdr.image_count && w->hdr.part_number == 1) {
493                 ERROR("Only found %u images in WIM, but expected %u",
494                       w->current_image, w->hdr.image_count);
495                 return WIMLIB_ERR_IMAGE_COUNT;
496         }
497
498
499         /* Sort images by the position of their metadata resources.  I'm
500          * assuming that is what determines the other of the images in the WIM
501          * file, rather than their order in the lookup table, which is random
502          * because of hashing. */
503         qsort(w->image_metadata, w->current_image,
504               sizeof(struct image_metadata), sort_image_metadata_by_position);
505
506         w->current_image = WIM_NO_IMAGE;
507
508         /* Read the XML data. */
509         ret = read_xml_data(w->fp, &w->hdr.xml_res_entry, 
510                             &w->xml_data, &w->wim_info);
511
512         if (ret != 0) {
513                 ERROR("Missing or invalid XML data");
514                 return ret;
515         }
516
517         xml_num_images = wim_info_get_num_images(w->wim_info);
518         if (xml_num_images != w->hdr.image_count) {
519                 ERROR("In the file `%s', there are %u <IMAGE> elements "
520                       "in the XML data,", in_wim_path, xml_num_images);
521                 ERROR("but %u images in the WIM!  There must be exactly one "
522                       "<IMAGE> element per image.", w->hdr.image_count);
523                 return WIMLIB_ERR_IMAGE_COUNT;
524         }
525
526         DEBUG("Done beginning read of WIM file `%s'.", in_wim_path);
527         return 0;
528 }
529
530
531 /*
532  * Opens a WIM file and creates a WIMStruct for it.
533  */
534 WIMLIBAPI int wimlib_open_wim(const char *wim_file, int flags, 
535                               WIMStruct **w_ret)
536 {
537         WIMStruct *w;
538         int ret;
539
540         DEBUG("wim_file = `%s', flags = %#x", wim_file, flags);
541         w = new_wim_struct();
542         if (!w) {
543                 ERROR("Failed to allocate memory for WIMStruct");
544                 return WIMLIB_ERR_NOMEM;
545         }
546
547         ret = begin_read(w, wim_file, flags);
548         if (ret != 0) {
549                 DEBUG("Could not begin reading the WIM file `%s'", wim_file);
550                 wimlib_free(w);
551                 return ret;
552         }
553         *w_ret = w;
554         return 0;
555 }
556
557 /* Frees the memory for the WIMStruct, including all internal memory; also
558  * closes all files associated with the WIMStruct.  */
559 WIMLIBAPI void wimlib_free(WIMStruct *w)
560 {
561         DEBUG2("Freeing WIMStruct");
562
563         if (!w)
564                 return;
565         if (w->fp)
566                 fclose(w->fp);
567         if (w->out_fp)
568                 fclose(w->out_fp);
569
570         free_lookup_table(w->lookup_table);
571
572         FREE(w->filename);
573         FREE(w->xml_data);
574         free_wim_info(w->wim_info);
575         if (w->image_metadata) {
576                 for (uint i = 0; i < w->hdr.image_count; i++)
577                         destroy_image_metadata(&w->image_metadata[i], NULL);
578                 FREE(w->image_metadata);
579         }
580 #ifdef WITH_NTFS_3G
581         if (w->ntfs_vol) {
582                 DEBUG("Unmounting NTFS volume");
583                 ntfs_umount(w->ntfs_vol, FALSE);
584         }
585 #endif
586         FREE(w);
587 }
588