blob: 74df3c5b39bce62f6ebd09730d123a0d22561a04 [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 Durbina121f952020-05-26 15:48:10 -060094static inline bool cbfs_lz4_enabled(void)
95{
96 if ((ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE) && !CONFIG(COMPRESS_PRERAM_STAGES))
97 return false;
98
99 return true;
100}
101
102static inline bool cbfs_lzma_enabled(void)
103{
104 /* We assume here romstage and postcar are never compressed. */
105 if (ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE)
106 return false;
107 if (ENV_ROMSTAGE && CONFIG(POSTCAR_STAGE))
108 return false;
109 if ((ENV_ROMSTAGE || ENV_POSTCAR)
110 && !CONFIG(COMPRESS_RAMSTAGE))
111 return false;
112 return true;
113}
114
Julius Werner09f29212015-09-29 13:51:35 -0700115size_t cbfs_load_and_decompress(const struct region_device *rdev, size_t offset,
116 size_t in_size, void *buffer, size_t buffer_size, uint32_t compression)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500117{
Julius Werner09f29212015-09-29 13:51:35 -0700118 size_t out_size;
119
120 switch (compression) {
121 case CBFS_COMPRESS_NONE:
Julius Wernerf975e552016-08-19 15:43:06 -0700122 if (buffer_size < in_size)
123 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700124 if (rdev_readat(rdev, buffer, offset, in_size) != in_size)
125 return 0;
126 return in_size;
127
128 case CBFS_COMPRESS_LZ4:
Aaron Durbina121f952020-05-26 15:48:10 -0600129 if (!cbfs_lz4_enabled())
Julius Werner09f29212015-09-29 13:51:35 -0700130 return 0;
131
132 /* Load the compressed image to the end of the available memory
133 * area for in-place decompression. It is the responsibility of
134 * the caller to ensure that buffer_size is large enough
135 * (see compression.h, guaranteed by cbfstool for stages). */
136 void *compr_start = buffer + buffer_size - in_size;
137 if (rdev_readat(rdev, compr_start, offset, in_size) != in_size)
138 return 0;
139
140 timestamp_add_now(TS_START_ULZ4F);
141 out_size = ulz4fn(compr_start, in_size, buffer, buffer_size);
142 timestamp_add_now(TS_END_ULZ4F);
143 return out_size;
144
145 case CBFS_COMPRESS_LZMA:
Aaron Durbina121f952020-05-26 15:48:10 -0600146 if (!cbfs_lzma_enabled())
Julius Werner09f29212015-09-29 13:51:35 -0700147 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700148 void *map = rdev_mmap(rdev, offset, in_size);
149 if (map == NULL)
150 return 0;
151
152 /* Note: timestamp not useful for memory-mapped media (x86) */
153 timestamp_add_now(TS_START_ULZMA);
154 out_size = ulzman(map, in_size, buffer, buffer_size);
155 timestamp_add_now(TS_END_ULZMA);
156
157 rdev_munmap(rdev, map);
158
159 return out_size;
160
161 default:
Aaron Durbin899d13d2015-05-15 23:39:23 -0500162 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700163 }
Aaron Durbin899d13d2015-05-15 23:39:23 -0500164}
165
Stefan Reinauer800379f2010-03-01 08:34:19 +0000166static inline int tohex4(unsigned int c)
Patrick Georgib203c2f2009-08-20 14:48:03 +0000167{
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800168 return (c <= 9) ? (c + '0') : (c - 10 + 'a');
Patrick Georgib203c2f2009-08-20 14:48:03 +0000169}
170
Martin Rotha616a4b2020-01-21 09:28:40 -0700171static void tohex8(unsigned int val, char *dest)
172{
173 dest[0] = tohex4((val >> 4) & 0xf);
174 dest[1] = tohex4(val & 0xf);
175}
176
Lee Leahyb2d834a2017-03-08 16:52:22 -0800177static void tohex16(unsigned int val, char *dest)
Patrick Georgib203c2f2009-08-20 14:48:03 +0000178{
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100179 dest[0] = tohex4(val >> 12);
180 dest[1] = tohex4((val >> 8) & 0xf);
181 dest[2] = tohex4((val >> 4) & 0xf);
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800182 dest[3] = tohex4(val & 0xf);
Patrick Georgib203c2f2009-08-20 14:48:03 +0000183}
184
Aaron Durbin899d13d2015-05-15 23:39:23 -0500185void *cbfs_boot_map_optionrom(uint16_t vendor, uint16_t device)
Peter Stuge483b7bb2009-04-14 07:40:01 +0000186{
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800187 char name[17] = "pciXXXX,XXXX.rom";
Peter Stuge483b7bb2009-04-14 07:40:01 +0000188
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100189 tohex16(vendor, name + 3);
190 tohex16(device, name + 8);
Peter Stuge483b7bb2009-04-14 07:40:01 +0000191
Aaron Durbin899d13d2015-05-15 23:39:23 -0500192 return cbfs_boot_map_with_leak(name, CBFS_TYPE_OPTIONROM, NULL);
Peter Stuge483b7bb2009-04-14 07:40:01 +0000193}
194
Martin Rotha616a4b2020-01-21 09:28:40 -0700195void *cbfs_boot_map_optionrom_revision(uint16_t vendor, uint16_t device, uint8_t rev)
196{
197 char name[20] = "pciXXXX,XXXX,XX.rom";
198
199 tohex16(vendor, name + 3);
200 tohex16(device, name + 8);
201 tohex8(rev, name + 13);
202
203 return cbfs_boot_map_with_leak(name, CBFS_TYPE_OPTIONROM, NULL);
204}
205
T Michael Turney809fa7b2018-04-12 13:36:40 -0700206size_t cbfs_boot_load_file(const char *name, void *buf, size_t buf_size,
207 uint32_t type)
Julius Wernerf975e552016-08-19 15:43:06 -0700208{
209 struct cbfsf fh;
210 uint32_t compression_algo;
211 size_t decompressed_size;
Julius Wernerf975e552016-08-19 15:43:06 -0700212
213 if (cbfs_boot_locate(&fh, name, &type) < 0)
214 return 0;
215
216 if (cbfsf_decompression_info(&fh, &compression_algo,
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100217 &decompressed_size)
218 < 0
219 || decompressed_size > buf_size)
Julius Wernerf975e552016-08-19 15:43:06 -0700220 return 0;
221
222 return cbfs_load_and_decompress(&fh.data, 0, region_device_sz(&fh.data),
223 buf, buf_size, compression_algo);
224}
225
Aaron Durbin899d13d2015-05-15 23:39:23 -0500226int cbfs_prog_stage_load(struct prog *pstage)
227{
228 struct cbfs_stage stage;
229 uint8_t *load;
230 void *entry;
231 size_t fsize;
232 size_t foffset;
Aaron Durbin37a5d152015-09-17 16:09:30 -0500233 const struct region_device *fh = prog_rdev(pstage);
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800234
Aaron Durbin899d13d2015-05-15 23:39:23 -0500235 if (rdev_readat(fh, &stage, 0, sizeof(stage)) != sizeof(stage))
Julius Wernerb29bd27b2015-12-03 11:29:12 -0800236 return -1;
Aaron Durbin899d13d2015-05-15 23:39:23 -0500237
238 fsize = region_device_sz(fh);
239 fsize -= sizeof(stage);
240 foffset = 0;
241 foffset += sizeof(stage);
242
243 assert(fsize == stage.len);
244
245 /* Note: cbfs_stage fields are currently in the endianness of the
246 * running processor. */
247 load = (void *)(uintptr_t)stage.load;
248 entry = (void *)(uintptr_t)stage.entry;
249
Aaron Durbined253c82015-10-07 17:22:42 -0500250 /* Hacky way to not load programs over read only media. The stages
251 * that would hit this path initialize themselves. */
Julius Werner21a40532020-04-21 16:03:53 -0700252 if ((ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE) &&
253 !CONFIG(NO_XIP_EARLY_STAGES) && CONFIG(BOOT_DEVICE_MEMORY_MAPPED)) {
Aaron Durbined253c82015-10-07 17:22:42 -0500254 void *mapping = rdev_mmap(fh, foffset, fsize);
255 rdev_munmap(fh, mapping);
256 if (mapping == load)
257 goto out;
258 }
259
Julius Werner09f29212015-09-29 13:51:35 -0700260 fsize = cbfs_load_and_decompress(fh, foffset, fsize, load,
261 stage.memlen, stage.compression);
262 if (!fsize)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500263 return -1;
264
265 /* Clear area not covered by file. */
266 memset(&load[fsize], 0, stage.memlen - fsize);
267
Aaron Durbin096f4572016-03-31 13:49:00 -0500268 prog_segment_loaded((uintptr_t)load, stage.memlen, SEG_FINAL);
Aaron Durbined253c82015-10-07 17:22:42 -0500269
270out:
Aaron Durbin899d13d2015-05-15 23:39:23 -0500271 prog_set_area(pstage, load, stage.memlen);
272 prog_set_entry(pstage, entry, NULL);
273
274 return 0;
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800275}
Aaron Durbin6d720f32015-12-08 17:00:23 -0600276
Aaron Durbinfe338e22019-11-18 12:35:21 -0700277int cbfs_boot_region_device(struct region_device *rdev)
Aaron Durbin6d720f32015-12-08 17:00:23 -0600278{
Aaron Durbin6d720f32015-12-08 17:00:23 -0600279 boot_device_init();
Julius Werner815611e2019-12-05 22:29:07 -0800280 return vboot_locate_cbfs(rdev) &&
281 fmap_locate_area_as_rdev("COREBOOT", rdev);
Aaron Durbin6d720f32015-12-08 17:00:23 -0600282}