blob: 024edc5deeaa166ce9254aa72f14f694842b97dc [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
20#ifndef __CBFS_IMAGE_H
21#define __CBFS_IMAGE_H
22#include "common.h"
23#include "cbfs.h"
24
Hung-Te Linf56c73f2013-01-29 09:45:12 +080025#define IS_TOP_ALIGNED_ADDRESS(x) ((uint32_t)(x) > 0x80000000)
26
Hung-Te Lineab2c812013-01-29 01:56:17 +080027/* CBFS image processing */
28
29struct cbfs_image {
30 struct buffer buffer;
Sol Boucher67a0a862015-03-18 12:36:27 -070031 /* An image has a header iff it's a legacy CBFS. */
32 bool has_header;
33 /* Only meaningful if has_header is selected. */
Sol Boucher3e060ed2015-05-05 15:40:15 -070034 struct cbfs_header header;
Hung-Te Lineab2c812013-01-29 01:56:17 +080035};
36
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -080037/* Given a pointer, serialize the header from host-native byte format
38 * to cbfs format, i.e. big-endian. */
39void cbfs_put_header(void *dest, const struct cbfs_header *header);
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -060040/* Or deserialize into host-native format */
Sol Boucher0e539312015-03-05 15:38:03 -080041void cbfs_get_header(struct cbfs_header *header, void *src);
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -080042
Sol Boucher67a0a862015-03-18 12:36:27 -070043/* Populates a CBFS with a single empty entry filling all available space
44 * (entries_size bytes). If image's header field is already present, its
45 * contents will be used to place an empty entry of the requested length at the
46 * appropriate position in the existing buffer; otherwise, if not has_header,
47 * the first entries_size bytes of buffer will be filled exclusively with the
48 * single empty entry (and no CBFS master header).
49 * Returns 0 on success, otherwise nonzero. */
50int cbfs_image_create(struct cbfs_image *image, size_t entries_size);
51
Hung-Te Linf56c73f2013-01-29 09:45:12 +080052/* Creates an empty CBFS image by given size, and description to its content
Sol Bouchere3260a02015-03-25 13:40:08 -070053 * (bootblock, align, header location, starting offset of CBFS entries).
Hung-Te Linf56c73f2013-01-29 09:45:12 +080054 * The output image will contain a valid cbfs_header, with one cbfs_file
55 * entry with type CBFS_COMPONENT_NULL, with max available size.
Sol Boucher67a0a862015-03-18 12:36:27 -070056 * Only call this if you want a legacy CBFS with a master header.
57 * Returns 0 on success, otherwise nonzero. */
58int cbfs_legacy_image_create(struct cbfs_image *image,
59 uint32_t arch,
60 uint32_t align,
61 struct buffer *bootblock,
62 uint32_t bootblock_offset,
63 uint32_t header_offset,
64 uint32_t entries_offset);
Hung-Te Linf56c73f2013-01-29 09:45:12 +080065
Sol Bouchere3260a02015-03-25 13:40:08 -070066/* Constructs a cbfs_image from a buffer. The resulting image contains a shallow
67 * copy of the buffer; releasing either one is the legal way to clean up after
68 * both of them at once. Always produces a cbfs_image, but...
69 * Returns 0 if it contains a valid CBFS, non-zero if it's unrecognized data. */
70int cbfs_image_from_buffer(struct cbfs_image *out, struct buffer *in,
71 uint32_t offset);
Hung-Te Lineab2c812013-01-29 01:56:17 +080072
Sol Boucher67a0a862015-03-18 12:36:27 -070073/* Create a duplicate CBFS image. Returns 0 on success, otherwise non-zero.
74 * Will not succeed on new-style images without a master header. */
Vadim Bendebury5e273a42014-12-23 19:26:54 -080075int cbfs_copy_instance(struct cbfs_image *image, size_t copy_offset,
76 size_t copy_size);
77
Hung-Te Lineab2c812013-01-29 01:56:17 +080078/* Releases the CBFS image. Returns 0 on success, otherwise non-zero. */
79int cbfs_image_delete(struct cbfs_image *image);
80
Hung-Te Lin0f8af712013-01-29 02:29:49 +080081/* Returns a pointer to entry by name, or NULL if name is not found. */
82struct cbfs_file *cbfs_get_entry(struct cbfs_image *image, const char *name);
83
84/* Exports an entry to external file.
85 * Returns 0 on success, otherwise (ex, not found) non-zero. */
86int cbfs_export_entry(struct cbfs_image *image, const char *entry_name,
87 const char *filename);
88
Hung-Te Lin5f3eb262013-01-29 10:24:00 +080089/* Adds an entry to CBFS image by given name and type. If content_offset is
90 * non-zero, try to align "content" (CBFS_SUBHEADER(p)) at content_offset.
Sol Boucher67a0a862015-03-18 12:36:27 -070091 * Note that top-aligned addresses are only supported for legacy CBFSes.
Hung-Te Lin5f3eb262013-01-29 10:24:00 +080092 * Returns 0 on success, otherwise non-zero. */
93int cbfs_add_entry(struct cbfs_image *image, struct buffer *buffer,
94 const char *name, uint32_t type, uint32_t content_offset);
95
Hung-Te Linc03d9b02013-01-29 02:38:40 +080096/* Removes an entry from CBFS image. Returns 0 on success, otherwise non-zero. */
97int cbfs_remove_entry(struct cbfs_image *image, const char *name);
98
Hung-Te Lin215d1d72013-01-29 03:46:02 +080099/* Initializes a new empty (type = NULL) entry with size and name in CBFS image.
100 * Returns 0 on success, otherwise (ex, not found) non-zero. */
Vadim Bendebury45e59972014-12-23 15:59:57 -0800101int cbfs_create_empty_entry(struct cbfs_file *entry,
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800102 size_t len, const char *name);
103
Hung-Te Line4ea2ca2013-03-19 12:24:43 +0800104/* Finds a location to put given content by specified criteria:
105 * "page_size" limits the content to fit on same memory page, and
106 * "align" specifies starting address alignment.
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800107 * Returns a valid offset, or -1 on failure. */
108int32_t cbfs_locate_entry(struct cbfs_image *image, const char *name,
Hung-Te Line4ea2ca2013-03-19 12:24:43 +0800109 uint32_t size, uint32_t page_size, uint32_t align);
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800110
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800111/* Callback function used by cbfs_walk.
112 * Returns 0 on success, or non-zero to stop further iteration. */
113typedef int (*cbfs_entry_callback)(struct cbfs_image *image,
114 struct cbfs_file *file,
115 void *arg);
116
117/* Iterates through all entries in CBFS image, and invoke with callback.
118 * Stops if callback returns non-zero values.
119 * Returns number of entries invoked. */
120int cbfs_walk(struct cbfs_image *image, cbfs_entry_callback callback, void *arg);
121
Hung-Te Lineab2c812013-01-29 01:56:17 +0800122/* Primitive CBFS utilities */
123
124/* Returns a pointer to the only valid CBFS header in give buffer, otherwise
125 * NULL (including when multiple headers were found). If there is a X86 ROM
126 * style signature (pointer at 0xfffffffc) found in ROM, it will be selected as
127 * the only header.*/
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800128struct cbfs_header *cbfs_find_header(char *data, size_t size,
129 uint32_t forced_offset);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800130
131/* Returns the first cbfs_file entry in CBFS image by CBFS header (no matter if
132 * the entry has valid content or not), otherwise NULL. */
133struct cbfs_file *cbfs_find_first_entry(struct cbfs_image *image);
134
135/* Returns next cbfs_file entry (no matter if its content is valid or not), or
136 * NULL on failure. */
137struct cbfs_file *cbfs_find_next_entry(struct cbfs_image *image,
138 struct cbfs_file *entry);
139
140/* Returns ROM address (offset) of entry.
141 * This is different from entry->offset (pointer to content). */
142uint32_t cbfs_get_entry_addr(struct cbfs_image *image, struct cbfs_file *entry);
143
Sol Boucher67a0a862015-03-18 12:36:27 -0700144/* Returns 1 if valid new-format CBFS (without a master header), otherwise 0. */
145int cbfs_is_valid_cbfs(struct cbfs_image *image);
146
147/* Returns 1 if valid legacy CBFS (with a master header), otherwise 0. */
148int cbfs_is_legacy_cbfs(struct cbfs_image *image);
149
Hung-Te Lineab2c812013-01-29 01:56:17 +0800150/* Returns 1 if entry has valid data (by checking magic number), otherwise 0. */
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800151int cbfs_is_valid_entry(struct cbfs_image *image, struct cbfs_file *entry);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800152
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800153/* Print CBFS component information. */
154int cbfs_print_directory(struct cbfs_image *image);
155int cbfs_print_header_info(struct cbfs_image *image);
156int cbfs_print_entry_info(struct cbfs_image *image, struct cbfs_file *entry,
157 void *arg);
158
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800159/* Merge empty entries starting from given entry.
160 * Returns 0 on success, otherwise non-zero. */
161int cbfs_merge_empty_entry(struct cbfs_image *image, struct cbfs_file *entry,
162 void *arg);
163
Hung-Te Lineab2c812013-01-29 01:56:17 +0800164#endif