blob: f6309a3e3060143ce10ddca8ce4b83faee826ee5 [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Peter Stuge483b7bb2009-04-14 07:40:01 +00002
3#ifndef _CBFS_H_
4#define _CBFS_H_
5
Julius Werner1e37c9c2019-12-11 17:09:39 -08006#include <cbmem.h>
Julius Werner7778cf22021-01-05 18:54:19 -08007#include <commonlib/bsd/cbfs_mdata.h>
Aaron Durbin295d58b2015-12-15 13:33:51 -06008#include <commonlib/cbfs.h>
Julius Werner9b1f3cc2020-12-30 17:30:12 -08009#include <commonlib/mem_pool.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050010#include <program_loading.h>
Julius Werner1e37c9c2019-12-11 17:09:39 -080011#include <types.h>
Julius Wernerfdabf3f2020-05-06 17:06:35 -070012#include <vb2_sha.h>
Daisuke Nojirie1298df2014-12-01 15:30:01 -080013
Aaron Durbin899d13d2015-05-15 23:39:23 -050014
Julius Werner11075fc2020-12-29 17:51:04 -080015/**********************************************************************************************
16 * CBFS FILE ACCESS APIs *
17 **********************************************************************************************/
Julius Werner723e3b12020-12-29 17:33:30 -080018
Julius Werner7778cf22021-01-05 18:54:19 -080019/*
20 * These are the APIs used to access files in CBFS. In order to keep the calls simple and free
21 * of clutter in the common cases, but still offer all advanced functionality when needed, there
22 * are many different variations that are implemented by wrapping the same underlying API with
23 * static inlines. All accessors have in common that they look up files by name, and will
24 * transparently decompress files that are compressed.
25 *
26 * There are three main flavors of CBFS accessors:
27 *
28 * size_t cbfs_load(char *name, void *buf, size_t size): Loads the contents of a CBFS file into
29 * a buffer provided by the caller (by providing pointer and size to it). Will return the
30 * amount of bytes loaded on success, or 0 on error.
31 *
32 * void *cbfs_map(char *name, size_t *size_out): Maps a file into the address space. If the file
33 * is not compressed and the platform supports direct memory-mapping for the boot medium,
34 * a pointer to the platform mapping is returned directly. In all other cases, memory will
35 * be allocated from the cbfs_cache and file data will be loaded into there. Returns a
36 * pointer to the mapping on success, or NULL on error. If an optional size_out parameter
37 * is passed in, it will be filled out with the size of the mapped data. Caller should call
38 * cbfs_unmap() after it is done using the mapping to free up the cbfs_cache if possible.
39 *
40 * void *cbfs_alloc(char *name, cbfs_allocator_t allocator, void *arg, size_t *size_out): Loads
41 * file data into memory provided by a custom allocator function that the caller passes in.
42 * The caller may pass an argument that is passed through verbatim to the allocator.
43 * Returns the pointer returned by the allocator (where the file data was loaded to) on
44 * success, or NULL on error. If an optional size_out parameter is passed in, it will be
45 * filled out with the size of the loaded data.
46 *
47 * void *cbfs_cbmem_alloc(char *name, uint32_t cbmem_id, size_t *size_out): Wrapper around
48 * cbfs_alloc() that will provide an allocator function for allocating space for the file
49 * data in CBMEM, with the provided CBMEM ID.
50 *
51 * All of these flavors have variations with any of the following optional parameters added:
52 *
53 * ..._ro_...: Will force looking up the CBFS file in the read-only CBFS (the "COREBOOT" FMAP
54 * section), even when running in an RW stage from one of the RW CBFSs. Only relevant if
55 * CONFIG(VBOOT) is set.
56 *
57 * ..._type_...: May pass in an extra enum cbfs_type *type parameter. If the value it points to
58 * is CBFS_TYPE_QUERY, it will be replaced with the actual CBFS type of the found file. If
59 * it is anything else, the type will be compared with the actually found type, and the
60 * operation will fail if they don't match.
61 */
Julius Werner11075fc2020-12-29 17:51:04 -080062
Julius Werner7778cf22021-01-05 18:54:19 -080063/*
64 * An allocator function for passing to cbfs_alloc(). Takes the argument that was originally
65 * passed to cbfs_alloc(), the size of the file to be loaded, and a pointer to the already
66 * loaded and verified file metadata (for rare cases where the allocator needs to check custom
67 * attributes). Must return a pointer to space of the requested size where the file data should
68 * be loaded, or NULL to make the operation fail.
69 */
Julius Werner4676ec52021-03-10 16:52:14 -080070typedef void *(*cbfs_allocator_t)(void *arg, size_t size, const union cbfs_mdata *mdata);
Julius Werner7778cf22021-01-05 18:54:19 -080071
72static inline size_t cbfs_load(const char *name, void *buf, size_t size);
73static inline size_t cbfs_ro_load(const char *name, void *buf, size_t size);
74static inline size_t cbfs_type_load(const char *name, void *buf, size_t size,
75 enum cbfs_type *type);
76static inline size_t cbfs_ro_type_load(const char *name, void *buf, size_t size,
77 enum cbfs_type *type);
78
79static inline void *cbfs_map(const char *name, size_t *size_out);
Julius Werner11075fc2020-12-29 17:51:04 -080080static inline void *cbfs_ro_map(const char *name, size_t *size_out);
Julius Werner7778cf22021-01-05 18:54:19 -080081static inline void *cbfs_type_map(const char *name, size_t *size_out, enum cbfs_type *type);
82static inline void *cbfs_ro_type_map(const char *name, size_t *size_out, enum cbfs_type *type);
83
84static inline void *cbfs_alloc(const char *name, cbfs_allocator_t allocator, void *arg,
85 size_t *size_out);
86static inline void *cbfs_ro_alloc(const char *name, cbfs_allocator_t allocator, void *arg,
87 size_t *size_out);
88static inline void *cbfs_type_alloc(const char *name, cbfs_allocator_t allocator, void *arg,
89 size_t *size_out, enum cbfs_type *type);
90static inline void *cbfs_ro_type_alloc(const char *name, cbfs_allocator_t allocator, void *arg,
91 size_t *size_out, enum cbfs_type *type);
92
93static inline void *cbfs_cbmem_alloc(const char *name, uint32_t cbmem_id, size_t *size_out);
94static inline void *cbfs_ro_cbmem_alloc(const char *name, uint32_t cbmem_id, size_t *size_out);
95static inline void *cbfs_type_cbmem_alloc(const char *name, uint32_t cbmem_id, size_t *size_out,
96 enum cbfs_type *type);
97static inline void *cbfs_ro_type_cbmem_alloc(const char *name, uint32_t cbmem_id,
98 size_t *size_out, enum cbfs_type *type);
Julius Werner11075fc2020-12-29 17:51:04 -080099
Raul E Rangel4cfb8622021-11-01 13:40:14 -0600100/*
101 * Starts the processes of preloading a file into RAM.
102 *
103 * This method depends on COOP_MULTITASKING to parallelize the loading. This method is only
104 * effective when the underlying rdev supports DMA operations.
105 *
106 * When `cbfs_load`, `cbfs_alloc`, or `cbfs_map` are called after a preload has been started,
107 * they will wait for the preload to complete (if it hasn't already) and then perform
108 * verification and/or decompression.
109 *
110 * This method does not have a return value because the system should boot regardless if this
111 * method succeeds or fails.
112 */
113void cbfs_preload(const char *name);
114
Julius Werner723e3b12020-12-29 17:33:30 -0800115/* Removes a previously allocated CBFS mapping. Should try to unmap mappings in strict LIFO
116 order where possible, since mapping backends often don't support more complicated cases. */
Julius Werner9b1f3cc2020-12-30 17:30:12 -0800117void cbfs_unmap(void *mapping);
Julius Werner723e3b12020-12-29 17:33:30 -0800118
Aaron Durbin899d13d2015-05-15 23:39:23 -0500119/* Load stage into memory filling in prog. Return 0 on success. < 0 on error. */
120int cbfs_prog_stage_load(struct prog *prog);
121
Julius Werner9b1f3cc2020-12-30 17:30:12 -0800122
Julius Werner11075fc2020-12-29 17:51:04 -0800123/**********************************************************************************************
124 * BOOT DEVICE HELPER APIs *
125 **********************************************************************************************/
126
Julius Werner0d9072b2020-03-05 12:51:08 -0800127/*
Julius Werner9b1f3cc2020-12-30 17:30:12 -0800128 * The shared memory pool for backing mapped CBFS files, and other CBFS allocation needs.
Julius Werner9b1f3cc2020-12-30 17:30:12 -0800129 */
Julius Werner9b1f3cc2020-12-30 17:30:12 -0800130extern struct mem_pool cbfs_cache;
131
132/*
Julius Werner723e3b12020-12-29 17:33:30 -0800133 * Data structure that represents "a" CBFS boot device, with optional metadata cache. Generally
134 * we only have one of these, or two (RO and RW) when CONFIG(VBOOT) is set. The region device
135 * stored here must always be a subregion of boot_device_ro().
Julius Werner0d9072b2020-03-05 12:51:08 -0800136 */
Julius Werner1e37c9c2019-12-11 17:09:39 -0800137struct cbfs_boot_device {
138 struct region_device rdev;
139 void *mcache;
140 size_t mcache_size;
141};
142
143/* Helper to fill out |mcache| and |mcache_size| in a cbfs_boot_device. */
144void cbfs_boot_device_find_mcache(struct cbfs_boot_device *cbd, uint32_t id);
145
146/*
Julius Werner723e3b12020-12-29 17:33:30 -0800147 * Retrieves the currently active CBFS boot device. If |force_ro| is set, will always return the
148 * read-only CBFS instead (this only makes a difference when CONFIG(VBOOT) is enabled). May
149 * perform certain CBFS initialization tasks. Returns NULL on error (e.g. boot device IO error).
Julius Werner1e37c9c2019-12-11 17:09:39 -0800150 */
151const struct cbfs_boot_device *cbfs_get_boot_device(bool force_ro);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500152
Julius Wernerfdabf3f2020-05-06 17:06:35 -0700153/*
Julius Werner723e3b12020-12-29 17:33:30 -0800154 * Builds the mcache (if |cbd->mcache| is set) and verifies |metadata_hash| (if it is not NULL).
155 * If CB_CBFS_CACHE_FULL is returned, the mcache is incomplete but still valid and the metadata
156 * hash was still verified. Should be called once per *boot* (not once per stage) before the
157 * first CBFS access.
Julius Wernerfdabf3f2020-05-06 17:06:35 -0700158 */
159cb_err_t cbfs_init_boot_device(const struct cbfs_boot_device *cbd,
160 struct vb2_hash *metadata_hash);
161
Julius Werner11075fc2020-12-29 17:51:04 -0800162
163/**********************************************************************************************
164 * LEGACY APIs, TO BE DEPRECATED/REPLACED *
165 **********************************************************************************************/
166
167/* Locate file by name and optional type. Return 0 on success. < 0 on error. */
168int cbfs_boot_locate(struct cbfsf *fh, const char *name, uint32_t *type);
169/* Locate file in a specific region of fmap. Return 0 on success. < 0 on error*/
170int cbfs_locate_file_in_region(struct cbfsf *fh, const char *region_name,
171 const char *name, uint32_t *type);
172
Julius Werner11075fc2020-12-29 17:51:04 -0800173/**********************************************************************************************
174 * INTERNAL HELPERS FOR INLINES, DO NOT USE. *
175 **********************************************************************************************/
Julius Werner7778cf22021-01-05 18:54:19 -0800176void *_cbfs_alloc(const char *name, cbfs_allocator_t allocator, void *arg,
177 size_t *size_out, bool force_ro, enum cbfs_type *type);
Julius Werner11075fc2020-12-29 17:51:04 -0800178
Julius Werner7778cf22021-01-05 18:54:19 -0800179struct _cbfs_default_allocator_arg {
180 void *buf;
181 size_t buf_size;
182};
Julius Werner4676ec52021-03-10 16:52:14 -0800183void *_cbfs_default_allocator(void *arg, size_t size, const union cbfs_mdata *unused);
Julius Werner7778cf22021-01-05 18:54:19 -0800184
Julius Werner4676ec52021-03-10 16:52:14 -0800185void *_cbfs_cbmem_allocator(void *arg, size_t size, const union cbfs_mdata *unused);
Julius Werner11075fc2020-12-29 17:51:04 -0800186
187/**********************************************************************************************
188 * INLINE IMPLEMENTATIONS *
189 **********************************************************************************************/
Julius Werner7778cf22021-01-05 18:54:19 -0800190static inline void *cbfs_alloc(const char *name, cbfs_allocator_t allocator, void *arg,
191 size_t *size_out)
192{
193 return cbfs_type_alloc(name, allocator, arg, size_out, NULL);
194}
195
196static inline void *cbfs_ro_alloc(const char *name, cbfs_allocator_t allocator, void *arg,
197 size_t *size_out)
198{
199 return cbfs_ro_type_alloc(name, allocator, arg, size_out, NULL);
200}
201
202static inline void *cbfs_type_alloc(const char *name, cbfs_allocator_t allocator, void *arg,
203 size_t *size_out, enum cbfs_type *type)
204{
205 return _cbfs_alloc(name, allocator, arg, size_out, false, type);
206}
207
208static inline void *cbfs_ro_type_alloc(const char *name, cbfs_allocator_t allocator, void *arg,
209 size_t *size_out, enum cbfs_type *type)
210{
211 return _cbfs_alloc(name, allocator, arg, size_out, true, type);
212}
213
Julius Werner11075fc2020-12-29 17:51:04 -0800214static inline void *cbfs_map(const char *name, size_t *size_out)
215{
Julius Werner7778cf22021-01-05 18:54:19 -0800216 return cbfs_type_map(name, size_out, NULL);
Julius Werner11075fc2020-12-29 17:51:04 -0800217}
218
219static inline void *cbfs_ro_map(const char *name, size_t *size_out)
220{
Julius Werner7778cf22021-01-05 18:54:19 -0800221 return cbfs_ro_type_map(name, size_out, NULL);
Julius Werner11075fc2020-12-29 17:51:04 -0800222}
223
Julius Werner7778cf22021-01-05 18:54:19 -0800224static inline void *cbfs_type_map(const char *name, size_t *size_out, enum cbfs_type *type)
Julius Werner11075fc2020-12-29 17:51:04 -0800225{
Julius Werner7778cf22021-01-05 18:54:19 -0800226 return cbfs_type_alloc(name, NULL, NULL, size_out, type);
Julius Werner11075fc2020-12-29 17:51:04 -0800227}
228
Julius Werner7778cf22021-01-05 18:54:19 -0800229static inline void *cbfs_ro_type_map(const char *name, size_t *size_out, enum cbfs_type *type)
Julius Werner11075fc2020-12-29 17:51:04 -0800230{
Julius Werner7778cf22021-01-05 18:54:19 -0800231 return cbfs_ro_type_alloc(name, NULL, NULL, size_out, type);
232}
233
234static inline size_t _cbfs_load(const char *name, void *buf, size_t size, bool force_ro,
235 enum cbfs_type *type)
236{
237 struct _cbfs_default_allocator_arg arg = { .buf = buf, .buf_size = size };
238 if (_cbfs_alloc(name, _cbfs_default_allocator, &arg, &size, force_ro, type))
239 return size;
240 else
241 return 0;
242}
243
244static inline size_t cbfs_load(const char *name, void *buf, size_t size)
245{
246 return cbfs_type_load(name, buf, size, NULL);
247}
248
249static inline size_t cbfs_type_load(const char *name, void *buf, size_t size,
250 enum cbfs_type *type)
251{
252 return _cbfs_load(name, buf, size, false, type);
253}
254
255static inline size_t cbfs_ro_load(const char *name, void *buf, size_t size)
256{
257 return cbfs_ro_type_load(name, buf, size, NULL);
258}
259
260static inline size_t cbfs_ro_type_load(const char *name, void *buf, size_t size,
261 enum cbfs_type *type)
262{
263 return _cbfs_load(name, buf, size, true, type);
264}
265
266static inline void *cbfs_cbmem_alloc(const char *name, uint32_t cbmem_id, size_t *size_out)
267{
268 return cbfs_type_cbmem_alloc(name, cbmem_id, size_out, NULL);
269}
270
271static inline void *cbfs_ro_cbmem_alloc(const char *name, uint32_t cbmem_id, size_t *size_out)
272{
273 return cbfs_ro_type_cbmem_alloc(name, cbmem_id, size_out, NULL);
274}
275
276static inline void *cbfs_type_cbmem_alloc(const char *name, uint32_t cbmem_id, size_t *size_out,
277 enum cbfs_type *type)
278{
279 return cbfs_type_alloc(name, _cbfs_cbmem_allocator, (void *)(uintptr_t)cbmem_id,
280 size_out, type);
281}
282
283static inline void *cbfs_ro_type_cbmem_alloc(const char *name, uint32_t cbmem_id,
284 size_t *size_out, enum cbfs_type *type)
285{
286 return cbfs_ro_type_alloc(name, _cbfs_cbmem_allocator, (void *)(uintptr_t)cbmem_id,
287 size_out, type);
Julius Werner11075fc2020-12-29 17:51:04 -0800288}
289
Peter Stuge483b7bb2009-04-14 07:40:01 +0000290#endif