blob: 7e660ce83c0cdf61d296fd9146cf7155ce113932 [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 */
30
Hung-Te Lind01d0362013-01-25 12:42:40 +080031/* The CBFS core requires a couple of #defines or functions to adapt it to the
32 * target environment:
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020033 *
34 * CBFS_CORE_WITH_LZMA (must be #define)
35 * if defined, ulzma() must exist for decompression of data streams
36 *
Julius Werner09f29212015-09-29 13:51:35 -070037 * CBFS_CORE_WITH_LZ4 (must be #define)
38 * if defined, ulz4f() must exist for decompression of data streams
39 *
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020040 * ERROR(x...)
41 * print an error message x (in printf format)
42 *
43 * LOG(x...)
Hung-Te Lind01d0362013-01-25 12:42:40 +080044 * print a message x (in printf format)
45 *
46 * DEBUG(x...)
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020047 * print a debug message x (in printf format)
48 *
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020049 */
50
Hung-Te Lind01d0362013-01-25 12:42:40 +080051#include <cbfs.h>
52#include <string.h>
Daisuke Nojiri2ccb2802015-09-02 10:53:13 -070053#include <sysinfo.h>
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020054
Hung-Te Lind01d0362013-01-25 12:42:40 +080055/* returns a pointer to CBFS master header, or CBFS_HEADER_INVALID_ADDRESS
56 * on failure */
57const struct cbfs_header *cbfs_get_header(struct cbfs_media *media)
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020058{
Julius Wernerefcee762014-11-10 13:14:24 -080059 int32_t rel_offset;
Hung-Te Lind01d0362013-01-25 12:42:40 +080060 const struct cbfs_header *header;
61 struct cbfs_media default_media;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020062
Hung-Te Lind01d0362013-01-25 12:42:40 +080063 if (media == CBFS_DEFAULT_MEDIA) {
64 media = &default_media;
65 if (init_default_cbfs_media(media) != 0) {
Patrick Georgi46cb96bb2013-02-19 17:59:21 +010066 ERROR("Failed to initialize default media.\n");
67 return CBFS_HEADER_INVALID_ADDRESS;
Hung-Te Lind01d0362013-01-25 12:42:40 +080068 }
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020069 }
Hung-Te Lind01d0362013-01-25 12:42:40 +080070 media->open(media);
Julius Wernerefcee762014-11-10 13:14:24 -080071
72 if (!media->read(media, &rel_offset, (size_t)(0 - sizeof(int32_t)),
73 sizeof(int32_t))) {
74 ERROR("Could not read CBFS master header offset!\n");
75 return CBFS_HEADER_INVALID_ADDRESS;
76 }
77 header = media->map(media, (size_t)rel_offset, sizeof(*header));
78 DEBUG("CBFS header at %#zx (-%#zx from end of image).\n",
79 (size_t)rel_offset, (size_t)-rel_offset);
Hung-Te Lind01d0362013-01-25 12:42:40 +080080 media->close(media);
81
82 if (header == CBFS_MEDIA_INVALID_MAP_ADDRESS) {
Julius Wernerefcee762014-11-10 13:14:24 -080083 ERROR("Failed to load CBFS header from %#zx(-%#zx)\n",
84 (size_t)rel_offset, (size_t)-rel_offset);
Hung-Te Lind01d0362013-01-25 12:42:40 +080085 return CBFS_HEADER_INVALID_ADDRESS;
86 }
87
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020088 if (CBFS_HEADER_MAGIC != ntohl(header->magic)) {
Julius Wernerefcee762014-11-10 13:14:24 -080089 ERROR("Could not find valid CBFS master header at %#zx(-%#zx): "
90 "magic %#.8x vs %#.8x.\n", (size_t)rel_offset,
91 (size_t)-rel_offset, CBFS_HEADER_MAGIC,
Hung-Te Lind01d0362013-01-25 12:42:40 +080092 ntohl(header->magic));
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020093 if (header->magic == 0xffffffff) {
94 ERROR("Maybe ROM is not mapped properly?\n");
95 }
Hung-Te Lind01d0362013-01-25 12:42:40 +080096 return CBFS_HEADER_INVALID_ADDRESS;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020097 }
98 return header;
99}
100
Daisuke Nojiri2ccb2802015-09-02 10:53:13 -0700101static int get_cbfs_range(uint32_t *offset, uint32_t *cbfs_end,
102 struct cbfs_media *media)
103{
104 const struct cbfs_header *header;
105
Patrick Georgif86d0352015-10-23 20:25:03 +0200106 if (media == CBFS_DEFAULT_MEDIA &&
107 lib_sysinfo.cbfs_offset && lib_sysinfo.cbfs_size) {
Daisuke Nojiri2ccb2802015-09-02 10:53:13 -0700108 *offset = lib_sysinfo.cbfs_offset;
109 *cbfs_end = *offset + lib_sysinfo.cbfs_size;
110 return 0;
111 }
112
Daisuke Nojiri03688ec2015-11-19 09:10:41 -0800113 /* read offset and size from cbfs master header */
114 DEBUG("Read CBFS offset & size from master header\n");
Daisuke Nojiri2ccb2802015-09-02 10:53:13 -0700115 header = cbfs_get_header(media);
116 if (header == CBFS_HEADER_INVALID_ADDRESS)
117 return -1;
118 // Logical offset (for source media) of first file.
119 *offset = ntohl(header->offset);
120 *cbfs_end = ntohl(header->romsize);
121#if IS_ENABLED(CONFIG_LP_ARCH_X86)
122 // resolve actual length of ROM used for CBFS components
123 // the bootblock size was not taken into account
124 *cbfs_end -= ntohl(header->bootblocksize);
125
126 // fine tune the length to handle alignment positioning.
127 // using (bootblock size) % align, to derive the
128 // number of bytes the bootblock is off from the alignment size.
129 if ((ntohl(header->bootblocksize) % CBFS_ALIGNMENT))
130 *cbfs_end -= (CBFS_ALIGNMENT -
131 (ntohl(header->bootblocksize) % CBFS_ALIGNMENT));
132 else
133 *cbfs_end -= 1;
134#endif
135 return 0;
136}
137
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200138/* public API starts here*/
Julius Werner22964792016-05-12 14:40:57 -0700139struct cbfs_handle *cbfs_get_handle(struct cbfs_media *media, const char *name)
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200140{
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700141 const char *vardata;
Daisuke Nojiri2ccb2802015-09-02 10:53:13 -0700142 uint32_t offset, cbfs_end, vardata_len;
Julius Werner22964792016-05-12 14:40:57 -0700143 struct cbfs_file file;
144 struct cbfs_handle *handle = malloc(sizeof(*handle));
145
146 if (!handle)
147 return NULL;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200148
Daisuke Nojiri03688ec2015-11-19 09:10:41 -0800149 if (get_cbfs_range(&offset, &cbfs_end, media)) {
150 ERROR("Failed to find cbfs range\n");
151 return NULL;
152 }
153
Hung-Te Lind01d0362013-01-25 12:42:40 +0800154 if (media == CBFS_DEFAULT_MEDIA) {
Julius Werner22964792016-05-12 14:40:57 -0700155 media = &handle->media;
Hung-Te Lind01d0362013-01-25 12:42:40 +0800156 if (init_default_cbfs_media(media) != 0) {
Patrick Georgi46cb96bb2013-02-19 17:59:21 +0100157 ERROR("Failed to initialize default media.\n");
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200158 return NULL;
159 }
Julius Werner22964792016-05-12 14:40:57 -0700160 } else {
161 memcpy(&handle->media, media, sizeof(*media));
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200162 }
Hung-Te Lind01d0362013-01-25 12:42:40 +0800163
Daisuke Nojiri2ccb2802015-09-02 10:53:13 -0700164 DEBUG("CBFS location: 0x%x~0x%x\n", offset, cbfs_end);
Dave Frodin37f8c3a2013-05-06 15:51:39 -0600165 DEBUG("Looking for '%s' starting from 0x%x.\n", name, offset);
Steven Sherke17843c2013-08-14 14:55:57 -0600166
Hung-Te Lind01d0362013-01-25 12:42:40 +0800167 media->open(media);
Daisuke Nojiri2ccb2802015-09-02 10:53:13 -0700168 while (offset < cbfs_end &&
Hung-Te Lind01d0362013-01-25 12:42:40 +0800169 media->read(media, &file, offset, sizeof(file)) == sizeof(file)) {
170 if (memcmp(CBFS_FILE_MAGIC, file.magic,
171 sizeof(file.magic)) != 0) {
Patrick Georgi2272b802015-07-14 22:29:04 +0200172 uint32_t new_align = CBFS_ALIGNMENT;
173 if (offset % CBFS_ALIGNMENT)
174 new_align += CBFS_ALIGNMENT -
175 (offset % CBFS_ALIGNMENT);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800176 ERROR("ERROR: No file header found at 0x%xx - "
177 "try next aligned address: 0x%x.\n", offset,
178 offset + new_align);
179 offset += new_align;
180 continue;
181 }
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700182 vardata_len = ntohl(file.offset) - sizeof(file);
183 DEBUG(" - load entry 0x%x variable data (%d bytes)...\n",
184 offset, vardata_len);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800185
186 // load file name (arbitrary length).
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700187 vardata = (const char*)media->map(
188 media, offset + sizeof(file), vardata_len);
189 if (vardata == CBFS_MEDIA_INVALID_MAP_ADDRESS) {
Hung-Te Lind01d0362013-01-25 12:42:40 +0800190 ERROR("ERROR: Failed to get filename: 0x%x.\n", offset);
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700191 } else if (strcmp(vardata, name) == 0) {
Hung-Te Lind01d0362013-01-25 12:42:40 +0800192 int file_offset = ntohl(file.offset),
193 file_len = ntohl(file.len);
Dave Frodin37f8c3a2013-05-06 15:51:39 -0600194 DEBUG("Found file (offset=0x%x, len=%d).\n",
Hung-Te Lind01d0362013-01-25 12:42:40 +0800195 offset + file_offset, file_len);
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700196 media->unmap(media, vardata);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800197 media->close(media);
Julius Werner22964792016-05-12 14:40:57 -0700198 handle->type = ntohl(file.type);
199 handle->media_offset = offset;
200 handle->content_offset = file_offset;
201 handle->content_size = file_len;
202 handle->attribute_offset =
203 ntohl(file.attributes_offset);
204 return handle;
Hung-Te Lind01d0362013-01-25 12:42:40 +0800205 } else {
Aaron Durbin3eddcff2013-05-01 08:40:13 -0500206 DEBUG(" (unmatched file @0x%x: %s)\n", offset,
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700207 vardata);
208 media->unmap(media, vardata);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800209 }
210
211 // Move to next file.
212 offset += ntohl(file.len) + ntohl(file.offset);
Patrick Georgi2272b802015-07-14 22:29:04 +0200213 if (offset % CBFS_ALIGNMENT)
214 offset += CBFS_ALIGNMENT - (offset % CBFS_ALIGNMENT);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800215 }
216 media->close(media);
Dave Frodin37f8c3a2013-05-06 15:51:39 -0600217 LOG("WARNING: '%s' not found.\n", name);
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200218 return NULL;
219}
220
Julius Werner22964792016-05-12 14:40:57 -0700221void *cbfs_get_contents(struct cbfs_handle *handle, size_t *size, size_t limit)
222{
223 struct cbfs_media *m = &handle->media;
224 size_t on_media_size = handle->content_size;
225 int algo = CBFS_COMPRESS_NONE;
226 void *ret = NULL;
227 size_t dummy_size;
228
229 if (!size)
230 size = &dummy_size;
231
232 struct cbfs_file_attr_compression *comp =
233 cbfs_get_attr(handle, CBFS_FILE_ATTR_TAG_COMPRESSION);
234 if (comp) {
235 algo = ntohl(comp->compression);
236 DEBUG("File '%s' is compressed (alg=%d)\n", name, algo);
237 *size = ntohl(comp->decompressed_size);
238 /* TODO: Implement partial decompression with |limit| */
239 }
240
241 if (algo == CBFS_COMPRESS_NONE) {
242 if (limit != 0 && limit < on_media_size) {
243 *size = limit;
244 on_media_size = limit;
245 } else {
246 *size = on_media_size;
247 }
248 }
249
250 void *data = m->map(m, handle->media_offset + handle->content_offset,
251 on_media_size);
252 if (data == CBFS_MEDIA_INVALID_MAP_ADDRESS)
253 return NULL;
254
255 ret = malloc(*size);
256 if (ret != NULL && !cbfs_decompress(algo, data, ret, *size)) {
257 free(ret);
258 ret = NULL;
259 }
260
261 m->unmap(m, data);
262 return ret;
263}
264
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100265void *cbfs_get_file_content(struct cbfs_media *media, const char *name,
266 int type, size_t *sz)
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200267{
Julius Werner22964792016-05-12 14:40:57 -0700268 void *ret = NULL;
269 struct cbfs_handle *handle = cbfs_get_handle(media, name);
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200270
Julius Werner22964792016-05-12 14:40:57 -0700271 if (!handle)
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200272 return NULL;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200273
Julius Werner22964792016-05-12 14:40:57 -0700274 if (handle->type == type)
275 ret = cbfs_get_contents(handle, sz, 0);
276 else
Hung-Te Lind01d0362013-01-25 12:42:40 +0800277 ERROR("File '%s' is of type %x, but we requested %x.\n", name,
Julius Werner22964792016-05-12 14:40:57 -0700278 handle->type, type);
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200279
Julius Werner22964792016-05-12 14:40:57 -0700280 free(handle);
281 return ret;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200282}
283
Julius Werner22964792016-05-12 14:40:57 -0700284void *cbfs_get_attr(struct cbfs_handle *handle, uint32_t tag)
Patrick Georgi377d1db2015-09-16 18:53:40 +0200285{
Julius Werner22964792016-05-12 14:40:57 -0700286 struct cbfs_media *m = &handle->media;
287 uint32_t offset = handle->media_offset + handle->attribute_offset;
288 uint32_t end = handle->media_offset + handle->content_offset;
289 struct cbfs_file_attribute attr;
290 void *ret;
291
292 /* attribute_offset should be 0 when there is no attribute, but all
Patrick Georgi377d1db2015-09-16 18:53:40 +0200293 * values that point into the cbfs_file header are invalid, too. */
Julius Werner22964792016-05-12 14:40:57 -0700294 if (handle->attribute_offset <= sizeof(struct cbfs_file))
Patrick Georgi377d1db2015-09-16 18:53:40 +0200295 return NULL;
296
Julius Werner22964792016-05-12 14:40:57 -0700297 m->open(m);
298 while (offset + sizeof(attr) <= end) {
299 if (m->read(m, &attr, offset, sizeof(attr)) != sizeof(attr)) {
300 ERROR("Failed to read attribute header %#x\n", offset);
301 m->close(m);
302 return NULL;
303 }
304 if (ntohl(attr.tag) != tag) {
305 offset += ntohl(attr.len);
306 continue;
307 }
308 ret = m->map(m, offset, ntohl(attr.len));
309 if (ret == CBFS_MEDIA_INVALID_MAP_ADDRESS) {
310 ERROR("Failed to map attribute at %#x\n", offset);
311 m->close(m);
312 return NULL;
313 }
314 return ret;
Patrick Georgieb33b3f2015-09-17 20:45:52 +0200315 }
Julius Werner22964792016-05-12 14:40:57 -0700316 m->close(m);
Patrick Georgieb33b3f2015-09-17 20:45:52 +0200317
Julius Werner22964792016-05-12 14:40:57 -0700318 return NULL;
Patrick Georgieb33b3f2015-09-17 20:45:52 +0200319}
320
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200321int cbfs_decompress(int algo, void *src, void *dst, int len)
322{
323 switch (algo) {
324 case CBFS_COMPRESS_NONE:
325 memcpy(dst, src, len);
Gabe Black0c605a52013-07-01 04:57:37 -0700326 return len;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200327#ifdef CBFS_CORE_WITH_LZMA
328 case CBFS_COMPRESS_LZMA:
Gabe Black0c605a52013-07-01 04:57:37 -0700329 return ulzma(src, dst);
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200330#endif
Julius Werner09f29212015-09-29 13:51:35 -0700331#ifdef CBFS_CORE_WITH_LZ4
332 case CBFS_COMPRESS_LZ4:
333 return ulz4f(src, dst);
334#endif
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200335 default:
Hung-Te Lind01d0362013-01-25 12:42:40 +0800336 ERROR("tried to decompress %d bytes with algorithm #%x,"
337 "but that algorithm id is unsupported.\n", len,
338 algo);
Gabe Black0c605a52013-07-01 04:57:37 -0700339 return 0;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200340 }
341}