blob: 9df2030679a75de5504651be6fd4e34c19b015da [file] [log] [blame]
Hung-Te Lineab2c812013-01-29 01:56:17 +08001/*
2 * CBFS Image Manipulation
3 *
4 * Copyright (C) 2013 The Chromium OS Authors. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
18 */
19
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080020#include <inttypes.h>
21#include <libgen.h>
Hung-Te Lineab2c812013-01-29 01:56:17 +080022#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25
26#include "common.h"
27#include "cbfs_image.h"
28
29/* The file name align is not defined in CBFS spec -- only a preference by
30 * (old) cbfstool. */
31#define CBFS_FILENAME_ALIGN (16)
32
33/* To make CBFS more friendly to ROM, fill -1 (0xFF) instead of zero. */
34#define CBFS_CONTENT_DEFAULT_VALUE (-1)
35
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080036/* Type and format */
37
38struct typedesc_t {
39 uint32_t type;
40 const char *name;
41};
42
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -070043static const struct typedesc_t types_cbfs_entry[] = {
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080044 {CBFS_COMPONENT_STAGE, "stage"},
45 {CBFS_COMPONENT_PAYLOAD, "payload"},
46 {CBFS_COMPONENT_OPTIONROM, "optionrom"},
47 {CBFS_COMPONENT_BOOTSPLASH, "bootsplash"},
48 {CBFS_COMPONENT_RAW, "raw"},
49 {CBFS_COMPONENT_VSA, "vsa"},
50 {CBFS_COMPONENT_MBI, "mbi"},
51 {CBFS_COMPONENT_MICROCODE, "microcode"},
Martin Rothdde307c2015-03-24 15:54:20 -060052 {CBFS_COMPONENT_FSP, "fsp"},
53 {CBFS_COMPONENT_MRC, "mrc"},
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080054 {CBFS_COMPONENT_CMOS_DEFAULT, "cmos_default"},
55 {CBFS_COMPONENT_CMOS_LAYOUT, "cmos_layout"},
Martin Rothdde307c2015-03-24 15:54:20 -060056 {CBFS_COMPONENT_SPD, "spd"},
57 {CBFS_COMPONENT_MRC_CACHE, "mrc_cache"},
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080058 {CBFS_COMPONENT_DELETED, "deleted"},
59 {CBFS_COMPONENT_NULL, "null"},
60 {0, NULL},
61};
62
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -070063static const struct typedesc_t types_cbfs_compression[] = {
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080064 {CBFS_COMPRESS_NONE, "none"},
65 {CBFS_COMPRESS_LZMA, "LZMA"},
66 {0, NULL},
67};
68
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080069static const char *lookup_name_by_type(const struct typedesc_t *desc, uint32_t type,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -070070 const char *default_value)
71{
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080072 int i;
73 for (i = 0; desc[i].name; i++)
74 if (desc[i].type == type)
75 return desc[i].name;
76 return default_value;
77}
78
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010079static const char *get_cbfs_entry_type_name(uint32_t type)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -070080{
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080081 return lookup_name_by_type(types_cbfs_entry, type, "(unknown)");
82}
83
Hung-Te Linc03d9b02013-01-29 02:38:40 +080084/* CBFS image */
85
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -070086static int cbfs_calculate_file_header_size(const char *name)
87{
Hung-Te Linc03d9b02013-01-29 02:38:40 +080088 return (sizeof(struct cbfs_file) +
89 align_up(strlen(name) + 1, CBFS_FILENAME_ALIGN));
90}
91
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -060092static int cbfs_fix_legacy_size(struct cbfs_image *image, char *hdr_loc)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -070093{
Hung-Te Lin49fcd752013-01-29 03:16:20 +080094 // A bug in old cbfstool may produce extra few bytes (by alignment) and
95 // cause cbfstool to overwrite things after free space -- which is
96 // usually CBFS header on x86. We need to workaround that.
97
98 struct cbfs_file *entry, *first = NULL, *last = NULL;
99 for (first = entry = cbfs_find_first_entry(image);
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800100 entry && cbfs_is_valid_entry(image, entry);
Hung-Te Lin49fcd752013-01-29 03:16:20 +0800101 entry = cbfs_find_next_entry(image, entry)) {
102 last = entry;
103 }
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600104 if ((char *)first < (char *)hdr_loc &&
105 (char *)entry > (char *)hdr_loc) {
Hung-Te Lin49fcd752013-01-29 03:16:20 +0800106 WARN("CBFS image was created with old cbfstool with size bug. "
107 "Fixing size in last entry...\n");
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600108 last->len = htonl(ntohl(last->len) - image->header->align);
Hung-Te Lin49fcd752013-01-29 03:16:20 +0800109 DEBUG("Last entry has been changed from 0x%x to 0x%x.\n",
110 cbfs_get_entry_addr(image, entry),
111 cbfs_get_entry_addr(image,
112 cbfs_find_next_entry(image, last)));
113 }
114 return 0;
115}
116
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -0800117void cbfs_put_header(void *dest, const struct cbfs_header *header)
118{
119 struct buffer outheader;
120
121 outheader.data = dest;
122 outheader.size = 0;
123
124 xdr_be.put32(&outheader, header->magic);
125 xdr_be.put32(&outheader, header->version);
126 xdr_be.put32(&outheader, header->romsize);
127 xdr_be.put32(&outheader, header->bootblocksize);
128 xdr_be.put32(&outheader, header->align);
129 xdr_be.put32(&outheader, header->offset);
130 xdr_be.put32(&outheader, header->architecture);
131}
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600132
Hung-Te Lin0780d672014-05-16 10:14:05 +0800133static void cbfs_decode_payload_segment(struct cbfs_payload_segment *output,
134 struct cbfs_payload_segment *input)
135{
136 struct buffer seg = {
137 .data = (void *)input,
138 .size = sizeof(*input),
139 };
140 output->type = xdr_be.get32(&seg);
141 output->compression = xdr_be.get32(&seg);
142 output->offset = xdr_be.get32(&seg);
143 output->load_addr = xdr_be.get64(&seg);
144 output->len = xdr_be.get32(&seg);
145 output->mem_len = xdr_be.get32(&seg);
146 assert(seg.size == 0);
147}
148
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600149void cbfs_get_header(struct cbfs_header *header, const void *src)
150{
151 struct buffer outheader;
152
153 outheader.data = (void *)src; /* We're not modifying the data */
154 outheader.size = 0;
155
156 header->magic = xdr_be.get32(&outheader);
157 header->version = xdr_be.get32(&outheader);
158 header->romsize = xdr_be.get32(&outheader);
159 header->bootblocksize = xdr_be.get32(&outheader);
160 header->align = xdr_be.get32(&outheader);
161 header->offset = xdr_be.get32(&outheader);
162 header->architecture = xdr_be.get32(&outheader);
163}
164
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800165int cbfs_image_create(struct cbfs_image *image,
Stefan Reinauer2dd161f2015-03-04 00:55:03 +0100166 uint32_t architecture,
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800167 size_t size,
168 uint32_t align,
169 struct buffer *bootblock,
170 int32_t bootblock_offset,
171 int32_t header_offset,
172 int32_t entries_offset)
173{
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -0800174 struct cbfs_header header;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800175 struct cbfs_file *entry;
Julius Wernerefcee762014-11-10 13:14:24 -0800176 int32_t *rel_offset;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800177 uint32_t cbfs_len;
Hung-Te Linb02c8732013-03-15 17:40:08 +0800178 size_t entry_header_len;
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600179 void *header_loc;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800180
181 DEBUG("cbfs_image_create: bootblock=0x%x+0x%zx, "
182 "header=0x%x+0x%zx, entries_offset=0x%x\n",
183 bootblock_offset, bootblock->size,
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -0800184 header_offset, sizeof(header), entries_offset);
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800185
186 if (buffer_create(&image->buffer, size, "(new)") != 0)
187 return -1;
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600188 if ((image->header = malloc(sizeof(*image->header))) == NULL)
189 return -1;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800190 memset(image->buffer.data, CBFS_CONTENT_DEFAULT_VALUE, size);
191
192 // Adjust legcay top-aligned address to ROM offset.
193 if (IS_TOP_ALIGNED_ADDRESS(entries_offset))
194 entries_offset += (int32_t)size;
195 if (IS_TOP_ALIGNED_ADDRESS(bootblock_offset))
196 bootblock_offset += (int32_t)size;
197 if (IS_TOP_ALIGNED_ADDRESS(header_offset))
198 header_offset += (int32_t) size;
199
200 DEBUG("cbfs_create_image: (real offset) bootblock=0x%x, "
201 "header=0x%x, entries_offset=0x%x\n",
202 bootblock_offset, header_offset, entries_offset);
203
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800204 // Prepare bootblock
205 if (bootblock_offset + bootblock->size > size) {
206 ERROR("Bootblock (0x%x+0x%zx) exceed ROM size (0x%zx)\n",
207 bootblock_offset, bootblock->size, size);
208 return -1;
209 }
Hung-Te Linc5ff6482013-02-06 12:41:49 +0800210 if (entries_offset > bootblock_offset &&
211 entries_offset < bootblock->size) {
212 ERROR("Bootblock (0x%x+0x%zx) overlap CBFS data (0x%x)\n",
213 bootblock_offset, bootblock->size, entries_offset);
214 return -1;
215 }
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800216 memcpy(image->buffer.data + bootblock_offset, bootblock->data,
217 bootblock->size);
218
219 // Prepare header
Julius Wernerefcee762014-11-10 13:14:24 -0800220 if (header_offset + sizeof(header) > size - sizeof(int32_t)) {
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800221 ERROR("Header (0x%x+0x%zx) exceed ROM size (0x%zx)\n",
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -0800222 header_offset, sizeof(header), size);
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800223 return -1;
224 }
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600225 image->header->magic = CBFS_HEADER_MAGIC;
226 image->header->version = CBFS_HEADER_VERSION;
227 image->header->romsize = size;
228 image->header->bootblocksize = bootblock->size;
229 image->header->align = align;
230 image->header->offset = entries_offset;
Stefan Reinauer2dd161f2015-03-04 00:55:03 +0100231 image->header->architecture = architecture;
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600232
233 header_loc = (image->buffer.data + header_offset);
234 cbfs_put_header(header_loc, image->header);
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800235
Julius Wernerefcee762014-11-10 13:14:24 -0800236 // The last 4 byte of the image contain the relative offset from the end
237 // of the image to the master header as a 32-bit signed integer. x86
238 // relies on this also being its (memory-mapped, top-aligned) absolute
239 // 32-bit address by virtue of how two's complement numbers work.
240 assert(size % sizeof(int32_t) == 0);
241 rel_offset = (int32_t *)(image->buffer.data + size - sizeof(int32_t));
242 *rel_offset = header_offset - size;
243
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800244 // Prepare entries
245 if (align_up(entries_offset, align) != entries_offset) {
246 ERROR("Offset (0x%x) must be aligned to 0x%x.\n",
247 entries_offset, align);
248 return -1;
249 }
Hung-Te Linb02c8732013-03-15 17:40:08 +0800250 entry_header_len = cbfs_calculate_file_header_size("");
251 if (entries_offset + entry_header_len > size) {
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800252 ERROR("Offset (0x%x+0x%zx) exceed ROM size(0x%zx)\n",
Hung-Te Linb02c8732013-03-15 17:40:08 +0800253 entries_offset, entry_header_len, size);
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800254 return -1;
255 }
256 entry = (struct cbfs_file *)(image->buffer.data + entries_offset);
257 // To calculate available length, find
Julius Wernerefcee762014-11-10 13:14:24 -0800258 // e = min(bootblock, header, rel_offset) where e > entries_offset.
259 cbfs_len = size - sizeof(int32_t);
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800260 if (bootblock_offset > entries_offset && bootblock_offset < cbfs_len)
261 cbfs_len = bootblock_offset;
262 if (header_offset > entries_offset && header_offset < cbfs_len)
263 cbfs_len = header_offset;
Hung-Te Linb02c8732013-03-15 17:40:08 +0800264 cbfs_len -= entries_offset + align + entry_header_len;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800265 cbfs_create_empty_entry(image, entry, cbfs_len, "");
266 LOG("Created CBFS image (capacity = %d bytes)\n", cbfs_len);
267 return 0;
268}
269
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800270int cbfs_image_from_file(struct cbfs_image *image,
271 const char *filename, uint32_t offset)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700272{
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600273 void *header_loc;
274
Hung-Te Lineab2c812013-01-29 01:56:17 +0800275 if (buffer_from_file(&image->buffer, filename) != 0)
276 return -1;
277 DEBUG("read_cbfs_image: %s (%zd bytes)\n", image->buffer.name,
278 image->buffer.size);
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800279 header_loc = cbfs_find_header(image->buffer.data,
280 image->buffer.size,
281 offset);
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600282 if (!header_loc) {
Hung-Te Lineab2c812013-01-29 01:56:17 +0800283 ERROR("%s does not have CBFS master header.\n", filename);
284 cbfs_image_delete(image);
285 return -1;
286 }
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600287
288 if ((image->header = malloc(sizeof(*image->header))) == NULL)
289 return -1;
290
291 cbfs_get_header(image->header, header_loc);
292 cbfs_fix_legacy_size(image, header_loc);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800293
294 return 0;
295}
296
Vadim Bendebury5e273a42014-12-23 19:26:54 -0800297int cbfs_copy_instance(struct cbfs_image *image, size_t copy_offset,
298 size_t copy_size)
299{
300 struct cbfs_file *src_entry, *dst_entry;
301 struct cbfs_header *copy_header;
302 size_t align, entry_offset;
303 ssize_t last_entry_size;
304
305 size_t header_offset, header_end;
306 size_t cbfs_offset, cbfs_end;
307 size_t copy_end = copy_offset + copy_size;
308
309 align = htonl(image->header->align);
310
311 header_offset = (char *)image->header - image->buffer.data;
312 header_end = header_offset + sizeof(image->header);
313
314 cbfs_offset = htonl(image->header->offset);
315 cbfs_end = htonl(image->header->romsize);
316
317 if (copy_end > image->buffer.size) {
318 ERROR("Copy offset out of range: [%zx:%zx)\n",
319 copy_offset, copy_end);
320 return 1;
321 }
322
323 /* Range check requested copy region with header and source cbfs. */
324 if ((copy_offset >= header_offset && copy_offset < header_end) ||
325 (copy_end >= header_offset && copy_end <= header_end)) {
326 ERROR("New image would overlap old header.\n");
327 }
328
329 if ((copy_offset >= cbfs_offset && copy_offset < cbfs_end) ||
330 (copy_end >= cbfs_offset && copy_end <= cbfs_end)) {
331 ERROR("New image would overlap old one.\n");
332 return 1;
333 }
334
335 /* This will work, let's create a copy. */
336 copy_header = (struct cbfs_header *)(image->buffer.data + copy_offset);
337 *copy_header = *image->header;
338
339 copy_header->bootblocksize = 0;
340 /* Romsize is a misnomer. It's the absolute limit of cbfs content.*/
341 copy_header->romsize = htonl(copy_end);
342 entry_offset = align_up(copy_offset + sizeof(*copy_header), align);
343 copy_header->offset = htonl(entry_offset);
344 dst_entry = (struct cbfs_file *)(image->buffer.data + entry_offset);
345
346 /* Copy non-empty files */
347 for (src_entry = cbfs_find_first_entry(image);
348 src_entry && cbfs_is_valid_entry(image, src_entry);
349 src_entry = cbfs_find_next_entry(image, src_entry)) {
350 size_t entry_size;
351
352 if ((src_entry->type == htonl(CBFS_COMPONENT_NULL)) ||
353 (src_entry->type == htonl(CBFS_COMPONENT_DELETED)))
354 continue;
355
356 entry_size = htonl(src_entry->len) + htonl(src_entry->offset);
357 memcpy(dst_entry, src_entry, entry_size);
358 dst_entry = (struct cbfs_file *)(
359 (uintptr_t)dst_entry + align_up(entry_size, align));
360
361 if (((char *)dst_entry - image->buffer.data) >= copy_end) {
362 ERROR("Ran out of room in copy region.\n");
363 return 1;
364 }
365 }
366
367 /* Last entry size is all the room above it. */
368 last_entry_size = copy_end - ((char *)dst_entry - image->buffer.data)
369 - cbfs_calculate_file_header_size("");
370
371 if (last_entry_size < 0)
372 WARN("No room to create the last entry!\n")
373 else
374 cbfs_create_empty_entry(image, dst_entry, last_entry_size, "");
375
376 return 0;
377}
378
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700379int cbfs_image_write_file(struct cbfs_image *image, const char *filename)
380{
Hung-Te Lineab2c812013-01-29 01:56:17 +0800381 assert(image && image->buffer.data);
382 return buffer_write_file(&image->buffer, filename);
383}
384
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700385int cbfs_image_delete(struct cbfs_image *image)
386{
Edward O'Callaghana0f9ece2014-03-09 00:05:18 +1100387 if (image == NULL)
388 return 0;
389
Hung-Te Lineab2c812013-01-29 01:56:17 +0800390 buffer_delete(&image->buffer);
391 image->header = NULL;
392 return 0;
393}
394
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800395/* Tries to add an entry with its data (CBFS_SUBHEADER) at given offset. */
396static int cbfs_add_entry_at(struct cbfs_image *image,
397 struct cbfs_file *entry,
398 uint32_t size,
399 const char *name,
400 uint32_t type,
401 const void *data,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700402 uint32_t content_offset)
403{
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800404 struct cbfs_file *next = cbfs_find_next_entry(image, entry);
405 uint32_t addr = cbfs_get_entry_addr(image, entry),
406 addr_next = cbfs_get_entry_addr(image, next);
407 uint32_t header_size = cbfs_calculate_file_header_size(name),
408 min_entry_size = cbfs_calculate_file_header_size("");
409 uint32_t len, target;
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600410 uint32_t align = image->header->align;
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800411
412 target = content_offset - header_size;
413 if (target % align)
414 target -= target % align;
415 if (target < addr) {
416 ERROR("No space to hold cbfs_file header.");
417 return -1;
418 }
419
420 // Process buffer BEFORE content_offset.
421 if (target - addr > min_entry_size) {
422 DEBUG("|min|...|header|content|... <create new entry>\n");
423 len = target - addr - min_entry_size;
424 cbfs_create_empty_entry(image, entry, len, "");
425 if (verbose > 1) cbfs_print_entry_info(image, entry, stderr);
426 entry = cbfs_find_next_entry(image, entry);
427 addr = cbfs_get_entry_addr(image, entry);
428 }
429
430 len = size + (content_offset - addr - header_size);
431 cbfs_create_empty_entry(image, entry, len, name);
432 if (len != size) {
433 DEBUG("|..|header|content|... <use offset to create entry>\n");
434 DEBUG("before: offset=0x%x, len=0x%x\n",
435 ntohl(entry->offset), ntohl(entry->len));
436 // TODO reset expanded name buffer to 0xFF.
437 entry->offset = htonl(ntohl(entry->offset) + (len - size));
438 entry->len = htonl(size);
439 DEBUG("after: offset=0x%x, len=0x%x\n",
440 ntohl(entry->offset), ntohl(entry->len));
441 }
442
443 // Ready to fill data into entry.
444 assert(ntohl(entry->len) == size);
445 entry->type = htonl(type);
446 DEBUG("content_offset: 0x%x, entry location: %x\n",
447 content_offset, (int)((char*)CBFS_SUBHEADER(entry) -
448 image->buffer.data));
449 assert((char*)CBFS_SUBHEADER(entry) - image->buffer.data ==
450 content_offset);
451 memcpy(CBFS_SUBHEADER(entry), data, size);
452 if (verbose > 1) cbfs_print_entry_info(image, entry, stderr);
453
454 // Process buffer AFTER entry.
455 entry = cbfs_find_next_entry(image, entry);
456 addr = cbfs_get_entry_addr(image, entry);
457 assert(addr < addr_next);
458
459 if (addr_next - addr < min_entry_size) {
460 DEBUG("No space after content to keep CBFS structure.\n");
461 return -1;
462 }
463
464 len = addr_next - addr - min_entry_size;
465 cbfs_create_empty_entry(image, entry, len, "");
466 if (verbose > 1) cbfs_print_entry_info(image, entry, stderr);
467 return 0;
468}
469
470int cbfs_add_entry(struct cbfs_image *image, struct buffer *buffer,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700471 const char *name, uint32_t type, uint32_t content_offset)
472{
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800473 uint32_t entry_type;
474 uint32_t addr, addr_next;
475 struct cbfs_file *entry, *next;
476 uint32_t header_size, need_size, new_size;
477
478 header_size = cbfs_calculate_file_header_size(name);
479
480 need_size = header_size + buffer->size;
481 DEBUG("cbfs_add_entry('%s'@0x%x) => need_size = %u+%zu=%u\n",
482 name, content_offset, header_size, buffer->size, need_size);
483
484 if (IS_TOP_ALIGNED_ADDRESS(content_offset)) {
485 // legacy cbfstool takes top-aligned address.
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600486 uint32_t theromsize = image->header->romsize;
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800487 INFO("Converting top-aligned address 0x%x to offset: 0x%x\n",
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800488 content_offset, content_offset + theromsize);
489 content_offset += theromsize;
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800490 }
491
492 // Merge empty entries.
493 DEBUG("(trying to merge empty entries...)\n");
494 cbfs_walk(image, cbfs_merge_empty_entry, NULL);
495
496 for (entry = cbfs_find_first_entry(image);
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800497 entry && cbfs_is_valid_entry(image, entry);
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800498 entry = cbfs_find_next_entry(image, entry)) {
499
500 entry_type = ntohl(entry->type);
501 if (entry_type != CBFS_COMPONENT_NULL)
502 continue;
503
504 addr = cbfs_get_entry_addr(image, entry);
505 next = cbfs_find_next_entry(image, entry);
506 addr_next = cbfs_get_entry_addr(image, next);
507
508 DEBUG("cbfs_add_entry: space at 0x%x+0x%x(%d) bytes\n",
509 addr, addr_next - addr, addr_next - addr);
Aaron Durbin1ebc7e92014-01-21 15:28:38 -0600510
511 /* Will the file fit? Don't yet worry if we have space for a new
512 * "empty" entry. We take care of that later.
513 */
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800514 if (addr + need_size > addr_next)
515 continue;
516
517 // Can we simply put object here?
518 if (!content_offset || content_offset == addr + header_size) {
519 DEBUG("Filling new entry data (%zd bytes).\n",
520 buffer->size);
521 cbfs_create_empty_entry(image, entry, buffer->size,
522 name);
523 entry->type = htonl(type);
524 memcpy(CBFS_SUBHEADER(entry), buffer->data, buffer->size);
525 if (verbose)
526 cbfs_print_entry_info(image, entry, stderr);
527
528 // setup new entry
Paul Menzel4159a802013-07-14 00:24:31 +0200529 DEBUG("Setting new empty entry.\n");
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800530 entry = cbfs_find_next_entry(image, entry);
531 new_size = (cbfs_get_entry_addr(image, next) -
532 cbfs_get_entry_addr(image, entry));
Aaron Durbin1ebc7e92014-01-21 15:28:38 -0600533
534 /* Entry was added and no space for new "empty" entry */
535 if (new_size < cbfs_calculate_file_header_size("")) {
536 DEBUG("No need for new \"empty\" entry\n");
537 /* No need to increase the size of the just
538 * stored file to extend to next file. Alignment
539 * of next file takes care of this.
540 */
541 return 0;
542 }
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800543 new_size -= cbfs_calculate_file_header_size("");
544 DEBUG("new size: %d\n", new_size);
545 cbfs_create_empty_entry(image, entry, new_size, "");
546 if (verbose)
547 cbfs_print_entry_info(image, entry, stderr);
548 return 0;
549 }
550
551 // We need to put content here, and the case is really
552 // complicated...
553 assert(content_offset);
554 if (addr_next < content_offset) {
555 DEBUG("Not for specified offset yet");
556 continue;
557 } else if (addr > content_offset) {
558 DEBUG("Exceed specified content_offset.");
559 break;
560 } else if (addr + header_size > content_offset) {
561 ERROR("Not enough space for header.\n");
562 break;
563 } else if (content_offset + buffer->size > addr_next) {
564 ERROR("Not enough space for content.\n");
565 break;
566 }
567
568 // TODO there are more few tricky cases that we may
569 // want to fit by altering offset.
570 DEBUG("section 0x%x+0x%x for content_offset 0x%x.\n",
571 addr, addr_next - addr, content_offset);
572
573 if (cbfs_add_entry_at(image, entry, buffer->size, name, type,
574 buffer->data, content_offset) == 0) {
575 return 0;
576 }
577 break;
578 }
579
580 ERROR("Could not add [%s, %zd bytes (%zd KB)@0x%x]; too big?\n",
581 buffer->name, buffer->size, buffer->size / 1024, content_offset);
582 return -1;
583}
584
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700585struct cbfs_file *cbfs_get_entry(struct cbfs_image *image, const char *name)
586{
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800587 struct cbfs_file *entry;
588 for (entry = cbfs_find_first_entry(image);
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800589 entry && cbfs_is_valid_entry(image, entry);
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800590 entry = cbfs_find_next_entry(image, entry)) {
591 if (strcasecmp(CBFS_NAME(entry), name) == 0) {
592 DEBUG("cbfs_get_entry: found %s\n", name);
593 return entry;
594 }
595 }
596 return NULL;
597}
598
599int cbfs_export_entry(struct cbfs_image *image, const char *entry_name,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700600 const char *filename)
601{
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800602 struct cbfs_file *entry = cbfs_get_entry(image, entry_name);
603 struct buffer buffer;
604 if (!entry) {
605 ERROR("File not found: %s\n", entry_name);
606 return -1;
607 }
608 LOG("Found file %.30s at 0x%x, type %.12s, size %d\n",
609 entry_name, cbfs_get_entry_addr(image, entry),
610 get_cbfs_entry_type_name(ntohl(entry->type)), ntohl(entry->len));
611
612 if (ntohl(entry->type) != CBFS_COMPONENT_RAW) {
613 WARN("Only 'raw' files are safe to extract.\n");
614 }
615
616 buffer.data = CBFS_SUBHEADER(entry);
617 buffer.size = ntohl(entry->len);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800618 buffer.name = (char *)"(cbfs_export_entry)";
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800619 if (buffer_write_file(&buffer, filename) != 0) {
620 ERROR("Failed to write %s into %s.\n",
621 entry_name, filename);
622 return -1;
623 }
624 INFO("Successfully dumped the file to: %s\n", filename);
625 return 0;
626}
627
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700628int cbfs_remove_entry(struct cbfs_image *image, const char *name)
629{
Hung-Te Linc03d9b02013-01-29 02:38:40 +0800630 struct cbfs_file *entry, *next;
631 size_t len;
632 entry = cbfs_get_entry(image, name);
633 if (!entry) {
634 ERROR("CBFS file %s not found.\n", name);
635 return -1;
636 }
637 next = cbfs_find_next_entry(image, entry);
638 assert(next);
639 DEBUG("cbfs_remove_entry: Removed %s @ 0x%x\n",
640 CBFS_NAME(entry), cbfs_get_entry_addr(image, entry));
641 entry->type = htonl(CBFS_COMPONENT_DELETED);
642 len = (cbfs_get_entry_addr(image, next) -
643 cbfs_get_entry_addr(image, entry));
644 entry->offset = htonl(cbfs_calculate_file_header_size(""));
645 entry->len = htonl(len - ntohl(entry->offset));
646 memset(CBFS_NAME(entry), 0, ntohl(entry->offset) - sizeof(*entry));
647 memset(CBFS_SUBHEADER(entry), CBFS_CONTENT_DEFAULT_VALUE,
648 ntohl(entry->len));
649 return 0;
650}
651
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700652int cbfs_print_header_info(struct cbfs_image *image)
653{
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800654 char *name = strdup(image->buffer.name);
655 assert(image && image->header);
656 printf("%s: %zd kB, bootblocksize %d, romsize %d, offset 0x%x\n"
Stefan Reinauer8f50e532013-11-13 14:34:57 -0800657 "alignment: %d bytes, architecture: %s\n\n",
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800658 basename(name),
659 image->buffer.size / 1024,
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600660 image->header->bootblocksize,
661 image->header->romsize,
662 image->header->offset,
Stefan Reinauer8f50e532013-11-13 14:34:57 -0800663 image->header->align,
664 arch_to_string(image->header->architecture));
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800665 free(name);
666 return 0;
667}
668
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700669static int cbfs_print_stage_info(struct cbfs_stage *stage, FILE* fp)
670{
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800671 fprintf(fp,
672 " %s compression, entry: 0x%" PRIx64 ", load: 0x%" PRIx64 ", "
673 "length: %d/%d\n",
674 lookup_name_by_type(types_cbfs_compression,
675 stage->compression, "(unknown)"),
676 stage->entry,
677 stage->load,
678 stage->len,
679 stage->memlen);
680 return 0;
681}
682
Hung-Te Lin0780d672014-05-16 10:14:05 +0800683static int cbfs_print_decoded_payload_segment_info(
684 struct cbfs_payload_segment *seg, FILE *fp)
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800685{
Hung-Te Lin0780d672014-05-16 10:14:05 +0800686 /* The input (seg) must be already decoded by
687 * cbfs_decode_payload_segment.
688 */
689 switch (seg->type) {
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800690 case PAYLOAD_SEGMENT_CODE:
691 case PAYLOAD_SEGMENT_DATA:
692 fprintf(fp, " %s (%s compression, offset: 0x%x, "
693 "load: 0x%" PRIx64 ", length: %d/%d)\n",
Hung-Te Lin0780d672014-05-16 10:14:05 +0800694 (seg->type == PAYLOAD_SEGMENT_CODE ?
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800695 "code " : "data"),
696 lookup_name_by_type(types_cbfs_compression,
Hung-Te Lin0780d672014-05-16 10:14:05 +0800697 seg->compression,
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800698 "(unknown)"),
Hung-Te Lin0780d672014-05-16 10:14:05 +0800699 seg->offset, seg->load_addr, seg->len,
700 seg->mem_len);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800701 break;
702
703 case PAYLOAD_SEGMENT_ENTRY:
704 fprintf(fp, " entry (0x%" PRIx64 ")\n",
Hung-Te Lin0780d672014-05-16 10:14:05 +0800705 seg->load_addr);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800706 break;
707
708 case PAYLOAD_SEGMENT_BSS:
709 fprintf(fp, " BSS (address 0x%016" PRIx64 ", "
710 "length 0x%x)\n",
Hung-Te Lin0780d672014-05-16 10:14:05 +0800711 seg->load_addr, seg->len);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800712 break;
713
714 case PAYLOAD_SEGMENT_PARAMS:
715 fprintf(fp, " parameters\n");
716 break;
717
718 default:
719 fprintf(fp, " 0x%x (%s compression, offset: 0x%x, "
720 "load: 0x%" PRIx64 ", length: %d/%d\n",
Hung-Te Lin0780d672014-05-16 10:14:05 +0800721 seg->type,
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800722 lookup_name_by_type(types_cbfs_compression,
Hung-Te Lin0780d672014-05-16 10:14:05 +0800723 seg->compression,
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800724 "(unknown)"),
Hung-Te Lin0780d672014-05-16 10:14:05 +0800725 seg->offset, seg->load_addr, seg->len,
726 seg->mem_len);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800727 break;
728 }
729 return 0;
730}
731
732int cbfs_print_entry_info(struct cbfs_image *image, struct cbfs_file *entry,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700733 void *arg)
734{
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800735 const char *name = CBFS_NAME(entry);
736 struct cbfs_payload_segment *payload;
737 FILE *fp = (FILE *)arg;
738
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800739 if (!cbfs_is_valid_entry(image, entry)) {
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800740 ERROR("cbfs_print_entry_info: Invalid entry at 0x%x\n",
741 cbfs_get_entry_addr(image, entry));
742 return -1;
743 }
744 if (!fp)
745 fp = stdout;
746
747 fprintf(fp, "%-30s 0x%-8x %-12s %d\n",
748 *name ? name : "(empty)",
749 cbfs_get_entry_addr(image, entry),
750 get_cbfs_entry_type_name(ntohl(entry->type)),
751 ntohl(entry->len));
752
753 if (!verbose)
754 return 0;
755
756 DEBUG(" cbfs_file=0x%x, offset=0x%x, content_address=0x%x+0x%x\n",
757 cbfs_get_entry_addr(image, entry), ntohl(entry->offset),
758 cbfs_get_entry_addr(image, entry) + ntohl(entry->offset),
759 ntohl(entry->len));
760
761 /* note the components of the subheader may be in host order ... */
762 switch (ntohl(entry->type)) {
763 case CBFS_COMPONENT_STAGE:
764 cbfs_print_stage_info((struct cbfs_stage *)
765 CBFS_SUBHEADER(entry), fp);
766 break;
767
768 case CBFS_COMPONENT_PAYLOAD:
769 payload = (struct cbfs_payload_segment *)
770 CBFS_SUBHEADER(entry);
771 while (payload) {
Hung-Te Lin0780d672014-05-16 10:14:05 +0800772 struct cbfs_payload_segment seg;
773 cbfs_decode_payload_segment(&seg, payload);
774 cbfs_print_decoded_payload_segment_info(
775 &seg, fp);
776 if (seg.type == PAYLOAD_SEGMENT_ENTRY)
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800777 break;
Hung-Te Lin0780d672014-05-16 10:14:05 +0800778 else
Aaron Durbinca630272014-08-05 10:48:20 -0500779 payload ++;
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800780 }
781 break;
782 default:
783 break;
784 }
785 return 0;
786}
787
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700788int cbfs_print_directory(struct cbfs_image *image)
789{
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800790 cbfs_print_header_info(image);
791 printf("%-30s %-10s %-12s Size\n", "Name", "Offset", "Type");
792 cbfs_walk(image, cbfs_print_entry_info, NULL);
793 return 0;
794}
795
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800796int cbfs_merge_empty_entry(struct cbfs_image *image, struct cbfs_file *entry,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700797 void *arg)
798{
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800799 struct cbfs_file *next;
800 uint32_t type, addr, last_addr;
801
802 type = ntohl(entry->type);
803 if (type == CBFS_COMPONENT_DELETED) {
804 // Ready to be recycled.
805 type = CBFS_COMPONENT_NULL;
806 entry->type = htonl(type);
807 }
808 if (type != CBFS_COMPONENT_NULL)
809 return 0;
810
811 next = cbfs_find_next_entry(image, entry);
812
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800813 while (next && cbfs_is_valid_entry(image, next)) {
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800814 type = ntohl(next->type);
815 if (type == CBFS_COMPONENT_DELETED) {
816 type = CBFS_COMPONENT_NULL;
817 next->type = htonl(type);
818 }
819 if (type != CBFS_COMPONENT_NULL)
820 return 0;
821
822 addr = cbfs_get_entry_addr(image, entry);
823 last_addr = cbfs_get_entry_addr(
824 image, cbfs_find_next_entry(image, next));
825
826 // Now, we find two deleted/empty entries; try to merge now.
827 DEBUG("join_empty_entry: combine 0x%x+0x%x and 0x%x+0x%x.\n",
828 cbfs_get_entry_addr(image, entry), ntohl(entry->len),
829 cbfs_get_entry_addr(image, next), ntohl(next->len));
830 cbfs_create_empty_entry(image, entry,
831 (last_addr - addr -
832 cbfs_calculate_file_header_size("")),
833 "");
834 DEBUG("new empty entry: length=0x%x\n", ntohl(entry->len));
835 next = cbfs_find_next_entry(image, entry);
836 }
837 return 0;
838}
839
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800840int cbfs_walk(struct cbfs_image *image, cbfs_entry_callback callback,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700841 void *arg)
842{
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800843 int count = 0;
844 struct cbfs_file *entry;
845 for (entry = cbfs_find_first_entry(image);
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800846 entry && cbfs_is_valid_entry(image, entry);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800847 entry = cbfs_find_next_entry(image, entry)) {
848 count ++;
849 if (callback(image, entry, arg) != 0)
850 break;
851 }
852 return count;
853}
854
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800855static int cbfs_header_valid(struct cbfs_header *header, size_t size)
856{
857 if ((ntohl(header->magic) == CBFS_HEADER_MAGIC) &&
858 ((ntohl(header->version) == CBFS_HEADER_VERSION1) ||
859 (ntohl(header->version) == CBFS_HEADER_VERSION2)) &&
860 (ntohl(header->romsize) <= size) &&
861 (ntohl(header->offset) < ntohl(header->romsize)))
862 return 1;
863 return 0;
864}
865
866struct cbfs_header *cbfs_find_header(char *data, size_t size,
867 uint32_t forced_offset)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700868{
Hung-Te Lineab2c812013-01-29 01:56:17 +0800869 size_t offset;
870 int found = 0;
Julius Wernerefcee762014-11-10 13:14:24 -0800871 int32_t rel_offset;
Hung-Te Lineab2c812013-01-29 01:56:17 +0800872 struct cbfs_header *header, *result = NULL;
873
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800874 if (forced_offset < (size - sizeof(struct cbfs_header))) {
875 /* Check if the forced header is valid. */
876 header = (struct cbfs_header *)(data + forced_offset);
877 if (cbfs_header_valid(header, size))
878 return header;
879 return NULL;
880 }
881
Julius Wernerefcee762014-11-10 13:14:24 -0800882 // Try finding relative offset of master header at end of file first.
883 rel_offset = *(int32_t *)(data + size - sizeof(int32_t));
884 offset = size + rel_offset;
885 DEBUG("relative offset: %#zx(-%#zx), offset: %#zx\n",
886 (size_t)rel_offset, (size_t)-rel_offset, offset);
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800887
Hung-Te Lineab2c812013-01-29 01:56:17 +0800888 if (offset >= size - sizeof(*header) ||
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800889 !cbfs_header_valid((struct cbfs_header *)(data + offset), size)) {
Julius Wernerefcee762014-11-10 13:14:24 -0800890 // Some use cases append non-CBFS data to the end of the ROM.
891 DEBUG("relative offset seems wrong, scanning whole image...\n");
Hung-Te Lineab2c812013-01-29 01:56:17 +0800892 offset = 0;
Julius Wernerefcee762014-11-10 13:14:24 -0800893 }
Hung-Te Lineab2c812013-01-29 01:56:17 +0800894
895 for (; offset + sizeof(*header) < size; offset++) {
896 header = (struct cbfs_header *)(data + offset);
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800897 if (!cbfs_header_valid(header, size))
Hung-Te Lineab2c812013-01-29 01:56:17 +0800898 continue;
Julius Wernerefcee762014-11-10 13:14:24 -0800899 if (!found++)
900 result = header;
Hung-Te Lineab2c812013-01-29 01:56:17 +0800901 }
Julius Wernerefcee762014-11-10 13:14:24 -0800902 if (found > 1)
903 // Top-aligned images usually have a working relative offset
904 // field, so this is more likely to happen on bottom-aligned
905 // ones (where the first header is the "outermost" one)
906 WARN("Multiple (%d) CBFS headers found, using the first one.\n",
Hung-Te Lineab2c812013-01-29 01:56:17 +0800907 found);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800908 return result;
909}
910
911
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700912struct cbfs_file *cbfs_find_first_entry(struct cbfs_image *image)
913{
Hung-Te Lineab2c812013-01-29 01:56:17 +0800914 assert(image && image->header);
915 return (struct cbfs_file *)(image->buffer.data +
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600916 image->header->offset);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800917}
918
919struct cbfs_file *cbfs_find_next_entry(struct cbfs_image *image,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700920 struct cbfs_file *entry)
921{
Hung-Te Lineab2c812013-01-29 01:56:17 +0800922 uint32_t addr = cbfs_get_entry_addr(image, entry);
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600923 int align = image->header->align;
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800924 assert(entry && cbfs_is_valid_entry(image, entry));
Hung-Te Lineab2c812013-01-29 01:56:17 +0800925 addr += ntohl(entry->offset) + ntohl(entry->len);
926 addr = align_up(addr, align);
927 return (struct cbfs_file *)(image->buffer.data + addr);
928}
929
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700930uint32_t cbfs_get_entry_addr(struct cbfs_image *image, struct cbfs_file *entry)
931{
Hung-Te Lineab2c812013-01-29 01:56:17 +0800932 assert(image && image->buffer.data && entry);
933 return (int32_t)((char *)entry - image->buffer.data);
934}
935
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700936int cbfs_is_valid_entry(struct cbfs_image *image, struct cbfs_file *entry)
937{
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800938 return (entry &&
939 (char *)entry >= image->buffer.data &&
940 (char *)entry + sizeof(entry->magic) <
941 image->buffer.data + image->buffer.size &&
942 memcmp(entry->magic, CBFS_FILE_MAGIC,
943 sizeof(entry->magic)) == 0);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800944}
945
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800946int cbfs_create_empty_entry(struct cbfs_image *image, struct cbfs_file *entry,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700947 size_t len, const char *name)
948{
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800949 memset(entry, CBFS_CONTENT_DEFAULT_VALUE, sizeof(*entry));
950 memcpy(entry->magic, CBFS_FILE_MAGIC, sizeof(entry->magic));
951 entry->type = htonl(CBFS_COMPONENT_NULL);
952 entry->len = htonl(len);
953 entry->checksum = 0; // TODO Build a checksum algorithm.
954 entry->offset = htonl(cbfs_calculate_file_header_size(name));
955 memset(CBFS_NAME(entry), 0, ntohl(entry->offset) - sizeof(*entry));
956 strcpy(CBFS_NAME(entry), name);
957 memset(CBFS_SUBHEADER(entry), CBFS_CONTENT_DEFAULT_VALUE, len);
958 return 0;
959}
960
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700961/* Finds a place to hold whole data in same memory page. */
962static int is_in_same_page(uint32_t start, uint32_t size, uint32_t page)
963{
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800964 if (!page)
965 return 1;
966 return (start / page) == (start + size - 1) / page;
967}
968
Hung-Te Line4ea2ca2013-03-19 12:24:43 +0800969/* Tests if data can fit in a range by given offset:
970 * start ->| header_len | offset (+ size) |<- end
971 */
972static int is_in_range(uint32_t start, uint32_t end, uint32_t header_len,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700973 uint32_t offset, uint32_t size)
974{
Hung-Te Line4ea2ca2013-03-19 12:24:43 +0800975 return (offset >= start + header_len && offset + size <= end);
976}
977
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800978int32_t cbfs_locate_entry(struct cbfs_image *image, const char *name,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700979 uint32_t size, uint32_t page_size, uint32_t align)
980{
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800981 struct cbfs_file *entry;
982 size_t need_len;
Hung-Te Line4ea2ca2013-03-19 12:24:43 +0800983 uint32_t addr, addr_next, addr2, addr3, offset, header_len;
984
985 /* Default values: allow fitting anywhere in ROM. */
986 if (!page_size)
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600987 page_size = image->header->romsize;
Hung-Te Line4ea2ca2013-03-19 12:24:43 +0800988 if (!align)
989 align = 1;
990
991 if (size > page_size)
992 ERROR("Input file size (%d) greater than page size (%d).\n",
993 size, page_size);
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800994
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600995 if (page_size % image->header->align)
Hung-Te Line4ea2ca2013-03-19 12:24:43 +0800996 WARN("%s: Page size (%#x) not aligned with CBFS image (%#x).\n",
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600997 __func__, page_size, image->header->align);
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800998
999 /* TODO Old cbfstool always assume input is a stage file (and adding
1000 * sizeof(cbfs_stage) for header. We should fix that by adding "-t"
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001001 * (type) param in future. For right now, we assume cbfs_stage is the
1002 * largest structure and add it into header size. */
1003 assert(sizeof(struct cbfs_stage) >= sizeof(struct cbfs_payload));
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001004 header_len = (cbfs_calculate_file_header_size(name) +
1005 sizeof(struct cbfs_stage));
1006 need_len = header_len + size;
1007
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001008 // Merge empty entries to build get max available space.
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001009 cbfs_walk(image, cbfs_merge_empty_entry, NULL);
1010
1011 /* Three cases of content location on memory page:
1012 * case 1.
1013 * | PAGE 1 | PAGE 2 |
1014 * | <header><content>| Fit. Return start of content.
1015 *
1016 * case 2.
1017 * | PAGE 1 | PAGE 2 |
1018 * | <header><content> | Fits when we shift content to align
1019 * shift-> | <header>|<content> | at starting of PAGE 2.
1020 *
1021 * case 3. (large content filling whole page)
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001022 * | PAGE 1 | PAGE 2 | PAGE 3 |
1023 * | <header>< content > | Can't fit. If we shift content to
1024 * |trial-> <header>< content > | PAGE 2, header can't fit in free
1025 * | shift-> <header><content> space, so we must use PAGE 3.
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001026 *
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001027 * The returned address can be then used as "base-address" (-b) in add-*
1028 * commands (will be re-calculated and positioned by cbfs_add_entry_at).
1029 * For stage targets, the address is also used to re-link stage before
1030 * being added into CBFS.
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001031 */
1032 for (entry = cbfs_find_first_entry(image);
Hung-Te Lin408aefd2013-02-09 10:38:55 +08001033 entry && cbfs_is_valid_entry(image, entry);
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001034 entry = cbfs_find_next_entry(image, entry)) {
1035
1036 uint32_t type = ntohl(entry->type);
1037 if (type != CBFS_COMPONENT_NULL)
1038 continue;
1039
1040 addr = cbfs_get_entry_addr(image, entry);
1041 addr_next = cbfs_get_entry_addr(image, cbfs_find_next_entry(
1042 image, entry));
1043 if (addr_next - addr < need_len)
1044 continue;
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001045
1046 offset = align_up(addr + header_len, align);
1047 if (is_in_same_page(offset, size, page_size) &&
1048 is_in_range(addr, addr_next, header_len, offset, size)) {
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001049 DEBUG("cbfs_locate_entry: FIT (PAGE1).");
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001050 return offset;
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001051 }
1052
1053 addr2 = align_up(addr, page_size);
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001054 offset = align_up(addr2, align);
1055 if (is_in_range(addr, addr_next, header_len, offset, size)) {
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001056 DEBUG("cbfs_locate_entry: OVERLAP (PAGE2).");
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001057 return offset;
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001058 }
1059
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001060 /* Assume page_size >= header_len so adding one page will
1061 * definitely provide the space for header. */
1062 assert(page_size >= header_len);
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001063 addr3 = addr2 + page_size;
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001064 offset = align_up(addr3, align);
1065 if (is_in_range(addr, addr_next, header_len, offset, size)) {
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001066 DEBUG("cbfs_locate_entry: OVERLAP+ (PAGE3).");
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001067 return offset;
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001068 }
1069 }
1070 return -1;
1071}