blob: ec5156c09cdd48c2cccbbe6fb75e746eb86cd3c6 [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 Werner98eeb962019-12-11 15:47:42 -08006#include <commonlib/bsd/compression.h>
Bill XIEc79e96b2019-08-22 20:28:36 +08007#include <console/console.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -05008#include <endian.h>
Bill XIEc79e96b2019-08-22 20:28:36 +08009#include <fmap.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050010#include <lib.h>
Bill XIEc79e96b2019-08-22 20:28:36 +080011#include <security/tpm/tspi/crtm.h>
12#include <security/vboot/vboot_common.h>
13#include <stdlib.h>
14#include <string.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050015#include <symbols.h>
Julius Werner09f29212015-09-29 13:51:35 -070016#include <timestamp.h>
Patrick Georgi58a150a2016-05-02 17:22:29 +080017
Aaron Durbin899d13d2015-05-15 23:39:23 -050018#define ERROR(x...) printk(BIOS_ERR, "CBFS: " x)
19#define LOG(x...) printk(BIOS_INFO, "CBFS: " x)
Julius Wernercd49cce2019-03-05 16:53:33 -080020#if CONFIG(DEBUG_CBFS)
Aaron Durbin899d13d2015-05-15 23:39:23 -050021#define DEBUG(x...) printk(BIOS_SPEW, "CBFS: " x)
22#else
23#define DEBUG(x...)
24#endif
Peter Stuge483b7bb2009-04-14 07:40:01 +000025
Aaron Durbin37a5d152015-09-17 16:09:30 -050026int cbfs_boot_locate(struct cbfsf *fh, const char *name, uint32_t *type)
Aaron Durbin899d13d2015-05-15 23:39:23 -050027{
Aaron Durbin899d13d2015-05-15 23:39:23 -050028 struct region_device rdev;
Aaron Durbin899d13d2015-05-15 23:39:23 -050029
Aaron Durbinfe338e22019-11-18 12:35:21 -070030 if (cbfs_boot_region_device(&rdev))
Aaron Durbin899d13d2015-05-15 23:39:23 -050031 return -1;
Aaron Durbin899d13d2015-05-15 23:39:23 -050032
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +010033 int ret = cbfs_locate(fh, &rdev, name, type);
Wim Vervoorn114e2e82019-11-05 14:09:16 +010034
35 if (CONFIG(VBOOT_ENABLE_CBFS_FALLBACK) && ret) {
36
37 /*
38 * When VBOOT_ENABLE_CBFS_FALLBACK is enabled and a file is not available in the
39 * active RW region, the RO (COREBOOT) region will be used to locate the file.
40 *
41 * This functionality makes it possible to avoid duplicate files in the RO
42 * and RW partitions while maintaining updateability.
43 *
44 * Files can be added to the RO_REGION_ONLY config option to use this feature.
45 */
46 printk(BIOS_DEBUG, "Fall back to RO region for %s\n", name);
Bill XIEbad08c22020-02-13 11:11:35 +080047 if (fmap_locate_area_as_rdev("COREBOOT", &rdev))
48 ERROR("RO region not found\n");
49 else
50 ret = cbfs_locate(fh, &rdev, name, type);
Wim Vervoorn114e2e82019-11-05 14:09:16 +010051 }
52
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +010053 if (!ret)
Bill XIEc79e96b2019-08-22 20:28:36 +080054 if (tspi_measure_cbfs_hook(fh, name))
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +010055 return -1;
56
57 return ret;
Aaron Durbin899d13d2015-05-15 23:39:23 -050058}
59
60void *cbfs_boot_map_with_leak(const char *name, uint32_t type, size_t *size)
61{
Aaron Durbin37a5d152015-09-17 16:09:30 -050062 struct cbfsf fh;
Aaron Durbin899d13d2015-05-15 23:39:23 -050063 size_t fsize;
64
65 if (cbfs_boot_locate(&fh, name, &type))
66 return NULL;
67
Aaron Durbin37a5d152015-09-17 16:09:30 -050068 fsize = region_device_sz(&fh.data);
Aaron Durbin899d13d2015-05-15 23:39:23 -050069
70 if (size != NULL)
71 *size = fsize;
72
Aaron Durbin37a5d152015-09-17 16:09:30 -050073 return rdev_mmap(&fh.data, 0, fsize);
Aaron Durbin899d13d2015-05-15 23:39:23 -050074}
75
Pratik Prajapati2a7708a2016-11-30 17:29:10 -080076int cbfs_locate_file_in_region(struct cbfsf *fh, const char *region_name,
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +010077 const char *name, uint32_t *type)
Pratik Prajapati2a7708a2016-11-30 17:29:10 -080078{
79 struct region_device rdev;
Bill XIEbad08c22020-02-13 11:11:35 +080080 int ret = 0;
Pratik Prajapati2a7708a2016-11-30 17:29:10 -080081 if (fmap_locate_area_as_rdev(region_name, &rdev)) {
82 LOG("%s region not found while looking for %s\n",
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +010083 region_name, name);
Pratik Prajapati2a7708a2016-11-30 17:29:10 -080084 return -1;
85 }
86
Bill XIEbad08c22020-02-13 11:11:35 +080087 ret = cbfs_locate(fh, &rdev, name, type);
88 if (!ret)
89 if (tspi_measure_cbfs_hook(fh, name))
90 return -1;
91 return ret;
Pratik Prajapati2a7708a2016-11-30 17:29:10 -080092}
93
Aaron Durbina85febc2020-05-15 15:09:10 -060094static inline bool fsps_env(void)
95{
96 /* FSP-S is assumed to be loaded in ramstage. */
97 if (ENV_RAMSTAGE)
98 return true;
99 return false;
100}
101
Aaron Durbina121f952020-05-26 15:48:10 -0600102static inline bool cbfs_lz4_enabled(void)
103{
Aaron Durbina85febc2020-05-15 15:09:10 -0600104 if (fsps_env() && CONFIG(FSP_COMPRESS_FSP_S_LZ4))
105 return true;
106
Aaron Durbina121f952020-05-26 15:48:10 -0600107 if ((ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE) && !CONFIG(COMPRESS_PRERAM_STAGES))
108 return false;
109
110 return true;
111}
112
113static inline bool cbfs_lzma_enabled(void)
114{
Aaron Durbina85febc2020-05-15 15:09:10 -0600115 if (fsps_env() && CONFIG(FSP_COMPRESS_FSP_S_LZMA))
116 return true;
Aaron Durbina121f952020-05-26 15:48:10 -0600117 /* We assume here romstage and postcar are never compressed. */
118 if (ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE)
119 return false;
120 if (ENV_ROMSTAGE && CONFIG(POSTCAR_STAGE))
121 return false;
122 if ((ENV_ROMSTAGE || ENV_POSTCAR)
123 && !CONFIG(COMPRESS_RAMSTAGE))
124 return false;
125 return true;
126}
127
Julius Werner09f29212015-09-29 13:51:35 -0700128size_t cbfs_load_and_decompress(const struct region_device *rdev, size_t offset,
129 size_t in_size, void *buffer, size_t buffer_size, uint32_t compression)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500130{
Julius Werner09f29212015-09-29 13:51:35 -0700131 size_t out_size;
Aaron Durbin84f394e2020-05-26 16:16:42 -0600132 void *map;
Julius Werner09f29212015-09-29 13:51:35 -0700133
134 switch (compression) {
135 case CBFS_COMPRESS_NONE:
Julius Wernerf975e552016-08-19 15:43:06 -0700136 if (buffer_size < in_size)
137 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700138 if (rdev_readat(rdev, buffer, offset, in_size) != in_size)
139 return 0;
140 return in_size;
141
142 case CBFS_COMPRESS_LZ4:
Aaron Durbina121f952020-05-26 15:48:10 -0600143 if (!cbfs_lz4_enabled())
Julius Werner09f29212015-09-29 13:51:35 -0700144 return 0;
145
Aaron Durbin84f394e2020-05-26 16:16:42 -0600146 /* cbfs_stage_load_and_decompress() takes care of in-place
147 lz4 decompression by setting up the rdev to be in memory. */
148 map = rdev_mmap(rdev, offset, in_size);
149 if (map == NULL)
Julius Werner09f29212015-09-29 13:51:35 -0700150 return 0;
151
152 timestamp_add_now(TS_START_ULZ4F);
Aaron Durbin84f394e2020-05-26 16:16:42 -0600153 out_size = ulz4fn(map, in_size, buffer, buffer_size);
Julius Werner09f29212015-09-29 13:51:35 -0700154 timestamp_add_now(TS_END_ULZ4F);
Aaron Durbin84f394e2020-05-26 16:16:42 -0600155
156 rdev_munmap(rdev, map);
157
Julius Werner09f29212015-09-29 13:51:35 -0700158 return out_size;
159
160 case CBFS_COMPRESS_LZMA:
Aaron Durbina121f952020-05-26 15:48:10 -0600161 if (!cbfs_lzma_enabled())
Julius Werner09f29212015-09-29 13:51:35 -0700162 return 0;
Aaron Durbin84f394e2020-05-26 16:16:42 -0600163 map = rdev_mmap(rdev, offset, in_size);
Julius Werner09f29212015-09-29 13:51:35 -0700164 if (map == NULL)
165 return 0;
166
167 /* Note: timestamp not useful for memory-mapped media (x86) */
168 timestamp_add_now(TS_START_ULZMA);
169 out_size = ulzman(map, in_size, buffer, buffer_size);
170 timestamp_add_now(TS_END_ULZMA);
171
172 rdev_munmap(rdev, map);
173
174 return out_size;
175
176 default:
Aaron Durbin899d13d2015-05-15 23:39:23 -0500177 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700178 }
Aaron Durbin899d13d2015-05-15 23:39:23 -0500179}
180
Aaron Durbin84f394e2020-05-26 16:16:42 -0600181static size_t cbfs_stage_load_and_decompress(const struct region_device *rdev,
182 size_t offset, size_t in_size, void *buffer, size_t buffer_size,
183 uint32_t compression)
184{
185 struct region_device rdev_src;
186
187 if (compression == CBFS_COMPRESS_LZ4) {
188 if (!cbfs_lz4_enabled())
189 return 0;
190 /* Load the compressed image to the end of the available memory
191 * area for in-place decompression. It is the responsibility of
192 * the caller to ensure that buffer_size is large enough
193 * (see compression.h, guaranteed by cbfstool for stages). */
194 void *compr_start = buffer + buffer_size - in_size;
195 if (rdev_readat(rdev, compr_start, offset, in_size) != in_size)
196 return 0;
197 /* Create a region device backed by memory. */
198 rdev_chain(&rdev_src, &addrspace_32bit.rdev,
199 (uintptr_t)compr_start, in_size);
200
201 return cbfs_load_and_decompress(&rdev_src, 0, in_size, buffer,
202 buffer_size, compression);
203 }
204
205 /* All other algorithms can use the generic implementation. */
206 return cbfs_load_and_decompress(rdev, offset, in_size, buffer,
207 buffer_size, compression);
208}
209
Stefan Reinauer800379f2010-03-01 08:34:19 +0000210static inline int tohex4(unsigned int c)
Patrick Georgib203c2f2009-08-20 14:48:03 +0000211{
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800212 return (c <= 9) ? (c + '0') : (c - 10 + 'a');
Patrick Georgib203c2f2009-08-20 14:48:03 +0000213}
214
Martin Rotha616a4b2020-01-21 09:28:40 -0700215static void tohex8(unsigned int val, char *dest)
216{
217 dest[0] = tohex4((val >> 4) & 0xf);
218 dest[1] = tohex4(val & 0xf);
219}
220
Lee Leahyb2d834a2017-03-08 16:52:22 -0800221static void tohex16(unsigned int val, char *dest)
Patrick Georgib203c2f2009-08-20 14:48:03 +0000222{
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100223 dest[0] = tohex4(val >> 12);
224 dest[1] = tohex4((val >> 8) & 0xf);
225 dest[2] = tohex4((val >> 4) & 0xf);
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800226 dest[3] = tohex4(val & 0xf);
Patrick Georgib203c2f2009-08-20 14:48:03 +0000227}
228
Aaron Durbin899d13d2015-05-15 23:39:23 -0500229void *cbfs_boot_map_optionrom(uint16_t vendor, uint16_t device)
Peter Stuge483b7bb2009-04-14 07:40:01 +0000230{
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800231 char name[17] = "pciXXXX,XXXX.rom";
Peter Stuge483b7bb2009-04-14 07:40:01 +0000232
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100233 tohex16(vendor, name + 3);
234 tohex16(device, name + 8);
Peter Stuge483b7bb2009-04-14 07:40:01 +0000235
Aaron Durbin899d13d2015-05-15 23:39:23 -0500236 return cbfs_boot_map_with_leak(name, CBFS_TYPE_OPTIONROM, NULL);
Peter Stuge483b7bb2009-04-14 07:40:01 +0000237}
238
Martin Rotha616a4b2020-01-21 09:28:40 -0700239void *cbfs_boot_map_optionrom_revision(uint16_t vendor, uint16_t device, uint8_t rev)
240{
241 char name[20] = "pciXXXX,XXXX,XX.rom";
242
243 tohex16(vendor, name + 3);
244 tohex16(device, name + 8);
245 tohex8(rev, name + 13);
246
247 return cbfs_boot_map_with_leak(name, CBFS_TYPE_OPTIONROM, NULL);
248}
249
T Michael Turney809fa7b2018-04-12 13:36:40 -0700250size_t cbfs_boot_load_file(const char *name, void *buf, size_t buf_size,
251 uint32_t type)
Julius Wernerf975e552016-08-19 15:43:06 -0700252{
253 struct cbfsf fh;
254 uint32_t compression_algo;
255 size_t decompressed_size;
Julius Wernerf975e552016-08-19 15:43:06 -0700256
257 if (cbfs_boot_locate(&fh, name, &type) < 0)
258 return 0;
259
260 if (cbfsf_decompression_info(&fh, &compression_algo,
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100261 &decompressed_size)
262 < 0
263 || decompressed_size > buf_size)
Julius Wernerf975e552016-08-19 15:43:06 -0700264 return 0;
265
266 return cbfs_load_and_decompress(&fh.data, 0, region_device_sz(&fh.data),
267 buf, buf_size, compression_algo);
268}
269
Aaron Durbin899d13d2015-05-15 23:39:23 -0500270int cbfs_prog_stage_load(struct prog *pstage)
271{
272 struct cbfs_stage stage;
273 uint8_t *load;
274 void *entry;
275 size_t fsize;
276 size_t foffset;
Aaron Durbin37a5d152015-09-17 16:09:30 -0500277 const struct region_device *fh = prog_rdev(pstage);
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800278
Aaron Durbin899d13d2015-05-15 23:39:23 -0500279 if (rdev_readat(fh, &stage, 0, sizeof(stage)) != sizeof(stage))
Julius Wernerb29bd27b2015-12-03 11:29:12 -0800280 return -1;
Aaron Durbin899d13d2015-05-15 23:39:23 -0500281
282 fsize = region_device_sz(fh);
283 fsize -= sizeof(stage);
284 foffset = 0;
285 foffset += sizeof(stage);
286
287 assert(fsize == stage.len);
288
289 /* Note: cbfs_stage fields are currently in the endianness of the
290 * running processor. */
291 load = (void *)(uintptr_t)stage.load;
292 entry = (void *)(uintptr_t)stage.entry;
293
Aaron Durbined253c82015-10-07 17:22:42 -0500294 /* Hacky way to not load programs over read only media. The stages
295 * that would hit this path initialize themselves. */
Julius Werner21a40532020-04-21 16:03:53 -0700296 if ((ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE) &&
297 !CONFIG(NO_XIP_EARLY_STAGES) && CONFIG(BOOT_DEVICE_MEMORY_MAPPED)) {
Aaron Durbined253c82015-10-07 17:22:42 -0500298 void *mapping = rdev_mmap(fh, foffset, fsize);
299 rdev_munmap(fh, mapping);
300 if (mapping == load)
301 goto out;
302 }
303
Aaron Durbin84f394e2020-05-26 16:16:42 -0600304 fsize = cbfs_stage_load_and_decompress(fh, foffset, fsize, load,
Julius Werner09f29212015-09-29 13:51:35 -0700305 stage.memlen, stage.compression);
306 if (!fsize)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500307 return -1;
308
309 /* Clear area not covered by file. */
310 memset(&load[fsize], 0, stage.memlen - fsize);
311
Aaron Durbin096f4572016-03-31 13:49:00 -0500312 prog_segment_loaded((uintptr_t)load, stage.memlen, SEG_FINAL);
Aaron Durbined253c82015-10-07 17:22:42 -0500313
314out:
Aaron Durbin899d13d2015-05-15 23:39:23 -0500315 prog_set_area(pstage, load, stage.memlen);
316 prog_set_entry(pstage, entry, NULL);
317
318 return 0;
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800319}
Aaron Durbin6d720f32015-12-08 17:00:23 -0600320
Aaron Durbinfe338e22019-11-18 12:35:21 -0700321int cbfs_boot_region_device(struct region_device *rdev)
Aaron Durbin6d720f32015-12-08 17:00:23 -0600322{
Aaron Durbin6d720f32015-12-08 17:00:23 -0600323 boot_device_init();
Julius Werner815611e2019-12-05 22:29:07 -0800324 return vboot_locate_cbfs(rdev) &&
325 fmap_locate_area_as_rdev("COREBOOT", rdev);
Aaron Durbin6d720f32015-12-08 17:00:23 -0600326}