blob: 84b8734f5352c6e422d68f33027765389800c89f [file] [log] [blame]
Aaron Durbinad935522012-12-24 14:28:37 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 ChromeOS Authors
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbinad935522012-12-24 14:28:37 -060014 */
Aaron Durbindd4a6d22013-02-27 22:50:12 -060015#include <assert.h>
Kyösti Mälkkiae98e832014-11-28 11:24:19 +020016#include <cbmem.h>
Aaron Durbin67514a72015-03-26 21:04:18 -050017#include <cbfs.h>
Aaron Durbinad935522012-12-24 14:28:37 -060018#include <stdint.h>
Aaron Durbine8c866a2013-02-08 17:05:36 -060019#include <stdlib.h>
Aaron Durbinad935522012-12-24 14:28:37 -060020#include <string.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050021#include <lib.h>
Aaron Durbinad935522012-12-24 14:28:37 -060022#include <console/console.h>
Ionela Voinescu00903e52015-01-09 13:14:20 +000023#include <program_loading.h>
Aaron Durbinad935522012-12-24 14:28:37 -060024#include <rmodule.h>
25
26/* Change this define to get more verbose debugging for module loading. */
27#define PK_ADJ_LEVEL BIOS_NEVER
28
Aaron Durbinad935522012-12-24 14:28:37 -060029static inline int rmodule_is_loaded(const struct rmodule *module)
30{
31 return module->location != NULL;
32}
33
34/* Calculate a loaded program address based on the blob address. */
35static inline void *rmodule_load_addr(const struct rmodule *module,
Aaron Durbin3eb8eb72014-03-10 16:13:58 -050036 uintptr_t blob_addr)
Aaron Durbinad935522012-12-24 14:28:37 -060037{
38 char *loc = module->location;
39 return &loc[blob_addr - module->header->module_link_start_address];
40}
41
42/* Initialize a rmodule structure based on raw data. */
43int rmodule_parse(void *ptr, struct rmodule *module)
44{
45 char *base;
46 struct rmodule_header *rhdr;
47
48 base = ptr;
49 rhdr = ptr;
50
51 if (rhdr == NULL)
52 return -1;
53
54 /* Sanity check the raw data. */
55 if (rhdr->magic != RMODULE_MAGIC)
56 return -1;
57 if (rhdr->version != RMODULE_VERSION_1)
58 return -1;
59
60 /* Indicate the module hasn't been loaded yet. */
61 module->location = NULL;
62
63 /* The rmodule only needs a reference to the reloc_header. */
64 module->header = rhdr;
65
66 /* The payload lives after the header. */
67 module->payload = &base[rhdr->payload_begin_offset];
68 module->payload_size = rhdr->payload_end_offset -
69 rhdr->payload_begin_offset;
70 module->relocations = &base[rhdr->relocations_begin_offset];
71
72 return 0;
73}
74
75int rmodule_memory_size(const struct rmodule *module)
76{
77 return module->header->module_program_size;
78}
79
80void *rmodule_parameters(const struct rmodule *module)
81{
82 if (!rmodule_is_loaded(module))
83 return NULL;
84
85 /* Indicate if there are no parameters. */
86 if (module->header->parameters_begin == module->header->parameters_end)
87 return NULL;
88
89 return rmodule_load_addr(module, module->header->parameters_begin);
90}
91
92int rmodule_entry_offset(const struct rmodule *module)
93{
94 return module->header->module_entry_point -
95 module->header->module_link_start_address;
96}
97
98void *rmodule_entry(const struct rmodule *module)
99{
100 if (!rmodule_is_loaded(module))
101 return NULL;
102
103 return rmodule_load_addr(module, module->header->module_entry_point);
104}
105
106static void rmodule_clear_bss(struct rmodule *module)
107{
108 char *begin;
109 int size;
110
111 begin = rmodule_load_addr(module, module->header->bss_begin);
112 size = module->header->bss_end - module->header->bss_begin;
113 memset(begin, 0, size);
114}
115
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500116static inline size_t rmodule_number_relocations(const struct rmodule *module)
Aaron Durbinad935522012-12-24 14:28:37 -0600117{
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500118 size_t r;
Aaron Durbinad935522012-12-24 14:28:37 -0600119
120 r = module->header->relocations_end_offset;
121 r -= module->header->relocations_begin_offset;
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500122 r /= sizeof(uintptr_t);
Aaron Durbinad935522012-12-24 14:28:37 -0600123 return r;
124}
125
126static void rmodule_copy_payload(const struct rmodule *module)
127{
128 printk(BIOS_DEBUG, "Loading module at %p with entry %p. "
129 "filesize: 0x%x memsize: 0x%x\n",
130 module->location, rmodule_entry(module),
131 module->payload_size, rmodule_memory_size(module));
Aaron Durbine8c866a2013-02-08 17:05:36 -0600132
133 /* No need to copy the payload if the load location and the
134 * payload location are the same. */
135 if (module->location == module->payload)
136 return;
137
Aaron Durbinad935522012-12-24 14:28:37 -0600138 memcpy(module->location, module->payload, module->payload_size);
139}
140
Aaron Durbinad935522012-12-24 14:28:37 -0600141static int rmodule_relocate(const struct rmodule *module)
142{
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500143 size_t num_relocations;
144 const uintptr_t *reloc;
145 uintptr_t adjustment;
Aaron Durbinad935522012-12-24 14:28:37 -0600146
147 /* Each relocation needs to be adjusted relative to the beginning of
148 * the loaded program. */
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500149 adjustment = (uintptr_t)rmodule_load_addr(module, 0);
Aaron Durbinad935522012-12-24 14:28:37 -0600150
151 reloc = module->relocations;
152 num_relocations = rmodule_number_relocations(module);
153
Furquan Shaikh7a3c3492014-07-22 10:59:28 -0700154 printk(BIOS_DEBUG, "Processing %zu relocs. Offset value of 0x%08lx\n",
155 num_relocations, (unsigned long)adjustment);
Aaron Durbinad935522012-12-24 14:28:37 -0600156
157 while (num_relocations > 0) {
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500158 uintptr_t *adjust_loc;
Aaron Durbinad935522012-12-24 14:28:37 -0600159
160 /* If the adjustment location is non-NULL adjust it. */
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500161 adjust_loc = rmodule_load_addr(module, *reloc);
Furquan Shaikh7a3c3492014-07-22 10:59:28 -0700162 printk(PK_ADJ_LEVEL, "Adjusting %p: 0x%08lx -> 0x%08lx\n",
163 adjust_loc, (unsigned long) *adjust_loc,
Furquan Shaikhae9cd012014-07-23 04:44:09 -0700164 (unsigned long) (*adjust_loc + adjustment));
Aaron Durbinad935522012-12-24 14:28:37 -0600165 *adjust_loc += adjustment;
Aaron Durbinad935522012-12-24 14:28:37 -0600166
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500167 reloc++;
Aaron Durbinad935522012-12-24 14:28:37 -0600168 num_relocations--;
169 }
170
171 return 0;
172}
173
174int rmodule_load_alignment(const struct rmodule *module)
175{
176 /* The load alignment is the start of the program's linked address.
177 * The base address where the program is loaded needs to be a multiple
178 * of the program's starting link address. That way all data alignment
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500179 * in the program is preserved. Default to 4KiB. */
180 return 4096;
Aaron Durbinad935522012-12-24 14:28:37 -0600181}
182
183int rmodule_load(void *base, struct rmodule *module)
184{
185 /*
186 * In order to load the module at a given address, the following steps
187 * take place:
188 * 1. Copy payload to base address.
Aaron Durbin55ed3102013-03-01 17:00:39 -0600189 * 2. Adjust relocations within the module to new base address.
190 * 3. Clear the bss segment last since the relocations live where
191 * the bss is. If an rmodule is being loaded from its load
192 * address the relocations need to be processed before the bss.
Aaron Durbinad935522012-12-24 14:28:37 -0600193 */
194 module->location = base;
195 rmodule_copy_payload(module);
Aaron Durbin55ed3102013-03-01 17:00:39 -0600196 if (rmodule_relocate(module))
197 return -1;
Aaron Durbinad935522012-12-24 14:28:37 -0600198 rmodule_clear_bss(module);
Aaron Durbinf72f9e72014-03-25 15:31:00 -0500199
Aaron Durbin6e76fff2015-03-20 09:42:05 -0500200 arch_segment_loaded((uintptr_t)module->location,
201 rmodule_memory_size(module), SEG_FINAL);
Aaron Durbinf72f9e72014-03-25 15:31:00 -0500202
Aaron Durbin55ed3102013-03-01 17:00:39 -0600203 return 0;
Aaron Durbinad935522012-12-24 14:28:37 -0600204}
205
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600206int rmodule_calc_region(unsigned int region_alignment, size_t rmodule_size,
207 size_t *region_size, int *load_offset)
Aaron Durbine8c866a2013-02-08 17:05:36 -0600208{
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600209 /* region_alignment must be a power of 2. */
210 if (region_alignment & (region_alignment - 1))
211 BUG();
Aaron Durbine8c866a2013-02-08 17:05:36 -0600212
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600213 if (region_alignment < 4096)
214 region_alignment = 4096;
215
216 /* Sanity check rmodule_header size. The code below assumes it is less
217 * than the minimum alignment required. */
218 if (region_alignment < sizeof(struct rmodule_header))
219 BUG();
220
221 /* Place the rmodule according to alignment. The rmodule files
Aaron Durbine8c866a2013-02-08 17:05:36 -0600222 * themselves are packed as a header and a payload, however the rmodule
223 * itself is linked along with the header. The header starts at address
224 * 0. Immediately following the header in the file is the program,
225 * however its starting address is determined by the rmodule linker
226 * script. In short, sizeof(struct rmodule_header) can be less than
227 * or equal to the linked address of the program. Therefore we want
228 * to place the rmodule so that the program falls on the aligned
229 * address with the header just before it. Therefore, we need at least
230 * a page to account for the size of the header. */
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600231 *region_size = ALIGN(rmodule_size + region_alignment, 4096);
Aaron Durbine8c866a2013-02-08 17:05:36 -0600232 /* The program starts immediately after the header. However,
233 * it needs to be aligned to a 4KiB boundary. Therefore, adjust the
234 * program location so that the program lands on a page boundary. The
235 * layout looks like the following:
236 *
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600237 * +--------------------------------+ region_alignment + region_size
Aaron Durbine8c866a2013-02-08 17:05:36 -0600238 * | >= 0 bytes from alignment |
239 * +--------------------------------+ program end (4KiB aligned)
240 * | program size |
241 * +--------------------------------+ program_begin (4KiB aligned)
242 * | sizeof(struct rmodule_header) |
243 * +--------------------------------+ rmodule header start
244 * | >= 0 bytes from alignment |
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600245 * +--------------------------------+ region_alignment
Aaron Durbine8c866a2013-02-08 17:05:36 -0600246 */
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600247 *load_offset = region_alignment;
Aaron Durbine8c866a2013-02-08 17:05:36 -0600248
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600249 return region_alignment - sizeof(struct rmodule_header);
Aaron Durbine8c866a2013-02-08 17:05:36 -0600250}
Aaron Durbinf545abf2013-10-24 10:14:06 -0500251
Aaron Durbin899d13d2015-05-15 23:39:23 -0500252int rmodule_stage_load(struct rmod_stage_load *rsl)
Aaron Durbinf545abf2013-10-24 10:14:06 -0500253{
254 struct rmodule rmod_stage;
255 size_t region_size;
256 char *stage_region;
257 int rmodule_offset;
258 int load_offset;
Aaron Durbin899d13d2015-05-15 23:39:23 -0500259 struct cbfs_stage stage;
260 void *rmod_loc;
261 struct region_device *fh;
Aaron Durbinf545abf2013-10-24 10:14:06 -0500262
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500263 if (rsl->prog == NULL || prog_name(rsl->prog) == NULL)
Aaron Durbin899d13d2015-05-15 23:39:23 -0500264 return -1;
265
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500266 fh = prog_rdev(rsl->prog);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500267
268 if (rdev_readat(fh, &stage, 0, sizeof(stage)) != sizeof(stage))
Aaron Durbinf545abf2013-10-24 10:14:06 -0500269 return -1;
270
271 rmodule_offset =
272 rmodule_calc_region(DYN_CBMEM_ALIGN_SIZE,
Aaron Durbin899d13d2015-05-15 23:39:23 -0500273 stage.memlen, &region_size, &load_offset);
Aaron Durbinf545abf2013-10-24 10:14:06 -0500274
Aaron Durbin7ca65222015-04-06 17:18:18 -0500275 stage_region = cbmem_add(rsl->cbmem_id, region_size);
Aaron Durbinf545abf2013-10-24 10:14:06 -0500276
Aaron Durbin7ca65222015-04-06 17:18:18 -0500277 if (stage_region == NULL)
Aaron Durbinf545abf2013-10-24 10:14:06 -0500278 return -1;
279
Aaron Durbin899d13d2015-05-15 23:39:23 -0500280 rmod_loc = &stage_region[rmodule_offset];
Aaron Durbinf545abf2013-10-24 10:14:06 -0500281
Aaron Durbin899d13d2015-05-15 23:39:23 -0500282 printk(BIOS_INFO, "Decompressing stage %s @ 0x%p (%d bytes)\n",
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500283 prog_name(rsl->prog), rmod_loc, stage.memlen);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500284
285 if (stage.compression == CBFS_COMPRESS_NONE) {
286 if (rdev_readat(fh, rmod_loc, sizeof(stage), stage.len) !=
287 stage.len)
288 return -1;
289 } else if (stage.compression == CBFS_COMPRESS_LZMA) {
290 size_t fsize;
291 void *map = rdev_mmap(fh, sizeof(stage), stage.len);
292
293 if (map == NULL)
294 return -1;
295
296 fsize = ulzma(map, rmod_loc);
297
298 rdev_munmap(fh, map);
299
300 if (!fsize)
301 return -1;
302 } else
Aaron Durbinf545abf2013-10-24 10:14:06 -0500303 return -1;
304
Aaron Durbin899d13d2015-05-15 23:39:23 -0500305 if (rmodule_parse(rmod_loc, &rmod_stage))
Aaron Durbinf545abf2013-10-24 10:14:06 -0500306 return -1;
307
308 if (rmodule_load(&stage_region[load_offset], &rmod_stage))
309 return -1;
310
Aaron Durbin7ca65222015-04-06 17:18:18 -0500311 prog_set_area(rsl->prog, rmod_stage.location,
312 rmodule_memory_size(&rmod_stage));
Aaron Durbin460703b2015-03-27 21:17:22 -0500313 prog_set_entry(rsl->prog, rmodule_entry(&rmod_stage), NULL);
Aaron Durbinf545abf2013-10-24 10:14:06 -0500314
315 return 0;
316}