arm: mach-k3: Enable dcache in SPL
[oweals/u-boot.git] / lib / libavb / avb_descriptor.c
1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright (C) 2016 The Android Open Source Project
4  */
5
6 #include "avb_descriptor.h"
7 #include "avb_util.h"
8 #include "avb_vbmeta_image.h"
9 #include <malloc.h>
10
11 bool avb_descriptor_validate_and_byteswap(const AvbDescriptor* src,
12                                           AvbDescriptor* dest) {
13   dest->tag = avb_be64toh(src->tag);
14   dest->num_bytes_following = avb_be64toh(src->num_bytes_following);
15
16   if ((dest->num_bytes_following & 0x07) != 0) {
17     avb_error("Descriptor size is not divisible by 8.\n");
18     return false;
19   }
20   return true;
21 }
22
23 bool avb_descriptor_foreach(const uint8_t* image_data,
24                             size_t image_size,
25                             AvbDescriptorForeachFunc foreach_func,
26                             void* user_data) {
27   const AvbVBMetaImageHeader* header = NULL;
28   bool ret = false;
29   const uint8_t* image_end;
30   const uint8_t* desc_start;
31   const uint8_t* desc_end;
32   const uint8_t* p;
33
34   if (image_data == NULL) {
35     avb_error("image_data is NULL\n.");
36     goto out;
37   }
38
39   if (foreach_func == NULL) {
40     avb_error("foreach_func is NULL\n.");
41     goto out;
42   }
43
44   if (image_size < sizeof(AvbVBMetaImageHeader)) {
45     avb_error("Length is smaller than header.\n");
46     goto out;
47   }
48
49   /* Ensure magic is correct. */
50   if (avb_memcmp(image_data, AVB_MAGIC, AVB_MAGIC_LEN) != 0) {
51     avb_error("Magic is incorrect.\n");
52     goto out;
53   }
54
55   /* Careful, not byteswapped - also ensure it's aligned properly. */
56   avb_assert_aligned(image_data);
57   header = (const AvbVBMetaImageHeader*)image_data;
58   image_end = image_data + image_size;
59
60   desc_start = image_data + sizeof(AvbVBMetaImageHeader) +
61                avb_be64toh(header->authentication_data_block_size) +
62                avb_be64toh(header->descriptors_offset);
63
64   desc_end = desc_start + avb_be64toh(header->descriptors_size);
65
66   if (desc_start < image_data || desc_start > image_end ||
67       desc_end < image_data || desc_end > image_end || desc_end < desc_start) {
68     avb_error("Descriptors not inside passed-in data.\n");
69     goto out;
70   }
71
72   for (p = desc_start; p < desc_end;) {
73     const AvbDescriptor* dh = (const AvbDescriptor*)p;
74     avb_assert_aligned(dh);
75     uint64_t nb_following = avb_be64toh(dh->num_bytes_following);
76     uint64_t nb_total = 0;
77     if (!avb_safe_add(&nb_total, sizeof(AvbDescriptor), nb_following)) {
78       avb_error("Invalid descriptor length.\n");
79       goto out;
80     }
81
82     if ((nb_total & 7) != 0) {
83       avb_error("Invalid descriptor length.\n");
84       goto out;
85     }
86
87     if (nb_total + p < desc_start || nb_total + p > desc_end) {
88       avb_error("Invalid data in descriptors array.\n");
89       goto out;
90     }
91
92     if (foreach_func(dh, user_data) == 0) {
93       goto out;
94     }
95
96     if (!avb_safe_add_to((uint64_t*)(&p), nb_total)) {
97       avb_error("Invalid descriptor length.\n");
98       goto out;
99     }
100   }
101
102   ret = true;
103
104 out:
105   return ret;
106 }
107
108 static bool count_descriptors(const AvbDescriptor* descriptor,
109                               void* user_data) {
110   size_t* num_descriptors = user_data;
111   *num_descriptors += 1;
112   return true;
113 }
114
115 typedef struct {
116   size_t descriptor_number;
117   const AvbDescriptor** descriptors;
118 } SetDescriptorData;
119
120 static bool set_descriptors(const AvbDescriptor* descriptor, void* user_data) {
121   SetDescriptorData* data = user_data;
122   data->descriptors[data->descriptor_number++] = descriptor;
123   return true;
124 }
125
126 const AvbDescriptor** avb_descriptor_get_all(const uint8_t* image_data,
127                                              size_t image_size,
128                                              size_t* out_num_descriptors) {
129   size_t num_descriptors = 0;
130   SetDescriptorData data;
131
132   avb_descriptor_foreach(
133       image_data, image_size, count_descriptors, &num_descriptors);
134
135   data.descriptor_number = 0;
136   data.descriptors =
137       avb_calloc(sizeof(const AvbDescriptor*) * (num_descriptors + 1));
138   if (data.descriptors == NULL) {
139     return NULL;
140   }
141   avb_descriptor_foreach(image_data, image_size, set_descriptors, &data);
142   avb_assert(data.descriptor_number == num_descriptors);
143
144   if (out_num_descriptors != NULL) {
145     *out_num_descriptors = num_descriptors;
146   }
147
148   return data.descriptors;
149 }