blob: 1bb3c686e544f15bc520f62b63a05421f7aa0d38 [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.
Hung-Te Lineab2c812013-01-29 01:56:17 +080014 */
15
16#ifndef __CBFS_IMAGE_H
17#define __CBFS_IMAGE_H
18#include "common.h"
19#include "cbfs.h"
20
21/* CBFS image processing */
22
23struct cbfs_image {
24 struct buffer buffer;
Sol Boucher67a0a862015-03-18 12:36:27 -070025 /* An image has a header iff it's a legacy CBFS. */
26 bool has_header;
27 /* Only meaningful if has_header is selected. */
Sol Boucher3e060ed2015-05-05 15:40:15 -070028 struct cbfs_header header;
Hung-Te Lineab2c812013-01-29 01:56:17 +080029};
30
Sol Boucherec424862015-05-07 21:00:05 -070031/* Given the string name of a compression algorithm, return the corresponding
32 * enum comp_algo if it's supported, or a number < 0 otherwise. */
33int cbfs_parse_comp_algo(const char *name);
34
Patrick Georgi89f20342015-10-01 15:54:04 +020035/* Given the string name of a hash algorithm, return the corresponding
36 * id if it's supported, or a number < 0 otherwise. */
37int cbfs_parse_hash_algo(const char *name);
38
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -080039/* Given a pointer, serialize the header from host-native byte format
40 * to cbfs format, i.e. big-endian. */
41void cbfs_put_header(void *dest, const struct cbfs_header *header);
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -060042/* Or deserialize into host-native format */
Sol Boucher0e539312015-03-05 15:38:03 -080043void cbfs_get_header(struct cbfs_header *header, void *src);
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -080044
Sol Boucher67a0a862015-03-18 12:36:27 -070045/* Populates a CBFS with a single empty entry filling all available space
46 * (entries_size bytes). If image's header field is already present, its
47 * contents will be used to place an empty entry of the requested length at the
48 * appropriate position in the existing buffer; otherwise, if not has_header,
49 * the first entries_size bytes of buffer will be filled exclusively with the
50 * single empty entry (and no CBFS master header).
51 * Returns 0 on success, otherwise nonzero. */
52int cbfs_image_create(struct cbfs_image *image, size_t entries_size);
53
Hung-Te Linf56c73f2013-01-29 09:45:12 +080054/* Creates an empty CBFS image by given size, and description to its content
Sol Bouchere3260a02015-03-25 13:40:08 -070055 * (bootblock, align, header location, starting offset of CBFS entries).
Hung-Te Linf56c73f2013-01-29 09:45:12 +080056 * The output image will contain a valid cbfs_header, with one cbfs_file
57 * entry with type CBFS_COMPONENT_NULL, with max available size.
Sol Boucher67a0a862015-03-18 12:36:27 -070058 * Only call this if you want a legacy CBFS with a master header.
59 * Returns 0 on success, otherwise nonzero. */
60int cbfs_legacy_image_create(struct cbfs_image *image,
61 uint32_t arch,
62 uint32_t align,
63 struct buffer *bootblock,
64 uint32_t bootblock_offset,
65 uint32_t header_offset,
66 uint32_t entries_offset);
Hung-Te Linf56c73f2013-01-29 09:45:12 +080067
Sol Bouchere3260a02015-03-25 13:40:08 -070068/* Constructs a cbfs_image from a buffer. The resulting image contains a shallow
69 * copy of the buffer; releasing either one is the legal way to clean up after
70 * both of them at once. Always produces a cbfs_image, but...
71 * Returns 0 if it contains a valid CBFS, non-zero if it's unrecognized data. */
72int cbfs_image_from_buffer(struct cbfs_image *out, struct buffer *in,
73 uint32_t offset);
Hung-Te Lineab2c812013-01-29 01:56:17 +080074
Sol Boucher67a0a862015-03-18 12:36:27 -070075/* Create a duplicate CBFS image. Returns 0 on success, otherwise non-zero.
76 * Will not succeed on new-style images without a master header. */
Patrick Georgi214e4af2015-11-20 19:22:50 +010077int cbfs_copy_instance(struct cbfs_image *image, struct buffer *dst);
Vadim Bendebury5e273a42014-12-23 19:26:54 -080078
Aaron Durbin71c60ca2016-01-26 17:08:56 -060079/* Compact a fragmented CBFS image by placing all the non-empty files at the
80 * beginning of the image. Returns 0 on success, otherwise non-zero. */
81int cbfs_compact_instance(struct cbfs_image *image);
82
Patrick Georgi5d982d72017-09-19 14:39:58 +020083/* Expand a CBFS image inside an fmap region to the entire region's space.
84 Returns 0 on success, otherwise non-zero. */
85int cbfs_expand_to_region(struct buffer *region);
86
Patrick Georgi12631a42017-09-20 11:59:18 +020087/* Truncate a CBFS by removing a trailing "empty" file if it exists.
88 Returns 0 on success, otherwise non-zero and passes the CBFS' remaining
89 size in the size argument. */
90int cbfs_truncate_space(struct buffer *region, uint32_t *size);
91
Hung-Te Lineab2c812013-01-29 01:56:17 +080092/* Releases the CBFS image. Returns 0 on success, otherwise non-zero. */
93int cbfs_image_delete(struct cbfs_image *image);
94
Hung-Te Lin0f8af712013-01-29 02:29:49 +080095/* Returns a pointer to entry by name, or NULL if name is not found. */
96struct cbfs_file *cbfs_get_entry(struct cbfs_image *image, const char *name);
97
Joel Kitching21fdd892018-08-09 17:49:52 +080098/* Exports an entry to external file. If do_processing is true, file contents
99 * will be decompressed, and also turned into an ELF if appropriate.
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800100 * Returns 0 on success, otherwise (ex, not found) non-zero. */
101int cbfs_export_entry(struct cbfs_image *image, const char *entry_name,
Joel Kitching21fdd892018-08-09 17:49:52 +0800102 const char *filename, uint32_t arch, bool do_processing);
Hung-Te Lin0f8af712013-01-29 02:29:49 +0800103
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800104/* Adds an entry to CBFS image by given name and type. If content_offset is
105 * non-zero, try to align "content" (CBFS_SUBHEADER(p)) at content_offset.
Sol Boucher67d59982015-05-07 02:39:22 -0700106 * Never pass this function a top-aligned address: convert it to an offset.
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800107 * Returns 0 on success, otherwise non-zero. */
108int cbfs_add_entry(struct cbfs_image *image, struct buffer *buffer,
Philipp Deppenwiese7ba58712018-11-20 13:54:49 +0100109 uint32_t content_offset, struct cbfs_file *header,
110 const size_t len_align);
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800111
Hung-Te Linc03d9b02013-01-29 02:38:40 +0800112/* Removes an entry from CBFS image. Returns 0 on success, otherwise non-zero. */
113int cbfs_remove_entry(struct cbfs_image *image, const char *name);
114
Patrick Georgi57edf162015-08-12 09:20:11 +0200115/* Create a new cbfs file header structure to work with.
116 Returns newly allocated memory that the caller needs to free after use. */
117struct cbfs_file *cbfs_create_file_header(int type, size_t len,
118 const char *name);
119
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800120/* Initializes a new empty (type = NULL) entry with size and name in CBFS image.
121 * Returns 0 on success, otherwise (ex, not found) non-zero. */
Patrick Georgiedf25d92015-08-12 09:12:06 +0200122int cbfs_create_empty_entry(struct cbfs_file *entry, int type,
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800123 size_t len, const char *name);
124
Hung-Te Line4ea2ca2013-03-19 12:24:43 +0800125/* Finds a location to put given content by specified criteria:
126 * "page_size" limits the content to fit on same memory page, and
127 * "align" specifies starting address alignment.
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800128 * Returns a valid offset, or -1 on failure. */
Aaron Durbind7339412015-09-15 12:50:14 -0500129int32_t cbfs_locate_entry(struct cbfs_image *image, size_t size,
130 size_t page_size, size_t align, size_t metadata_size);
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800131
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800132/* Callback function used by cbfs_walk.
133 * Returns 0 on success, or non-zero to stop further iteration. */
134typedef int (*cbfs_entry_callback)(struct cbfs_image *image,
135 struct cbfs_file *file,
136 void *arg);
137
138/* Iterates through all entries in CBFS image, and invoke with callback.
139 * Stops if callback returns non-zero values.
140 * Returns number of entries invoked. */
141int cbfs_walk(struct cbfs_image *image, cbfs_entry_callback callback, void *arg);
142
Hung-Te Lineab2c812013-01-29 01:56:17 +0800143/* Primitive CBFS utilities */
144
145/* Returns a pointer to the only valid CBFS header in give buffer, otherwise
146 * NULL (including when multiple headers were found). If there is a X86 ROM
147 * style signature (pointer at 0xfffffffc) found in ROM, it will be selected as
148 * the only header.*/
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800149struct cbfs_header *cbfs_find_header(char *data, size_t size,
150 uint32_t forced_offset);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800151
152/* Returns the first cbfs_file entry in CBFS image by CBFS header (no matter if
153 * the entry has valid content or not), otherwise NULL. */
154struct cbfs_file *cbfs_find_first_entry(struct cbfs_image *image);
155
156/* Returns next cbfs_file entry (no matter if its content is valid or not), or
157 * NULL on failure. */
158struct cbfs_file *cbfs_find_next_entry(struct cbfs_image *image,
159 struct cbfs_file *entry);
160
161/* Returns ROM address (offset) of entry.
162 * This is different from entry->offset (pointer to content). */
163uint32_t cbfs_get_entry_addr(struct cbfs_image *image, struct cbfs_file *entry);
164
Sol Boucher67a0a862015-03-18 12:36:27 -0700165/* Returns 1 if valid new-format CBFS (without a master header), otherwise 0. */
166int cbfs_is_valid_cbfs(struct cbfs_image *image);
167
168/* Returns 1 if valid legacy CBFS (with a master header), otherwise 0. */
169int cbfs_is_legacy_cbfs(struct cbfs_image *image);
170
Hung-Te Lineab2c812013-01-29 01:56:17 +0800171/* Returns 1 if entry has valid data (by checking magic number), otherwise 0. */
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800172int cbfs_is_valid_entry(struct cbfs_image *image, struct cbfs_file *entry);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800173
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800174/* Print CBFS component information. */
175int cbfs_print_directory(struct cbfs_image *image);
Aaron Durbin5dc628a2016-01-26 15:35:34 -0600176int cbfs_print_parseable_directory(struct cbfs_image *image);
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800177int cbfs_print_header_info(struct cbfs_image *image);
178int cbfs_print_entry_info(struct cbfs_image *image, struct cbfs_file *entry,
179 void *arg);
180
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800181/* Merge empty entries starting from given entry.
182 * Returns 0 on success, otherwise non-zero. */
183int cbfs_merge_empty_entry(struct cbfs_image *image, struct cbfs_file *entry,
184 void *arg);
185
Patrick Georgi11ee08f2015-08-11 15:10:02 +0200186/* Returns the size of a cbfs file header with no extensions */
187size_t cbfs_calculate_file_header_size(const char *name);
Patrick Georgi2c615062015-07-15 20:49:00 +0200188
189/* Given a cbfs_file, return the first file attribute, or NULL. */
190struct cbfs_file_attribute *cbfs_file_first_attr(struct cbfs_file *file);
191
192/* Given a cbfs_file and a cbfs_file_attribute, return the attribute that
193 * follows it, or NULL. */
194struct cbfs_file_attribute *cbfs_file_next_attr(struct cbfs_file *file,
195 struct cbfs_file_attribute *attr);
196
197/* Adds to header a new extended attribute tagged 'tag', sized 'size'.
198 * Returns pointer to the new attribute, or NULL on error. */
199struct cbfs_file_attribute *cbfs_add_file_attr(struct cbfs_file *header,
200 uint32_t tag,
201 uint32_t size);
Patrick Georgi89f20342015-10-01 15:54:04 +0200202
203/* Adds an extended attribute to header, containing a hash of buffer's data of
204 * the type specified by hash_type.
205 * Returns 0 on success, -1 on error. */
206int cbfs_add_file_hash(struct cbfs_file *header, struct buffer *buffer,
207 enum vb2_hash_algorithm hash_type);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800208#endif