blob: f6029761777c7ca9a77c0f79f414b6a454810f35 [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
20#ifndef __CBFS_IMAGE_H
21#define __CBFS_IMAGE_H
22#include "common.h"
23#include "cbfs.h"
24
25/* CBFS image processing */
26
27struct cbfs_image {
28 struct buffer buffer;
Sol Boucher67a0a862015-03-18 12:36:27 -070029 /* An image has a header iff it's a legacy CBFS. */
30 bool has_header;
31 /* Only meaningful if has_header is selected. */
Sol Boucher3e060ed2015-05-05 15:40:15 -070032 struct cbfs_header header;
Hung-Te Lineab2c812013-01-29 01:56:17 +080033};
34
Sol Boucherec424862015-05-07 21:00:05 -070035/* Given the string name of a compression algorithm, return the corresponding
36 * enum comp_algo if it's supported, or a number < 0 otherwise. */
37int cbfs_parse_comp_algo(const char *name);
38
Patrick Georgi89f20342015-10-01 15:54:04 +020039/* Given the string name of a hash algorithm, return the corresponding
40 * id if it's supported, or a number < 0 otherwise. */
41int cbfs_parse_hash_algo(const char *name);
42
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -080043/* Given a pointer, serialize the header from host-native byte format
44 * to cbfs format, i.e. big-endian. */
45void cbfs_put_header(void *dest, const struct cbfs_header *header);
Alexandru Gagniucc1d1fd82014-02-05 01:10:08 -060046/* Or deserialize into host-native format */
Sol Boucher0e539312015-03-05 15:38:03 -080047void cbfs_get_header(struct cbfs_header *header, void *src);
Ronald G. Minnichb5adeee2014-01-06 08:38:15 -080048
Sol Boucher67a0a862015-03-18 12:36:27 -070049/* Populates a CBFS with a single empty entry filling all available space
50 * (entries_size bytes). If image's header field is already present, its
51 * contents will be used to place an empty entry of the requested length at the
52 * appropriate position in the existing buffer; otherwise, if not has_header,
53 * the first entries_size bytes of buffer will be filled exclusively with the
54 * single empty entry (and no CBFS master header).
55 * Returns 0 on success, otherwise nonzero. */
56int cbfs_image_create(struct cbfs_image *image, size_t entries_size);
57
Hung-Te Linf56c73f2013-01-29 09:45:12 +080058/* Creates an empty CBFS image by given size, and description to its content
Sol Bouchere3260a02015-03-25 13:40:08 -070059 * (bootblock, align, header location, starting offset of CBFS entries).
Hung-Te Linf56c73f2013-01-29 09:45:12 +080060 * The output image will contain a valid cbfs_header, with one cbfs_file
61 * entry with type CBFS_COMPONENT_NULL, with max available size.
Sol Boucher67a0a862015-03-18 12:36:27 -070062 * Only call this if you want a legacy CBFS with a master header.
63 * Returns 0 on success, otherwise nonzero. */
64int cbfs_legacy_image_create(struct cbfs_image *image,
65 uint32_t arch,
66 uint32_t align,
67 struct buffer *bootblock,
68 uint32_t bootblock_offset,
69 uint32_t header_offset,
70 uint32_t entries_offset);
Hung-Te Linf56c73f2013-01-29 09:45:12 +080071
Sol Bouchere3260a02015-03-25 13:40:08 -070072/* Constructs a cbfs_image from a buffer. The resulting image contains a shallow
73 * copy of the buffer; releasing either one is the legal way to clean up after
74 * both of them at once. Always produces a cbfs_image, but...
75 * Returns 0 if it contains a valid CBFS, non-zero if it's unrecognized data. */
76int cbfs_image_from_buffer(struct cbfs_image *out, struct buffer *in,
77 uint32_t offset);
Hung-Te Lineab2c812013-01-29 01:56:17 +080078
Sol Boucher67a0a862015-03-18 12:36:27 -070079/* Create a duplicate CBFS image. Returns 0 on success, otherwise non-zero.
80 * Will not succeed on new-style images without a master header. */
Vadim Bendebury5e273a42014-12-23 19:26:54 -080081int cbfs_copy_instance(struct cbfs_image *image, size_t copy_offset,
82 size_t copy_size);
83
Hung-Te Lineab2c812013-01-29 01:56:17 +080084/* Releases the CBFS image. Returns 0 on success, otherwise non-zero. */
85int cbfs_image_delete(struct cbfs_image *image);
86
Hung-Te Lin0f8af712013-01-29 02:29:49 +080087/* Returns a pointer to entry by name, or NULL if name is not found. */
88struct cbfs_file *cbfs_get_entry(struct cbfs_image *image, const char *name);
89
90/* Exports an entry to external file.
91 * Returns 0 on success, otherwise (ex, not found) non-zero. */
92int cbfs_export_entry(struct cbfs_image *image, const char *entry_name,
93 const char *filename);
94
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,
Patrick Georgif5252f32015-08-25 22:27:57 +0200100 uint32_t content_offset, struct cbfs_file *header);
Hung-Te Lin5f3eb262013-01-29 10:24:00 +0800101
Hung-Te Linc03d9b02013-01-29 02:38:40 +0800102/* Removes an entry from CBFS image. Returns 0 on success, otherwise non-zero. */
103int cbfs_remove_entry(struct cbfs_image *image, const char *name);
104
Patrick Georgi57edf162015-08-12 09:20:11 +0200105/* Create a new cbfs file header structure to work with.
106 Returns newly allocated memory that the caller needs to free after use. */
107struct cbfs_file *cbfs_create_file_header(int type, size_t len,
108 const char *name);
109
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800110/* Initializes a new empty (type = NULL) entry with size and name in CBFS image.
111 * Returns 0 on success, otherwise (ex, not found) non-zero. */
Patrick Georgiedf25d92015-08-12 09:12:06 +0200112int cbfs_create_empty_entry(struct cbfs_file *entry, int type,
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800113 size_t len, const char *name);
114
Hung-Te Line4ea2ca2013-03-19 12:24:43 +0800115/* Finds a location to put given content by specified criteria:
116 * "page_size" limits the content to fit on same memory page, and
117 * "align" specifies starting address alignment.
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800118 * Returns a valid offset, or -1 on failure. */
Aaron Durbind7339412015-09-15 12:50:14 -0500119int32_t cbfs_locate_entry(struct cbfs_image *image, size_t size,
120 size_t page_size, size_t align, size_t metadata_size);
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800121
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800122/* Callback function used by cbfs_walk.
123 * Returns 0 on success, or non-zero to stop further iteration. */
124typedef int (*cbfs_entry_callback)(struct cbfs_image *image,
125 struct cbfs_file *file,
126 void *arg);
127
128/* Iterates through all entries in CBFS image, and invoke with callback.
129 * Stops if callback returns non-zero values.
130 * Returns number of entries invoked. */
131int cbfs_walk(struct cbfs_image *image, cbfs_entry_callback callback, void *arg);
132
Hung-Te Lineab2c812013-01-29 01:56:17 +0800133/* Primitive CBFS utilities */
134
135/* Returns a pointer to the only valid CBFS header in give buffer, otherwise
136 * NULL (including when multiple headers were found). If there is a X86 ROM
137 * style signature (pointer at 0xfffffffc) found in ROM, it will be selected as
138 * the only header.*/
Vadim Bendebury458a12e2014-12-23 15:10:12 -0800139struct cbfs_header *cbfs_find_header(char *data, size_t size,
140 uint32_t forced_offset);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800141
142/* Returns the first cbfs_file entry in CBFS image by CBFS header (no matter if
143 * the entry has valid content or not), otherwise NULL. */
144struct cbfs_file *cbfs_find_first_entry(struct cbfs_image *image);
145
146/* Returns next cbfs_file entry (no matter if its content is valid or not), or
147 * NULL on failure. */
148struct cbfs_file *cbfs_find_next_entry(struct cbfs_image *image,
149 struct cbfs_file *entry);
150
151/* Returns ROM address (offset) of entry.
152 * This is different from entry->offset (pointer to content). */
153uint32_t cbfs_get_entry_addr(struct cbfs_image *image, struct cbfs_file *entry);
154
Sol Boucher67a0a862015-03-18 12:36:27 -0700155/* Returns 1 if valid new-format CBFS (without a master header), otherwise 0. */
156int cbfs_is_valid_cbfs(struct cbfs_image *image);
157
158/* Returns 1 if valid legacy CBFS (with a master header), otherwise 0. */
159int cbfs_is_legacy_cbfs(struct cbfs_image *image);
160
Hung-Te Lineab2c812013-01-29 01:56:17 +0800161/* Returns 1 if entry has valid data (by checking magic number), otherwise 0. */
Hung-Te Lin408aefd2013-02-09 10:38:55 +0800162int cbfs_is_valid_entry(struct cbfs_image *image, struct cbfs_file *entry);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800163
Hung-Te Lin3bb035b2013-01-29 02:15:49 +0800164/* Print CBFS component information. */
165int cbfs_print_directory(struct cbfs_image *image);
166int cbfs_print_header_info(struct cbfs_image *image);
167int cbfs_print_entry_info(struct cbfs_image *image, struct cbfs_file *entry,
168 void *arg);
169
Hung-Te Lin215d1d72013-01-29 03:46:02 +0800170/* Merge empty entries starting from given entry.
171 * Returns 0 on success, otherwise non-zero. */
172int cbfs_merge_empty_entry(struct cbfs_image *image, struct cbfs_file *entry,
173 void *arg);
174
Patrick Georgi11ee08f2015-08-11 15:10:02 +0200175/* Returns the size of a cbfs file header with no extensions */
176size_t cbfs_calculate_file_header_size(const char *name);
Patrick Georgi2c615062015-07-15 20:49:00 +0200177
178/* Given a cbfs_file, return the first file attribute, or NULL. */
179struct cbfs_file_attribute *cbfs_file_first_attr(struct cbfs_file *file);
180
181/* Given a cbfs_file and a cbfs_file_attribute, return the attribute that
182 * follows it, or NULL. */
183struct cbfs_file_attribute *cbfs_file_next_attr(struct cbfs_file *file,
184 struct cbfs_file_attribute *attr);
185
186/* Adds to header a new extended attribute tagged 'tag', sized 'size'.
187 * Returns pointer to the new attribute, or NULL on error. */
188struct cbfs_file_attribute *cbfs_add_file_attr(struct cbfs_file *header,
189 uint32_t tag,
190 uint32_t size);
Patrick Georgi89f20342015-10-01 15:54:04 +0200191
192/* Adds an extended attribute to header, containing a hash of buffer's data of
193 * the type specified by hash_type.
194 * Returns 0 on success, -1 on error. */
195int cbfs_add_file_hash(struct cbfs_file *header, struct buffer *buffer,
196 enum vb2_hash_algorithm hash_type);
Hung-Te Lineab2c812013-01-29 01:56:17 +0800197#endif