libavb: Update SPDX tag style
[oweals/u-boot.git] / lib / libavb / avb_chain_partition_descriptor.c
1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright (C) 2016 The Android Open Source Project
4  */
5
6 #include "avb_chain_partition_descriptor.h"
7 #include "avb_util.h"
8
9 bool avb_chain_partition_descriptor_validate_and_byteswap(
10     const AvbChainPartitionDescriptor* src, AvbChainPartitionDescriptor* dest) {
11   uint64_t expected_size;
12
13   avb_memcpy(dest, src, sizeof(AvbChainPartitionDescriptor));
14
15   if (!avb_descriptor_validate_and_byteswap((const AvbDescriptor*)src,
16                                             (AvbDescriptor*)dest))
17     return false;
18
19   if (dest->parent_descriptor.tag != AVB_DESCRIPTOR_TAG_CHAIN_PARTITION) {
20     avb_error("Invalid tag for chain partition descriptor.\n");
21     return false;
22   }
23
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);
27
28   if (dest->rollback_index_location < 1) {
29     avb_error("Invalid rollback index location value.\n");
30     return false;
31   }
32
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");
38     return false;
39   }
40   if (expected_size > dest->parent_descriptor.num_bytes_following) {
41     avb_error("Descriptor payload size overflow.\n");
42     return false;
43   }
44   return true;
45 }