blob: 24ab0c4977f1469808de2a73c309d18dbc3b0080 [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
Patrick Georgib890a122015-03-26 15:17:45 +010017 * Foundation, Inc.
Hung-Te Lineab2c812013-01-29 01:56:17 +080018 */
19
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080020#include <inttypes.h>
21#include <libgen.h>
Patrick Georgicccc9d42015-04-28 13:09:36 +020022#include <stddef.h>
Hung-Te Lineab2c812013-01-29 01:56:17 +080023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
Sol Boucher0e539312015-03-05 15:38:03 -080026#include <strings.h>
Hung-Te Lineab2c812013-01-29 01:56:17 +080027
28#include "common.h"
29#include "cbfs_image.h"
30
Sol Boucher636cc852015-04-03 09:13:04 -070031/* Even though the file-adding functions---cbfs_add_entry() and
32 * cbfs_add_entry_at()---perform their sizing checks against the beginning of
33 * the subsequent section rather than a stable recorded value such as an empty
34 * file header's len field, it's possible to prove two interesting properties
35 * about their behavior:
36 * - Placing a new file within an empty entry located below an existing file
37 * entry will never leave an aligned flash address containing neither the
38 * beginning of a file header nor part of a file.
39 * - Placing a new file in an empty entry at the very end of the image such
40 * that it fits, but leaves no room for a final header, is guaranteed not to
41 * change the total amount of space for entries, even if that new file is
42 * later removed from the CBFS.
43 * These properties are somewhat nonobvious from the implementation, so the
44 * reader is encouraged to blame this comment and examine the full proofs
45 * in the commit message before making significant changes that would risk
46 * removing said guarantees.
47 */
48
Hung-Te Lineab2c812013-01-29 01:56:17 +080049/* The file name align is not defined in CBFS spec -- only a preference by
50 * (old) cbfstool. */
51#define CBFS_FILENAME_ALIGN (16)
52
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080053/* Type and format */
54
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -070055static const struct typedesc_t types_cbfs_compression[] = {
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080056 {CBFS_COMPRESS_NONE, "none"},
57 {CBFS_COMPRESS_LZMA, "LZMA"},
Sol Boucher5bb90e62015-05-07 21:00:05 -070058 {0, NULL}
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080059};
60
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -080061static const char *lookup_name_by_type(const struct typedesc_t *desc, uint32_t type,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -070062 const char *default_value)
63{
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080064 int i;
65 for (i = 0; desc[i].name; i++)
66 if (desc[i].type == type)
67 return desc[i].name;
68 return default_value;
69}
70
Sol Boucherec424862015-05-07 21:00:05 -070071static int lookup_type_by_name(const struct typedesc_t *desc, const char *name)
72{
73 int i;
74 for (i = 0; desc[i].name && strcasecmp(name, desc[i].name); ++i);
75 return desc[i].name ? (int)desc[i].type : -1;
76}
77
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010078static const char *get_cbfs_entry_type_name(uint32_t type)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -070079{
Patrick Georgidc37dab2015-09-09 16:46:00 +020080 return lookup_name_by_type(filetypes, type, "(unknown)");
Hung-Te Lin3bb035b2013-01-29 02:15:49 +080081}
82
Sol Boucherec424862015-05-07 21:00:05 -070083int cbfs_parse_comp_algo(const char *name)
84{
85 return lookup_type_by_name(types_cbfs_compression, name);
86}
87
Hung-Te Linc03d9b02013-01-29 02:38:40 +080088/* CBFS image */
89
Patrick Georgi11ee08f2015-08-11 15:10:02 +020090size_t cbfs_calculate_file_header_size(const char *name)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -070091{
Hung-Te Linc03d9b02013-01-29 02:38:40 +080092 return (sizeof(struct cbfs_file) +
93 align_up(strlen(name) + 1, CBFS_FILENAME_ALIGN));
94}
95
Sol Boucher67a0a862015-03-18 12:36:27 -070096/* Only call on legacy CBFSes possessing a master header. */
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -060097static int cbfs_fix_legacy_size(struct cbfs_image *image, char *hdr_loc)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -070098{
Sol Boucher67a0a862015-03-18 12:36:27 -070099 assert(image);
100 assert(cbfs_is_legacy_cbfs(image));
Hung-Te Lin49fcd752013-01-29 03:16:20 +0800101 // A bug in old cbfstool may produce extra few bytes (by alignment) and
102 // cause cbfstool to overwrite things after free space -- which is
103 // usually CBFS header on x86. We need to workaround that.
104
105 struct cbfs_file *entry, *first = NULL, *last = NULL;
106 for (first = entry = cbfs_find_first_entry(image);
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800107 entry && cbfs_is_valid_entry(image, entry);
Hung-Te Lin49fcd752013-01-29 03:16:20 +0800108 entry = cbfs_find_next_entry(image, entry)) {
109 last = entry;
110 }
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600111 if ((char *)first < (char *)hdr_loc &&
112 (char *)entry > (char *)hdr_loc) {
Hung-Te Lin49fcd752013-01-29 03:16:20 +0800113 WARN("CBFS image was created with old cbfstool with size bug. "
114 "Fixing size in last entry...\n");
Sol Boucher3e060ed2015-05-05 15:40:15 -0700115 last->len = htonl(ntohl(last->len) - image->header.align);
Hung-Te Lin49fcd752013-01-29 03:16:20 +0800116 DEBUG("Last entry has been changed from 0x%x to 0x%x.\n",
117 cbfs_get_entry_addr(image, entry),
118 cbfs_get_entry_addr(image,
119 cbfs_find_next_entry(image, last)));
120 }
121 return 0;
122}
123
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -0800124void cbfs_put_header(void *dest, const struct cbfs_header *header)
125{
126 struct buffer outheader;
127
128 outheader.data = dest;
129 outheader.size = 0;
130
131 xdr_be.put32(&outheader, header->magic);
132 xdr_be.put32(&outheader, header->version);
133 xdr_be.put32(&outheader, header->romsize);
134 xdr_be.put32(&outheader, header->bootblocksize);
135 xdr_be.put32(&outheader, header->align);
136 xdr_be.put32(&outheader, header->offset);
137 xdr_be.put32(&outheader, header->architecture);
138}
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600139
Hung-Te Lin0780d672014-05-16 10:14:05 +0800140static void cbfs_decode_payload_segment(struct cbfs_payload_segment *output,
141 struct cbfs_payload_segment *input)
142{
143 struct buffer seg = {
144 .data = (void *)input,
145 .size = sizeof(*input),
146 };
147 output->type = xdr_be.get32(&seg);
148 output->compression = xdr_be.get32(&seg);
149 output->offset = xdr_be.get32(&seg);
150 output->load_addr = xdr_be.get64(&seg);
151 output->len = xdr_be.get32(&seg);
152 output->mem_len = xdr_be.get32(&seg);
153 assert(seg.size == 0);
154}
155
Patrick Georgia71c83f2015-08-26 12:23:26 +0200156static int cbfs_file_get_compression_info(struct cbfs_file *entry,
157 uint32_t *decompressed_size)
158{
159 unsigned int compression = CBFS_COMPRESS_NONE;
160 *decompressed_size = ntohl(entry->len);
161 for (struct cbfs_file_attribute *attr = cbfs_file_first_attr(entry);
162 attr != NULL;
163 attr = cbfs_file_next_attr(entry, attr)) {
164 if (ntohl(attr->tag) == CBFS_FILE_ATTR_TAG_COMPRESSION) {
165 struct cbfs_file_attr_compression *ac =
166 (struct cbfs_file_attr_compression *)attr;
167 compression = ntohl(ac->compression);
168 if (decompressed_size)
169 *decompressed_size =
170 ntohl(ac->decompressed_size);
171 }
172 }
173 return compression;
174}
175
Sol Boucher0e539312015-03-05 15:38:03 -0800176void cbfs_get_header(struct cbfs_header *header, void *src)
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600177{
178 struct buffer outheader;
179
Sol Boucher0e539312015-03-05 15:38:03 -0800180 outheader.data = src; /* We're not modifying the data */
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600181 outheader.size = 0;
182
183 header->magic = xdr_be.get32(&outheader);
184 header->version = xdr_be.get32(&outheader);
185 header->romsize = xdr_be.get32(&outheader);
186 header->bootblocksize = xdr_be.get32(&outheader);
187 header->align = xdr_be.get32(&outheader);
188 header->offset = xdr_be.get32(&outheader);
189 header->architecture = xdr_be.get32(&outheader);
190}
191
Sol Boucher67a0a862015-03-18 12:36:27 -0700192int cbfs_image_create(struct cbfs_image *image, size_t entries_size)
193{
194 assert(image);
195 assert(image->buffer.data);
196
197 size_t empty_header_len = cbfs_calculate_file_header_size("");
198 uint32_t entries_offset = 0;
199 uint32_t align = CBFS_ENTRY_ALIGNMENT;
200 if (image->has_header) {
201 entries_offset = image->header.offset;
202
203 if (entries_offset > image->buffer.size) {
204 ERROR("CBFS file entries are located outside CBFS itself\n");
205 return -1;
206 }
207
208 align = image->header.align;
209 }
210
211 // This attribute must be given in order to prove that this module
212 // correctly preserves certain CBFS properties. See the block comment
213 // near the top of this file (and the associated commit message).
214 if (align < empty_header_len) {
215 ERROR("CBFS must be aligned to at least %zu bytes\n",
216 empty_header_len);
217 return -1;
218 }
219
220 if (entries_size > image->buffer.size - entries_offset) {
221 ERROR("CBFS doesn't have enough space to fit its file entries\n");
222 return -1;
223 }
224
225 if (empty_header_len > entries_size) {
226 ERROR("CBFS is too small to fit any header\n");
227 return -1;
228 }
229 struct cbfs_file *entry_header =
230 (struct cbfs_file *)(image->buffer.data + entries_offset);
231 // This alignment is necessary in order to prove that this module
232 // correctly preserves certain CBFS properties. See the block comment
233 // near the top of this file (and the associated commit message).
234 entries_size -= entries_size % align;
235
236 size_t capacity = entries_size - empty_header_len;
237 LOG("Created CBFS (capacity = %zu bytes)\n", capacity);
Patrick Georgiedf25d92015-08-12 09:12:06 +0200238 return cbfs_create_empty_entry(entry_header, CBFS_COMPONENT_NULL,
239 capacity, "");
Sol Boucher67a0a862015-03-18 12:36:27 -0700240}
241
242int cbfs_legacy_image_create(struct cbfs_image *image,
243 uint32_t architecture,
244 uint32_t align,
245 struct buffer *bootblock,
246 uint32_t bootblock_offset,
247 uint32_t header_offset,
248 uint32_t entries_offset)
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800249{
Sol Bouchere3260a02015-03-25 13:40:08 -0700250 assert(image);
251 assert(image->buffer.data);
252 assert(bootblock);
253
Julius Wernerefcee762014-11-10 13:14:24 -0800254 int32_t *rel_offset;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800255 uint32_t cbfs_len;
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600256 void *header_loc;
Sol Bouchere3260a02015-03-25 13:40:08 -0700257 size_t size = image->buffer.size;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800258
259 DEBUG("cbfs_image_create: bootblock=0x%x+0x%zx, "
260 "header=0x%x+0x%zx, entries_offset=0x%x\n",
Sol Boucher5bad3952015-05-05 20:35:26 -0700261 bootblock_offset, bootblock->size, header_offset,
262 sizeof(image->header), entries_offset);
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800263
Sol Boucher67a0a862015-03-18 12:36:27 -0700264 // Adjust legacy top-aligned address to ROM offset.
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800265 if (IS_TOP_ALIGNED_ADDRESS(entries_offset))
Sol Boucher0e539312015-03-05 15:38:03 -0800266 entries_offset = size + (int32_t)entries_offset;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800267 if (IS_TOP_ALIGNED_ADDRESS(bootblock_offset))
Sol Boucher0e539312015-03-05 15:38:03 -0800268 bootblock_offset = size + (int32_t)bootblock_offset;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800269 if (IS_TOP_ALIGNED_ADDRESS(header_offset))
Sol Boucher0e539312015-03-05 15:38:03 -0800270 header_offset = size + (int32_t)header_offset;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800271
272 DEBUG("cbfs_create_image: (real offset) bootblock=0x%x, "
273 "header=0x%x, entries_offset=0x%x\n",
274 bootblock_offset, header_offset, entries_offset);
275
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800276 // Prepare bootblock
277 if (bootblock_offset + bootblock->size > size) {
278 ERROR("Bootblock (0x%x+0x%zx) exceed ROM size (0x%zx)\n",
279 bootblock_offset, bootblock->size, size);
280 return -1;
281 }
Hung-Te Linc5ff6482013-02-06 12:41:49 +0800282 if (entries_offset > bootblock_offset &&
283 entries_offset < bootblock->size) {
284 ERROR("Bootblock (0x%x+0x%zx) overlap CBFS data (0x%x)\n",
285 bootblock_offset, bootblock->size, entries_offset);
286 return -1;
287 }
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800288 memcpy(image->buffer.data + bootblock_offset, bootblock->data,
289 bootblock->size);
290
291 // Prepare header
Sol Boucher5bad3952015-05-05 20:35:26 -0700292 if (header_offset + sizeof(image->header) > size - sizeof(int32_t)) {
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800293 ERROR("Header (0x%x+0x%zx) exceed ROM size (0x%zx)\n",
Sol Boucher5bad3952015-05-05 20:35:26 -0700294 header_offset, sizeof(image->header), size);
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800295 return -1;
296 }
Sol Boucher3e060ed2015-05-05 15:40:15 -0700297 image->header.magic = CBFS_HEADER_MAGIC;
298 image->header.version = CBFS_HEADER_VERSION;
299 image->header.romsize = size;
300 image->header.bootblocksize = bootblock->size;
301 image->header.align = align;
302 image->header.offset = entries_offset;
303 image->header.architecture = architecture;
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600304
305 header_loc = (image->buffer.data + header_offset);
Sol Boucher3e060ed2015-05-05 15:40:15 -0700306 cbfs_put_header(header_loc, &image->header);
Sol Boucher67a0a862015-03-18 12:36:27 -0700307 image->has_header = true;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800308
Julius Wernerefcee762014-11-10 13:14:24 -0800309 // The last 4 byte of the image contain the relative offset from the end
310 // of the image to the master header as a 32-bit signed integer. x86
311 // relies on this also being its (memory-mapped, top-aligned) absolute
312 // 32-bit address by virtue of how two's complement numbers work.
313 assert(size % sizeof(int32_t) == 0);
314 rel_offset = (int32_t *)(image->buffer.data + size - sizeof(int32_t));
315 *rel_offset = header_offset - size;
316
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800317 // Prepare entries
318 if (align_up(entries_offset, align) != entries_offset) {
319 ERROR("Offset (0x%x) must be aligned to 0x%x.\n",
320 entries_offset, align);
321 return -1;
322 }
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800323 // To calculate available length, find
Julius Wernerefcee762014-11-10 13:14:24 -0800324 // e = min(bootblock, header, rel_offset) where e > entries_offset.
325 cbfs_len = size - sizeof(int32_t);
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800326 if (bootblock_offset > entries_offset && bootblock_offset < cbfs_len)
327 cbfs_len = bootblock_offset;
328 if (header_offset > entries_offset && header_offset < cbfs_len)
329 cbfs_len = header_offset;
Sol Boucher67a0a862015-03-18 12:36:27 -0700330
331 if (cbfs_image_create(image, cbfs_len - entries_offset))
332 return -1;
Hung-Te Linf56c73f2013-01-29 09:45:12 +0800333 return 0;
334}
335
Sol Bouchere3260a02015-03-25 13:40:08 -0700336int cbfs_image_from_buffer(struct cbfs_image *out, struct buffer *in,
337 uint32_t offset)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700338{
Sol Bouchere3260a02015-03-25 13:40:08 -0700339 assert(out);
340 assert(in);
341 assert(in->data);
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -0600342
Sol Bouchere3260a02015-03-25 13:40:08 -0700343 buffer_clone(&out->buffer, in);
Sol Boucher67a0a862015-03-18 12:36:27 -0700344 out->has_header = false;
345
Patrick Georgi2f953d32015-09-11 18:34:39 +0200346 if (cbfs_is_valid_cbfs(out)) {
347 return 0;
348 }
349
Sol Bouchere3260a02015-03-25 13:40:08 -0700350 void *header_loc = cbfs_find_header(in->data, in->size, offset);
351 if (header_loc) {
352 cbfs_get_header(&out->header, header_loc);
Sol Boucher67a0a862015-03-18 12:36:27 -0700353 out->has_header = true;
Sol Bouchere3260a02015-03-25 13:40:08 -0700354 cbfs_fix_legacy_size(out, header_loc);
Patrick Georgi2f953d32015-09-11 18:34:39 +0200355 return 0;
Sol Boucher67a0a862015-03-18 12:36:27 -0700356 } else if (offset != ~0u) {
357 ERROR("The -H switch is only valid on legacy images having CBFS master headers.\n");
358 return 1;
Hung-Te Lineab2c812013-01-29 01:56:17 +0800359 }
Patrick Georgi2f953d32015-09-11 18:34:39 +0200360 ERROR("Selected image region is not a valid CBFS.\n");
361 return 1;
Hung-Te Lineab2c812013-01-29 01:56:17 +0800362}
363
Vadim Bendebury5e273a42014-12-23 19:26:54 -0800364int cbfs_copy_instance(struct cbfs_image *image, size_t copy_offset,
365 size_t copy_size)
366{
Sol Boucher67a0a862015-03-18 12:36:27 -0700367 assert(image);
368 if (!cbfs_is_legacy_cbfs(image))
369 return -1;
370
Vadim Bendebury5e273a42014-12-23 19:26:54 -0800371 struct cbfs_file *src_entry, *dst_entry;
372 struct cbfs_header *copy_header;
373 size_t align, entry_offset;
374 ssize_t last_entry_size;
375
Vadim Bendebury5e273a42014-12-23 19:26:54 -0800376 size_t cbfs_offset, cbfs_end;
377 size_t copy_end = copy_offset + copy_size;
378
Sol Boucher3e060ed2015-05-05 15:40:15 -0700379 align = image->header.align;
Vadim Bendebury5e273a42014-12-23 19:26:54 -0800380
Sol Boucher3e060ed2015-05-05 15:40:15 -0700381 cbfs_offset = image->header.offset;
382 cbfs_end = image->header.romsize;
Vadim Bendebury5e273a42014-12-23 19:26:54 -0800383
384 if (copy_end > image->buffer.size) {
385 ERROR("Copy offset out of range: [%zx:%zx)\n",
386 copy_offset, copy_end);
387 return 1;
388 }
389
Sol Boucher297c88c2015-05-05 15:35:18 -0700390 /* Range check requested copy region with source cbfs. */
Vadim Bendebury5e273a42014-12-23 19:26:54 -0800391 if ((copy_offset >= cbfs_offset && copy_offset < cbfs_end) ||
392 (copy_end >= cbfs_offset && copy_end <= cbfs_end)) {
393 ERROR("New image would overlap old one.\n");
394 return 1;
395 }
396
397 /* This will work, let's create a copy. */
398 copy_header = (struct cbfs_header *)(image->buffer.data + copy_offset);
Sol Boucher3e060ed2015-05-05 15:40:15 -0700399 cbfs_put_header(copy_header, &image->header);
Vadim Bendebury5e273a42014-12-23 19:26:54 -0800400
401 copy_header->bootblocksize = 0;
402 /* Romsize is a misnomer. It's the absolute limit of cbfs content.*/
403 copy_header->romsize = htonl(copy_end);
404 entry_offset = align_up(copy_offset + sizeof(*copy_header), align);
405 copy_header->offset = htonl(entry_offset);
406 dst_entry = (struct cbfs_file *)(image->buffer.data + entry_offset);
407
408 /* Copy non-empty files */
409 for (src_entry = cbfs_find_first_entry(image);
410 src_entry && cbfs_is_valid_entry(image, src_entry);
411 src_entry = cbfs_find_next_entry(image, src_entry)) {
412 size_t entry_size;
413
414 if ((src_entry->type == htonl(CBFS_COMPONENT_NULL)) ||
415 (src_entry->type == htonl(CBFS_COMPONENT_DELETED)))
416 continue;
417
418 entry_size = htonl(src_entry->len) + htonl(src_entry->offset);
419 memcpy(dst_entry, src_entry, entry_size);
420 dst_entry = (struct cbfs_file *)(
421 (uintptr_t)dst_entry + align_up(entry_size, align));
422
Sol Boucher0e539312015-03-05 15:38:03 -0800423 if ((size_t)((char *)dst_entry - image->buffer.data) >=
424 copy_end) {
Vadim Bendebury5e273a42014-12-23 19:26:54 -0800425 ERROR("Ran out of room in copy region.\n");
426 return 1;
427 }
428 }
429
430 /* Last entry size is all the room above it. */
431 last_entry_size = copy_end - ((char *)dst_entry - image->buffer.data)
432 - cbfs_calculate_file_header_size("");
433
434 if (last_entry_size < 0)
435 WARN("No room to create the last entry!\n")
436 else
Patrick Georgiedf25d92015-08-12 09:12:06 +0200437 cbfs_create_empty_entry(dst_entry, CBFS_COMPONENT_NULL,
438 last_entry_size, "");
Vadim Bendebury5e273a42014-12-23 19:26:54 -0800439
440 return 0;
441}
442
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700443int cbfs_image_delete(struct cbfs_image *image)
444{
Edward O'Callaghana0f9ece2014-03-09 00:05:18 +1100445 if (image == NULL)
446 return 0;
447
Hung-Te Lineab2c812013-01-29 01:56:17 +0800448 buffer_delete(&image->buffer);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800449 return 0;
450}
451
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800452/* Tries to add an entry with its data (CBFS_SUBHEADER) at given offset. */
453static int cbfs_add_entry_at(struct cbfs_image *image,
454 struct cbfs_file *entry,
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800455 const void *data,
Patrick Georgi7fd14182015-08-11 15:55:16 +0200456 uint32_t content_offset,
Patrick Georgid5a4afa2015-08-25 22:27:57 +0200457 const struct cbfs_file *header)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700458{
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800459 struct cbfs_file *next = cbfs_find_next_entry(image, entry);
460 uint32_t addr = cbfs_get_entry_addr(image, entry),
461 addr_next = cbfs_get_entry_addr(image, next);
Patrick Georgi7fd14182015-08-11 15:55:16 +0200462 uint32_t min_entry_size = cbfs_calculate_file_header_size("");
Patrick Georgi4eb8abe2015-08-25 12:24:49 +0200463 uint32_t len, header_offset;
Sol Boucher67a0a862015-03-18 12:36:27 -0700464 uint32_t align = image->has_header ? image->header.align :
465 CBFS_ENTRY_ALIGNMENT;
Patrick Georgid5a4afa2015-08-25 22:27:57 +0200466 uint32_t header_size = ntohl(header->offset);
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800467
Patrick Georgi4eb8abe2015-08-25 12:24:49 +0200468 header_offset = content_offset - header_size;
469 if (header_offset % align)
470 header_offset -= header_offset % align;
471 if (header_offset < addr) {
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800472 ERROR("No space to hold cbfs_file header.");
473 return -1;
474 }
475
476 // Process buffer BEFORE content_offset.
Patrick Georgi4eb8abe2015-08-25 12:24:49 +0200477 if (header_offset - addr > min_entry_size) {
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800478 DEBUG("|min|...|header|content|... <create new entry>\n");
Patrick Georgi4eb8abe2015-08-25 12:24:49 +0200479 len = header_offset - addr - min_entry_size;
Patrick Georgiedf25d92015-08-12 09:12:06 +0200480 cbfs_create_empty_entry(entry, CBFS_COMPONENT_NULL, len, "");
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800481 if (verbose > 1) cbfs_print_entry_info(image, entry, stderr);
482 entry = cbfs_find_next_entry(image, entry);
483 addr = cbfs_get_entry_addr(image, entry);
484 }
485
Patrick Georgi7a33b532015-08-25 13:00:04 +0200486 len = content_offset - addr - header_size;
Patrick Georgia60e7b62015-08-25 22:26:02 +0200487 memcpy(entry, header, header_size);
Patrick Georgi7a33b532015-08-25 13:00:04 +0200488 if (len != 0) {
489 /* the header moved backwards a bit to accomodate cbfs_file
490 * alignment requirements, so patch up ->offset to still point
491 * to file data.
492 */
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800493 DEBUG("|..|header|content|... <use offset to create entry>\n");
Patrick Georgiae7efb92015-08-25 13:11:28 +0200494 DEBUG("before: offset=0x%x\n", ntohl(entry->offset));
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800495 // TODO reset expanded name buffer to 0xFF.
Patrick Georgi7a33b532015-08-25 13:00:04 +0200496 entry->offset = htonl(ntohl(entry->offset) + len);
Patrick Georgiae7efb92015-08-25 13:11:28 +0200497 DEBUG("after: offset=0x%x\n", ntohl(entry->len));
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800498 }
499
500 // Ready to fill data into entry.
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800501 DEBUG("content_offset: 0x%x, entry location: %x\n",
502 content_offset, (int)((char*)CBFS_SUBHEADER(entry) -
503 image->buffer.data));
504 assert((char*)CBFS_SUBHEADER(entry) - image->buffer.data ==
Patrick Georgicccc9d42015-04-28 13:09:36 +0200505 (ptrdiff_t)content_offset);
Patrick Georgi19c80b22015-08-25 13:16:04 +0200506 memcpy(CBFS_SUBHEADER(entry), data, ntohl(entry->len));
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800507 if (verbose > 1) cbfs_print_entry_info(image, entry, stderr);
508
509 // Process buffer AFTER entry.
510 entry = cbfs_find_next_entry(image, entry);
511 addr = cbfs_get_entry_addr(image, entry);
Sol Boucher05725652015-04-02 20:58:26 -0700512 if (addr == addr_next)
513 return 0;
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800514
Sol Boucher05725652015-04-02 20:58:26 -0700515 assert(addr < addr_next);
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800516 if (addr_next - addr < min_entry_size) {
Sol Boucher636cc852015-04-03 09:13:04 -0700517 DEBUG("No need for new \"empty\" entry\n");
518 /* No need to increase the size of the just
519 * stored file to extend to next file. Alignment
520 * of next file takes care of this.
521 */
522 return 0;
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800523 }
524
525 len = addr_next - addr - min_entry_size;
Patrick Georgiedf25d92015-08-12 09:12:06 +0200526 cbfs_create_empty_entry(entry, CBFS_COMPONENT_NULL, len, "");
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800527 if (verbose > 1) cbfs_print_entry_info(image, entry, stderr);
528 return 0;
529}
530
531int cbfs_add_entry(struct cbfs_image *image, struct buffer *buffer,
Patrick Georgie5903582015-08-25 13:53:42 +0200532 uint32_t content_offset,
Patrick Georgif5252f32015-08-25 22:27:57 +0200533 struct cbfs_file *header)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700534{
Sol Boucher67d59982015-05-07 02:39:22 -0700535 assert(image);
536 assert(buffer);
537 assert(buffer->data);
Sol Boucher67d59982015-05-07 02:39:22 -0700538 assert(!IS_TOP_ALIGNED_ADDRESS(content_offset));
539
Patrick Georgia60e7b62015-08-25 22:26:02 +0200540 const char *name = header->filename;
Patrick Georgie5903582015-08-25 13:53:42 +0200541
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800542 uint32_t entry_type;
543 uint32_t addr, addr_next;
544 struct cbfs_file *entry, *next;
Patrick Georgidd2d3f92015-08-12 12:29:20 +0200545 uint32_t need_size;
Patrick Georgif5252f32015-08-25 22:27:57 +0200546 uint32_t header_size = ntohl(header->offset);
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800547
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800548 need_size = header_size + buffer->size;
549 DEBUG("cbfs_add_entry('%s'@0x%x) => need_size = %u+%zu=%u\n",
550 name, content_offset, header_size, buffer->size, need_size);
551
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800552 // Merge empty entries.
553 DEBUG("(trying to merge empty entries...)\n");
554 cbfs_walk(image, cbfs_merge_empty_entry, NULL);
555
556 for (entry = cbfs_find_first_entry(image);
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800557 entry && cbfs_is_valid_entry(image, entry);
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800558 entry = cbfs_find_next_entry(image, entry)) {
559
560 entry_type = ntohl(entry->type);
561 if (entry_type != CBFS_COMPONENT_NULL)
562 continue;
563
564 addr = cbfs_get_entry_addr(image, entry);
565 next = cbfs_find_next_entry(image, entry);
566 addr_next = cbfs_get_entry_addr(image, next);
567
568 DEBUG("cbfs_add_entry: space at 0x%x+0x%x(%d) bytes\n",
569 addr, addr_next - addr, addr_next - addr);
Aaron Durbin1ebc7e92014-01-21 15:28:38 -0600570
571 /* Will the file fit? Don't yet worry if we have space for a new
572 * "empty" entry. We take care of that later.
573 */
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800574 if (addr + need_size > addr_next)
575 continue;
576
Patrick Georgiaa44dbd2015-08-12 12:05:21 +0200577 // Test for complicated cases
578 if (content_offset > 0) {
579 if (addr_next < content_offset) {
580 DEBUG("Not for specified offset yet");
581 continue;
582 } else if (addr > content_offset) {
583 DEBUG("Exceed specified content_offset.");
584 break;
585 } else if (addr + header_size > content_offset) {
586 ERROR("Not enough space for header.\n");
587 break;
588 } else if (content_offset + buffer->size > addr_next) {
589 ERROR("Not enough space for content.\n");
590 break;
591 }
592 }
593
594 // TODO there are more few tricky cases that we may
595 // want to fit by altering offset.
596
Patrick Georgidd2d3f92015-08-12 12:29:20 +0200597 if (content_offset == 0) {
598 // we tested every condition earlier under which
599 // placing the file there might fail
600 content_offset = addr + header_size;
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800601 }
602
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800603 DEBUG("section 0x%x+0x%x for content_offset 0x%x.\n",
604 addr, addr_next - addr, content_offset);
605
Patrick Georgid5a4afa2015-08-25 22:27:57 +0200606 if (cbfs_add_entry_at(image, entry, buffer->data,
607 content_offset, header) == 0) {
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800608 return 0;
609 }
610 break;
611 }
612
613 ERROR("Could not add [%s, %zd bytes (%zd KB)@0x%x]; too big?\n",
614 buffer->name, buffer->size, buffer->size / 1024, content_offset);
615 return -1;
616}
617
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700618struct cbfs_file *cbfs_get_entry(struct cbfs_image *image, const char *name)
619{
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800620 struct cbfs_file *entry;
621 for (entry = cbfs_find_first_entry(image);
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800622 entry && cbfs_is_valid_entry(image, entry);
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800623 entry = cbfs_find_next_entry(image, entry)) {
Patrick Georgic569b8b2015-07-15 16:42:38 +0200624 if (strcasecmp(entry->filename, name) == 0) {
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800625 DEBUG("cbfs_get_entry: found %s\n", name);
626 return entry;
627 }
628 }
629 return NULL;
630}
631
632int cbfs_export_entry(struct cbfs_image *image, const char *entry_name,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700633 const char *filename)
634{
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800635 struct cbfs_file *entry = cbfs_get_entry(image, entry_name);
636 struct buffer buffer;
637 if (!entry) {
638 ERROR("File not found: %s\n", entry_name);
639 return -1;
640 }
Patrick Georgi23aeaff2015-08-26 13:01:10 +0200641
642 unsigned int decompressed_size = 0;
643 unsigned int compression = cbfs_file_get_compression_info(entry,
644 &decompressed_size);
645
646 decomp_func_ptr decompress = decompression_function(compression);
647 if (!decompress) {
648 ERROR("looking up decompression routine failed\n");
649 return -1;
650 }
651
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800652 LOG("Found file %.30s at 0x%x, type %.12s, size %d\n",
653 entry_name, cbfs_get_entry_addr(image, entry),
Patrick Georgi23aeaff2015-08-26 13:01:10 +0200654 get_cbfs_entry_type_name(ntohl(entry->type)), decompressed_size);
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800655
Patrick Georgi011b0b32015-08-26 12:16:54 +0200656 if (ntohl(entry->type) == CBFS_COMPONENT_STAGE) {
657 WARN("Stages are extracted in SELF format.\n");
658 }
659
660 if (ntohl(entry->type) == CBFS_COMPONENT_PAYLOAD) {
661 WARN("Payloads are extracted in SELF format.\n");
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800662 }
663
Patrick Georgi23aeaff2015-08-26 13:01:10 +0200664 buffer.data = malloc(decompressed_size);
665 buffer.size = decompressed_size;
666 if (decompress(CBFS_SUBHEADER(entry), ntohl(entry->len),
667 buffer.data, buffer.size)) {
668 ERROR("decompression failed for %s\n", entry_name);
669 return -1;
670 }
Sol Boucher0e539312015-03-05 15:38:03 -0800671 buffer.name = strdup("(cbfs_export_entry)");
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800672 if (buffer_write_file(&buffer, filename) != 0) {
673 ERROR("Failed to write %s into %s.\n",
674 entry_name, filename);
Sol Boucher0e539312015-03-05 15:38:03 -0800675 free(buffer.name);
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800676 return -1;
677 }
Patrick Georgi23aeaff2015-08-26 13:01:10 +0200678 free(buffer.data);
Sol Boucher0e539312015-03-05 15:38:03 -0800679 free(buffer.name);
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800680 INFO("Successfully dumped the file to: %s\n", filename);
681 return 0;
682}
683
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700684int cbfs_remove_entry(struct cbfs_image *image, const char *name)
685{
Patrick Georgi4d1c5aa2015-07-17 22:07:26 +0200686 struct cbfs_file *entry;
Hung-Te Linc03d9b02013-01-29 02:38:40 +0800687 entry = cbfs_get_entry(image, name);
688 if (!entry) {
689 ERROR("CBFS file %s not found.\n", name);
690 return -1;
691 }
Hung-Te Linc03d9b02013-01-29 02:38:40 +0800692 DEBUG("cbfs_remove_entry: Removed %s @ 0x%x\n",
Patrick Georgic569b8b2015-07-15 16:42:38 +0200693 entry->filename, cbfs_get_entry_addr(image, entry));
Hung-Te Linc03d9b02013-01-29 02:38:40 +0800694 entry->type = htonl(CBFS_COMPONENT_DELETED);
Patrick Georgi4d1c5aa2015-07-17 22:07:26 +0200695 cbfs_walk(image, cbfs_merge_empty_entry, NULL);
Hung-Te Linc03d9b02013-01-29 02:38:40 +0800696 return 0;
697}
698
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700699int cbfs_print_header_info(struct cbfs_image *image)
700{
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800701 char *name = strdup(image->buffer.name);
Sol Boucher3e060ed2015-05-05 15:40:15 -0700702 assert(image);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800703 printf("%s: %zd kB, bootblocksize %d, romsize %d, offset 0x%x\n"
Stefan Reinauer8f50e532013-11-13 14:34:57 -0800704 "alignment: %d bytes, architecture: %s\n\n",
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800705 basename(name),
706 image->buffer.size / 1024,
Sol Boucher3e060ed2015-05-05 15:40:15 -0700707 image->header.bootblocksize,
708 image->header.romsize,
709 image->header.offset,
710 image->header.align,
711 arch_to_string(image->header.architecture));
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800712 free(name);
713 return 0;
714}
715
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700716static int cbfs_print_stage_info(struct cbfs_stage *stage, FILE* fp)
717{
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800718 fprintf(fp,
719 " %s compression, entry: 0x%" PRIx64 ", load: 0x%" PRIx64 ", "
720 "length: %d/%d\n",
721 lookup_name_by_type(types_cbfs_compression,
722 stage->compression, "(unknown)"),
723 stage->entry,
724 stage->load,
725 stage->len,
726 stage->memlen);
727 return 0;
728}
729
Hung-Te Lin0780d672014-05-16 10:14:05 +0800730static int cbfs_print_decoded_payload_segment_info(
731 struct cbfs_payload_segment *seg, FILE *fp)
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800732{
Hung-Te Lin0780d672014-05-16 10:14:05 +0800733 /* The input (seg) must be already decoded by
734 * cbfs_decode_payload_segment.
735 */
736 switch (seg->type) {
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800737 case PAYLOAD_SEGMENT_CODE:
738 case PAYLOAD_SEGMENT_DATA:
739 fprintf(fp, " %s (%s compression, offset: 0x%x, "
740 "load: 0x%" PRIx64 ", length: %d/%d)\n",
Hung-Te Lin0780d672014-05-16 10:14:05 +0800741 (seg->type == PAYLOAD_SEGMENT_CODE ?
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800742 "code " : "data"),
743 lookup_name_by_type(types_cbfs_compression,
Hung-Te Lin0780d672014-05-16 10:14:05 +0800744 seg->compression,
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800745 "(unknown)"),
Hung-Te Lin0780d672014-05-16 10:14:05 +0800746 seg->offset, seg->load_addr, seg->len,
747 seg->mem_len);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800748 break;
749
750 case PAYLOAD_SEGMENT_ENTRY:
751 fprintf(fp, " entry (0x%" PRIx64 ")\n",
Hung-Te Lin0780d672014-05-16 10:14:05 +0800752 seg->load_addr);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800753 break;
754
755 case PAYLOAD_SEGMENT_BSS:
756 fprintf(fp, " BSS (address 0x%016" PRIx64 ", "
757 "length 0x%x)\n",
Hung-Te Lin0780d672014-05-16 10:14:05 +0800758 seg->load_addr, seg->len);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800759 break;
760
761 case PAYLOAD_SEGMENT_PARAMS:
762 fprintf(fp, " parameters\n");
763 break;
764
765 default:
766 fprintf(fp, " 0x%x (%s compression, offset: 0x%x, "
767 "load: 0x%" PRIx64 ", length: %d/%d\n",
Hung-Te Lin0780d672014-05-16 10:14:05 +0800768 seg->type,
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800769 lookup_name_by_type(types_cbfs_compression,
Hung-Te Lin0780d672014-05-16 10:14:05 +0800770 seg->compression,
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800771 "(unknown)"),
Hung-Te Lin0780d672014-05-16 10:14:05 +0800772 seg->offset, seg->load_addr, seg->len,
773 seg->mem_len);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800774 break;
775 }
776 return 0;
777}
778
779int cbfs_print_entry_info(struct cbfs_image *image, struct cbfs_file *entry,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700780 void *arg)
781{
Patrick Georgic569b8b2015-07-15 16:42:38 +0200782 const char *name = entry->filename;
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800783 struct cbfs_payload_segment *payload;
784 FILE *fp = (FILE *)arg;
785
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800786 if (!cbfs_is_valid_entry(image, entry)) {
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800787 ERROR("cbfs_print_entry_info: Invalid entry at 0x%x\n",
788 cbfs_get_entry_addr(image, entry));
789 return -1;
790 }
791 if (!fp)
792 fp = stdout;
793
Patrick Georgic82725c2015-08-26 12:13:03 +0200794 unsigned int decompressed_size = 0;
Patrick Georgia71c83f2015-08-26 12:23:26 +0200795 unsigned int compression = cbfs_file_get_compression_info(entry,
796 &decompressed_size);
Patrick Georgic82725c2015-08-26 12:13:03 +0200797
798 if (compression == CBFS_COMPRESS_NONE) {
799 fprintf(fp, "%-30s 0x%-8x %-12s %d\n",
800 *name ? name : "(empty)",
801 cbfs_get_entry_addr(image, entry),
802 get_cbfs_entry_type_name(ntohl(entry->type)),
803 ntohl(entry->len));
804 } else {
805 fprintf(fp, "%-30s 0x%-8x %-12s %d (%d after %s decompression)\n",
806 *name ? name : "(empty)",
807 cbfs_get_entry_addr(image, entry),
808 get_cbfs_entry_type_name(ntohl(entry->type)),
809 ntohl(entry->len),
810 decompressed_size,
811 lookup_name_by_type(types_cbfs_compression,
812 compression, "(unknown)")
813 );
814 }
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800815
816 if (!verbose)
817 return 0;
818
819 DEBUG(" cbfs_file=0x%x, offset=0x%x, content_address=0x%x+0x%x\n",
820 cbfs_get_entry_addr(image, entry), ntohl(entry->offset),
821 cbfs_get_entry_addr(image, entry) + ntohl(entry->offset),
822 ntohl(entry->len));
823
824 /* note the components of the subheader may be in host order ... */
825 switch (ntohl(entry->type)) {
826 case CBFS_COMPONENT_STAGE:
827 cbfs_print_stage_info((struct cbfs_stage *)
828 CBFS_SUBHEADER(entry), fp);
829 break;
830
831 case CBFS_COMPONENT_PAYLOAD:
832 payload = (struct cbfs_payload_segment *)
833 CBFS_SUBHEADER(entry);
834 while (payload) {
Hung-Te Lin0780d672014-05-16 10:14:05 +0800835 struct cbfs_payload_segment seg;
836 cbfs_decode_payload_segment(&seg, payload);
837 cbfs_print_decoded_payload_segment_info(
838 &seg, fp);
839 if (seg.type == PAYLOAD_SEGMENT_ENTRY)
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800840 break;
Hung-Te Lin0780d672014-05-16 10:14:05 +0800841 else
Aaron Durbinca630272014-08-05 10:48:20 -0500842 payload ++;
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800843 }
844 break;
845 default:
846 break;
847 }
848 return 0;
849}
850
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700851int cbfs_print_directory(struct cbfs_image *image)
852{
Sol Boucher67a0a862015-03-18 12:36:27 -0700853 if (cbfs_is_legacy_cbfs(image))
854 cbfs_print_header_info(image);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800855 printf("%-30s %-10s %-12s Size\n", "Name", "Offset", "Type");
856 cbfs_walk(image, cbfs_print_entry_info, NULL);
857 return 0;
858}
859
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800860int cbfs_merge_empty_entry(struct cbfs_image *image, struct cbfs_file *entry,
Sol Boucher0e539312015-03-05 15:38:03 -0800861 unused void *arg)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700862{
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800863 struct cbfs_file *next;
864 uint32_t type, addr, last_addr;
865
866 type = ntohl(entry->type);
867 if (type == CBFS_COMPONENT_DELETED) {
868 // Ready to be recycled.
869 type = CBFS_COMPONENT_NULL;
870 entry->type = htonl(type);
871 }
872 if (type != CBFS_COMPONENT_NULL)
873 return 0;
874
875 next = cbfs_find_next_entry(image, entry);
876
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800877 while (next && cbfs_is_valid_entry(image, next)) {
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800878 type = ntohl(next->type);
879 if (type == CBFS_COMPONENT_DELETED) {
880 type = CBFS_COMPONENT_NULL;
881 next->type = htonl(type);
882 }
883 if (type != CBFS_COMPONENT_NULL)
884 return 0;
885
886 addr = cbfs_get_entry_addr(image, entry);
887 last_addr = cbfs_get_entry_addr(
888 image, cbfs_find_next_entry(image, next));
889
890 // Now, we find two deleted/empty entries; try to merge now.
891 DEBUG("join_empty_entry: combine 0x%x+0x%x and 0x%x+0x%x.\n",
892 cbfs_get_entry_addr(image, entry), ntohl(entry->len),
893 cbfs_get_entry_addr(image, next), ntohl(next->len));
Patrick Georgiedf25d92015-08-12 09:12:06 +0200894 cbfs_create_empty_entry(entry, CBFS_COMPONENT_NULL,
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800895 (last_addr - addr -
896 cbfs_calculate_file_header_size("")),
897 "");
898 DEBUG("new empty entry: length=0x%x\n", ntohl(entry->len));
899 next = cbfs_find_next_entry(image, entry);
900 }
901 return 0;
902}
903
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800904int cbfs_walk(struct cbfs_image *image, cbfs_entry_callback callback,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700905 void *arg)
906{
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800907 int count = 0;
908 struct cbfs_file *entry;
909 for (entry = cbfs_find_first_entry(image);
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800910 entry && cbfs_is_valid_entry(image, entry);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800911 entry = cbfs_find_next_entry(image, entry)) {
912 count ++;
913 if (callback(image, entry, arg) != 0)
914 break;
915 }
916 return count;
917}
918
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800919static int cbfs_header_valid(struct cbfs_header *header, size_t size)
920{
921 if ((ntohl(header->magic) == CBFS_HEADER_MAGIC) &&
922 ((ntohl(header->version) == CBFS_HEADER_VERSION1) ||
923 (ntohl(header->version) == CBFS_HEADER_VERSION2)) &&
924 (ntohl(header->romsize) <= size) &&
925 (ntohl(header->offset) < ntohl(header->romsize)))
926 return 1;
927 return 0;
928}
929
930struct cbfs_header *cbfs_find_header(char *data, size_t size,
931 uint32_t forced_offset)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700932{
Hung-Te Lineab2c812013-01-29 01:56:17 +0800933 size_t offset;
934 int found = 0;
Julius Wernerefcee762014-11-10 13:14:24 -0800935 int32_t rel_offset;
Hung-Te Lineab2c812013-01-29 01:56:17 +0800936 struct cbfs_header *header, *result = NULL;
937
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800938 if (forced_offset < (size - sizeof(struct cbfs_header))) {
939 /* Check if the forced header is valid. */
940 header = (struct cbfs_header *)(data + forced_offset);
941 if (cbfs_header_valid(header, size))
942 return header;
943 return NULL;
944 }
945
Julius Wernerefcee762014-11-10 13:14:24 -0800946 // Try finding relative offset of master header at end of file first.
947 rel_offset = *(int32_t *)(data + size - sizeof(int32_t));
948 offset = size + rel_offset;
949 DEBUG("relative offset: %#zx(-%#zx), offset: %#zx\n",
950 (size_t)rel_offset, (size_t)-rel_offset, offset);
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800951
Hung-Te Lineab2c812013-01-29 01:56:17 +0800952 if (offset >= size - sizeof(*header) ||
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800953 !cbfs_header_valid((struct cbfs_header *)(data + offset), size)) {
Julius Wernerefcee762014-11-10 13:14:24 -0800954 // Some use cases append non-CBFS data to the end of the ROM.
955 DEBUG("relative offset seems wrong, scanning whole image...\n");
Hung-Te Lineab2c812013-01-29 01:56:17 +0800956 offset = 0;
Julius Wernerefcee762014-11-10 13:14:24 -0800957 }
Hung-Te Lineab2c812013-01-29 01:56:17 +0800958
959 for (; offset + sizeof(*header) < size; offset++) {
960 header = (struct cbfs_header *)(data + offset);
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800961 if (!cbfs_header_valid(header, size))
Hung-Te Lineab2c812013-01-29 01:56:17 +0800962 continue;
Julius Wernerefcee762014-11-10 13:14:24 -0800963 if (!found++)
964 result = header;
Hung-Te Lineab2c812013-01-29 01:56:17 +0800965 }
Julius Wernerefcee762014-11-10 13:14:24 -0800966 if (found > 1)
967 // Top-aligned images usually have a working relative offset
968 // field, so this is more likely to happen on bottom-aligned
969 // ones (where the first header is the "outermost" one)
970 WARN("Multiple (%d) CBFS headers found, using the first one.\n",
Hung-Te Lineab2c812013-01-29 01:56:17 +0800971 found);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800972 return result;
973}
974
975
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700976struct cbfs_file *cbfs_find_first_entry(struct cbfs_image *image)
977{
Sol Boucher3e060ed2015-05-05 15:40:15 -0700978 assert(image);
Sol Boucher67a0a862015-03-18 12:36:27 -0700979 return image->has_header ? (struct cbfs_file *)(image->buffer.data +
980 image->header.offset) :
981 (struct cbfs_file *)image->buffer.data;
Hung-Te Lineab2c812013-01-29 01:56:17 +0800982}
983
984struct cbfs_file *cbfs_find_next_entry(struct cbfs_image *image,
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700985 struct cbfs_file *entry)
986{
Hung-Te Lineab2c812013-01-29 01:56:17 +0800987 uint32_t addr = cbfs_get_entry_addr(image, entry);
Sol Boucher67a0a862015-03-18 12:36:27 -0700988 int align = image->has_header ? image->header.align :
989 CBFS_ENTRY_ALIGNMENT;
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800990 assert(entry && cbfs_is_valid_entry(image, entry));
Hung-Te Lineab2c812013-01-29 01:56:17 +0800991 addr += ntohl(entry->offset) + ntohl(entry->len);
992 addr = align_up(addr, align);
993 return (struct cbfs_file *)(image->buffer.data + addr);
994}
995
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -0700996uint32_t cbfs_get_entry_addr(struct cbfs_image *image, struct cbfs_file *entry)
997{
Hung-Te Lineab2c812013-01-29 01:56:17 +0800998 assert(image && image->buffer.data && entry);
999 return (int32_t)((char *)entry - image->buffer.data);
1000}
1001
Sol Boucher67a0a862015-03-18 12:36:27 -07001002int cbfs_is_valid_cbfs(struct cbfs_image *image)
1003{
1004 return buffer_check_magic(&image->buffer, CBFS_FILE_MAGIC,
1005 strlen(CBFS_FILE_MAGIC));
1006}
1007
1008int cbfs_is_legacy_cbfs(struct cbfs_image *image)
1009{
1010 return image->has_header;
1011}
1012
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -07001013int cbfs_is_valid_entry(struct cbfs_image *image, struct cbfs_file *entry)
1014{
Sol Bouchere3260a02015-03-25 13:40:08 -07001015 uint32_t offset = cbfs_get_entry_addr(image, entry);
1016
1017 if (offset >= image->buffer.size)
1018 return 0;
1019
1020 struct buffer entry_data;
1021 buffer_clone(&entry_data, &image->buffer);
1022 buffer_seek(&entry_data, offset);
1023 return buffer_check_magic(&entry_data, CBFS_FILE_MAGIC,
Sol Boucher67a0a862015-03-18 12:36:27 -07001024 strlen(CBFS_FILE_MAGIC));
Hung-Te Lineab2c812013-01-29 01:56:17 +08001025}
1026
Patrick Georgi57edf162015-08-12 09:20:11 +02001027struct cbfs_file *cbfs_create_file_header(int type,
Vadim Bendebury45e59972014-12-23 15:59:57 -08001028 size_t len, const char *name)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -07001029{
Patrick Georgi2c615062015-07-15 20:49:00 +02001030 struct cbfs_file *entry = malloc(MAX_CBFS_FILE_HEADER_BUFFER);
1031 memset(entry, CBFS_CONTENT_DEFAULT_VALUE, MAX_CBFS_FILE_HEADER_BUFFER);
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001032 memcpy(entry->magic, CBFS_FILE_MAGIC, sizeof(entry->magic));
Patrick Georgiedf25d92015-08-12 09:12:06 +02001033 entry->type = htonl(type);
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001034 entry->len = htonl(len);
Patrick Georgi0d618af2015-07-15 18:28:23 +02001035 entry->attributes_offset = 0;
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001036 entry->offset = htonl(cbfs_calculate_file_header_size(name));
Patrick Georgic569b8b2015-07-15 16:42:38 +02001037 memset(entry->filename, 0, ntohl(entry->offset) - sizeof(*entry));
1038 strcpy(entry->filename, name);
Patrick Georgi57edf162015-08-12 09:20:11 +02001039 return entry;
1040}
1041
1042int cbfs_create_empty_entry(struct cbfs_file *entry, int type,
1043 size_t len, const char *name)
1044{
1045 struct cbfs_file *tmp = cbfs_create_file_header(type, len, name);
1046 memcpy(entry, tmp, ntohl(tmp->offset));
1047 free(tmp);
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001048 memset(CBFS_SUBHEADER(entry), CBFS_CONTENT_DEFAULT_VALUE, len);
1049 return 0;
1050}
1051
Patrick Georgi2c615062015-07-15 20:49:00 +02001052struct cbfs_file_attribute *cbfs_file_first_attr(struct cbfs_file *file)
1053{
1054 /* attributes_offset should be 0 when there is no attribute, but all
1055 * values that point into the cbfs_file header are invalid, too. */
1056 if (ntohl(file->attributes_offset) <= sizeof(*file))
1057 return NULL;
1058
1059 /* There needs to be enough space for the file header and one
1060 * attribute header for this to make sense. */
1061 if (ntohl(file->offset) <=
1062 sizeof(*file) + sizeof(struct cbfs_file_attribute))
1063 return NULL;
1064
1065 return (struct cbfs_file_attribute *)
1066 (((uint8_t *)file) + ntohl(file->attributes_offset));
1067}
1068
1069struct cbfs_file_attribute *cbfs_file_next_attr(struct cbfs_file *file,
1070 struct cbfs_file_attribute *attr)
1071{
1072 /* ex falso sequitur quodlibet */
1073 if (attr == NULL)
1074 return NULL;
1075
1076 /* Is there enough space for another attribute? */
1077 if ((uint8_t *)attr + ntohl(attr->len) +
1078 sizeof(struct cbfs_file_attribute) >=
1079 (uint8_t *)file + ntohl(file->offset))
1080 return NULL;
1081
1082 struct cbfs_file_attribute *next = (struct cbfs_file_attribute *)
1083 (((uint8_t *)attr) + ntohl(attr->len));
1084 /* If any, "unused" attributes must come last. */
1085 if (ntohl(next->tag) == CBFS_FILE_ATTR_TAG_UNUSED)
1086 return NULL;
1087 if (ntohl(next->tag) == CBFS_FILE_ATTR_TAG_UNUSED2)
1088 return NULL;
1089
1090 return next;
1091}
1092
1093struct cbfs_file_attribute *cbfs_add_file_attr(struct cbfs_file *header,
1094 uint32_t tag,
1095 uint32_t size)
1096{
1097 struct cbfs_file_attribute *attr, *next;
1098 next = cbfs_file_first_attr(header);
1099 do {
1100 attr = next;
1101 next = cbfs_file_next_attr(header, attr);
1102 } while (next != NULL);
1103 uint32_t header_size = ntohl(header->offset) + size;
1104 if (header_size > MAX_CBFS_FILE_HEADER_BUFFER) {
1105 DEBUG("exceeding allocated space for cbfs_file headers");
1106 return NULL;
1107 }
1108 /* attr points to the last valid attribute now.
1109 * If NULL, we have to create the first one. */
1110 if (attr == NULL) {
1111 /* New attributes start where the header ends.
1112 * header->offset is later set to accomodate the
1113 * additional structure.
1114 * No endianess translation necessary here, because both
1115 * fields are encoded the same way. */
1116 header->attributes_offset = header->offset;
1117 attr = (struct cbfs_file_attribute *)
1118 (((uint8_t *)header) +
1119 ntohl(header->attributes_offset));
1120 } else {
1121 attr = (struct cbfs_file_attribute *)
1122 (((uint8_t *)attr) +
1123 ntohl(attr->len));
1124 }
1125 header->offset = htonl(header_size);
1126 memset(attr, CBFS_CONTENT_DEFAULT_VALUE, size);
1127 attr->tag = htonl(tag);
1128 attr->len = htonl(size);
1129 return attr;
1130}
1131
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -07001132/* Finds a place to hold whole data in same memory page. */
1133static int is_in_same_page(uint32_t start, uint32_t size, uint32_t page)
1134{
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001135 if (!page)
1136 return 1;
1137 return (start / page) == (start + size - 1) / page;
1138}
1139
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001140/* Tests if data can fit in a range by given offset:
Aaron Durbind7339412015-09-15 12:50:14 -05001141 * start ->| metadata_size | offset (+ size) |<- end
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001142 */
Aaron Durbind7339412015-09-15 12:50:14 -05001143static int is_in_range(size_t start, size_t end, size_t metadata_size,
1144 size_t offset, size_t size)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -07001145{
Aaron Durbind7339412015-09-15 12:50:14 -05001146 return (offset >= start + metadata_size && offset + size <= end);
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001147}
1148
Aaron Durbind7339412015-09-15 12:50:14 -05001149int32_t cbfs_locate_entry(struct cbfs_image *image, size_t size,
1150 size_t page_size, size_t align, size_t metadata_size)
Stefan Reinauerdc7bc8e2013-03-26 12:51:36 -07001151{
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001152 struct cbfs_file *entry;
1153 size_t need_len;
Aaron Durbind7339412015-09-15 12:50:14 -05001154 size_t addr, addr_next, addr2, addr3, offset;
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001155
1156 /* Default values: allow fitting anywhere in ROM. */
1157 if (!page_size)
Sol Boucher67a0a862015-03-18 12:36:27 -07001158 page_size = image->has_header ? image->header.romsize :
1159 image->buffer.size;
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001160 if (!align)
1161 align = 1;
1162
1163 if (size > page_size)
Aaron Durbind7339412015-09-15 12:50:14 -05001164 ERROR("Input file size (%zd) greater than page size (%zd).\n",
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001165 size, page_size);
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001166
Aaron Durbind7339412015-09-15 12:50:14 -05001167 size_t image_align = image->has_header ? image->header.align :
Sol Boucher67a0a862015-03-18 12:36:27 -07001168 CBFS_ENTRY_ALIGNMENT;
1169 if (page_size % image_align)
Aaron Durbind7339412015-09-15 12:50:14 -05001170 WARN("%s: Page size (%#zx) not aligned with CBFS image (%#zx).\n",
Sol Boucher67a0a862015-03-18 12:36:27 -07001171 __func__, page_size, image_align);
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001172
Aaron Durbind7339412015-09-15 12:50:14 -05001173 need_len = metadata_size + size;
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001174
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001175 // Merge empty entries to build get max available space.
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001176 cbfs_walk(image, cbfs_merge_empty_entry, NULL);
1177
1178 /* Three cases of content location on memory page:
1179 * case 1.
1180 * | PAGE 1 | PAGE 2 |
1181 * | <header><content>| Fit. Return start of content.
1182 *
1183 * case 2.
1184 * | PAGE 1 | PAGE 2 |
1185 * | <header><content> | Fits when we shift content to align
1186 * shift-> | <header>|<content> | at starting of PAGE 2.
1187 *
1188 * case 3. (large content filling whole page)
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001189 * | PAGE 1 | PAGE 2 | PAGE 3 |
1190 * | <header>< content > | Can't fit. If we shift content to
1191 * |trial-> <header>< content > | PAGE 2, header can't fit in free
1192 * | shift-> <header><content> space, so we must use PAGE 3.
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001193 *
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001194 * The returned address can be then used as "base-address" (-b) in add-*
1195 * commands (will be re-calculated and positioned by cbfs_add_entry_at).
1196 * For stage targets, the address is also used to re-link stage before
1197 * being added into CBFS.
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001198 */
1199 for (entry = cbfs_find_first_entry(image);
Hung-Te Lin408aefd2013-02-09 10:38:55 +08001200 entry && cbfs_is_valid_entry(image, entry);
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001201 entry = cbfs_find_next_entry(image, entry)) {
1202
1203 uint32_t type = ntohl(entry->type);
1204 if (type != CBFS_COMPONENT_NULL)
1205 continue;
1206
1207 addr = cbfs_get_entry_addr(image, entry);
1208 addr_next = cbfs_get_entry_addr(image, cbfs_find_next_entry(
1209 image, entry));
1210 if (addr_next - addr < need_len)
1211 continue;
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001212
Aaron Durbind7339412015-09-15 12:50:14 -05001213 offset = align_up(addr + metadata_size, align);
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001214 if (is_in_same_page(offset, size, page_size) &&
Aaron Durbind7339412015-09-15 12:50:14 -05001215 is_in_range(addr, addr_next, metadata_size, offset, size)) {
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001216 DEBUG("cbfs_locate_entry: FIT (PAGE1).");
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001217 return offset;
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001218 }
1219
1220 addr2 = align_up(addr, page_size);
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001221 offset = align_up(addr2, align);
Aaron Durbind7339412015-09-15 12:50:14 -05001222 if (is_in_range(addr, addr_next, metadata_size, offset, size)) {
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001223 DEBUG("cbfs_locate_entry: OVERLAP (PAGE2).");
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001224 return offset;
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001225 }
1226
Aaron Durbind7339412015-09-15 12:50:14 -05001227 /* Assume page_size >= metadata_size so adding one page will
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001228 * definitely provide the space for header. */
Aaron Durbind7339412015-09-15 12:50:14 -05001229 assert(page_size >= metadata_size);
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001230 addr3 = addr2 + page_size;
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001231 offset = align_up(addr3, align);
Aaron Durbind7339412015-09-15 12:50:14 -05001232 if (is_in_range(addr, addr_next, metadata_size, offset, size)) {
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001233 DEBUG("cbfs_locate_entry: OVERLAP+ (PAGE3).");
Hung-Te Line4ea2ca2013-03-19 12:24:43 +08001234 return offset;
Hung-Te Lin215d1d72013-01-29 03:46:02 +08001235 }
1236 }
1237 return -1;
1238}