blob: e05ea801c837b5c92a662fab622928a52e61747e [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;
Aaron Durbin84f394e2020-05-26 16:16:42 -0600119 void *map;
Julius Werner09f29212015-09-29 13:51:35 -0700120
121 switch (compression) {
122 case CBFS_COMPRESS_NONE:
Julius Wernerf975e552016-08-19 15:43:06 -0700123 if (buffer_size < in_size)
124 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700125 if (rdev_readat(rdev, buffer, offset, in_size) != in_size)
126 return 0;
127 return in_size;
128
129 case CBFS_COMPRESS_LZ4:
Aaron Durbina121f952020-05-26 15:48:10 -0600130 if (!cbfs_lz4_enabled())
Julius Werner09f29212015-09-29 13:51:35 -0700131 return 0;
132
Aaron Durbin84f394e2020-05-26 16:16:42 -0600133 /* cbfs_stage_load_and_decompress() takes care of in-place
134 lz4 decompression by setting up the rdev to be in memory. */
135 map = rdev_mmap(rdev, offset, in_size);
136 if (map == NULL)
Julius Werner09f29212015-09-29 13:51:35 -0700137 return 0;
138
139 timestamp_add_now(TS_START_ULZ4F);
Aaron Durbin84f394e2020-05-26 16:16:42 -0600140 out_size = ulz4fn(map, in_size, buffer, buffer_size);
Julius Werner09f29212015-09-29 13:51:35 -0700141 timestamp_add_now(TS_END_ULZ4F);
Aaron Durbin84f394e2020-05-26 16:16:42 -0600142
143 rdev_munmap(rdev, map);
144
Julius Werner09f29212015-09-29 13:51:35 -0700145 return out_size;
146
147 case CBFS_COMPRESS_LZMA:
Aaron Durbina121f952020-05-26 15:48:10 -0600148 if (!cbfs_lzma_enabled())
Julius Werner09f29212015-09-29 13:51:35 -0700149 return 0;
Aaron Durbin84f394e2020-05-26 16:16:42 -0600150 map = rdev_mmap(rdev, offset, in_size);
Julius Werner09f29212015-09-29 13:51:35 -0700151 if (map == NULL)
152 return 0;
153
154 /* Note: timestamp not useful for memory-mapped media (x86) */
155 timestamp_add_now(TS_START_ULZMA);
156 out_size = ulzman(map, in_size, buffer, buffer_size);
157 timestamp_add_now(TS_END_ULZMA);
158
159 rdev_munmap(rdev, map);
160
161 return out_size;
162
163 default:
Aaron Durbin899d13d2015-05-15 23:39:23 -0500164 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700165 }
Aaron Durbin899d13d2015-05-15 23:39:23 -0500166}
167
Aaron Durbin84f394e2020-05-26 16:16:42 -0600168static size_t cbfs_stage_load_and_decompress(const struct region_device *rdev,
169 size_t offset, size_t in_size, void *buffer, size_t buffer_size,
170 uint32_t compression)
171{
172 struct region_device rdev_src;
173
174 if (compression == CBFS_COMPRESS_LZ4) {
175 if (!cbfs_lz4_enabled())
176 return 0;
177 /* Load the compressed image to the end of the available memory
178 * area for in-place decompression. It is the responsibility of
179 * the caller to ensure that buffer_size is large enough
180 * (see compression.h, guaranteed by cbfstool for stages). */
181 void *compr_start = buffer + buffer_size - in_size;
182 if (rdev_readat(rdev, compr_start, offset, in_size) != in_size)
183 return 0;
184 /* Create a region device backed by memory. */
185 rdev_chain(&rdev_src, &addrspace_32bit.rdev,
186 (uintptr_t)compr_start, in_size);
187
188 return cbfs_load_and_decompress(&rdev_src, 0, in_size, buffer,
189 buffer_size, compression);
190 }
191
192 /* All other algorithms can use the generic implementation. */
193 return cbfs_load_and_decompress(rdev, offset, in_size, buffer,
194 buffer_size, compression);
195}
196
Stefan Reinauer800379f2010-03-01 08:34:19 +0000197static inline int tohex4(unsigned int c)
Patrick Georgib203c2f2009-08-20 14:48:03 +0000198{
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800199 return (c <= 9) ? (c + '0') : (c - 10 + 'a');
Patrick Georgib203c2f2009-08-20 14:48:03 +0000200}
201
Martin Rotha616a4b2020-01-21 09:28:40 -0700202static void tohex8(unsigned int val, char *dest)
203{
204 dest[0] = tohex4((val >> 4) & 0xf);
205 dest[1] = tohex4(val & 0xf);
206}
207
Lee Leahyb2d834a2017-03-08 16:52:22 -0800208static void tohex16(unsigned int val, char *dest)
Patrick Georgib203c2f2009-08-20 14:48:03 +0000209{
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100210 dest[0] = tohex4(val >> 12);
211 dest[1] = tohex4((val >> 8) & 0xf);
212 dest[2] = tohex4((val >> 4) & 0xf);
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800213 dest[3] = tohex4(val & 0xf);
Patrick Georgib203c2f2009-08-20 14:48:03 +0000214}
215
Aaron Durbin899d13d2015-05-15 23:39:23 -0500216void *cbfs_boot_map_optionrom(uint16_t vendor, uint16_t device)
Peter Stuge483b7bb2009-04-14 07:40:01 +0000217{
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800218 char name[17] = "pciXXXX,XXXX.rom";
Peter Stuge483b7bb2009-04-14 07:40:01 +0000219
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100220 tohex16(vendor, name + 3);
221 tohex16(device, name + 8);
Peter Stuge483b7bb2009-04-14 07:40:01 +0000222
Aaron Durbin899d13d2015-05-15 23:39:23 -0500223 return cbfs_boot_map_with_leak(name, CBFS_TYPE_OPTIONROM, NULL);
Peter Stuge483b7bb2009-04-14 07:40:01 +0000224}
225
Martin Rotha616a4b2020-01-21 09:28:40 -0700226void *cbfs_boot_map_optionrom_revision(uint16_t vendor, uint16_t device, uint8_t rev)
227{
228 char name[20] = "pciXXXX,XXXX,XX.rom";
229
230 tohex16(vendor, name + 3);
231 tohex16(device, name + 8);
232 tohex8(rev, name + 13);
233
234 return cbfs_boot_map_with_leak(name, CBFS_TYPE_OPTIONROM, NULL);
235}
236
T Michael Turney809fa7b2018-04-12 13:36:40 -0700237size_t cbfs_boot_load_file(const char *name, void *buf, size_t buf_size,
238 uint32_t type)
Julius Wernerf975e552016-08-19 15:43:06 -0700239{
240 struct cbfsf fh;
241 uint32_t compression_algo;
242 size_t decompressed_size;
Julius Wernerf975e552016-08-19 15:43:06 -0700243
244 if (cbfs_boot_locate(&fh, name, &type) < 0)
245 return 0;
246
247 if (cbfsf_decompression_info(&fh, &compression_algo,
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100248 &decompressed_size)
249 < 0
250 || decompressed_size > buf_size)
Julius Wernerf975e552016-08-19 15:43:06 -0700251 return 0;
252
253 return cbfs_load_and_decompress(&fh.data, 0, region_device_sz(&fh.data),
254 buf, buf_size, compression_algo);
255}
256
Aaron Durbin899d13d2015-05-15 23:39:23 -0500257int cbfs_prog_stage_load(struct prog *pstage)
258{
259 struct cbfs_stage stage;
260 uint8_t *load;
261 void *entry;
262 size_t fsize;
263 size_t foffset;
Aaron Durbin37a5d152015-09-17 16:09:30 -0500264 const struct region_device *fh = prog_rdev(pstage);
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800265
Aaron Durbin899d13d2015-05-15 23:39:23 -0500266 if (rdev_readat(fh, &stage, 0, sizeof(stage)) != sizeof(stage))
Julius Wernerb29bd27b2015-12-03 11:29:12 -0800267 return -1;
Aaron Durbin899d13d2015-05-15 23:39:23 -0500268
269 fsize = region_device_sz(fh);
270 fsize -= sizeof(stage);
271 foffset = 0;
272 foffset += sizeof(stage);
273
274 assert(fsize == stage.len);
275
276 /* Note: cbfs_stage fields are currently in the endianness of the
277 * running processor. */
278 load = (void *)(uintptr_t)stage.load;
279 entry = (void *)(uintptr_t)stage.entry;
280
Aaron Durbined253c82015-10-07 17:22:42 -0500281 /* Hacky way to not load programs over read only media. The stages
282 * that would hit this path initialize themselves. */
Julius Werner21a40532020-04-21 16:03:53 -0700283 if ((ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE) &&
284 !CONFIG(NO_XIP_EARLY_STAGES) && CONFIG(BOOT_DEVICE_MEMORY_MAPPED)) {
Aaron Durbined253c82015-10-07 17:22:42 -0500285 void *mapping = rdev_mmap(fh, foffset, fsize);
286 rdev_munmap(fh, mapping);
287 if (mapping == load)
288 goto out;
289 }
290
Aaron Durbin84f394e2020-05-26 16:16:42 -0600291 fsize = cbfs_stage_load_and_decompress(fh, foffset, fsize, load,
Julius Werner09f29212015-09-29 13:51:35 -0700292 stage.memlen, stage.compression);
293 if (!fsize)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500294 return -1;
295
296 /* Clear area not covered by file. */
297 memset(&load[fsize], 0, stage.memlen - fsize);
298
Aaron Durbin096f4572016-03-31 13:49:00 -0500299 prog_segment_loaded((uintptr_t)load, stage.memlen, SEG_FINAL);
Aaron Durbined253c82015-10-07 17:22:42 -0500300
301out:
Aaron Durbin899d13d2015-05-15 23:39:23 -0500302 prog_set_area(pstage, load, stage.memlen);
303 prog_set_entry(pstage, entry, NULL);
304
305 return 0;
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800306}
Aaron Durbin6d720f32015-12-08 17:00:23 -0600307
Aaron Durbinfe338e22019-11-18 12:35:21 -0700308int cbfs_boot_region_device(struct region_device *rdev)
Aaron Durbin6d720f32015-12-08 17:00:23 -0600309{
Aaron Durbin6d720f32015-12-08 17:00:23 -0600310 boot_device_init();
Julius Werner815611e2019-12-05 22:29:07 -0800311 return vboot_locate_cbfs(rdev) &&
312 fmap_locate_area_as_rdev("COREBOOT", rdev);
Aaron Durbin6d720f32015-12-08 17:00:23 -0600313}