blob: 91d7af0493f800e38a1bf823c2ace461293533b1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Gabe Black84cd9322012-10-12 14:26:11 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
Gabe Black84cd9322012-10-12 14:26:11 +00004 */
5
Guillaume GARDET7a77e902016-06-17 11:45:37 +02006#include <common.h>
Gabe Black84cd9322012-10-12 14:26:11 +00007#include <cbfs.h>
8#include <malloc.h>
9#include <asm/byteorder.h>
10
Simon Glassfc7b9e12019-08-14 19:56:11 -060011static const u32 good_magic = 0x4f524243;
12static const u8 good_file_magic[] = "LARCHIVE";
Simon Glass02e4af62019-08-14 19:56:12 -060013
14struct cbfs_priv {
Simon Glass381e1132020-05-24 17:38:14 -060015 bool initialized;
Simon Glass02e4af62019-08-14 19:56:12 -060016 struct cbfs_header header;
17 struct cbfs_cachenode *file_cache;
Simon Glassc7f16932019-08-14 19:56:13 -060018 enum cbfs_result result;
Simon Glass02e4af62019-08-14 19:56:12 -060019};
20
21static struct cbfs_priv cbfs_s;
Gabe Black84cd9322012-10-12 14:26:11 +000022
23const char *file_cbfs_error(void)
24{
Simon Glassc7f16932019-08-14 19:56:13 -060025 switch (cbfs_s.result) {
Gabe Black84cd9322012-10-12 14:26:11 +000026 case CBFS_SUCCESS:
27 return "Success";
28 case CBFS_NOT_INITIALIZED:
29 return "CBFS not initialized";
30 case CBFS_BAD_HEADER:
31 return "Bad CBFS header";
32 case CBFS_BAD_FILE:
33 return "Bad CBFS file";
34 case CBFS_FILE_NOT_FOUND:
35 return "File not found";
36 default:
37 return "Unknown";
38 }
39}
40
Simon Glassc7f16932019-08-14 19:56:13 -060041enum cbfs_result cbfs_get_result(void)
42{
43 return cbfs_s.result;
44}
45
Gabe Black84cd9322012-10-12 14:26:11 +000046/* Do endian conversion on the CBFS header structure. */
47static void swap_header(struct cbfs_header *dest, struct cbfs_header *src)
48{
49 dest->magic = be32_to_cpu(src->magic);
50 dest->version = be32_to_cpu(src->version);
51 dest->rom_size = be32_to_cpu(src->rom_size);
52 dest->boot_block_size = be32_to_cpu(src->boot_block_size);
53 dest->align = be32_to_cpu(src->align);
54 dest->offset = be32_to_cpu(src->offset);
55}
56
57/* Do endian conversion on a CBFS file header. */
58static void swap_file_header(struct cbfs_fileheader *dest,
59 const struct cbfs_fileheader *src)
60{
61 memcpy(&dest->magic, &src->magic, sizeof(dest->magic));
62 dest->len = be32_to_cpu(src->len);
63 dest->type = be32_to_cpu(src->type);
Simon Glassababe102019-07-08 13:18:22 -060064 dest->attributes_offset = be32_to_cpu(src->attributes_offset);
Gabe Black84cd9322012-10-12 14:26:11 +000065 dest->offset = be32_to_cpu(src->offset);
66}
67
68/*
69 * Given a starting position in memory, scan forward, bounded by a size, and
70 * find the next valid CBFS file. No memory is allocated by this function. The
71 * caller is responsible for allocating space for the new file structure.
72 *
73 * @param start The location in memory to start from.
74 * @param size The size of the memory region to search.
75 * @param align The alignment boundaries to check on.
Simon Glassad79d602019-08-14 19:56:15 -060076 * @param new_node A pointer to the file structure to load.
Gabe Black84cd9322012-10-12 14:26:11 +000077 * @param used A pointer to the count of of bytes scanned through,
78 * including the file if one is found.
79 *
80 * @return 1 if a file is found, 0 if one isn't.
81 */
Simon Glass02e4af62019-08-14 19:56:12 -060082static int file_cbfs_next_file(struct cbfs_priv *priv, u8 *start, u32 size,
Simon Glassad79d602019-08-14 19:56:15 -060083 u32 align, struct cbfs_cachenode *new_node,
Simon Glass02e4af62019-08-14 19:56:12 -060084 u32 *used)
Gabe Black84cd9322012-10-12 14:26:11 +000085{
86 struct cbfs_fileheader header;
87
88 *used = 0;
89
90 while (size >= align) {
Simon Glassad79d602019-08-14 19:56:15 -060091 const struct cbfs_fileheader *file_header =
Gabe Black84cd9322012-10-12 14:26:11 +000092 (const struct cbfs_fileheader *)start;
93 u32 name_len;
94 u32 step;
95
96 /* Check if there's a file here. */
Simon Glassad79d602019-08-14 19:56:15 -060097 if (memcmp(good_file_magic, &file_header->magic,
98 sizeof(file_header->magic))) {
Gabe Black84cd9322012-10-12 14:26:11 +000099 *used += align;
100 size -= align;
101 start += align;
102 continue;
103 }
104
Simon Glassad79d602019-08-14 19:56:15 -0600105 swap_file_header(&header, file_header);
Christian Gmeiner9914c732018-12-22 01:55:48 -0800106 if (header.offset < sizeof(struct cbfs_fileheader)) {
Simon Glassc7f16932019-08-14 19:56:13 -0600107 priv->result = CBFS_BAD_FILE;
Gabe Black84cd9322012-10-12 14:26:11 +0000108 return -1;
109 }
Simon Glassad79d602019-08-14 19:56:15 -0600110 new_node->next = NULL;
111 new_node->type = header.type;
112 new_node->data = start + header.offset;
113 new_node->data_length = header.len;
Yaroslav Kcc7ed262016-08-08 20:32:15 -0700114 name_len = header.offset - sizeof(struct cbfs_fileheader);
Simon Glassad79d602019-08-14 19:56:15 -0600115 new_node->name = (char *)file_header +
Yaroslav Kcc7ed262016-08-08 20:32:15 -0700116 sizeof(struct cbfs_fileheader);
Simon Glassad79d602019-08-14 19:56:15 -0600117 new_node->name_length = name_len;
118 new_node->attributes_offset = header.attributes_offset;
Gabe Black84cd9322012-10-12 14:26:11 +0000119
120 step = header.len;
121 if (step % align)
122 step = step + align - step % align;
123
124 *used += step;
125 return 1;
126 }
127 return 0;
128}
129
130/* Look through a CBFS instance and copy file metadata into regular memory. */
Simon Glass02e4af62019-08-14 19:56:12 -0600131static void file_cbfs_fill_cache(struct cbfs_priv *priv, u8 *start, u32 size,
132 u32 align)
Gabe Black84cd9322012-10-12 14:26:11 +0000133{
134 struct cbfs_cachenode *cache_node;
Simon Glassad79d602019-08-14 19:56:15 -0600135 struct cbfs_cachenode *new_node;
Simon Glass02e4af62019-08-14 19:56:12 -0600136 struct cbfs_cachenode **cache_tail = &priv->file_cache;
Gabe Black84cd9322012-10-12 14:26:11 +0000137
138 /* Clear out old information. */
Simon Glass02e4af62019-08-14 19:56:12 -0600139 cache_node = priv->file_cache;
Gabe Black84cd9322012-10-12 14:26:11 +0000140 while (cache_node) {
Simon Glassad79d602019-08-14 19:56:15 -0600141 struct cbfs_cachenode *old_node = cache_node;
Gabe Black84cd9322012-10-12 14:26:11 +0000142 cache_node = cache_node->next;
Simon Glassad79d602019-08-14 19:56:15 -0600143 free(old_node);
Gabe Black84cd9322012-10-12 14:26:11 +0000144 }
Simon Glass02e4af62019-08-14 19:56:12 -0600145 priv->file_cache = NULL;
Gabe Black84cd9322012-10-12 14:26:11 +0000146
147 while (size >= align) {
Simon Glassea38ee92020-05-24 17:38:12 -0600148 int ret;
Gabe Black84cd9322012-10-12 14:26:11 +0000149 u32 used;
150
Simon Glassad79d602019-08-14 19:56:15 -0600151 new_node = (struct cbfs_cachenode *)
Gabe Black84cd9322012-10-12 14:26:11 +0000152 malloc(sizeof(struct cbfs_cachenode));
Simon Glassea38ee92020-05-24 17:38:12 -0600153 ret = file_cbfs_next_file(priv, start, size, align, new_node,
154 &used);
Gabe Black84cd9322012-10-12 14:26:11 +0000155
Simon Glassea38ee92020-05-24 17:38:12 -0600156 if (ret < 0) {
Simon Glassad79d602019-08-14 19:56:15 -0600157 free(new_node);
Gabe Black84cd9322012-10-12 14:26:11 +0000158 return;
Simon Glassea38ee92020-05-24 17:38:12 -0600159 } else if (ret == 0) {
Simon Glassad79d602019-08-14 19:56:15 -0600160 free(new_node);
Gabe Black84cd9322012-10-12 14:26:11 +0000161 break;
162 }
Simon Glassad79d602019-08-14 19:56:15 -0600163 *cache_tail = new_node;
164 cache_tail = &new_node->next;
Gabe Black84cd9322012-10-12 14:26:11 +0000165
166 size -= used;
167 start += used;
168 }
Simon Glassc7f16932019-08-14 19:56:13 -0600169 priv->result = CBFS_SUCCESS;
Gabe Black84cd9322012-10-12 14:26:11 +0000170}
171
172/* Get the CBFS header out of the ROM and do endian conversion. */
Simon Glass45637db2020-05-24 17:38:13 -0600173static int file_cbfs_load_header(ulong end_of_rom, struct cbfs_header *header)
Gabe Black84cd9322012-10-12 14:26:11 +0000174{
175 struct cbfs_header *header_in_rom;
Andre Heider44683172018-02-15 07:40:11 +0100176 int32_t offset = *(u32 *)(end_of_rom - 3);
Gabe Black84cd9322012-10-12 14:26:11 +0000177
Andre Heider44683172018-02-15 07:40:11 +0100178 header_in_rom = (struct cbfs_header *)(end_of_rom + offset + 1);
Gabe Black84cd9322012-10-12 14:26:11 +0000179 swap_header(header, header_in_rom);
180
181 if (header->magic != good_magic || header->offset >
182 header->rom_size - header->boot_block_size) {
Simon Glassc7f16932019-08-14 19:56:13 -0600183 cbfs_s.result = CBFS_BAD_HEADER;
Gabe Black84cd9322012-10-12 14:26:11 +0000184 return 1;
185 }
186 return 0;
187}
188
Simon Glass630b2f32019-08-14 19:56:14 -0600189static int cbfs_load_header_ptr(struct cbfs_priv *priv, ulong base,
190 struct cbfs_header *header)
191{
192 struct cbfs_header *header_in_rom;
193
194 header_in_rom = (struct cbfs_header *)base;
195 swap_header(header, header_in_rom);
196
197 if (header->magic != good_magic || header->offset >
198 header->rom_size - header->boot_block_size) {
199 priv->result = CBFS_BAD_HEADER;
200 return -EFAULT;
201 }
202
203 return 0;
204}
205
Simon Glass45637db2020-05-24 17:38:13 -0600206static void cbfs_init(struct cbfs_priv *priv, ulong end_of_rom)
Gabe Black84cd9322012-10-12 14:26:11 +0000207{
208 u8 *start_of_rom;
Gabe Black84cd9322012-10-12 14:26:11 +0000209
Simon Glass381e1132020-05-24 17:38:14 -0600210 priv->initialized = false;
Simon Glass02e4af62019-08-14 19:56:12 -0600211
212 if (file_cbfs_load_header(end_of_rom, &priv->header))
Gabe Black84cd9322012-10-12 14:26:11 +0000213 return;
214
Simon Glass02e4af62019-08-14 19:56:12 -0600215 start_of_rom = (u8 *)(end_of_rom + 1 - priv->header.rom_size);
Gabe Black84cd9322012-10-12 14:26:11 +0000216
Simon Glass02e4af62019-08-14 19:56:12 -0600217 file_cbfs_fill_cache(priv, start_of_rom, priv->header.rom_size,
218 priv->header.align);
Simon Glassc7f16932019-08-14 19:56:13 -0600219 if (priv->result == CBFS_SUCCESS)
Simon Glass381e1132020-05-24 17:38:14 -0600220 priv->initialized = true;
Simon Glass02e4af62019-08-14 19:56:12 -0600221}
222
Simon Glass45637db2020-05-24 17:38:13 -0600223void file_cbfs_init(ulong end_of_rom)
Simon Glass02e4af62019-08-14 19:56:12 -0600224{
225 cbfs_init(&cbfs_s, end_of_rom);
Gabe Black84cd9322012-10-12 14:26:11 +0000226}
227
Simon Glass630b2f32019-08-14 19:56:14 -0600228int cbfs_init_mem(ulong base, ulong size, struct cbfs_priv **privp)
229{
230 struct cbfs_priv priv_s, *priv = &priv_s;
231 int ret;
232
233 /*
234 * Use a local variable to start with until we know that the CBFS is
235 * valid. Assume that a master header appears at the start, at offset
236 * 0x38.
237 */
238 ret = cbfs_load_header_ptr(priv, base + 0x38, &priv->header);
239 if (ret)
240 return ret;
241
242 file_cbfs_fill_cache(priv, (u8 *)base, priv->header.rom_size,
243 priv->header.align);
244 if (priv->result != CBFS_SUCCESS)
245 return -EINVAL;
246
Simon Glass381e1132020-05-24 17:38:14 -0600247 priv->initialized = true;
Simon Glass630b2f32019-08-14 19:56:14 -0600248 priv = malloc(sizeof(priv_s));
249 if (!priv)
250 return -ENOMEM;
251 memcpy(priv, &priv_s, sizeof(priv_s));
252 *privp = priv;
253
254 return 0;
255}
256
Gabe Black84cd9322012-10-12 14:26:11 +0000257const struct cbfs_header *file_cbfs_get_header(void)
258{
Simon Glass02e4af62019-08-14 19:56:12 -0600259 struct cbfs_priv *priv = &cbfs_s;
260
261 if (priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600262 priv->result = CBFS_SUCCESS;
Simon Glass02e4af62019-08-14 19:56:12 -0600263 return &priv->header;
Gabe Black84cd9322012-10-12 14:26:11 +0000264 } else {
Simon Glassc7f16932019-08-14 19:56:13 -0600265 priv->result = CBFS_NOT_INITIALIZED;
Gabe Black84cd9322012-10-12 14:26:11 +0000266 return NULL;
267 }
268}
269
270const struct cbfs_cachenode *file_cbfs_get_first(void)
271{
Simon Glass02e4af62019-08-14 19:56:12 -0600272 struct cbfs_priv *priv = &cbfs_s;
273
274 if (!priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600275 priv->result = CBFS_NOT_INITIALIZED;
Gabe Black84cd9322012-10-12 14:26:11 +0000276 return NULL;
277 } else {
Simon Glassc7f16932019-08-14 19:56:13 -0600278 priv->result = CBFS_SUCCESS;
Simon Glass02e4af62019-08-14 19:56:12 -0600279 return priv->file_cache;
Gabe Black84cd9322012-10-12 14:26:11 +0000280 }
281}
282
283void file_cbfs_get_next(const struct cbfs_cachenode **file)
284{
Simon Glass02e4af62019-08-14 19:56:12 -0600285 struct cbfs_priv *priv = &cbfs_s;
286
287 if (!priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600288 priv->result = CBFS_NOT_INITIALIZED;
Simon Glass02e4af62019-08-14 19:56:12 -0600289 *file = NULL;
Gabe Black84cd9322012-10-12 14:26:11 +0000290 return;
291 }
292
293 if (*file)
294 *file = (*file)->next;
Simon Glassc7f16932019-08-14 19:56:13 -0600295 priv->result = CBFS_SUCCESS;
Gabe Black84cd9322012-10-12 14:26:11 +0000296}
297
Simon Glass02e4af62019-08-14 19:56:12 -0600298const struct cbfs_cachenode *cbfs_find_file(struct cbfs_priv *priv,
299 const char *name)
Gabe Black84cd9322012-10-12 14:26:11 +0000300{
Simon Glass02e4af62019-08-14 19:56:12 -0600301 struct cbfs_cachenode *cache_node = priv->file_cache;
Gabe Black84cd9322012-10-12 14:26:11 +0000302
Simon Glass02e4af62019-08-14 19:56:12 -0600303 if (!priv->initialized) {
Simon Glassc7f16932019-08-14 19:56:13 -0600304 priv->result = CBFS_NOT_INITIALIZED;
Gabe Black84cd9322012-10-12 14:26:11 +0000305 return NULL;
306 }
307
308 while (cache_node) {
309 if (!strcmp(name, cache_node->name))
310 break;
311 cache_node = cache_node->next;
312 }
313 if (!cache_node)
Simon Glassc7f16932019-08-14 19:56:13 -0600314 priv->result = CBFS_FILE_NOT_FOUND;
Gabe Black84cd9322012-10-12 14:26:11 +0000315 else
Simon Glassc7f16932019-08-14 19:56:13 -0600316 priv->result = CBFS_SUCCESS;
Gabe Black84cd9322012-10-12 14:26:11 +0000317
318 return cache_node;
319}
320
Simon Glass02e4af62019-08-14 19:56:12 -0600321const struct cbfs_cachenode *file_cbfs_find(const char *name)
322{
323 return cbfs_find_file(&cbfs_s, name);
324}
325
Simon Glass45637db2020-05-24 17:38:13 -0600326const struct cbfs_cachenode *file_cbfs_find_uncached(ulong end_of_rom,
Gabe Black84cd9322012-10-12 14:26:11 +0000327 const char *name)
328{
Simon Glass02e4af62019-08-14 19:56:12 -0600329 struct cbfs_priv *priv = &cbfs_s;
Gabe Black84cd9322012-10-12 14:26:11 +0000330 u8 *start;
331 u32 size;
332 u32 align;
333 static struct cbfs_cachenode node;
334
Simon Glass02e4af62019-08-14 19:56:12 -0600335 if (file_cbfs_load_header(end_of_rom, &priv->header))
Gabe Black84cd9322012-10-12 14:26:11 +0000336 return NULL;
337
Simon Glass02e4af62019-08-14 19:56:12 -0600338 start = (u8 *)(end_of_rom + 1 - priv->header.rom_size);
339 size = priv->header.rom_size;
340 align = priv->header.align;
Gabe Black84cd9322012-10-12 14:26:11 +0000341
342 while (size >= align) {
Simon Glassea38ee92020-05-24 17:38:12 -0600343 int ret;
Gabe Black84cd9322012-10-12 14:26:11 +0000344 u32 used;
345
Simon Glassea38ee92020-05-24 17:38:12 -0600346 ret = file_cbfs_next_file(priv, start, size, align, &node,
347 &used);
Gabe Black84cd9322012-10-12 14:26:11 +0000348
Simon Glassea38ee92020-05-24 17:38:12 -0600349 if (ret < 0)
Gabe Black84cd9322012-10-12 14:26:11 +0000350 return NULL;
Simon Glassea38ee92020-05-24 17:38:12 -0600351 else if (ret == 0)
Gabe Black84cd9322012-10-12 14:26:11 +0000352 break;
353
354 if (!strcmp(name, node.name))
355 return &node;
356
357 size -= used;
358 start += used;
359 }
Simon Glassc7f16932019-08-14 19:56:13 -0600360 cbfs_s.result = CBFS_FILE_NOT_FOUND;
Gabe Black84cd9322012-10-12 14:26:11 +0000361 return NULL;
362}
363
364const char *file_cbfs_name(const struct cbfs_cachenode *file)
365{
Simon Glassc7f16932019-08-14 19:56:13 -0600366 cbfs_s.result = CBFS_SUCCESS;
367
Gabe Black84cd9322012-10-12 14:26:11 +0000368 return file->name;
369}
370
371u32 file_cbfs_size(const struct cbfs_cachenode *file)
372{
Simon Glassc7f16932019-08-14 19:56:13 -0600373 cbfs_s.result = CBFS_SUCCESS;
374
Gabe Black84cd9322012-10-12 14:26:11 +0000375 return file->data_length;
376}
377
378u32 file_cbfs_type(const struct cbfs_cachenode *file)
379{
Simon Glassc7f16932019-08-14 19:56:13 -0600380 cbfs_s.result = CBFS_SUCCESS;
381
Gabe Black84cd9322012-10-12 14:26:11 +0000382 return file->type;
383}
384
385long file_cbfs_read(const struct cbfs_cachenode *file, void *buffer,
386 unsigned long maxsize)
387{
388 u32 size;
389
390 size = file->data_length;
391 if (maxsize && size > maxsize)
392 size = maxsize;
393
394 memcpy(buffer, file->data, size);
Simon Glassc7f16932019-08-14 19:56:13 -0600395 cbfs_s.result = CBFS_SUCCESS;
Gabe Black84cd9322012-10-12 14:26:11 +0000396
Gabe Black84cd9322012-10-12 14:26:11 +0000397 return size;
398}