blob: e5f232ca2138ef7cf477b47fdcce58638adcae95 [file] [log] [blame]
Angel Pons118a9c72020-04-02 23:48:34 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Peter Stuge483b7bb2009-04-14 07:40:01 +00002
Aaron Durbin899d13d2015-05-15 23:39:23 -05003#include <assert.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -05004#include <boot_device.h>
5#include <cbfs.h>
Julius Werner1e37c9c2019-12-11 17:09:39 -08006#include <cbmem.h>
Julius Werner57d4bc62021-11-15 10:13:37 -08007#include <commonlib/bsd/cbfs_private.h>
Julius Werner98eeb962019-12-11 15:47:42 -08008#include <commonlib/bsd/compression.h>
Bill XIEc79e96b2019-08-22 20:28:36 +08009#include <console/console.h>
Bill XIEc79e96b2019-08-22 20:28:36 +080010#include <fmap.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050011#include <lib.h>
Raul E Rangel4cfb8622021-11-01 13:40:14 -060012#include <list.h>
Julius Wernerfdabf3f2020-05-06 17:06:35 -070013#include <metadata_hash.h>
Bill XIEc79e96b2019-08-22 20:28:36 +080014#include <security/tpm/tspi/crtm.h>
Jakub Czapiga967a76b2022-08-19 12:25:27 +020015#include <security/vboot/vboot_common.h>
Julius Wernerd96ca242022-08-08 18:08:35 -070016#include <security/vboot/misc.h>
Bill XIEc79e96b2019-08-22 20:28:36 +080017#include <stdlib.h>
18#include <string.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050019#include <symbols.h>
Raul E Rangel4cfb8622021-11-01 13:40:14 -060020#include <thread.h>
Julius Werner09f29212015-09-29 13:51:35 -070021#include <timestamp.h>
Patrick Georgi58a150a2016-05-02 17:22:29 +080022
Jeremy Compostella226f51c2023-10-12 09:40:12 -070023#if ENV_X86 && (ENV_POSTCAR || ENV_SMM)
24struct mem_pool cbfs_cache = MEM_POOL_INIT(NULL, 0, 0);
25#elif CONFIG(POSTRAM_CBFS_CACHE_IN_BSS) && ENV_RAMSTAGE
26static u8 cache_buffer[CONFIG_RAMSTAGE_CBFS_CACHE_SIZE];
27struct mem_pool cbfs_cache =
28 MEM_POOL_INIT(cache_buffer, sizeof(cache_buffer), CONFIG_CBFS_CACHE_ALIGN);
29#else
Raul E Rangel5ac82dc2021-07-23 16:43:18 -060030struct mem_pool cbfs_cache =
Raul E Rangel6938f352021-07-23 16:43:18 -060031 MEM_POOL_INIT(_cbfs_cache, REGION_SIZE(cbfs_cache), CONFIG_CBFS_CACHE_ALIGN);
Jeremy Compostella226f51c2023-10-12 09:40:12 -070032#endif
Julius Werner9b1f3cc2020-12-30 17:30:12 -080033
34static void switch_to_postram_cache(int unused)
35{
36 if (_preram_cbfs_cache != _postram_cbfs_cache)
Raul E Rangel5ac82dc2021-07-23 16:43:18 -060037 mem_pool_init(&cbfs_cache, _postram_cbfs_cache, REGION_SIZE(postram_cbfs_cache),
Raul E Rangel6938f352021-07-23 16:43:18 -060038 CONFIG_CBFS_CACHE_ALIGN);
Julius Werner9b1f3cc2020-12-30 17:30:12 -080039}
Kyösti Mälkkifa3bc042022-03-31 07:40:10 +030040CBMEM_CREATION_HOOK(switch_to_postram_cache);
Julius Werner9b1f3cc2020-12-30 17:30:12 -080041
Julius Werner69cc5572022-03-04 17:49:56 -080042enum cb_err _cbfs_boot_lookup(const char *name, bool force_ro,
43 union cbfs_mdata *mdata, struct region_device *rdev)
Julius Werner1e37c9c2019-12-11 17:09:39 -080044{
Julius Werner0d9072b2020-03-05 12:51:08 -080045 const struct cbfs_boot_device *cbd = cbfs_get_boot_device(force_ro);
46 if (!cbd)
47 return CB_ERR;
48
49 size_t data_offset;
Julius Werner69cc5572022-03-04 17:49:56 -080050 enum cb_err err = CB_CBFS_CACHE_FULL;
Julius Werner34cf0732020-12-08 14:21:43 -080051 if (!CONFIG(NO_CBFS_MCACHE) && !ENV_SMM && cbd->mcache_size)
Julius Werner1e37c9c2019-12-11 17:09:39 -080052 err = cbfs_mcache_lookup(cbd->mcache, cbd->mcache_size,
Julius Werner723e3b12020-12-29 17:33:30 -080053 name, mdata, &data_offset);
Julius Wernerfdabf3f2020-05-06 17:06:35 -070054 if (err == CB_CBFS_CACHE_FULL) {
55 struct vb2_hash *metadata_hash = NULL;
56 if (CONFIG(TOCTOU_SAFETY)) {
57 if (ENV_SMM) /* Cannot provide TOCTOU safety for SMM */
58 dead_code();
Julius Werner34cf0732020-12-08 14:21:43 -080059 if (!cbd->mcache_size)
60 die("Cannot access CBFS TOCTOU-safely in " ENV_STRING " before CBMEM init!\n");
Julius Werner723e3b12020-12-29 17:33:30 -080061 /* We can only reach this for the RW CBFS -- an mcache overflow in the
62 RO CBFS would have been caught when building the mcache in cbfs_get
63 boot_device(). (Note that TOCTOU_SAFETY implies !NO_CBFS_MCACHE.) */
Julius Wernerfdabf3f2020-05-06 17:06:35 -070064 assert(cbd == vboot_get_cbfs_boot_device());
Jakub Czapiga967a76b2022-08-19 12:25:27 +020065 if (!CONFIG(VBOOT)
66 || vb2api_get_metadata_hash(vboot_get_context(), &metadata_hash)
67 != VB2_SUCCESS)
68 die("Failed to get RW metadata hash");
Julius Wernerfdabf3f2020-05-06 17:06:35 -070069 }
Julius Werner723e3b12020-12-29 17:33:30 -080070 err = cbfs_lookup(&cbd->rdev, name, mdata, &data_offset, metadata_hash);
Julius Wernerfdabf3f2020-05-06 17:06:35 -070071 }
Julius Werner0d9072b2020-03-05 12:51:08 -080072
Julius Werner723e3b12020-12-29 17:33:30 -080073 if (CONFIG(VBOOT_ENABLE_CBFS_FALLBACK) && !force_ro && err == CB_CBFS_NOT_FOUND) {
74 printk(BIOS_INFO, "CBFS: Fall back to RO region for %s\n", name);
Julius Werner57d4bc62021-11-15 10:13:37 -080075 return _cbfs_boot_lookup(name, true, mdata, rdev);
Julius Werner0d9072b2020-03-05 12:51:08 -080076 }
Julius Werner0247fcf2020-12-03 12:41:00 -080077 if (err) {
78 if (err == CB_CBFS_NOT_FOUND)
79 printk(BIOS_WARNING, "CBFS: '%s' not found.\n", name);
80 else if (err == CB_CBFS_HASH_MISMATCH)
81 printk(BIOS_ERR, "CBFS ERROR: metadata hash mismatch!\n");
82 else
Julius Werner723e3b12020-12-29 17:33:30 -080083 printk(BIOS_ERR, "CBFS ERROR: error %d when looking up '%s'\n",
Julius Werner0247fcf2020-12-03 12:41:00 -080084 err, name);
Julius Werner0d9072b2020-03-05 12:51:08 -080085 return err;
Julius Werner0247fcf2020-12-03 12:41:00 -080086 }
Julius Werner0d9072b2020-03-05 12:51:08 -080087
88 if (rdev_chain(rdev, &cbd->rdev, data_offset, be32toh(mdata->h.len)))
89 return CB_ERR;
90
Julius Werner0d9072b2020-03-05 12:51:08 -080091 return CB_SUCCESS;
Julius Werner1e37c9c2019-12-11 17:09:39 -080092}
93
Julius Werner9b1f3cc2020-12-30 17:30:12 -080094void cbfs_unmap(void *mapping)
Julius Werner834b3ec2020-03-04 16:52:08 -080095{
Julius Werner9b1f3cc2020-12-30 17:30:12 -080096 /*
97 * This is save to call with mappings that weren't allocated in the cache (e.g. x86
98 * direct mappings) -- mem_pool_free() just does nothing for addresses it doesn't
99 * recognize. This hardcodes the assumption that if platforms implement an rdev_mmap()
100 * that requires a free() for the boot_device, they need to implement it via the
101 * cbfs_cache mem_pool.
102 */
Raul E Rangel3d7b9842021-10-08 13:10:38 -0600103 mem_pool_free(&cbfs_cache, mapping);
Julius Werner834b3ec2020-03-04 16:52:08 -0800104}
105
Aaron Durbina85febc2020-05-15 15:09:10 -0600106static inline bool fsps_env(void)
107{
108 /* FSP-S is assumed to be loaded in ramstage. */
109 if (ENV_RAMSTAGE)
110 return true;
111 return false;
112}
113
Aaron Durbinecbfa992020-05-15 17:01:58 -0600114static inline bool fspm_env(void)
115{
116 /* FSP-M is assumed to be loaded in romstage. */
Kyösti Mälkki11cac782022-04-07 07:16:48 +0300117 if (ENV_RAMINIT)
Aaron Durbinecbfa992020-05-15 17:01:58 -0600118 return true;
119 return false;
120}
121
Aaron Durbina121f952020-05-26 15:48:10 -0600122static inline bool cbfs_lz4_enabled(void)
123{
Aaron Durbina85febc2020-05-15 15:09:10 -0600124 if (fsps_env() && CONFIG(FSP_COMPRESS_FSP_S_LZ4))
125 return true;
Aaron Durbinecbfa992020-05-15 17:01:58 -0600126 if (fspm_env() && CONFIG(FSP_COMPRESS_FSP_M_LZ4))
127 return true;
Aaron Durbina85febc2020-05-15 15:09:10 -0600128
Aaron Durbina121f952020-05-26 15:48:10 -0600129 if ((ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE) && !CONFIG(COMPRESS_PRERAM_STAGES))
130 return false;
131
Julius Werner9b1f3cc2020-12-30 17:30:12 -0800132 if (ENV_SMM)
133 return false;
134
Aaron Durbina121f952020-05-26 15:48:10 -0600135 return true;
136}
137
138static inline bool cbfs_lzma_enabled(void)
139{
Aaron Durbina85febc2020-05-15 15:09:10 -0600140 if (fsps_env() && CONFIG(FSP_COMPRESS_FSP_S_LZMA))
141 return true;
Aaron Durbinecbfa992020-05-15 17:01:58 -0600142 if (fspm_env() && CONFIG(FSP_COMPRESS_FSP_M_LZMA))
143 return true;
Aaron Durbina121f952020-05-26 15:48:10 -0600144 /* We assume here romstage and postcar are never compressed. */
145 if (ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE)
146 return false;
147 if (ENV_ROMSTAGE && CONFIG(POSTCAR_STAGE))
148 return false;
Martin Roth40729a52023-01-04 17:26:21 -0700149 if ((ENV_ROMSTAGE || ENV_POSTCAR) && !CONFIG(COMPRESS_RAMSTAGE_LZMA))
Aaron Durbina121f952020-05-26 15:48:10 -0600150 return false;
Julius Werner9b1f3cc2020-12-30 17:30:12 -0800151 if (ENV_SMM)
152 return false;
Aaron Durbina121f952020-05-26 15:48:10 -0600153 return true;
154}
155
Julius Werner05714cc2021-04-15 23:25:44 -0700156static bool cbfs_file_hash_mismatch(const void *buffer, size_t size,
157 const union cbfs_mdata *mdata, bool skip_verification)
Julius Wernerfccf1222021-04-02 15:58:05 -0700158{
Julius Werner7e7cc1a2021-08-11 18:19:23 -0700159 /* Avoid linking hash functions when verification and measurement are disabled. */
160 if (!CONFIG(CBFS_VERIFICATION) && !CONFIG(TPM_MEASURED_BOOT))
Julius Wernerfccf1222021-04-02 15:58:05 -0700161 return false;
162
Julius Werner7e7cc1a2021-08-11 18:19:23 -0700163 const struct vb2_hash *hash = NULL;
164
165 if (CONFIG(CBFS_VERIFICATION) && !skip_verification) {
166 hash = cbfs_file_hash(mdata);
167 if (!hash) {
168 ERROR("'%s' does not have a file hash!\n", mdata->h.filename);
169 return true;
170 }
Jakub Czapiga967a76b2022-08-19 12:25:27 +0200171
172 vb2_error_t rv = vb2_hash_verify(vboot_hwcrypto_allowed(), buffer, size, hash);
173 if (rv != VB2_SUCCESS) {
Julius Werner7e7cc1a2021-08-11 18:19:23 -0700174 ERROR("'%s' file hash mismatch!\n", mdata->h.filename);
Jakub Czapiga967a76b2022-08-19 12:25:27 +0200175 if (CONFIG(VBOOT_CBFS_INTEGRATION) && !vboot_recovery_mode_enabled()
176 && vboot_logic_executed())
177 vboot_fail_and_reboot(vboot_get_context(), VB2_RECOVERY_FW_BODY,
178 rv);
Julius Werner7e7cc1a2021-08-11 18:19:23 -0700179 return true;
180 }
Julius Werner05714cc2021-04-15 23:25:44 -0700181 }
Julius Wernerfccf1222021-04-02 15:58:05 -0700182
Julius Werner7e7cc1a2021-08-11 18:19:23 -0700183 if (CONFIG(TPM_MEASURED_BOOT) && !ENV_SMM) {
184 struct vb2_hash calculated_hash;
185
186 /* No need to re-hash file if we already have it from verification. */
187 if (!hash || hash->algo != TPM_MEASURE_ALGO) {
Julius Wernerd96ca242022-08-08 18:08:35 -0700188 if (vb2_hash_calculate(vboot_hwcrypto_allowed(), buffer, size,
189 TPM_MEASURE_ALGO, &calculated_hash))
190 hash = NULL;
191 else
192 hash = &calculated_hash;
Julius Werner7e7cc1a2021-08-11 18:19:23 -0700193 }
194
Julius Wernerd96ca242022-08-08 18:08:35 -0700195 if (!hash ||
196 tspi_cbfs_measurement(mdata->h.filename, be32toh(mdata->h.type), hash))
Sergii Dmytruk2710df72022-11-10 00:40:51 +0200197 ERROR("failed to measure '%s' into TPM log\n", mdata->h.filename);
Julius Werner7e7cc1a2021-08-11 18:19:23 -0700198 /* We intentionally continue to boot on measurement errors. */
Julius Werner05714cc2021-04-15 23:25:44 -0700199 }
200
201 return false;
Julius Wernerfccf1222021-04-02 15:58:05 -0700202}
203
204static size_t cbfs_load_and_decompress(const struct region_device *rdev, void *buffer,
205 size_t buffer_size, uint32_t compression,
Julius Werner05714cc2021-04-15 23:25:44 -0700206 const union cbfs_mdata *mdata, bool skip_verification)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500207{
Julius Wernereca99af2021-03-10 18:49:37 -0800208 size_t in_size = region_device_sz(rdev);
Julius Wernerfccf1222021-04-02 15:58:05 -0700209 size_t out_size = 0;
Aaron Durbin84f394e2020-05-26 16:16:42 -0600210 void *map;
Julius Werner09f29212015-09-29 13:51:35 -0700211
Julius Werner05714cc2021-04-15 23:25:44 -0700212 DEBUG("Decompressing %zu bytes from '%s' to %p with algo %d\n",
213 in_size, mdata->h.filename, buffer, compression);
Julius Werner7778cf22021-01-05 18:54:19 -0800214
Julius Werner6e303aa2023-05-25 18:26:32 -0700215 if (CONFIG(CBFS_VERIFICATION) && !CONFIG(CBFS_ALLOW_UNVERIFIED_DECOMPRESSION) &&
216 skip_verification && compression != CBFS_COMPRESS_NONE) {
217 ERROR("Refusing to decompress unverified file '%s' with algo %d\n",
218 mdata->h.filename, compression);
219 return 0;
220 }
221
Julius Werner09f29212015-09-29 13:51:35 -0700222 switch (compression) {
223 case CBFS_COMPRESS_NONE:
Julius Wernerf975e552016-08-19 15:43:06 -0700224 if (buffer_size < in_size)
225 return 0;
Julius Wernereca99af2021-03-10 18:49:37 -0800226 if (rdev_readat(rdev, buffer, 0, in_size) != in_size)
Julius Werner09f29212015-09-29 13:51:35 -0700227 return 0;
Julius Werner05714cc2021-04-15 23:25:44 -0700228 if (cbfs_file_hash_mismatch(buffer, in_size, mdata, skip_verification))
Julius Wernerfccf1222021-04-02 15:58:05 -0700229 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700230 return in_size;
231
232 case CBFS_COMPRESS_LZ4:
Aaron Durbina121f952020-05-26 15:48:10 -0600233 if (!cbfs_lz4_enabled())
Julius Werner09f29212015-09-29 13:51:35 -0700234 return 0;
235
Julius Wernereca99af2021-03-10 18:49:37 -0800236 /* cbfs_prog_stage_load() takes care of in-place LZ4 decompression by
Julius Werner723e3b12020-12-29 17:33:30 -0800237 setting up the rdev to be in memory. */
Julius Wernereca99af2021-03-10 18:49:37 -0800238 map = rdev_mmap_full(rdev);
Aaron Durbin84f394e2020-05-26 16:16:42 -0600239 if (map == NULL)
Julius Werner09f29212015-09-29 13:51:35 -0700240 return 0;
241
Julius Werner05714cc2021-04-15 23:25:44 -0700242 if (!cbfs_file_hash_mismatch(map, in_size, mdata, skip_verification)) {
Jakub Czapigaad6157e2022-02-15 11:50:31 +0100243 timestamp_add_now(TS_ULZ4F_START);
Julius Wernerfccf1222021-04-02 15:58:05 -0700244 out_size = ulz4fn(map, in_size, buffer, buffer_size);
Jakub Czapigaad6157e2022-02-15 11:50:31 +0100245 timestamp_add_now(TS_ULZ4F_END);
Julius Wernerfccf1222021-04-02 15:58:05 -0700246 }
Aaron Durbin84f394e2020-05-26 16:16:42 -0600247
248 rdev_munmap(rdev, map);
249
Julius Werner09f29212015-09-29 13:51:35 -0700250 return out_size;
251
252 case CBFS_COMPRESS_LZMA:
Aaron Durbina121f952020-05-26 15:48:10 -0600253 if (!cbfs_lzma_enabled())
Julius Werner09f29212015-09-29 13:51:35 -0700254 return 0;
Julius Wernereca99af2021-03-10 18:49:37 -0800255 map = rdev_mmap_full(rdev);
Julius Werner09f29212015-09-29 13:51:35 -0700256 if (map == NULL)
257 return 0;
258
Julius Werner05714cc2021-04-15 23:25:44 -0700259 if (!cbfs_file_hash_mismatch(map, in_size, mdata, skip_verification)) {
Julius Wernerfccf1222021-04-02 15:58:05 -0700260 /* Note: timestamp not useful for memory-mapped media (x86) */
Jakub Czapigaad6157e2022-02-15 11:50:31 +0100261 timestamp_add_now(TS_ULZMA_START);
Julius Wernerfccf1222021-04-02 15:58:05 -0700262 out_size = ulzman(map, in_size, buffer, buffer_size);
Jakub Czapigaad6157e2022-02-15 11:50:31 +0100263 timestamp_add_now(TS_ULZMA_END);
Julius Wernerfccf1222021-04-02 15:58:05 -0700264 }
Julius Werner09f29212015-09-29 13:51:35 -0700265
266 rdev_munmap(rdev, map);
267
268 return out_size;
269
270 default:
Aaron Durbin899d13d2015-05-15 23:39:23 -0500271 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700272 }
Aaron Durbin899d13d2015-05-15 23:39:23 -0500273}
274
Raul E Rangel4cfb8622021-11-01 13:40:14 -0600275struct cbfs_preload_context {
276 struct region_device rdev;
277 struct thread_handle handle;
278 struct list_node list_node;
279 void *buffer;
280 char name[];
281};
282
283static struct list_node cbfs_preload_context_list;
284
285static struct cbfs_preload_context *alloc_cbfs_preload_context(size_t additional)
286{
287 struct cbfs_preload_context *context;
288 size_t size = sizeof(*context) + additional;
289
290 context = mem_pool_alloc(&cbfs_cache, size);
291
292 if (!context)
293 return NULL;
294
295 memset(context, 0, size);
296
297 return context;
298}
299
300static void append_cbfs_preload_context(struct cbfs_preload_context *context)
301{
302 list_append(&context->list_node, &cbfs_preload_context_list);
303}
304
305static void free_cbfs_preload_context(struct cbfs_preload_context *context)
306{
307 list_remove(&context->list_node);
308
309 mem_pool_free(&cbfs_cache, context);
310}
311
312static enum cb_err cbfs_preload_thread_entry(void *arg)
313{
314 struct cbfs_preload_context *context = arg;
315
Julius Wernerf364eb92021-12-01 14:48:59 -0800316 if (rdev_read_full(&context->rdev, context->buffer) < 0) {
Raul E Rangel4cfb8622021-11-01 13:40:14 -0600317 ERROR("%s(name='%s') readat failed\n", __func__, context->name);
318 return CB_ERR;
319 }
320
321 return CB_SUCCESS;
322}
323
324void cbfs_preload(const char *name)
325{
326 struct region_device rdev;
327 union cbfs_mdata mdata;
328 struct cbfs_preload_context *context;
329 bool force_ro = false;
330 size_t size;
331
332 if (!CONFIG(CBFS_PRELOAD))
333 dead_code();
334
Raul E Rangel74d22182021-12-03 15:09:35 -0700335 /* We don't want to cross the vboot boundary */
336 if (ENV_ROMSTAGE && CONFIG(VBOOT_STARTS_IN_ROMSTAGE))
337 return;
338
Raul E Rangel4cfb8622021-11-01 13:40:14 -0600339 DEBUG("%s(name='%s')\n", __func__, name);
340
Julius Werner57d4bc62021-11-15 10:13:37 -0800341 if (_cbfs_boot_lookup(name, force_ro, &mdata, &rdev))
Raul E Rangel4cfb8622021-11-01 13:40:14 -0600342 return;
343
344 size = region_device_sz(&rdev);
345
346 context = alloc_cbfs_preload_context(strlen(name) + 1);
347 if (!context) {
348 ERROR("%s(name='%s') failed to allocate preload context\n", __func__, name);
349 return;
350 }
351
352 context->buffer = mem_pool_alloc(&cbfs_cache, size);
353 if (context->buffer == NULL) {
354 ERROR("%s(name='%s') failed to allocate %zu bytes for preload buffer\n",
355 __func__, name, size);
356 goto out;
357 }
358
359 context->rdev = rdev;
360 strcpy(context->name, name);
361
362 append_cbfs_preload_context(context);
363
364 if (thread_run(&context->handle, cbfs_preload_thread_entry, context) == 0)
365 return;
366
367 ERROR("%s(name='%s') failed to start preload thread\n", __func__, name);
368 mem_pool_free(&cbfs_cache, context->buffer);
369
370out:
371 free_cbfs_preload_context(context);
372}
373
374static struct cbfs_preload_context *find_cbfs_preload_context(const char *name)
375{
376 struct cbfs_preload_context *context;
377
378 list_for_each(context, cbfs_preload_context_list, list_node) {
379 if (strcmp(context->name, name) == 0)
380 return context;
381 }
382
383 return NULL;
384}
385
386static enum cb_err get_preload_rdev(struct region_device *rdev, const char *name)
387{
388 enum cb_err err;
389 struct cbfs_preload_context *context;
390
Arthur Heymans6acc05e2022-05-12 18:01:13 +0200391 if (!CONFIG(CBFS_PRELOAD) || !ENV_SUPPORTS_COOP)
Raul E Rangel4cfb8622021-11-01 13:40:14 -0600392 return CB_ERR_ARG;
393
394 context = find_cbfs_preload_context(name);
395 if (!context)
396 return CB_ERR_ARG;
397
398 err = thread_join(&context->handle);
399 if (err != CB_SUCCESS) {
400 ERROR("%s(name='%s') Preload thread failed: %u\n", __func__, name, err);
401
402 goto out;
403 }
404
405 if (rdev_chain_mem(rdev, context->buffer, region_device_sz(&context->rdev)) != 0) {
406 ERROR("%s(name='%s') chaining failed\n", __func__, name);
407
408 err = CB_ERR;
409 goto out;
410 }
411
412 err = CB_SUCCESS;
413
414 DEBUG("%s(name='%s') preload successful\n", __func__, name);
415
416out:
417 free_cbfs_preload_context(context);
418
419 return err;
420}
421
Julius Werner05714cc2021-04-15 23:25:44 -0700422static void *do_alloc(union cbfs_mdata *mdata, struct region_device *rdev,
423 cbfs_allocator_t allocator, void *arg, size_t *size_out,
424 bool skip_verification)
425{
426 size_t size = region_device_sz(rdev);
427 void *loc = NULL;
428
429 uint32_t compression = CBFS_COMPRESS_NONE;
430 const struct cbfs_file_attr_compression *cattr = cbfs_find_attr(mdata,
431 CBFS_FILE_ATTR_TAG_COMPRESSION, sizeof(*cattr));
432 if (cattr) {
433 compression = be32toh(cattr->compression);
434 size = be32toh(cattr->decompressed_size);
435 }
436
437 if (size_out)
438 *size_out = size;
439
440 /* allocator == NULL means do a cbfs_map() */
441 if (allocator) {
442 loc = allocator(arg, size, mdata);
443 } else if (compression == CBFS_COMPRESS_NONE) {
444 void *mapping = rdev_mmap_full(rdev);
445 if (!mapping)
446 return NULL;
447 if (cbfs_file_hash_mismatch(mapping, size, mdata, skip_verification)) {
448 rdev_munmap(rdev, mapping);
449 return NULL;
450 }
451 return mapping;
452 } else if (!cbfs_cache.size) {
453 /* In order to use the cbfs_cache you need to add a CBFS_CACHE to your
Jeremy Compostella1c3b6b32023-09-15 14:19:29 -0700454 * memlayout. */
Julius Werner05714cc2021-04-15 23:25:44 -0700455 ERROR("Cannot map compressed file %s without cbfs_cache\n", mdata->h.filename);
456 return NULL;
457 } else {
458 loc = mem_pool_alloc(&cbfs_cache, size);
459 }
460
461 if (!loc) {
462 ERROR("'%s' allocation failure\n", mdata->h.filename);
463 return NULL;
464 }
465
466 size = cbfs_load_and_decompress(rdev, loc, size, compression, mdata, skip_verification);
467 if (!size)
468 return NULL;
469
470 return loc;
471}
472
Julius Werner7778cf22021-01-05 18:54:19 -0800473void *_cbfs_alloc(const char *name, cbfs_allocator_t allocator, void *arg,
474 size_t *size_out, bool force_ro, enum cbfs_type *type)
Julius Wernerf975e552016-08-19 15:43:06 -0700475{
Julius Wernerd17ce412020-10-01 18:25:49 -0700476 struct region_device rdev;
Raul E Rangel4cfb8622021-11-01 13:40:14 -0600477 bool preload_successful = false;
Julius Wernerd17ce412020-10-01 18:25:49 -0700478 union cbfs_mdata mdata;
Julius Werner7778cf22021-01-05 18:54:19 -0800479
480 DEBUG("%s(name='%s', alloc=%p(%p), force_ro=%s, type=%d)\n", __func__, name, allocator,
481 arg, force_ro ? "true" : "false", type ? *type : -1);
Julius Wernerf975e552016-08-19 15:43:06 -0700482
Julius Werner57d4bc62021-11-15 10:13:37 -0800483 if (_cbfs_boot_lookup(name, force_ro, &mdata, &rdev))
Julius Werner7778cf22021-01-05 18:54:19 -0800484 return NULL;
Julius Wernerf975e552016-08-19 15:43:06 -0700485
Julius Werner7778cf22021-01-05 18:54:19 -0800486 if (type) {
487 const enum cbfs_type real_type = be32toh(mdata.h.type);
488 if (*type == CBFS_TYPE_QUERY)
489 *type = real_type;
490 else if (*type != real_type) {
491 ERROR("'%s' type mismatch (is %u, expected %u)\n",
492 mdata.h.filename, real_type, *type);
493 return NULL;
494 }
Julius Wernerd17ce412020-10-01 18:25:49 -0700495 }
Julius Wernerf975e552016-08-19 15:43:06 -0700496
Raul E Rangel4cfb8622021-11-01 13:40:14 -0600497 /* Update the rdev with the preload content */
498 if (!force_ro && get_preload_rdev(&rdev, name) == CB_SUCCESS)
499 preload_successful = true;
500
Julius Werner05714cc2021-04-15 23:25:44 -0700501 void *ret = do_alloc(&mdata, &rdev, allocator, arg, size_out, false);
Raul E Rangel3f41d322021-07-23 15:23:12 -0600502
Julius Werner05714cc2021-04-15 23:25:44 -0700503 /* When using cbfs_preload we need to free the preload buffer after populating the
504 * destination buffer. We know we must have a mem_rdev here, so extra mmap is fine. */
Raul E Rangel4cfb8622021-11-01 13:40:14 -0600505 if (preload_successful)
506 cbfs_unmap(rdev_mmap_full(&rdev));
Julius Werner7778cf22021-01-05 18:54:19 -0800507
Julius Werner05714cc2021-04-15 23:25:44 -0700508 return ret;
509}
510
511void *_cbfs_unverified_area_alloc(const char *area, const char *name,
512 cbfs_allocator_t allocator, void *arg, size_t *size_out)
513{
514 struct region_device area_rdev, file_rdev;
515 union cbfs_mdata mdata;
516 size_t data_offset;
517
518 DEBUG("%s(area='%s', name='%s', alloc=%p(%p))\n", __func__, area, name, allocator, arg);
519
520 if (fmap_locate_area_as_rdev(area, &area_rdev))
521 return NULL;
522
523 if (cbfs_lookup(&area_rdev, name, &mdata, &data_offset, NULL)) {
524 ERROR("'%s' not found in '%s'\n", name, area);
525 return NULL;
526 }
527
528 if (rdev_chain(&file_rdev, &area_rdev, data_offset, be32toh(mdata.h.len)))
529 return NULL;
530
Julius Werner05714cc2021-04-15 23:25:44 -0700531 return do_alloc(&mdata, &file_rdev, allocator, arg, size_out, true);
Julius Werner7778cf22021-01-05 18:54:19 -0800532}
533
Julius Werner4676ec52021-03-10 16:52:14 -0800534void *_cbfs_default_allocator(void *arg, size_t size, const union cbfs_mdata *unused)
Julius Werner7778cf22021-01-05 18:54:19 -0800535{
536 struct _cbfs_default_allocator_arg *darg = arg;
537 if (size > darg->buf_size)
538 return NULL;
539 return darg->buf;
540}
541
Julius Werner4676ec52021-03-10 16:52:14 -0800542void *_cbfs_cbmem_allocator(void *arg, size_t size, const union cbfs_mdata *unused)
Julius Werner7778cf22021-01-05 18:54:19 -0800543{
544 return cbmem_add((uintptr_t)arg, size);
Julius Wernerf975e552016-08-19 15:43:06 -0700545}
546
Julius Werner69cc5572022-03-04 17:49:56 -0800547enum cb_err cbfs_prog_stage_load(struct prog *pstage)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500548{
Julius Werner1de87082020-12-23 17:38:11 -0800549 union cbfs_mdata mdata;
550 struct region_device rdev;
Julius Werner69cc5572022-03-04 17:49:56 -0800551 enum cb_err err;
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800552
Julius Werner1de87082020-12-23 17:38:11 -0800553 prog_locate_hook(pstage);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500554
Julius Werner57d4bc62021-11-15 10:13:37 -0800555 if ((err = _cbfs_boot_lookup(prog_name(pstage), false, &mdata, &rdev)))
Julius Werner1de87082020-12-23 17:38:11 -0800556 return err;
557
558 assert(be32toh(mdata.h.type) == CBFS_TYPE_STAGE);
559 pstage->cbfs_type = CBFS_TYPE_STAGE;
560
Julius Werner81dc20e2020-10-15 17:37:57 -0700561 enum cbfs_compression compression = CBFS_COMPRESS_NONE;
562 const struct cbfs_file_attr_compression *cattr = cbfs_find_attr(&mdata,
563 CBFS_FILE_ATTR_TAG_COMPRESSION, sizeof(*cattr));
564 if (cattr)
565 compression = be32toh(cattr->compression);
Julius Werner1de87082020-12-23 17:38:11 -0800566
Julius Werner81dc20e2020-10-15 17:37:57 -0700567 const struct cbfs_file_attr_stageheader *sattr = cbfs_find_attr(&mdata,
568 CBFS_FILE_ATTR_TAG_STAGEHEADER, sizeof(*sattr));
569 if (!sattr)
570 return CB_ERR;
571 prog_set_area(pstage, (void *)(uintptr_t)be64toh(sattr->loadaddr),
572 be32toh(sattr->memlen));
573 prog_set_entry(pstage, prog_start(pstage) +
574 be32toh(sattr->entry_offset), NULL);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500575
Aaron Durbined253c82015-10-07 17:22:42 -0500576 /* Hacky way to not load programs over read only media. The stages
577 * that would hit this path initialize themselves. */
Julius Werner21a40532020-04-21 16:03:53 -0700578 if ((ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE) &&
579 !CONFIG(NO_XIP_EARLY_STAGES) && CONFIG(BOOT_DEVICE_MEMORY_MAPPED)) {
Julius Werner81dc20e2020-10-15 17:37:57 -0700580 void *mapping = rdev_mmap_full(&rdev);
Julius Werner1de87082020-12-23 17:38:11 -0800581 rdev_munmap(&rdev, mapping);
Julius Werner05714cc2021-04-15 23:25:44 -0700582 if (cbfs_file_hash_mismatch(mapping, region_device_sz(&rdev), &mdata, false))
Julius Wernerfccf1222021-04-02 15:58:05 -0700583 return CB_CBFS_HASH_MISMATCH;
Julius Werner81dc20e2020-10-15 17:37:57 -0700584 if (mapping == prog_start(pstage))
585 return CB_SUCCESS;
Aaron Durbined253c82015-10-07 17:22:42 -0500586 }
587
Julius Wernereca99af2021-03-10 18:49:37 -0800588 /* LZ4 stages can be decompressed in-place to save mapping scratch space. Load the
589 compressed data to the end of the buffer and point &rdev to that memory location. */
590 if (cbfs_lz4_enabled() && compression == CBFS_COMPRESS_LZ4) {
591 size_t in_size = region_device_sz(&rdev);
592 void *compr_start = prog_start(pstage) + prog_size(pstage) - in_size;
593 if (rdev_readat(&rdev, compr_start, 0, in_size) != in_size)
594 return CB_ERR;
Julius Wernerc8931972021-04-16 16:48:32 -0700595 rdev_chain_mem(&rdev, compr_start, in_size);
Julius Wernereca99af2021-03-10 18:49:37 -0800596 }
597
598 size_t fsize = cbfs_load_and_decompress(&rdev, prog_start(pstage), prog_size(pstage),
Julius Werner05714cc2021-04-15 23:25:44 -0700599 compression, &mdata, false);
Julius Werner09f29212015-09-29 13:51:35 -0700600 if (!fsize)
Julius Werner1de87082020-12-23 17:38:11 -0800601 return CB_ERR;
Aaron Durbin899d13d2015-05-15 23:39:23 -0500602
603 /* Clear area not covered by file. */
Julius Werner81dc20e2020-10-15 17:37:57 -0700604 memset(prog_start(pstage) + fsize, 0, prog_size(pstage) - fsize);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500605
Julius Werner81dc20e2020-10-15 17:37:57 -0700606 prog_segment_loaded((uintptr_t)prog_start(pstage), prog_size(pstage),
607 SEG_FINAL);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500608
Julius Werner1de87082020-12-23 17:38:11 -0800609 return CB_SUCCESS;
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800610}
Aaron Durbin6d720f32015-12-08 17:00:23 -0600611
Julius Werner1e37c9c2019-12-11 17:09:39 -0800612void cbfs_boot_device_find_mcache(struct cbfs_boot_device *cbd, uint32_t id)
Aaron Durbin6d720f32015-12-08 17:00:23 -0600613{
Julius Werner1e37c9c2019-12-11 17:09:39 -0800614 if (CONFIG(NO_CBFS_MCACHE) || ENV_SMM)
615 return;
616
Julius Werner34cf0732020-12-08 14:21:43 -0800617 if (cbd->mcache_size)
618 return;
619
Julius Werner1e37c9c2019-12-11 17:09:39 -0800620 const struct cbmem_entry *entry;
Arthur Heymansb7cbb7c2023-08-11 11:31:05 +0200621 if (ENV_HAS_CBMEM &&
Julius Werner1e37c9c2019-12-11 17:09:39 -0800622 (entry = cbmem_entry_find(id))) {
623 cbd->mcache = cbmem_entry_start(entry);
624 cbd->mcache_size = cbmem_entry_size(entry);
625 } else if (ENV_ROMSTAGE_OR_BEFORE) {
626 u8 *boundary = _ecbfs_mcache - REGION_SIZE(cbfs_mcache) *
627 CONFIG_CBFS_MCACHE_RW_PERCENTAGE / 100;
Julius Werner723e3b12020-12-29 17:33:30 -0800628 boundary = (u8 *)ALIGN_DOWN((uintptr_t)boundary, CBFS_MCACHE_ALIGNMENT);
Julius Werner1e37c9c2019-12-11 17:09:39 -0800629 if (id == CBMEM_ID_CBFS_RO_MCACHE) {
630 cbd->mcache = _cbfs_mcache;
631 cbd->mcache_size = boundary - _cbfs_mcache;
632 } else if (id == CBMEM_ID_CBFS_RW_MCACHE) {
633 cbd->mcache = boundary;
634 cbd->mcache_size = _ecbfs_mcache - boundary;
635 }
636 }
Aaron Durbin6d720f32015-12-08 17:00:23 -0600637}
Julius Werner1e37c9c2019-12-11 17:09:39 -0800638
Julius Werner69cc5572022-03-04 17:49:56 -0800639enum cb_err cbfs_init_boot_device(const struct cbfs_boot_device *cbd,
640 struct vb2_hash *mdata_hash)
Julius Wernerfdabf3f2020-05-06 17:06:35 -0700641{
642 /* If we have an mcache, mcache_build() will also check mdata hash. */
643 if (!CONFIG(NO_CBFS_MCACHE) && !ENV_SMM && cbd->mcache_size > 0)
Julius Werner723e3b12020-12-29 17:33:30 -0800644 return cbfs_mcache_build(&cbd->rdev, cbd->mcache, cbd->mcache_size, mdata_hash);
Julius Wernerfdabf3f2020-05-06 17:06:35 -0700645
646 /* No mcache and no verification means we have nothing special to do. */
Julius Werner723e3b12020-12-29 17:33:30 -0800647 if (!CONFIG(CBFS_VERIFICATION) || !mdata_hash)
Julius Wernerfdabf3f2020-05-06 17:06:35 -0700648 return CB_SUCCESS;
649
Julius Werner723e3b12020-12-29 17:33:30 -0800650 /* Verification only: use cbfs_walk() without a walker() function to just run through
651 the CBFS once, will return NOT_FOUND by default. */
Julius Werner69cc5572022-03-04 17:49:56 -0800652 enum cb_err err = cbfs_walk(&cbd->rdev, NULL, NULL, mdata_hash, 0);
Julius Wernerfdabf3f2020-05-06 17:06:35 -0700653 if (err == CB_CBFS_NOT_FOUND)
654 err = CB_SUCCESS;
655 return err;
656}
657
Julius Werner1e37c9c2019-12-11 17:09:39 -0800658const struct cbfs_boot_device *cbfs_get_boot_device(bool force_ro)
659{
660 static struct cbfs_boot_device ro;
661
Julius Werner723e3b12020-12-29 17:33:30 -0800662 /* Ensure we always init RO mcache, even if the first file is from the RW CBFS.
Julius Werner1e37c9c2019-12-11 17:09:39 -0800663 Otherwise it may not be available when needed in later stages. */
664 if (ENV_INITIAL_STAGE && !force_ro && !region_device_sz(&ro.rdev))
665 cbfs_get_boot_device(true);
666
667 if (!force_ro) {
668 const struct cbfs_boot_device *rw = vboot_get_cbfs_boot_device();
Julius Werner723e3b12020-12-29 17:33:30 -0800669 /* This will return NULL if vboot isn't enabled, didn't run yet or decided to
670 boot into recovery mode. */
Julius Werner1e37c9c2019-12-11 17:09:39 -0800671 if (rw)
672 return rw;
673 }
674
Julius Werner723e3b12020-12-29 17:33:30 -0800675 /* In rare cases post-RAM stages may run this before cbmem_initialize(), so we can't
676 lock in the result of find_mcache() on the first try and should keep trying every
677 time until an mcache is found. */
Julius Werner34cf0732020-12-08 14:21:43 -0800678 cbfs_boot_device_find_mcache(&ro, CBMEM_ID_CBFS_RO_MCACHE);
679
Julius Werner1e37c9c2019-12-11 17:09:39 -0800680 if (region_device_sz(&ro.rdev))
681 return &ro;
682
683 if (fmap_locate_area_as_rdev("COREBOOT", &ro.rdev))
Julius Wernerfdabf3f2020-05-06 17:06:35 -0700684 die("Cannot locate primary CBFS");
Julius Werner1e37c9c2019-12-11 17:09:39 -0800685
Julius Wernerfdabf3f2020-05-06 17:06:35 -0700686 if (ENV_INITIAL_STAGE) {
Julius Werner69cc5572022-03-04 17:49:56 -0800687 enum cb_err err = cbfs_init_boot_device(&ro, metadata_hash_get());
Julius Wernerfdabf3f2020-05-06 17:06:35 -0700688 if (err == CB_CBFS_HASH_MISMATCH)
689 die("RO CBFS metadata hash verification failure");
690 else if (CONFIG(TOCTOU_SAFETY) && err == CB_CBFS_CACHE_FULL)
691 die("RO mcache overflow breaks TOCTOU safety!\n");
692 else if (err && err != CB_CBFS_CACHE_FULL)
693 die("RO CBFS initialization error: %d", err);
Julius Werner1e37c9c2019-12-11 17:09:39 -0800694 }
695
696 return &ro;
697}
698
699#if !CONFIG(NO_CBFS_MCACHE)
700static void mcache_to_cbmem(const struct cbfs_boot_device *cbd, u32 cbmem_id)
701{
702 if (!cbd)
703 return;
704
705 size_t real_size = cbfs_mcache_real_size(cbd->mcache, cbd->mcache_size);
706 void *cbmem_mcache = cbmem_add(cbmem_id, real_size);
707 if (!cbmem_mcache) {
Julius Wernere9665952022-01-21 17:06:20 -0800708 printk(BIOS_ERR, "Cannot allocate CBMEM mcache %#x (%#zx bytes)!\n",
Julius Werner1e37c9c2019-12-11 17:09:39 -0800709 cbmem_id, real_size);
710 return;
711 }
712 memcpy(cbmem_mcache, cbd->mcache, real_size);
713}
714
715static void cbfs_mcache_migrate(int unused)
716{
717 mcache_to_cbmem(vboot_get_cbfs_boot_device(), CBMEM_ID_CBFS_RW_MCACHE);
718 mcache_to_cbmem(cbfs_get_boot_device(true), CBMEM_ID_CBFS_RO_MCACHE);
719}
Kyösti Mälkkifa3bc042022-03-31 07:40:10 +0300720CBMEM_CREATION_HOOK(cbfs_mcache_migrate);
Julius Werner1e37c9c2019-12-11 17:09:39 -0800721#endif