X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Fwim.c;h=5a38688be443976a220e2e90f38cc8443ea70c46;hp=500fc1ebc08f7407028be9041fb9f2defe7fbbe2;hb=8f16067f71da5f45eda84813e9a07e68641bc283;hpb=bde99a849d3e7a479cb04a4e16e405b0c2f022dd diff --git a/src/wim.c b/src/wim.c index 500fc1eb..5a38688b 100644 --- a/src/wim.c +++ b/src/wim.c @@ -3,7 +3,6 @@ */ /* - * Copyright (C) 2010 Carl Thijssen * Copyright (C) 2012 Eric Biggers * * wimlib - Library for working with WIM files @@ -28,6 +27,7 @@ #include #include #include +#include #include "dentry.h" #include @@ -39,11 +39,10 @@ #endif #include "wimlib_internal.h" -#include "io.h" +#include "buffer_io.h" #include "lookup_table.h" #include "xml.h" - static int print_metadata(WIMStruct *w) { DEBUG("Printing metadata for image %d", w->current_image); @@ -59,7 +58,7 @@ static int print_files(WIMStruct *w) NULL); } -WIMStruct *new_wim_struct() +static WIMStruct *new_wim_struct() { WIMStruct *w = CALLOC(1, sizeof(WIMStruct)); #ifdef WITH_FUSE @@ -149,7 +148,7 @@ static int append_metadata_resource_entry(struct lookup_table_entry *lte, } /* Returns the compression type given in the flags of a WIM header. */ -int wim_hdr_flags_compression_type(int wim_hdr_flags) +static int wim_hdr_flags_compression_type(int wim_hdr_flags) { if (wim_hdr_flags & WIM_HDR_FLAG_COMPRESSION) { if (wim_hdr_flags & WIM_HDR_FLAG_COMPRESS_LZX) @@ -208,6 +207,11 @@ int select_wim_image(WIMStruct *w, int image) DEBUG("Selecting image %d", image); + if (image == WIMLIB_NO_IMAGE) { + ERROR("Invalid image: %d", WIMLIB_NO_IMAGE); + return WIMLIB_ERR_INVALID_IMAGE; + } + if (image == w->current_image) return 0; @@ -226,6 +230,7 @@ int select_wim_image(WIMStruct *w, int image) destroy_image_metadata(imd, NULL); imd->root_dentry = NULL; imd->security_data = NULL; + INIT_HLIST_HEAD(&imd->inode_list); } } @@ -317,7 +322,7 @@ WIMLIBAPI void wimlib_print_wim_information(const WIMStruct *w) printf("Boot Index: %d\n", hdr->boot_idx); printf("Size: %"PRIu64" bytes\n", wim_info_get_total_bytes(w->wim_info)); - printf("Integrity Info: %s\n", (w->hdr.integrity.size != 0) ? "yes" : "no"); + printf("Integrity Info: %s\n", (w->hdr.integrity.offset != 0) ? "yes" : "no"); putchar('\n'); } @@ -357,8 +362,6 @@ WIMLIBAPI void wimlib_print_available_images(const WIMStruct *w, int image) * not WIMLIB_NO_IMAGE. */ WIMLIBAPI int wimlib_print_metadata(WIMStruct *w, int image) { - if (!w) - return WIMLIB_ERR_INVALID_PARAM; if (w->hdr.part_number != 1) { ERROR("Cannot show the metadata from part %hu of a %hu-part split WIM!", w->hdr.part_number, w->hdr.total_parts); @@ -370,8 +373,6 @@ WIMLIBAPI int wimlib_print_metadata(WIMStruct *w, int image) WIMLIBAPI int wimlib_print_files(WIMStruct *w, int image) { - if (!w) - return WIMLIB_ERR_INVALID_PARAM; if (w->hdr.part_number != 1) { ERROR("Cannot list the files from part %hu of a %hu-part split WIM!", w->hdr.part_number, w->hdr.total_parts); @@ -384,8 +385,6 @@ WIMLIBAPI int wimlib_print_files(WIMStruct *w, int image) /* Sets the index of the bootable image. */ WIMLIBAPI int wimlib_set_boot_idx(WIMStruct *w, int boot_idx) { - if (!w) - return WIMLIB_ERR_INVALID_PARAM; if (w->hdr.total_parts != 1) { ERROR("Cannot modify the boot index of a split WIM!"); return WIMLIB_ERR_SPLIT_UNSUPPORTED; @@ -420,45 +419,6 @@ WIMLIBAPI int wimlib_get_boot_idx(const WIMStruct *w) return w->hdr.boot_idx; } -/* Opens a WIM readable */ -int open_wim_readable(WIMStruct *w, const char *path) -{ - if (w->fp != NULL) - fclose(w->fp); - wimlib_assert(path != NULL); - w->fp = fopen(path, "rb"); - if (!w->fp) { - ERROR_WITH_ERRNO("Failed to open `%s' for reading", - path); - return WIMLIB_ERR_OPEN; - } - return 0; -} - -/* Opens a WIM writable */ -int open_wim_writable(WIMStruct *w, const char *path, - bool trunc, bool readable) -{ - const char *mode; - if (trunc) - if (readable) - mode = "w+b"; - else - mode = "wb"; - else - mode = "r+b"; - - DEBUG("Opening `%s' read-write", path); - wimlib_assert(w->out_fp == NULL); - wimlib_assert(path != NULL); - w->out_fp = fopen(path, mode); - if (!w->out_fp) { - ERROR_WITH_ERRNO("Failed to open `%s' for writing", path); - return WIMLIB_ERR_OPEN; - } - return 0; -} - /* * Begins the reading of a WIM file; opens the file and reads its header and * lookup table, and optionally checks the integrity. @@ -467,26 +427,40 @@ static int begin_read(WIMStruct *w, const char *in_wim_path, int open_flags, wimlib_progress_func_t progress_func) { int ret; - uint xml_num_images; + int xml_num_images; DEBUG("Reading the WIM file `%s'", in_wim_path); - ret = open_wim_readable(w, in_wim_path); - if (ret != 0) - goto out; + w->fp = fopen(in_wim_path, "rb"); + if (!w->fp) { + ERROR_WITH_ERRNO("Failed to open `%s' for reading", + in_wim_path); + return WIMLIB_ERR_OPEN; + } + /* The absolute path to the WIM is requested so that wimlib_overwrite() + * still works even if the process changes its working directory. This + * actually happens if a WIM is mounted read-write, since the FUSE + * thread changes directory to "/", and it needs to be able to find the + * WIM file again. + * + * This will break if the full path to the WIM changes in the + * intervening time... + */ w->filename = realpath(in_wim_path, NULL); if (!w->filename) { ERROR_WITH_ERRNO("Failed to resolve WIM filename"); - ret = WIMLIB_ERR_NOMEM; - goto out_close; + if (errno == ENOMEM) + return WIMLIB_ERR_NOMEM; + else + return WIMLIB_ERR_OPEN; } ret = read_header(w->fp, &w->hdr, open_flags); if (ret != 0) - goto out_close; + return ret; - DEBUG("Wim file contains %u images", w->hdr.image_count); + DEBUG("According to header, WIM contains %u images", w->hdr.image_count); /* If the boot index is invalid, print a warning and set it to 0 */ if (w->hdr.boot_idx > w->hdr.image_count) { @@ -497,45 +471,37 @@ static int begin_read(WIMStruct *w, const char *in_wim_path, int open_flags, } if (wimlib_get_compression_type(w) == WIMLIB_COMPRESSION_TYPE_INVALID) { - ERROR("Invalid compression type (WIM header flags = %x)", + ERROR("Invalid compression type (WIM header flags = 0x%x)", w->hdr.flags); - ret = WIMLIB_ERR_INVALID_COMPRESSION_TYPE; - goto out_close; + return WIMLIB_ERR_INVALID_COMPRESSION_TYPE; } if (open_flags & WIMLIB_OPEN_FLAG_CHECK_INTEGRITY) { ret = check_wim_integrity(w, progress_func); if (ret == WIM_INTEGRITY_NONEXISTENT) { WARNING("No integrity information for `%s'; skipping " - "integrity check.", w->filename); + "integrity check.", in_wim_path); } else if (ret == WIM_INTEGRITY_NOT_OK) { ERROR("WIM is not intact! (Failed integrity check)"); - ret = WIMLIB_ERR_INTEGRITY; - goto out_close; - } else if (ret != 0) { - goto out_close; + return WIMLIB_ERR_INTEGRITY; + } else if (ret != WIM_INTEGRITY_OK) { + return ret; } } - if (resource_is_compressed(&w->hdr.lookup_table_res_entry)) { - ERROR("Didn't expect a compressed lookup table!"); - ERROR("Ask the author to implement support for this."); - ret = WIMLIB_ERR_COMPRESSED_LOOKUP_TABLE; - goto out_close; - } - ret = read_lookup_table(w); if (ret != 0) - goto out_close; + return ret; - w->image_metadata = CALLOC(w->hdr.image_count, - sizeof(struct image_metadata)); + if (w->hdr.image_count != 0) { + w->image_metadata = CALLOC(w->hdr.image_count, + sizeof(struct image_metadata)); - if (!w->image_metadata) { - ERROR("Failed to allocate memory for %u metadata structures", - w->hdr.image_count); - ret = WIMLIB_ERR_NOMEM; - goto out_free_lookup_table; + if (!w->image_metadata) { + ERROR("Failed to allocate memory for %u image metadata structures", + w->hdr.image_count); + return WIMLIB_ERR_NOMEM; + } } w->current_image = 0; @@ -546,17 +512,16 @@ static int begin_read(WIMStruct *w, const char *in_wim_path, int open_flags, append_metadata_resource_entry, w); if (ret != 0) - goto out_free_image_metadata; + return ret; /* Make sure all the expected images were found. (We already have * returned false if *extra* images were found) */ if (w->current_image != w->hdr.image_count && w->hdr.part_number == 1) { - ERROR("Only found %u images in WIM, but expected %u", + ERROR("Only found %d images in WIM, but expected %u", w->current_image, w->hdr.image_count); - ret = WIMLIB_ERR_IMAGE_COUNT; - goto out_free_image_metadata; + return WIMLIB_ERR_IMAGE_COUNT; } /* Sort images by the position of their metadata resources. I'm @@ -573,7 +538,7 @@ static int begin_read(WIMStruct *w, const char *in_wim_path, int open_flags, &w->xml_data, &w->wim_info); if (ret != 0) - goto out_free_image_metadata; + return ret; xml_num_images = wim_info_get_num_images(w->wim_info); if (xml_num_images != w->hdr.image_count) { @@ -581,34 +546,11 @@ static int begin_read(WIMStruct *w, const char *in_wim_path, int open_flags, "in the XML data,", in_wim_path, xml_num_images); ERROR("but %u images in the WIM! There must be exactly one " " element per image.", w->hdr.image_count); - ret = WIMLIB_ERR_IMAGE_COUNT; - goto out_free_xml_data; + return WIMLIB_ERR_IMAGE_COUNT; } DEBUG("Done beginning read of WIM file `%s'.", in_wim_path); return 0; - - // - // Everything is freed in wimlib_free() anyway, so no need to roll back - // changes here. - // -out_free_xml_data: - /*FREE(w->xml_data);*/ - /*w->xml_data = NULL;*/ - /*free_wim_info(w->wim_info);*/ - /*w->wim_info = NULL;*/ -out_free_image_metadata: - /*FREE(w->image_metadata);*/ - /*w->image_metadata = NULL;*/ - /*w->current_image = WIMLIB_NO_IMAGE;*/ -out_free_lookup_table: - /*free_lookup_table(w->lookup_table);*/ - /*w->lookup_table = NULL;*/ -out_close: - /*fclose(w->fp);*/ - /*w->fp = NULL;*/ -out: - return ret; } @@ -622,23 +564,35 @@ WIMLIBAPI int wimlib_open_wim(const char *wim_file, int open_flags, WIMStruct *w; int ret; - DEBUG("wim_file = `%s', open_flags = %#x", wim_file, open_flags); + if (!wim_file || !w_ret) + return WIMLIB_ERR_INVALID_PARAM; + w = new_wim_struct(); - if (!w) { - ERROR("Failed to allocate memory for WIMStruct"); + if (!w) return WIMLIB_ERR_NOMEM; - } ret = begin_read(w, wim_file, open_flags, progress_func); - if (ret == 0) { + if (ret == 0) *w_ret = w; - } else { - DEBUG("Could not begin reading the WIM file `%s'", wim_file); + else wimlib_free(w); - } return ret; } +void destroy_image_metadata(struct image_metadata *imd, + struct lookup_table *table) +{ + free_dentry_tree(imd->root_dentry, table); + free_security_data(imd->security_data); + + /* Get rid of the lookup table entry for this image's metadata resource + * */ + if (table) { + lookup_table_unlink(table, imd->metadata_lte); + free_lookup_table_entry(imd->metadata_lte); + } +} + /* Frees the memory for the WIMStruct, including all internal memory; also * closes all files associated with the WIMStruct. */ WIMLIBAPI void wimlib_free(WIMStruct *w) @@ -668,7 +622,7 @@ WIMLIBAPI void wimlib_free(WIMStruct *w) FREE(w->xml_data); free_wim_info(w->wim_info); if (w->image_metadata) { - for (uint i = 0; i < w->hdr.image_count; i++) + for (unsigned i = 0; i < w->hdr.image_count; i++) destroy_image_metadata(&w->image_metadata[i], NULL); FREE(w->image_metadata); }