blob: a3294de63e4608b5d8d831cddb50dc77e5c433b3 [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
Julius Werner09f29212015-09-29 13:51:35 -070094size_t cbfs_load_and_decompress(const struct region_device *rdev, size_t offset,
95 size_t in_size, void *buffer, size_t buffer_size, uint32_t compression)
Aaron Durbin899d13d2015-05-15 23:39:23 -050096{
Julius Werner09f29212015-09-29 13:51:35 -070097 size_t out_size;
98
99 switch (compression) {
100 case CBFS_COMPRESS_NONE:
Julius Wernerf975e552016-08-19 15:43:06 -0700101 if (buffer_size < in_size)
102 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700103 if (rdev_readat(rdev, buffer, offset, in_size) != in_size)
104 return 0;
105 return in_size;
106
107 case CBFS_COMPRESS_LZ4:
Julius Werner21a40532020-04-21 16:03:53 -0700108 if ((ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE) &&
Julius Wernercd49cce2019-03-05 16:53:33 -0800109 !CONFIG(COMPRESS_PRERAM_STAGES))
Julius Werner09f29212015-09-29 13:51:35 -0700110 return 0;
111
112 /* Load the compressed image to the end of the available memory
113 * area for in-place decompression. It is the responsibility of
114 * the caller to ensure that buffer_size is large enough
115 * (see compression.h, guaranteed by cbfstool for stages). */
116 void *compr_start = buffer + buffer_size - in_size;
117 if (rdev_readat(rdev, compr_start, offset, in_size) != in_size)
118 return 0;
119
120 timestamp_add_now(TS_START_ULZ4F);
121 out_size = ulz4fn(compr_start, in_size, buffer, buffer_size);
122 timestamp_add_now(TS_END_ULZ4F);
123 return out_size;
124
125 case CBFS_COMPRESS_LZMA:
Kyösti Mälkkib5211ef2018-06-01 07:11:25 +0300126 /* We assume here romstage and postcar are never compressed. */
Julius Werner21a40532020-04-21 16:03:53 -0700127 if (ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE)
Julius Werner09f29212015-09-29 13:51:35 -0700128 return 0;
Julius Wernercd49cce2019-03-05 16:53:33 -0800129 if (ENV_ROMSTAGE && CONFIG(POSTCAR_STAGE))
Kyösti Mälkkib5211ef2018-06-01 07:11:25 +0300130 return 0;
Lee Leahyd950f512016-07-25 09:53:35 -0700131 if ((ENV_ROMSTAGE || ENV_POSTCAR)
Julius Wernercd49cce2019-03-05 16:53:33 -0800132 && !CONFIG(COMPRESS_RAMSTAGE))
Julius Werner09f29212015-09-29 13:51:35 -0700133 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700134 void *map = rdev_mmap(rdev, offset, in_size);
135 if (map == NULL)
136 return 0;
137
138 /* Note: timestamp not useful for memory-mapped media (x86) */
139 timestamp_add_now(TS_START_ULZMA);
140 out_size = ulzman(map, in_size, buffer, buffer_size);
141 timestamp_add_now(TS_END_ULZMA);
142
143 rdev_munmap(rdev, map);
144
145 return out_size;
146
147 default:
Aaron Durbin899d13d2015-05-15 23:39:23 -0500148 return 0;
Julius Werner09f29212015-09-29 13:51:35 -0700149 }
Aaron Durbin899d13d2015-05-15 23:39:23 -0500150}
151
Stefan Reinauer800379f2010-03-01 08:34:19 +0000152static inline int tohex4(unsigned int c)
Patrick Georgib203c2f2009-08-20 14:48:03 +0000153{
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800154 return (c <= 9) ? (c + '0') : (c - 10 + 'a');
Patrick Georgib203c2f2009-08-20 14:48:03 +0000155}
156
Martin Rotha616a4b2020-01-21 09:28:40 -0700157static void tohex8(unsigned int val, char *dest)
158{
159 dest[0] = tohex4((val >> 4) & 0xf);
160 dest[1] = tohex4(val & 0xf);
161}
162
Lee Leahyb2d834a2017-03-08 16:52:22 -0800163static void tohex16(unsigned int val, char *dest)
Patrick Georgib203c2f2009-08-20 14:48:03 +0000164{
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100165 dest[0] = tohex4(val >> 12);
166 dest[1] = tohex4((val >> 8) & 0xf);
167 dest[2] = tohex4((val >> 4) & 0xf);
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800168 dest[3] = tohex4(val & 0xf);
Patrick Georgib203c2f2009-08-20 14:48:03 +0000169}
170
Aaron Durbin899d13d2015-05-15 23:39:23 -0500171void *cbfs_boot_map_optionrom(uint16_t vendor, uint16_t device)
Peter Stuge483b7bb2009-04-14 07:40:01 +0000172{
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800173 char name[17] = "pciXXXX,XXXX.rom";
Peter Stuge483b7bb2009-04-14 07:40:01 +0000174
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100175 tohex16(vendor, name + 3);
176 tohex16(device, name + 8);
Peter Stuge483b7bb2009-04-14 07:40:01 +0000177
Aaron Durbin899d13d2015-05-15 23:39:23 -0500178 return cbfs_boot_map_with_leak(name, CBFS_TYPE_OPTIONROM, NULL);
Peter Stuge483b7bb2009-04-14 07:40:01 +0000179}
180
Martin Rotha616a4b2020-01-21 09:28:40 -0700181void *cbfs_boot_map_optionrom_revision(uint16_t vendor, uint16_t device, uint8_t rev)
182{
183 char name[20] = "pciXXXX,XXXX,XX.rom";
184
185 tohex16(vendor, name + 3);
186 tohex16(device, name + 8);
187 tohex8(rev, name + 13);
188
189 return cbfs_boot_map_with_leak(name, CBFS_TYPE_OPTIONROM, NULL);
190}
191
T Michael Turney809fa7b2018-04-12 13:36:40 -0700192size_t cbfs_boot_load_file(const char *name, void *buf, size_t buf_size,
193 uint32_t type)
Julius Wernerf975e552016-08-19 15:43:06 -0700194{
195 struct cbfsf fh;
196 uint32_t compression_algo;
197 size_t decompressed_size;
Julius Wernerf975e552016-08-19 15:43:06 -0700198
199 if (cbfs_boot_locate(&fh, name, &type) < 0)
200 return 0;
201
202 if (cbfsf_decompression_info(&fh, &compression_algo,
Philipp Deppenwiese66f9a092018-11-08 10:59:40 +0100203 &decompressed_size)
204 < 0
205 || decompressed_size > buf_size)
Julius Wernerf975e552016-08-19 15:43:06 -0700206 return 0;
207
208 return cbfs_load_and_decompress(&fh.data, 0, region_device_sz(&fh.data),
209 buf, buf_size, compression_algo);
210}
211
Aaron Durbin899d13d2015-05-15 23:39:23 -0500212int cbfs_prog_stage_load(struct prog *pstage)
213{
214 struct cbfs_stage stage;
215 uint8_t *load;
216 void *entry;
217 size_t fsize;
218 size_t foffset;
Aaron Durbin37a5d152015-09-17 16:09:30 -0500219 const struct region_device *fh = prog_rdev(pstage);
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800220
Aaron Durbin899d13d2015-05-15 23:39:23 -0500221 if (rdev_readat(fh, &stage, 0, sizeof(stage)) != sizeof(stage))
Julius Wernerb29bd27b2015-12-03 11:29:12 -0800222 return -1;
Aaron Durbin899d13d2015-05-15 23:39:23 -0500223
224 fsize = region_device_sz(fh);
225 fsize -= sizeof(stage);
226 foffset = 0;
227 foffset += sizeof(stage);
228
229 assert(fsize == stage.len);
230
231 /* Note: cbfs_stage fields are currently in the endianness of the
232 * running processor. */
233 load = (void *)(uintptr_t)stage.load;
234 entry = (void *)(uintptr_t)stage.entry;
235
Aaron Durbined253c82015-10-07 17:22:42 -0500236 /* Hacky way to not load programs over read only media. The stages
237 * that would hit this path initialize themselves. */
Julius Werner21a40532020-04-21 16:03:53 -0700238 if ((ENV_BOOTBLOCK || ENV_SEPARATE_VERSTAGE) &&
239 !CONFIG(NO_XIP_EARLY_STAGES) && CONFIG(BOOT_DEVICE_MEMORY_MAPPED)) {
Aaron Durbined253c82015-10-07 17:22:42 -0500240 void *mapping = rdev_mmap(fh, foffset, fsize);
241 rdev_munmap(fh, mapping);
242 if (mapping == load)
243 goto out;
244 }
245
Julius Werner09f29212015-09-29 13:51:35 -0700246 fsize = cbfs_load_and_decompress(fh, foffset, fsize, load,
247 stage.memlen, stage.compression);
248 if (!fsize)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500249 return -1;
250
251 /* Clear area not covered by file. */
252 memset(&load[fsize], 0, stage.memlen - fsize);
253
Aaron Durbin096f4572016-03-31 13:49:00 -0500254 prog_segment_loaded((uintptr_t)load, stage.memlen, SEG_FINAL);
Aaron Durbined253c82015-10-07 17:22:42 -0500255
256out:
Aaron Durbin899d13d2015-05-15 23:39:23 -0500257 prog_set_area(pstage, load, stage.memlen);
258 prog_set_entry(pstage, entry, NULL);
259
260 return 0;
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800261}
Aaron Durbin6d720f32015-12-08 17:00:23 -0600262
Aaron Durbinfe338e22019-11-18 12:35:21 -0700263int cbfs_boot_region_device(struct region_device *rdev)
Aaron Durbin6d720f32015-12-08 17:00:23 -0600264{
Aaron Durbin6d720f32015-12-08 17:00:23 -0600265 boot_device_init();
Julius Werner815611e2019-12-05 22:29:07 -0800266 return vboot_locate_cbfs(rdev) &&
267 fmap_locate_area_as_rdev("COREBOOT", rdev);
Aaron Durbin6d720f32015-12-08 17:00:23 -0600268}