X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fwim.c;h=5feb7a44fb2270b221c3d4aaefaf44632c3c943c;hb=0b1278f508ef7606c822edadb3958c2c3648b419;hp=e7025daf03e0badcf094cdcc1f33e48df1e85231;hpb=3071e89c11d1be71cf45b694432e5908e0c4ded9;p=wimlib diff --git a/src/wim.c b/src/wim.c index e7025daf..5feb7a44 100644 --- a/src/wim.c +++ b/src/wim.c @@ -23,12 +23,22 @@ # include "config.h" #endif +#include +#include +#ifndef __WIN32__ +# include +#endif +#include +#include + #include "wimlib.h" +#include "wimlib/assert.h" +#include "wimlib/blob_table.h" +#include "wimlib/bitops.h" #include "wimlib/dentry.h" #include "wimlib/encoding.h" #include "wimlib/file_io.h" #include "wimlib/integrity.h" -#include "wimlib/lookup_table.h" #include "wimlib/metadata.h" #ifdef WITH_NTFS_3G # include "wimlib/ntfs_3g.h" /* for do_ntfs_umount() */ @@ -36,33 +46,23 @@ #include "wimlib/security.h" #include "wimlib/wim.h" #include "wimlib/xml.h" -#include "wimlib/version.h" - #ifdef __WIN32__ # include "wimlib/win32.h" /* for realpath() replacement */ #endif -#include -#include -#ifndef __WIN32__ -# include -#endif -#include -#include - static int -wim_default_pack_compression_type(void) +wim_default_solid_compression_type(void) { return WIMLIB_COMPRESSION_TYPE_LZMS; } static u32 -wim_default_pack_chunk_size(int ctype) { +wim_default_solid_chunk_size(int ctype) { switch (ctype) { case WIMLIB_COMPRESSION_TYPE_LZMS: - return 1U << 25; /* 33554432 */ + return (u32)1 << 26; /* 67108864 */ default: - return 1U << 15; /* 32768 */ + return (u32)1 << 15; /* 32768 */ } } @@ -75,9 +75,9 @@ new_wim_struct(void) filedes_invalidate(&wim->in_fd); filedes_invalidate(&wim->out_fd); - wim->out_pack_compression_type = wim_default_pack_compression_type(); - wim->out_pack_chunk_size = wim_default_pack_chunk_size( - wim->out_pack_compression_type); + wim->out_solid_compression_type = wim_default_solid_compression_type(); + wim->out_solid_chunk_size = wim_default_solid_chunk_size( + wim->out_solid_compression_type); INIT_LIST_HEAD(&wim->subwims); return wim; } @@ -96,7 +96,7 @@ wim_chunk_size_valid(u32 chunk_size, int ctype) /* Chunk size must be power of 2. */ if (chunk_size == 0) return false; - order = bsr32(chunk_size); + order = fls32(chunk_size); if (chunk_size != 1U << order) return false; @@ -182,7 +182,6 @@ WIMLIBAPI int wimlib_create_new_wim(int ctype, WIMStruct **wim_ret) { WIMStruct *wim; - struct wim_lookup_table *table; int ret; ret = wimlib_global_init(WIMLIB_INIT_FLAG_ASSUME_UTF8); @@ -197,13 +196,11 @@ wimlib_create_new_wim(int ctype, WIMStruct **wim_ret) if (ret) goto out_free_wim; - table = new_lookup_table(9001); - if (!table) { + wim->blob_table = new_blob_table(9001); + if (!wim->blob_table) { ret = WIMLIB_ERR_NOMEM; goto out_free_wim; } - wim->lookup_table = table; - wim->refcnts_ok = 1; wim->compression_type = ctype; wim->out_compression_type = ctype; wim->chunk_size = wim->hdr.chunk_size; @@ -218,24 +215,24 @@ out_free_wim: static void destroy_image_metadata(struct wim_image_metadata *imd, - struct wim_lookup_table *table, - bool free_metadata_lte) + struct blob_table *table, + bool free_metadata_blob_descriptor) { free_dentry_tree(imd->root_dentry, table); imd->root_dentry = NULL; free_wim_security_data(imd->security_data); imd->security_data = NULL; - if (free_metadata_lte) { - free_lookup_table_entry(imd->metadata_lte); - imd->metadata_lte = NULL; + if (free_metadata_blob_descriptor) { + free_blob_descriptor(imd->metadata_blob); + imd->metadata_blob = NULL; } if (!table) { - struct wim_lookup_table_entry *lte, *tmp; - list_for_each_entry_safe(lte, tmp, &imd->unhashed_streams, unhashed_list) - free_lookup_table_entry(lte); + struct blob_descriptor *blob, *tmp; + list_for_each_entry_safe(blob, tmp, &imd->unhashed_blobs, unhashed_list) + free_blob_descriptor(blob); } - INIT_LIST_HEAD(&imd->unhashed_streams); + INIT_LIST_HEAD(&imd->unhashed_blobs); INIT_LIST_HEAD(&imd->inode_list); #ifdef WITH_NTFS_3G if (imd->ntfs_vol) { @@ -246,8 +243,7 @@ destroy_image_metadata(struct wim_image_metadata *imd, } void -put_image_metadata(struct wim_image_metadata *imd, - struct wim_lookup_table *table) +put_image_metadata(struct wim_image_metadata *imd, struct blob_table *table) { if (imd && --imd->refcnt == 0) { destroy_image_metadata(imd, table, true); @@ -281,7 +277,7 @@ new_image_metadata(void) if (imd) { imd->refcnt = 1; INIT_LIST_HEAD(&imd->inode_list); - INIT_LIST_HEAD(&imd->unhashed_streams); + INIT_LIST_HEAD(&imd->unhashed_blobs); } return imd; } @@ -344,25 +340,32 @@ select_wim_image(WIMStruct *wim, int image) /* If a valid image is currently selected, its metadata can be freed if * it has not been modified. */ - if (wim->current_image != WIMLIB_NO_IMAGE) { - imd = wim_get_current_image_metadata(wim); - if (!imd->modified) { - wimlib_assert(list_empty(&imd->unhashed_streams)); - destroy_image_metadata(imd, NULL, false); - } - } + deselect_current_wim_image(wim); wim->current_image = image; imd = wim_get_current_image_metadata(wim); if (imd->root_dentry || imd->modified) { ret = 0; } else { - ret = read_metadata_resource(wim, imd); + ret = read_metadata_resource(imd); if (ret) wim->current_image = WIMLIB_NO_IMAGE; } return ret; } +void +deselect_current_wim_image(WIMStruct *wim) +{ + struct wim_image_metadata *imd; + if (wim->current_image == WIMLIB_NO_IMAGE) + return; + imd = wim_get_current_image_metadata(wim); + if (!imd->modified) { + wimlib_assert(list_empty(&imd->unhashed_blobs)); + destroy_image_metadata(imd, NULL, false); + } + wim->current_image = WIMLIB_NO_IMAGE; +} /* API function documented in wimlib.h */ WIMLIBAPI const tchar * @@ -472,14 +475,16 @@ wimlib_get_wim_info(WIMStruct *wim, struct wimlib_wim_info *info) WIMLIBAPI int wimlib_set_wim_info(WIMStruct *wim, const struct wimlib_wim_info *info, int which) { - int ret; - if (which & ~(WIMLIB_CHANGE_READONLY_FLAG | WIMLIB_CHANGE_GUID | WIMLIB_CHANGE_BOOT_INDEX | WIMLIB_CHANGE_RPFIX_FLAG)) return WIMLIB_ERR_INVALID_PARAM; + if ((which & WIMLIB_CHANGE_BOOT_INDEX) && + info->boot_index > wim->hdr.image_count) + return WIMLIB_ERR_INVALID_IMAGE; + if (which & WIMLIB_CHANGE_READONLY_FLAG) { if (info->is_marked_readonly) wim->hdr.flags |= WIM_HDR_FLAG_READONLY; @@ -487,21 +492,11 @@ wimlib_set_wim_info(WIMStruct *wim, const struct wimlib_wim_info *info, int whic wim->hdr.flags &= ~WIM_HDR_FLAG_READONLY; } - if ((which & ~WIMLIB_CHANGE_READONLY_FLAG) == 0) - return 0; - - ret = can_modify_wim(wim); - if (ret) - return ret; - if (which & WIMLIB_CHANGE_GUID) memcpy(wim->hdr.guid, info->guid, WIM_GUID_LEN); - if (which & WIMLIB_CHANGE_BOOT_INDEX) { - if (info->boot_index > wim->hdr.image_count) - return WIMLIB_ERR_INVALID_IMAGE; + if (which & WIMLIB_CHANGE_BOOT_INDEX) wim->hdr.boot_idx = info->boot_index; - } if (which & WIMLIB_CHANGE_RPFIX_FLAG) { if (info->has_rpfix) @@ -544,13 +539,13 @@ wimlib_set_output_compression_type(WIMStruct *wim, int ctype) WIMLIBAPI int wimlib_set_output_pack_compression_type(WIMStruct *wim, int ctype) { - int ret = set_out_ctype(ctype, &wim->out_pack_compression_type); + int ret = set_out_ctype(ctype, &wim->out_solid_compression_type); if (ret) return ret; /* Reset the chunk size if it's no longer valid. */ - if (!wim_chunk_size_valid(wim->out_pack_chunk_size, ctype)) - wim->out_pack_chunk_size = wim_default_pack_chunk_size(ctype); + if (!wim_chunk_size_valid(wim->out_solid_chunk_size, ctype)) + wim->out_solid_chunk_size = wim_default_solid_chunk_size(ctype); return 0; } @@ -584,14 +579,14 @@ WIMLIBAPI int wimlib_set_output_pack_chunk_size(WIMStruct *wim, uint32_t chunk_size) { if (chunk_size == 0) { - wim->out_pack_chunk_size = - wim_default_pack_chunk_size(wim->out_pack_compression_type); + wim->out_solid_chunk_size = + wim_default_solid_chunk_size(wim->out_solid_compression_type); return 0; } return set_out_chunk_size(chunk_size, - wim->out_pack_compression_type, - &wim->out_pack_chunk_size); + wim->out_solid_compression_type, + &wim->out_solid_chunk_size); } WIMLIBAPI void @@ -619,7 +614,7 @@ open_wim_file(const tchar *filename, struct filedes *fd_ret) /* * Begins the reading of a WIM file; opens the file and reads its header and - * lookup table, and optionally checks the integrity. + * blob table, and optionally checks the integrity. */ static int begin_read(WIMStruct *wim, const void *wim_filename_or_fd, int open_flags) @@ -735,8 +730,8 @@ begin_read(WIMStruct *wim, const void *wim_filename_or_fd, int open_flags) } if (open_flags & WIMLIB_OPEN_FLAG_FROM_PIPE) { - wim->lookup_table = new_lookup_table(9001); - if (!wim->lookup_table) + wim->blob_table = new_blob_table(9001); + if (!wim->blob_table) return WIMLIB_ERR_NOMEM; } else { @@ -752,7 +747,7 @@ begin_read(WIMStruct *wim, const void *wim_filename_or_fd, int open_flags) return WIMLIB_ERR_IMAGE_COUNT; } - ret = read_wim_lookup_table(wim); + ret = read_blob_table(wim); if (ret) return ret; } @@ -814,27 +809,26 @@ wimlib_open_wim(const tchar *wimfile, int open_flags, WIMStruct **wim_ret) NULL, NULL); } -/* Checksum all streams that are unhashed (other than the metadata streams), - * merging them into the lookup table as needed. This is a no-op unless the - * library has previously used to add or mount an image using the same - * WIMStruct. */ +/* Checksum all blobs that are unhashed (other than the metadata blobs), merging + * them into the blob table as needed. This is a no-op unless files have been + * added to an image in the same WIMStruct. */ int -wim_checksum_unhashed_streams(WIMStruct *wim) +wim_checksum_unhashed_blobs(WIMStruct *wim) { int ret; if (!wim_has_metadata(wim)) return 0; for (int i = 0; i < wim->hdr.image_count; i++) { - struct wim_lookup_table_entry *lte, *tmp; + struct blob_descriptor *blob, *tmp; struct wim_image_metadata *imd = wim->image_metadata[i]; - image_for_each_unhashed_stream_safe(lte, tmp, imd) { - struct wim_lookup_table_entry *new_lte; - ret = hash_unhashed_stream(lte, wim->lookup_table, &new_lte); + image_for_each_unhashed_blob_safe(blob, tmp, imd) { + struct blob_descriptor *new_blob; + ret = hash_unhashed_blob(blob, wim->blob_table, &new_blob); if (ret) return ret; - if (new_lte != lte) - free_lookup_table_entry(lte); + if (new_blob != blob) + free_blob_descriptor(blob); } } return 0; @@ -872,33 +866,6 @@ can_modify_wim(WIMStruct *wim) return 0; } -/* - * can_delete_from_wim - Check if files or images can be deleted from a given - * WIM file. - * - * This theoretically should be exactly the same as can_modify_wim(), but - * unfortunately, due to bugs in Microsoft's software that generate incorrect - * reference counts for some WIM resources, we need to run expensive - * verifications to make sure the reference counts are correct on all WIM - * resources. Otherwise we might delete a WIM resource whose reference count - * has fallen to 0, but is actually still referenced somewhere. - */ -int -can_delete_from_wim(WIMStruct *wim) -{ - int ret; - - ret = can_modify_wim(wim); - if (ret) - return ret; - if (!wim->refcnts_ok) { - ret = wim_recalculate_refcnts(wim); - if (ret) - return ret; - } - return 0; -} - /* API function documented in wimlib.h */ WIMLIBAPI void wimlib_free(WIMStruct *wim) @@ -919,7 +886,7 @@ wimlib_free(WIMStruct *wim) if (filedes_valid(&wim->out_fd)) filedes_close(&wim->out_fd); - free_lookup_table(wim->lookup_table); + free_blob_table(wim->blob_table); wimlib_free_decompressor(wim->decompressor); @@ -952,7 +919,9 @@ test_locale_ctype_utf8(void) WIMLIBAPI u32 wimlib_get_version(void) { - return WIMLIB_VERSION_CODE; + return (WIMLIB_MAJOR_VERSION << 20) | + (WIMLIB_MINOR_VERSION << 10) | + WIMLIB_PATCH_VERSION; } static bool lib_initialized = false;