blob: 3cce799fe30d70bce52802bb256bb55557c38430 [file] [log] [blame]
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +02001/*
2 * This file is part of the libpayload project.
3 *
4 * Copyright (C) 2011 secunet Security Networks AG
Hung-Te Lind01d0362013-01-25 12:42:40 +08005 * Copyright (C) 2013 Google, Inc.
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +02006 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 */
Hung-Te Lind01d0362013-01-25 12:42:40 +080030#define LIBPAYLOAD
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020031
Hung-Te Lind01d0362013-01-25 12:42:40 +080032#ifdef LIBPAYLOAD
33# include <libpayload-config.h>
Stefan Reinauer1b4d3942015-06-29 15:47:34 -070034# if IS_ENABLED(CONFIG_LP_LZMA)
Hung-Te Lind01d0362013-01-25 12:42:40 +080035# include <lzma.h>
36# define CBFS_CORE_WITH_LZMA
37# endif
Julius Werner09f29212015-09-29 13:51:35 -070038# if IS_ENABLED(CONFIG_LP_LZ4)
39# include <lz4.h>
40# define CBFS_CORE_WITH_LZ4
41# endif
Hung-Te Lind01d0362013-01-25 12:42:40 +080042# define CBFS_MINI_BUILD
43#elif defined(__SMM__)
44# define CBFS_MINI_BUILD
45#else
46# define CBFS_CORE_WITH_LZMA
Julius Werner09f29212015-09-29 13:51:35 -070047# define CBFS_CORE_WITH_LZ4
Hung-Te Lind01d0362013-01-25 12:42:40 +080048# include <lib.h>
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020049#endif
50
Hung-Te Lind01d0362013-01-25 12:42:40 +080051#include <cbfs.h>
52#include <string.h>
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020053
Hung-Te Lind01d0362013-01-25 12:42:40 +080054#ifdef LIBPAYLOAD
55# include <stdio.h>
56# define DEBUG(x...)
Patrick Georgi9a91ba12013-03-14 15:11:34 +010057# define LOG(x...)
Hung-Te Lind01d0362013-01-25 12:42:40 +080058# define ERROR(x...) printf(x)
59#else
60# include <console/console.h>
61# define ERROR(x...) printk(BIOS_ERR, "CBFS: " x)
62# define LOG(x...) printk(BIOS_INFO, "CBFS: " x)
Gabe Black1ee2c6d2013-08-09 04:27:35 -070063# if CONFIG_LP_DEBUG_CBFS
Hung-Te Lind01d0362013-01-25 12:42:40 +080064# define DEBUG(x...) printk(BIOS_SPEW, "CBFS: " x)
65# else
66# define DEBUG(x...)
67# endif
68#endif
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020069
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020070#include "cbfs_core.c"
71
Hung-Te Lind01d0362013-01-25 12:42:40 +080072#ifndef __SMM__
73static inline int tohex4(unsigned int c)
Stefan Reinauer09e16dc2013-01-14 10:20:15 -080074{
Hung-Te Lind01d0362013-01-25 12:42:40 +080075 return (c <= 9) ? (c + '0') : (c - 10 + 'a');
Patrick Georgi409d17d2012-01-17 15:52:05 +010076}
77
Hung-Te Lind01d0362013-01-25 12:42:40 +080078static void tohex16(unsigned int val, char* dest)
Stefan Reinauer09e16dc2013-01-14 10:20:15 -080079{
Hung-Te Lind01d0362013-01-25 12:42:40 +080080 dest[0] = tohex4(val>>12);
81 dest[1] = tohex4((val>>8) & 0xf);
82 dest[2] = tohex4((val>>4) & 0xf);
83 dest[3] = tohex4(val & 0xf);
Patrick Georgi409d17d2012-01-17 15:52:05 +010084}
85
Hung-Te Lind01d0362013-01-25 12:42:40 +080086void *cbfs_load_optionrom(struct cbfs_media *media, uint16_t vendor,
Daisuke Nojirid66f1da2015-07-09 15:07:45 -070087 uint16_t device)
Patrick Georgi409d17d2012-01-17 15:52:05 +010088{
Hung-Te Lind01d0362013-01-25 12:42:40 +080089 char name[17] = "pciXXXX,XXXX.rom";
Hung-Te Lind01d0362013-01-25 12:42:40 +080090
91 tohex16(vendor, name+3);
92 tohex16(device, name+8);
93
Daisuke Nojirid66f1da2015-07-09 15:07:45 -070094 return cbfs_get_file_content(media, name, CBFS_TYPE_OPTIONROM, NULL);
Patrick Georgi409d17d2012-01-17 15:52:05 +010095}
96
Hung-Te Lind01d0362013-01-25 12:42:40 +080097void * cbfs_load_stage(struct cbfs_media *media, const char *name)
Patrick Georgi409d17d2012-01-17 15:52:05 +010098{
Hung-Te Lind01d0362013-01-25 12:42:40 +080099 struct cbfs_stage *stage = (struct cbfs_stage *)
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100100 cbfs_get_file_content(media, name, CBFS_TYPE_STAGE, NULL);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800101 /* this is a mess. There is no ntohll. */
102 /* for now, assume compatible byte order until we solve this. */
Furquan Shaikh79a591f2014-05-13 13:47:32 -0700103 uintptr_t entry;
Gabe Blackec3a4622013-07-01 04:34:29 -0700104 uint32_t final_size;
Hung-Te Lind01d0362013-01-25 12:42:40 +0800105
106 if (stage == NULL)
107 return (void *) -1;
108
Furquan Shaikh79a591f2014-05-13 13:47:32 -0700109 LOG("loading stage %s @ 0x%p (%d bytes), entry @ 0x%llx\n",
Hung-Te Lind01d0362013-01-25 12:42:40 +0800110 name,
Furquan Shaikh79a591f2014-05-13 13:47:32 -0700111 (void*)(uintptr_t) stage->load, stage->memlen,
Hung-Te Lind01d0362013-01-25 12:42:40 +0800112 stage->entry);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800113
Gabe Blackec3a4622013-07-01 04:34:29 -0700114 final_size = cbfs_decompress(stage->compression,
115 ((unsigned char *) stage) +
116 sizeof(struct cbfs_stage),
Furquan Shaikh79a591f2014-05-13 13:47:32 -0700117 (void *) (uintptr_t) stage->load,
Gabe Blackec3a4622013-07-01 04:34:29 -0700118 stage->len);
Patrick Georgi33ab4fe2016-07-29 16:36:23 +0200119 if (!final_size) {
120 entry = -1;
121 goto out;
122 }
Hung-Te Lind01d0362013-01-25 12:42:40 +0800123
Gabe Blackec3a4622013-07-01 04:34:29 -0700124 memset((void *)((uintptr_t)stage->load + final_size), 0,
125 stage->memlen - final_size);
126
Hung-Te Lind01d0362013-01-25 12:42:40 +0800127 DEBUG("stage loaded.\n");
128
129 entry = stage->entry;
130 // entry = ntohll(stage->entry);
131
Patrick Georgi33ab4fe2016-07-29 16:36:23 +0200132out:
Daisuke Nojirid66f1da2015-07-09 15:07:45 -0700133 free(stage);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800134 return (void *) entry;
Patrick Georgi409d17d2012-01-17 15:52:05 +0100135}
Hung-Te Lind01d0362013-01-25 12:42:40 +0800136
137int cbfs_execute_stage(struct cbfs_media *media, const char *name)
138{
139 struct cbfs_stage *stage = (struct cbfs_stage *)
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100140 cbfs_get_file_content(media, name, CBFS_TYPE_STAGE, NULL);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800141
142 if (stage == NULL)
143 return 1;
144
145 if (ntohl(stage->compression) != CBFS_COMPRESS_NONE) {
146 LOG("Unable to run %s: Compressed file"
147 "Not supported for in-place execution\n", name);
Daisuke Nojirid66f1da2015-07-09 15:07:45 -0700148 free(stage);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800149 return 1;
150 }
151
Furquan Shaikh79a591f2014-05-13 13:47:32 -0700152 LOG("run @ %p\n", (void *) (uintptr_t)ntohll(stage->entry));
Daisuke Nojirid66f1da2015-07-09 15:07:45 -0700153 int result = run_address((void *)(uintptr_t)ntohll(stage->entry));
154 free(stage);
155 return result;
Hung-Te Lind01d0362013-01-25 12:42:40 +0800156}
157
158void *cbfs_load_payload(struct cbfs_media *media, const char *name)
159{
160 return (struct cbfs_payload *)cbfs_get_file_content(
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100161 media, name, CBFS_TYPE_PAYLOAD, NULL);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800162}
163
164struct cbfs_file *cbfs_find(const char *name) {
Julius Werner22964792016-05-12 14:40:57 -0700165 struct cbfs_handle *handle = cbfs_get_handle(CBFS_DEFAULT_MEDIA, name);
166 struct cbfs_media *m = &handle->media;
167 void *ret;
168
169 if (!handle)
170 return NULL;
171
172 ret = m->map(m, handle->media_offset,
173 handle->content_offset + handle->content_size);
174 if (ret == CBFS_MEDIA_INVALID_MAP_ADDRESS) {
175 free(handle);
176 return NULL;
177 }
178
179 free(handle);
180 return ret;
Hung-Te Lind01d0362013-01-25 12:42:40 +0800181}
182
183void *cbfs_find_file(const char *name, int type) {
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100184 return cbfs_get_file_content(CBFS_DEFAULT_MEDIA, name, type, NULL);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800185}
186
187const struct cbfs_header *get_cbfs_header(void) {
188 return cbfs_get_header(CBFS_DEFAULT_MEDIA);
189}
190
191/* Simple buffer */
192
193void *cbfs_simple_buffer_map(struct cbfs_simple_buffer *buffer,
194 struct cbfs_media *media,
195 size_t offset, size_t count) {
196 void *address = buffer->buffer + buffer->allocated;;
Daisuke Nojiri03e81882015-07-28 09:21:08 -0700197 DEBUG("simple_buffer_map(offset=%zu, count=%zu): "
198 "allocated=%zu, size=%zu, last_allocate=%zu\n",
Hung-Te Lind01d0362013-01-25 12:42:40 +0800199 offset, count, buffer->allocated, buffer->size,
200 buffer->last_allocate);
201 if (buffer->allocated + count >= buffer->size)
202 return CBFS_MEDIA_INVALID_MAP_ADDRESS;
203 if (media->read(media, address, offset, count) != count) {
204 ERROR("simple_buffer: fail to read %zd bytes from 0x%zx\n",
205 count, offset);
206 return CBFS_MEDIA_INVALID_MAP_ADDRESS;
207 }
208 buffer->allocated += count;
209 buffer->last_allocate = count;
210 return address;
211}
212
213void *cbfs_simple_buffer_unmap(struct cbfs_simple_buffer *buffer,
214 const void *address) {
215 // TODO Add simple buffer management so we can free more than last
216 // allocated one.
217 DEBUG("simple_buffer_unmap(address=0x%p): "
Daisuke Nojiri03e81882015-07-28 09:21:08 -0700218 "allocated=%zu, size=%zu, last_allocate=%zu\n",
Hung-Te Lind01d0362013-01-25 12:42:40 +0800219 address, buffer->allocated, buffer->size,
220 buffer->last_allocate);
221 if ((buffer->buffer + buffer->allocated - buffer->last_allocate) ==
222 address) {
223 buffer->allocated -= buffer->last_allocate;
224 buffer->last_allocate = 0;
225 }
226 return NULL;
227}
228
229/**
230 * run_address is passed the address of a function taking no parameters and
231 * jumps to it, returning the result.
232 * @param f the address to call as a function.
233 * @return value returned by the function.
234 */
235
236int run_address(void *f)
237{
238 int (*v) (void);
239 v = f;
240 return v();
241}
242
243#endif