1 // SPDX-License-Identifier: MIT
3 * Copyright (C) 2016 The Android Open Source Project
6 #include "avb_chain_partition_descriptor.h"
9 bool avb_chain_partition_descriptor_validate_and_byteswap(
10 const AvbChainPartitionDescriptor* src, AvbChainPartitionDescriptor* dest) {
11 uint64_t expected_size;
13 avb_memcpy(dest, src, sizeof(AvbChainPartitionDescriptor));
15 if (!avb_descriptor_validate_and_byteswap((const AvbDescriptor*)src,
16 (AvbDescriptor*)dest))
19 if (dest->parent_descriptor.tag != AVB_DESCRIPTOR_TAG_CHAIN_PARTITION) {
20 avb_error("Invalid tag for chain partition descriptor.\n");
24 dest->rollback_index_location = avb_be32toh(dest->rollback_index_location);
25 dest->partition_name_len = avb_be32toh(dest->partition_name_len);
26 dest->public_key_len = avb_be32toh(dest->public_key_len);
28 if (dest->rollback_index_location < 1) {
29 avb_error("Invalid rollback index location value.\n");
33 /* Check that partition_name and public_key are fully contained. */
34 expected_size = sizeof(AvbChainPartitionDescriptor) - sizeof(AvbDescriptor);
35 if (!avb_safe_add_to(&expected_size, dest->partition_name_len) ||
36 !avb_safe_add_to(&expected_size, dest->public_key_len)) {
37 avb_error("Overflow while adding up sizes.\n");
40 if (expected_size > dest->parent_descriptor.num_bytes_following) {
41 avb_error("Descriptor payload size overflow.\n");