blob: 85ba023e1b3c596b1fc429e68c7ea74e7e454d0a [file] [log] [blame]
Patrick Georgiea063cb2020-05-08 19:28:13 +02001/* CBFS Image Manipulation */
Patrick Georgi7333a112020-05-08 20:48:04 +02002/* SPDX-License-Identifier: GPL-2.0-only */
Hung-Te Lineab2c812013-01-29 01:56:17 +08003
4#ifndef __CBFS_IMAGE_H
5#define __CBFS_IMAGE_H
6#include "common.h"
7#include "cbfs.h"
8
Jakub Czapigaaa415632022-08-01 16:01:28 +02009
10#define HEADER_OFFSET_UNKNOWN (~0u)
11
Hung-Te Lineab2c812013-01-29 01:56:17 +080012/* CBFS image processing */
13
14struct cbfs_image {
15 struct buffer buffer;
Sol Boucher67a0a862015-03-18 12:36:27 -070016 /* An image has a header iff it's a legacy CBFS. */
17 bool has_header;
18 /* Only meaningful if has_header is selected. */
Sol Boucher3e060ed2015-05-05 15:40:15 -070019 struct cbfs_header header;
Hung-Te Lineab2c812013-01-29 01:56:17 +080020};
21
Sol Boucherec424862015-05-07 21:00:05 -070022/* Given the string name of a compression algorithm, return the corresponding
23 * enum comp_algo if it's supported, or a number < 0 otherwise. */
24int cbfs_parse_comp_algo(const char *name);
25
Patrick Georgi89f20342015-10-01 15:54:04 +020026/* Given the string name of a hash algorithm, return the corresponding
27 * id if it's supported, or a number < 0 otherwise. */
28int cbfs_parse_hash_algo(const char *name);
29
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -080030/* Given a pointer, serialize the header from host-native byte format
31 * to cbfs format, i.e. big-endian. */
32void cbfs_put_header(void *dest, const struct cbfs_header *header);
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -060033/* Or deserialize into host-native format */
Sol Boucher0e539312015-03-05 15:38:03 -080034void cbfs_get_header(struct cbfs_header *header, void *src);
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -080035
Sol Boucher67a0a862015-03-18 12:36:27 -070036/* Populates a CBFS with a single empty entry filling all available space
37 * (entries_size bytes). If image's header field is already present, its
38 * contents will be used to place an empty entry of the requested length at the
39 * appropriate position in the existing buffer; otherwise, if not has_header,
40 * the first entries_size bytes of buffer will be filled exclusively with the
41 * single empty entry (and no CBFS master header).
42 * Returns 0 on success, otherwise nonzero. */
43int cbfs_image_create(struct cbfs_image *image, size_t entries_size);
44
Hung-Te Linf56c73f2013-01-29 09:45:12 +080045/* Creates an empty CBFS image by given size, and description to its content
Sol Bouchere3260a02015-03-25 13:40:08 -070046 * (bootblock, align, header location, starting offset of CBFS entries).
Hung-Te Linf56c73f2013-01-29 09:45:12 +080047 * The output image will contain a valid cbfs_header, with one cbfs_file
Julius Wernerd4775652020-03-13 16:43:34 -070048 * entry with type CBFS_TYPE_NULL, with max available size.
Sol Boucher67a0a862015-03-18 12:36:27 -070049 * Only call this if you want a legacy CBFS with a master header.
50 * Returns 0 on success, otherwise nonzero. */
51int cbfs_legacy_image_create(struct cbfs_image *image,
52 uint32_t arch,
53 uint32_t align,
54 struct buffer *bootblock,
55 uint32_t bootblock_offset,
56 uint32_t header_offset,
57 uint32_t entries_offset);
Hung-Te Linf56c73f2013-01-29 09:45:12 +080058
Sol Bouchere3260a02015-03-25 13:40:08 -070059/* Constructs a cbfs_image from a buffer. The resulting image contains a shallow
60 * copy of the buffer; releasing either one is the legal way to clean up after
61 * both of them at once. Always produces a cbfs_image, but...
62 * Returns 0 if it contains a valid CBFS, non-zero if it's unrecognized data. */
63int cbfs_image_from_buffer(struct cbfs_image *out, struct buffer *in,
64 uint32_t offset);
Hung-Te Lineab2c812013-01-29 01:56:17 +080065
Sol Boucher67a0a862015-03-18 12:36:27 -070066/* Create a duplicate CBFS image. Returns 0 on success, otherwise non-zero.
67 * Will not succeed on new-style images without a master header. */
Patrick Georgi214e4af2015-11-20 19:22:50 +010068int cbfs_copy_instance(struct cbfs_image *image, struct buffer *dst);
Vadim Bendebury5e273a42014-12-23 19:26:54 -080069
Aaron Durbin71c60ca2016-01-26 17:08:56 -060070/* Compact a fragmented CBFS image by placing all the non-empty files at the
71 * beginning of the image. Returns 0 on success, otherwise non-zero. */
72int cbfs_compact_instance(struct cbfs_image *image);
73
Patrick Georgi5d982d72017-09-19 14:39:58 +020074/* Expand a CBFS image inside an fmap region to the entire region's space.
75 Returns 0 on success, otherwise non-zero. */
76int cbfs_expand_to_region(struct buffer *region);
77
Patrick Georgi12631a42017-09-20 11:59:18 +020078/* Truncate a CBFS by removing a trailing "empty" file if it exists.
79 Returns 0 on success, otherwise non-zero and passes the CBFS' remaining
80 size in the size argument. */
81int cbfs_truncate_space(struct buffer *region, uint32_t *size);
82
Hung-Te Lineab2c812013-01-29 01:56:17 +080083/* Releases the CBFS image. Returns 0 on success, otherwise non-zero. */
84int cbfs_image_delete(struct cbfs_image *image);
85
Hung-Te Lin0f8af712013-01-29 02:29:49 +080086/* Returns a pointer to entry by name, or NULL if name is not found. */
87struct cbfs_file *cbfs_get_entry(struct cbfs_image *image, const char *name);
88
Joel Kitching21fdd892018-08-09 17:49:52 +080089/* Exports an entry to external file. If do_processing is true, file contents
90 * will be decompressed, and also turned into an ELF if appropriate.
Hung-Te Lin0f8af712013-01-29 02:29:49 +080091 * Returns 0 on success, otherwise (ex, not found) non-zero. */
92int cbfs_export_entry(struct cbfs_image *image, const char *entry_name,
Joel Kitching21fdd892018-08-09 17:49:52 +080093 const char *filename, uint32_t arch, bool do_processing);
Hung-Te Lin0f8af712013-01-29 02:29:49 +080094
Hung-Te Lin5f3eb262013-01-29 10:24:00 +080095/* Adds an entry to CBFS image by given name and type. If content_offset is
96 * non-zero, try to align "content" (CBFS_SUBHEADER(p)) at content_offset.
Sol Boucher67d59982015-05-07 02:39:22 -070097 * Never pass this function a top-aligned address: convert it to an offset.
Hung-Te Lin5f3eb262013-01-29 10:24:00 +080098 * Returns 0 on success, otherwise non-zero. */
99int cbfs_add_entry(struct cbfs_image *image, struct buffer *buffer,
Philipp Deppenwiese7ba58712018-11-20 13:54:49 +0100100 uint32_t content_offset, struct cbfs_file *header,
101 const size_t len_align);
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800102
Hung-Te Linc03d9b02013-01-29 02:38:40 +0800103/* Removes an entry from CBFS image. Returns 0 on success, otherwise non-zero. */
104int cbfs_remove_entry(struct cbfs_image *image, const char *name);
105
Patrick Georgi57edf162015-08-12 09:20:11 +0200106/* Create a new cbfs file header structure to work with.
107 Returns newly allocated memory that the caller needs to free after use. */
108struct cbfs_file *cbfs_create_file_header(int type, size_t len,
109 const char *name);
110
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800111/* Initializes a new empty (type = NULL) entry with size and name in CBFS image.
112 * Returns 0 on success, otherwise (ex, not found) non-zero. */
Patrick Georgiedf25d92015-08-12 09:12:06 +0200113int cbfs_create_empty_entry(struct cbfs_file *entry, int type,
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800114 size_t len, const char *name);
115
Hung-Te Line4ea2ca2013-03-19 12:24:43 +0800116/* Finds a location to put given content by specified criteria:
117 * "page_size" limits the content to fit on same memory page, and
118 * "align" specifies starting address alignment.
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800119 * Returns a valid offset, or -1 on failure. */
Aaron Durbind7339412015-09-15 12:50:14 -0500120int32_t cbfs_locate_entry(struct cbfs_image *image, size_t size,
121 size_t page_size, size_t align, size_t metadata_size);
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800122
Julius Werner7066a1e2020-04-02 15:49:34 -0700123/* Callback function used by cbfs_legacy_walk.
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800124 * Returns 0 on success, or non-zero to stop further iteration. */
125typedef int (*cbfs_entry_callback)(struct cbfs_image *image,
126 struct cbfs_file *file,
127 void *arg);
128
129/* Iterates through all entries in CBFS image, and invoke with callback.
Julius Werner7066a1e2020-04-02 15:49:34 -0700130 * Stops if callback returns non-zero values. Unlike the commonlib cbfs_walk(),
131 * this can deal with different alignments in legacy CBFS (with master header).
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800132 * Returns number of entries invoked. */
Julius Werner7066a1e2020-04-02 15:49:34 -0700133int cbfs_legacy_walk(struct cbfs_image *image, cbfs_entry_callback callback,
134 void *arg);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800135
Hung-Te Lineab2c812013-01-29 01:56:17 +0800136/* Primitive CBFS utilities */
137
138/* Returns a pointer to the only valid CBFS header in give buffer, otherwise
139 * NULL (including when multiple headers were found). If there is a X86 ROM
140 * style signature (pointer at 0xfffffffc) found in ROM, it will be selected as
141 * the only header.*/
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800142struct cbfs_header *cbfs_find_header(char *data, size_t size,
143 uint32_t forced_offset);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800144
145/* Returns the first cbfs_file entry in CBFS image by CBFS header (no matter if
146 * the entry has valid content or not), otherwise NULL. */
147struct cbfs_file *cbfs_find_first_entry(struct cbfs_image *image);
148
149/* Returns next cbfs_file entry (no matter if its content is valid or not), or
150 * NULL on failure. */
151struct cbfs_file *cbfs_find_next_entry(struct cbfs_image *image,
152 struct cbfs_file *entry);
153
154/* Returns ROM address (offset) of entry.
155 * This is different from entry->offset (pointer to content). */
156uint32_t cbfs_get_entry_addr(struct cbfs_image *image, struct cbfs_file *entry);
157
Sol Boucher67a0a862015-03-18 12:36:27 -0700158/* Returns 1 if valid new-format CBFS (without a master header), otherwise 0. */
159int cbfs_is_valid_cbfs(struct cbfs_image *image);
160
161/* Returns 1 if valid legacy CBFS (with a master header), otherwise 0. */
162int cbfs_is_legacy_cbfs(struct cbfs_image *image);
163
Hung-Te Lineab2c812013-01-29 01:56:17 +0800164/* Returns 1 if entry has valid data (by checking magic number), otherwise 0. */
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800165int cbfs_is_valid_entry(struct cbfs_image *image, struct cbfs_file *entry);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800166
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800167/* Print CBFS component information. */
Julius Wernerc4ee28c2020-04-27 19:31:03 -0700168void cbfs_print_directory(struct cbfs_image *image);
169void cbfs_print_parseable_directory(struct cbfs_image *image);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800170int cbfs_print_header_info(struct cbfs_image *image);
171int cbfs_print_entry_info(struct cbfs_image *image, struct cbfs_file *entry,
172 void *arg);
173
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800174/* Merge empty entries starting from given entry.
175 * Returns 0 on success, otherwise non-zero. */
176int cbfs_merge_empty_entry(struct cbfs_image *image, struct cbfs_file *entry,
177 void *arg);
178
Patrick Georgi11ee08f2015-08-11 15:10:02 +0200179/* Returns the size of a cbfs file header with no extensions */
180size_t cbfs_calculate_file_header_size(const char *name);
Patrick Georgi2c615062015-07-15 20:49:00 +0200181
182/* Given a cbfs_file, return the first file attribute, or NULL. */
183struct cbfs_file_attribute *cbfs_file_first_attr(struct cbfs_file *file);
184
185/* Given a cbfs_file and a cbfs_file_attribute, return the attribute that
186 * follows it, or NULL. */
187struct cbfs_file_attribute *cbfs_file_next_attr(struct cbfs_file *file,
188 struct cbfs_file_attribute *attr);
189
190/* Adds to header a new extended attribute tagged 'tag', sized 'size'.
191 * Returns pointer to the new attribute, or NULL on error. */
192struct cbfs_file_attribute *cbfs_add_file_attr(struct cbfs_file *header,
193 uint32_t tag,
194 uint32_t size);
Patrick Georgi89f20342015-10-01 15:54:04 +0200195
196/* Adds an extended attribute to header, containing a hash of buffer's data of
197 * the type specified by hash_type.
198 * Returns 0 on success, -1 on error. */
199int cbfs_add_file_hash(struct cbfs_file *header, struct buffer *buffer,
200 enum vb2_hash_algorithm hash_type);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800201#endif