blob: 5a46af8daac37f5726367852c92b4b073b58ce59 [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 *
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020037 * ERROR(x...)
38 * print an error message x (in printf format)
39 *
40 * LOG(x...)
Hung-Te Lind01d0362013-01-25 12:42:40 +080041 * print a message x (in printf format)
42 *
43 * DEBUG(x...)
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020044 * print a debug message x (in printf format)
45 *
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020046 */
47
Hung-Te Lind01d0362013-01-25 12:42:40 +080048#include <cbfs.h>
49#include <string.h>
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020050
Hung-Te Lind01d0362013-01-25 12:42:40 +080051/* returns a pointer to CBFS master header, or CBFS_HEADER_INVALID_ADDRESS
52 * on failure */
53const struct cbfs_header *cbfs_get_header(struct cbfs_media *media)
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020054{
Julius Wernerefcee762014-11-10 13:14:24 -080055 int32_t rel_offset;
Hung-Te Lind01d0362013-01-25 12:42:40 +080056 const struct cbfs_header *header;
57 struct cbfs_media default_media;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020058
Hung-Te Lind01d0362013-01-25 12:42:40 +080059 if (media == CBFS_DEFAULT_MEDIA) {
60 media = &default_media;
61 if (init_default_cbfs_media(media) != 0) {
Patrick Georgi46cb96bb2013-02-19 17:59:21 +010062 ERROR("Failed to initialize default media.\n");
63 return CBFS_HEADER_INVALID_ADDRESS;
Hung-Te Lind01d0362013-01-25 12:42:40 +080064 }
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020065 }
Hung-Te Lind01d0362013-01-25 12:42:40 +080066 media->open(media);
Julius Wernerefcee762014-11-10 13:14:24 -080067
68 if (!media->read(media, &rel_offset, (size_t)(0 - sizeof(int32_t)),
69 sizeof(int32_t))) {
70 ERROR("Could not read CBFS master header offset!\n");
71 return CBFS_HEADER_INVALID_ADDRESS;
72 }
73 header = media->map(media, (size_t)rel_offset, sizeof(*header));
74 DEBUG("CBFS header at %#zx (-%#zx from end of image).\n",
75 (size_t)rel_offset, (size_t)-rel_offset);
Hung-Te Lind01d0362013-01-25 12:42:40 +080076 media->close(media);
77
78 if (header == CBFS_MEDIA_INVALID_MAP_ADDRESS) {
Julius Wernerefcee762014-11-10 13:14:24 -080079 ERROR("Failed to load CBFS header from %#zx(-%#zx)\n",
80 (size_t)rel_offset, (size_t)-rel_offset);
Hung-Te Lind01d0362013-01-25 12:42:40 +080081 return CBFS_HEADER_INVALID_ADDRESS;
82 }
83
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020084 if (CBFS_HEADER_MAGIC != ntohl(header->magic)) {
Julius Wernerefcee762014-11-10 13:14:24 -080085 ERROR("Could not find valid CBFS master header at %#zx(-%#zx): "
86 "magic %#.8x vs %#.8x.\n", (size_t)rel_offset,
87 (size_t)-rel_offset, CBFS_HEADER_MAGIC,
Hung-Te Lind01d0362013-01-25 12:42:40 +080088 ntohl(header->magic));
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020089 if (header->magic == 0xffffffff) {
90 ERROR("Maybe ROM is not mapped properly?\n");
91 }
Hung-Te Lind01d0362013-01-25 12:42:40 +080092 return CBFS_HEADER_INVALID_ADDRESS;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020093 }
94 return header;
95}
96
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020097/* public API starts here*/
Hung-Te Lind01d0362013-01-25 12:42:40 +080098struct cbfs_file *cbfs_get_file(struct cbfs_media *media, const char *name)
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020099{
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700100 const char *vardata;
101 uint32_t offset, romsize, vardata_len;
Hung-Te Lind01d0362013-01-25 12:42:40 +0800102 const struct cbfs_header *header;
103 struct cbfs_file file, *file_ptr;
104 struct cbfs_media default_media;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200105
Hung-Te Lind01d0362013-01-25 12:42:40 +0800106 if (media == CBFS_DEFAULT_MEDIA) {
107 media = &default_media;
108 if (init_default_cbfs_media(media) != 0) {
Patrick Georgi46cb96bb2013-02-19 17:59:21 +0100109 ERROR("Failed to initialize default media.\n");
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200110 return NULL;
111 }
112 }
Hung-Te Lind01d0362013-01-25 12:42:40 +0800113
114 if (CBFS_HEADER_INVALID_ADDRESS == (header = cbfs_get_header(media)))
115 return NULL;
116
117 // Logical offset (for source media) of first file.
118 offset = ntohl(header->offset);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800119 romsize = ntohl(header->romsize);
120
Hung-Te Linfbf07832013-02-20 15:50:06 +0800121 // TODO Add a "size" in CBFS header for a platform independent way to
122 // determine the end of CBFS data.
Stefan Reinauer1b4d3942015-06-29 15:47:34 -0700123#if IS_ENABLED(CONFIG_LP_ARCH_X86)
Steven Sherke17843c2013-08-14 14:55:57 -0600124 // resolve actual length of ROM used for CBFS components
125 // the bootblock size was not taken into account
126 romsize -= ntohl(header->bootblocksize);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800127
Steven Sherke17843c2013-08-14 14:55:57 -0600128 // fine tune the length to handle alignment positioning.
129 // using (bootblock size) % align, to derive the
130 // number of bytes the bootblock is off from the alignment size.
Patrick Georgi2272b802015-07-14 22:29:04 +0200131 if ((ntohl(header->bootblocksize) % CBFS_ALIGNMENT))
132 romsize -= (CBFS_ALIGNMENT -
133 (ntohl(header->bootblocksize) % CBFS_ALIGNMENT));
Steven Sherke17843c2013-08-14 14:55:57 -0600134 else
135 romsize -= 1;
136#endif
137
Patrick Georgi2272b802015-07-14 22:29:04 +0200138 DEBUG("CBFS location: 0x%x~0x%x\n", offset, romsize);
Dave Frodin37f8c3a2013-05-06 15:51:39 -0600139 DEBUG("Looking for '%s' starting from 0x%x.\n", name, offset);
Steven Sherke17843c2013-08-14 14:55:57 -0600140
Hung-Te Lind01d0362013-01-25 12:42:40 +0800141 media->open(media);
142 while (offset < romsize &&
143 media->read(media, &file, offset, sizeof(file)) == sizeof(file)) {
144 if (memcmp(CBFS_FILE_MAGIC, file.magic,
145 sizeof(file.magic)) != 0) {
Patrick Georgi2272b802015-07-14 22:29:04 +0200146 uint32_t new_align = CBFS_ALIGNMENT;
147 if (offset % CBFS_ALIGNMENT)
148 new_align += CBFS_ALIGNMENT -
149 (offset % CBFS_ALIGNMENT);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800150 ERROR("ERROR: No file header found at 0x%xx - "
151 "try next aligned address: 0x%x.\n", offset,
152 offset + new_align);
153 offset += new_align;
154 continue;
155 }
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700156 vardata_len = ntohl(file.offset) - sizeof(file);
157 DEBUG(" - load entry 0x%x variable data (%d bytes)...\n",
158 offset, vardata_len);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800159
160 // load file name (arbitrary length).
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700161 vardata = (const char*)media->map(
162 media, offset + sizeof(file), vardata_len);
163 if (vardata == CBFS_MEDIA_INVALID_MAP_ADDRESS) {
Hung-Te Lind01d0362013-01-25 12:42:40 +0800164 ERROR("ERROR: Failed to get filename: 0x%x.\n", offset);
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700165 } else if (strcmp(vardata, name) == 0) {
Hung-Te Lind01d0362013-01-25 12:42:40 +0800166 int file_offset = ntohl(file.offset),
167 file_len = ntohl(file.len);
Dave Frodin37f8c3a2013-05-06 15:51:39 -0600168 DEBUG("Found file (offset=0x%x, len=%d).\n",
Hung-Te Lind01d0362013-01-25 12:42:40 +0800169 offset + file_offset, file_len);
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700170 media->unmap(media, vardata);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800171 file_ptr = media->map(media, offset,
172 file_offset + file_len);
173 media->close(media);
174 return file_ptr;
175 } else {
Aaron Durbin3eddcff2013-05-01 08:40:13 -0500176 DEBUG(" (unmatched file @0x%x: %s)\n", offset,
Daisuke Nojiri5c6dc722015-07-09 15:07:45 -0700177 vardata);
178 media->unmap(media, vardata);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800179 }
180
181 // Move to next file.
182 offset += ntohl(file.len) + ntohl(file.offset);
Patrick Georgi2272b802015-07-14 22:29:04 +0200183 if (offset % CBFS_ALIGNMENT)
184 offset += CBFS_ALIGNMENT - (offset % CBFS_ALIGNMENT);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800185 }
186 media->close(media);
Dave Frodin37f8c3a2013-05-06 15:51:39 -0600187 LOG("WARNING: '%s' not found.\n", name);
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200188 return NULL;
189}
190
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100191void *cbfs_get_file_content(struct cbfs_media *media, const char *name,
192 int type, size_t *sz)
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200193{
Hung-Te Lind01d0362013-01-25 12:42:40 +0800194 struct cbfs_file *file = cbfs_get_file(media, name);
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200195
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100196 if (sz)
197 *sz = 0;
198
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200199 if (file == NULL) {
200 ERROR("Could not find file '%s'.\n", name);
201 return NULL;
202 }
203
204 if (ntohl(file->type) != type) {
Hung-Te Lind01d0362013-01-25 12:42:40 +0800205 ERROR("File '%s' is of type %x, but we requested %x.\n", name,
206 ntohl(file->type), type);
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200207 return NULL;
208 }
209
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100210 if (sz)
211 *sz = ntohl(file->len);
212
Daisuke Nojirid66f1da2015-07-09 15:07:45 -0700213 void *file_content = (void *)CBFS_SUBHEADER(file);
214
215 struct cbfs_file_attribute *attr = cbfs_file_first_attr(file);
216 while (attr) {
217 if (ntohl(attr->tag) == CBFS_FILE_ATTR_TAG_COMPRESSION)
218 break;
219 attr = cbfs_file_next_attr(file, attr);
220 }
221
222 int compression_algo = CBFS_COMPRESS_NONE;
223 if (attr) {
224 struct cbfs_file_attr_compression *comp =
225 (struct cbfs_file_attr_compression *)attr;
226 compression_algo = ntohl(comp->compression);
227 DEBUG("File '%s' is compressed (alg=%d)\n", compression_algo);
228 *sz = ntohl(comp->decompressed_size);
229 }
230
231 void *dst = malloc(*sz);
232 if (dst == NULL)
233 goto err;
234
235 if (!cbfs_decompress(compression_algo, file_content, dst, *sz))
236 goto err;
237
238 media->unmap(media, file);
239 return dst;
240
241err:
242 media->unmap(media, file);
243 free(dst);
244 return NULL;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200245}
246
Patrick Georgi377d1db2015-09-16 18:53:40 +0200247struct cbfs_file_attribute *cbfs_file_first_attr(struct cbfs_file *file)
248{
249 /* attributes_offset should be 0 when there is no attribute, but all
250 * values that point into the cbfs_file header are invalid, too. */
251 if (ntohl(file->attributes_offset) <= sizeof(*file))
252 return NULL;
253
254 /* There needs to be enough space for the file header and one
255 * attribute header for this to make sense. */
256 if (ntohl(file->offset) <=
257 sizeof(*file) + sizeof(struct cbfs_file_attribute))
258 return NULL;
259
260 return (struct cbfs_file_attribute *)
261 (((uint8_t *)file) + ntohl(file->attributes_offset));
262}
263
264struct cbfs_file_attribute *cbfs_file_next_attr(struct cbfs_file *file,
265 struct cbfs_file_attribute *attr)
266{
267 /* ex falso sequitur quodlibet */
268 if (attr == NULL)
269 return NULL;
270
271 /* Is there enough space for another attribute? */
272 if ((uint8_t *)attr + ntohl(attr->len) +
273 sizeof(struct cbfs_file_attribute) >=
274 (uint8_t *)file + ntohl(file->offset))
275 return NULL;
276
277 struct cbfs_file_attribute *next = (struct cbfs_file_attribute *)
278 (((uint8_t *)attr) + ntohl(attr->len));
279 /* If any, "unused" attributes must come last. */
280 if (ntohl(next->tag) == CBFS_FILE_ATTR_TAG_UNUSED)
281 return NULL;
282 if (ntohl(next->tag) == CBFS_FILE_ATTR_TAG_UNUSED2)
283 return NULL;
284
285 return next;
286}
287
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200288int cbfs_decompress(int algo, void *src, void *dst, int len)
289{
290 switch (algo) {
291 case CBFS_COMPRESS_NONE:
292 memcpy(dst, src, len);
Gabe Black0c605a52013-07-01 04:57:37 -0700293 return len;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200294#ifdef CBFS_CORE_WITH_LZMA
295 case CBFS_COMPRESS_LZMA:
Gabe Black0c605a52013-07-01 04:57:37 -0700296 return ulzma(src, dst);
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200297#endif
298 default:
Hung-Te Lind01d0362013-01-25 12:42:40 +0800299 ERROR("tried to decompress %d bytes with algorithm #%x,"
300 "but that algorithm id is unsupported.\n", len,
301 algo);
Gabe Black0c605a52013-07-01 04:57:37 -0700302 return 0;
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +0200303 }
304}