/* * security.c * * Read and write the WIM security data. The security data is a table of * security descriptors. Each WIM image has its own security data, but it's * possible that an image's security data have no security descriptors. */ /* * Copyright (C) 2012 Eric Biggers * * This file is part of wimlib, a library for working with WIM files. * * wimlib is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free * Software Foundation; either version 3 of the License, or (at your option) * any later version. * * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with wimlib; if not, see http://www.gnu.org/licenses/. */ #include "wimlib_internal.h" #include "buffer_io.h" #include "security.h" /* * This is a hack to work around a problem in libntfs-3g. libntfs-3g validates * security descriptors with a function named ntfs_valid_descr(). * ntfs_valid_descr() considers a security descriptor that ends in a SACL * (Sysetm Access Control List) with no ACE's (Access Control Entries) to be * invalid. However, a security descriptor like this exists in the Windows 7 * install.wim. Here, security descriptors matching this pattern are modified * to have no SACL. This should make no difference since the SACL had no * entries anyway; however this ensures that that the security descriptors pass * the validation in libntfs-3g. */ static void empty_sacl_fixup(u8 *descr, u64 *size_p) { if (*size_p >= sizeof(SecurityDescriptor)) { SecurityDescriptor *sd = (SecurityDescriptor*)descr; u32 sacl_offset = le32_to_cpu(sd->sacl_offset); if (sacl_offset == *size_p - sizeof(ACL)) { sd->sacl_offset = cpu_to_le32(0); *size_p -= sizeof(ACL); } } } /* * Reads the security data from the metadata resource. * * @metadata_resource: An array that contains the uncompressed metadata * resource for the WIM file. * @metadata_resource_len: The length of @metadata_resource. It MUST be at * least 8 bytes. * @sd_p: A pointer to a pointer to a wim_security_data structure that * will be filled in with a pointer to a new wim_security_data * structure on success. * * Note: There is no `offset' argument because the security data is located at * the beginning of the metadata resource. */ int read_security_data(const u8 metadata_resource[], u64 metadata_resource_len, struct wim_security_data **sd_p) { struct wim_security_data *sd; const u8 *p; int ret; u64 total_len; /* * Sorry this function is excessively complicated--- I'm just being * extremely careful about integer overflows. */ sd = MALLOC(sizeof(struct wim_security_data)); if (!sd) { ERROR("Out of memory"); return WIMLIB_ERR_NOMEM; } sd->sizes = NULL; sd->descriptors = NULL; sd->refcnt = 1; p = metadata_resource; p = get_u32(p, &sd->total_length); p = get_u32(p, (u32*)&sd->num_entries); /* The security_id field of each dentry is a signed 32-bit integer, so * the possible indices into the security descriptors table are 0 * through 0x7fffffff. Which means 0x80000000 security descriptors * maximum. Not like you should ever have anywhere close to that many * security descriptors! */ if (sd->num_entries > 0x80000000) { ERROR("Security data has too many entries!"); goto out_invalid_sd; } /* Verify the listed total length of the security data is big enough to * include the sizes array, verify that the file data is big enough to * include it as well, then allocate the array of sizes. * * Note: The total length of the security data must fit in a 32-bit * integer, even though each security descriptor size is a 64-bit * integer. This is stupid, and we need to be careful not to actually * let the security descriptor sizes be over 0xffffffff. */ if ((u64)sd->total_length > metadata_resource_len) { ERROR("Security data total length (%u) is bigger than the " "metadata resource length (%"PRIu64")", sd->total_length, metadata_resource_len); goto out_invalid_sd; } DEBUG("Reading security data: %u entries, length = %u", sd->num_entries, sd->total_length); if (sd->num_entries == 0) { /* No security descriptors. */ if (sd->total_length != 0 && sd->total_length != 8) { ERROR("Invalid security data length (%u): expected 0 or 8", sd->total_length); goto out_invalid_sd; } sd->total_length = 8; goto out_return_sd; } u64 sizes_size = (u64)sd->num_entries * sizeof(u64); u64 size_no_descriptors = 8 + sizes_size; if (size_no_descriptors > (u64)sd->total_length) { ERROR("Security data total length of %u is too short because " "there must be at least %"PRIu64" bytes of security data", sd->total_length, 8 + sizes_size); goto out_invalid_sd; } if (sizeof(size_t) < 8 && sizes_size > 0xffffffff) { ERROR("Too many security descriptors!"); goto out_invalid_sd; } sd->sizes = MALLOC(sizes_size); if (!sd->sizes) { ret = WIMLIB_ERR_NOMEM; goto out_free_sd; } /* Copy the sizes array in from the file data. */ p = get_bytes(p, sizes_size, sd->sizes); array_le64_to_cpu(sd->sizes, sd->num_entries); /* Allocate the array of pointers to descriptors, and read them in. */ sd->descriptors = CALLOC(sd->num_entries, sizeof(u8*)); if (!sd->descriptors) { ERROR("Out of memory while allocating security " "descriptors"); ret = WIMLIB_ERR_NOMEM; goto out_free_sd; } total_len = size_no_descriptors; for (u32 i = 0; i < sd->num_entries; i++) { /* Watch out for huge security descriptor sizes that could * overflow the total length and wrap it around. */ if (total_len + sd->sizes[i] < total_len) { ERROR("Caught overflow in security descriptor lengths " "(current total length = %"PRIu64", security " "descriptor size = %"PRIu64")", total_len, sd->sizes[i]); goto out_invalid_sd; } total_len += sd->sizes[i]; /* This check assures that the descriptor size fits in a 32 bit * integer. Because if it didn't, the total length would come * out bigger than sd->total_length, which is a 32 bit integer. * */ if (total_len > (u64)sd->total_length) { ERROR("Security data total length of %u is too short " "because there are at least %"PRIu64" bytes of " "security data", sd->total_length, total_len); goto out_invalid_sd; } sd->descriptors[i] = MALLOC(sd->sizes[i]); if (!sd->descriptors[i]) { ERROR("Out of memory while allocating security " "descriptors"); ret = WIMLIB_ERR_NOMEM; goto out_free_sd; } p = get_bytes(p, sd->sizes[i], sd->descriptors[i]); empty_sacl_fixup(sd->descriptors[i], &sd->sizes[i]); } wimlib_assert(total_len <= 0xffffffff); if (((total_len + 7) & ~7) != ((sd->total_length + 7) & ~7)) { ERROR("Expected security data total length = %u, but " "calculated %u", sd->total_length, (unsigned)total_len); goto out_invalid_sd; } sd->total_length = total_len; out_return_sd: *sd_p = sd; return 0; out_invalid_sd: ret = WIMLIB_ERR_INVALID_SECURITY_DATA; out_free_sd: free_security_data(sd); return ret; } /* * Writes security data to an in-memory buffer. */ u8 *write_security_data(const struct wim_security_data *sd, u8 *p) { DEBUG("Writing security data (total_length = %"PRIu32", num_entries " "= %"PRIu32")", sd->total_length, sd->num_entries); u32 aligned_length = (sd->total_length + 7) & ~7; u8 *orig_p = p; p = put_u32(p, aligned_length); p = put_u32(p, sd->num_entries); for (u32 i = 0; i < sd->num_entries; i++) p = put_u64(p, sd->sizes[i]); for (u32 i = 0; i < sd->num_entries; i++) p = put_bytes(p, sd->sizes[i], sd->descriptors[i]); wimlib_assert(p - orig_p == sd->total_length); p = put_zeroes(p, aligned_length - sd->total_length); DEBUG("Successfully wrote security data."); return p; } static void print_acl(const u8 *p, const char *type) { const ACL *acl = (const ACL*)p; u8 revision = acl->revision; u16 acl_size = le16_to_cpu(acl->acl_size); u16 ace_count = le16_to_cpu(acl->ace_count); printf(" [%s ACL]\n", type); printf(" Revision = %u\n", revision); printf(" ACL Size = %u\n", acl_size); printf(" ACE Count = %u\n", ace_count); p += sizeof(ACL); for (u16 i = 0; i < ace_count; i++) { const ACEHeader *hdr = (const ACEHeader*)p; printf(" [ACE]\n"); printf(" ACE type = %d\n", hdr->type); printf(" ACE flags = 0x%x\n", hdr->flags); printf(" ACE size = %u\n", hdr->size); const AccessAllowedACE *aaa = (const AccessAllowedACE*)hdr; printf(" ACE mask = %x\n", le32_to_cpu(aaa->mask)); printf(" SID start = %u\n", le32_to_cpu(aaa->sid_start)); p += hdr->size; } putchar('\n'); } static void print_sid(const u8 *p, const char *type) { const SID *sid = (const SID*)p; printf(" [%s SID]\n", type); printf(" Revision = %u\n", sid->revision); printf(" Subauthority count = %u\n", sid->sub_authority_count); printf(" Identifier authority = "); print_byte_field(sid->identifier_authority, sizeof(sid->identifier_authority)); putchar('\n'); for (u8 i = 0; i < sid->sub_authority_count; i++) printf(" Subauthority %u = %u\n", i, le32_to_cpu(sid->sub_authority[i])); putchar('\n'); } static void print_security_descriptor(const u8 *p, u64 size) { const SecurityDescriptor *sd = (const SecurityDescriptor*)p; u8 revision = sd->revision; u16 control = le16_to_cpu(sd->security_descriptor_control); u32 owner_offset = le32_to_cpu(sd->owner_offset); u32 group_offset = le32_to_cpu(sd->group_offset); u32 sacl_offset = le32_to_cpu(sd->sacl_offset); u32 dacl_offset = le32_to_cpu(sd->dacl_offset); printf("Revision = %u\n", revision); printf("Security Descriptor Control = %#x\n", control); printf("Owner offset = %u\n", owner_offset); printf("Group offset = %u\n", group_offset); printf("System ACL offset = %u\n", sacl_offset); printf("Discretionary ACL offset = %u\n", dacl_offset); if (sd->owner_offset != 0) print_sid(p + owner_offset, "Owner"); if (sd->group_offset != 0) print_sid(p + group_offset, "Group"); if (sd->sacl_offset != 0) print_acl(p + sacl_offset, "System"); if (sd->dacl_offset != 0) print_acl(p + dacl_offset, "Discretionary"); } /* * Prints the security data for a WIM file. */ void print_security_data(const struct wim_security_data *sd) { wimlib_assert(sd != NULL); puts("[SECURITY DATA]"); printf("Length = %"PRIu32" bytes\n", sd->total_length); printf("Number of Entries = %"PRIu32"\n", sd->num_entries); for (u32 i = 0; i < sd->num_entries; i++) { printf("[SecurityDescriptor %"PRIu32", length = %"PRIu64"]\n", i, sd->sizes[i]); print_security_descriptor(sd->descriptors[i], sd->sizes[i]); putchar('\n'); } putchar('\n'); } void free_security_data(struct wim_security_data *sd) { if (sd) { wimlib_assert(sd->refcnt != 0); if (--sd->refcnt == 0) { u8 **descriptors = sd->descriptors; u32 num_entries = sd->num_entries; if (descriptors) while (num_entries--) FREE(*descriptors++); FREE(sd->sizes); FREE(sd->descriptors); FREE(sd); } } }