blob: cdc04f333ed095971cc6ab6f9e731b834e6f853e [file] [log] [blame]
Patrick Georgib7b56dd82009-09-14 13:29:27 +00001/*
2 * common utility functions for cbfstool
3 *
4 * Copyright (C) 2009 coresystems GmbH
5 * written by Patrick Georgi <patrick.georgi@coresystems.de>
David Hendricks90ca3b62012-11-16 14:48:22 -08006 * Copyright (C) 2012 Google, Inc.
Patrick Georgib7b56dd82009-09-14 13:29:27 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
20 */
21
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
Sol Boucher0e539312015-03-05 15:38:03 -080025#include <strings.h>
Patrick Georgi32eeff42014-08-11 09:27:18 +020026#include <sys/types.h>
27#include <sys/stat.h>
28#include <unistd.h>
Uwe Hermann942a40d2010-02-10 19:52:35 +000029#include <libgen.h>
Patrick Georgib7b56dd82009-09-14 13:29:27 +000030#include "common.h"
31#include "cbfs.h"
Patrick Georgib7b56dd82009-09-14 13:29:27 +000032
Hung-Te Lin332795c2013-01-28 15:53:34 +080033/* Utilities */
Aaron Durbinfae75172014-03-05 15:02:21 -060034int verbose = 0;
Hung-Te Lin332795c2013-01-28 15:53:34 +080035
36/* Small, OS/libc independent runtime check for endianess */
37int is_big_endian(void)
38{
39 static const uint32_t inttest = 0x12345678;
Sol Boucher0e539312015-03-05 15:38:03 -080040 const uint8_t inttest_lsb = *(const uint8_t *)&inttest;
Hung-Te Lin332795c2013-01-28 15:53:34 +080041 if (inttest_lsb == 0x12) {
42 return 1;
43 }
44 return 0;
45}
46
Patrick Georgi32eeff42014-08-11 09:27:18 +020047static off_t get_file_size(FILE *f)
48{
49 struct stat s;
50 int fd = fileno(f);
51 if (fd == -1) return -1;
52 if (fstat(fd, &s) == -1) return -1;
53 return s.st_size;
54}
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080055/* Buffer and file I/O */
56
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010057int buffer_create(struct buffer *buffer, size_t size, const char *name)
58{
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080059 buffer->name = strdup(name);
Sol Boucher64c6cd72015-04-26 02:32:43 -070060 buffer->offset = 0;
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080061 buffer->size = size;
62 buffer->data = (char *)malloc(buffer->size);
63 if (!buffer->data) {
64 fprintf(stderr, "buffer_create: Insufficient memory (0x%zx).\n",
65 size);
66 }
67 return (buffer->data == NULL);
68}
69
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010070int buffer_from_file(struct buffer *buffer, const char *filename)
71{
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080072 FILE *fp = fopen(filename, "rb");
73 if (!fp) {
74 perror(filename);
75 return -1;
76 }
Sol Boucher64c6cd72015-04-26 02:32:43 -070077 buffer->offset = 0;
Patrick Georgi32eeff42014-08-11 09:27:18 +020078 buffer->size = get_file_size(fp);
Sol Boucher0e539312015-03-05 15:38:03 -080079 if (buffer->size == -1u) {
Patrick Georgi32eeff42014-08-11 09:27:18 +020080 fprintf(stderr, "could not determine size of %s\n", filename);
81 fclose(fp);
82 return -1;
83 }
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080084 buffer->name = strdup(filename);
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080085 buffer->data = (char *)malloc(buffer->size);
86 assert(buffer->data);
87 if (fread(buffer->data, 1, buffer->size, fp) != buffer->size) {
88 fprintf(stderr, "incomplete read: %s\n", filename);
89 fclose(fp);
90 return -1;
91 }
92 fclose(fp);
93 return 0;
94}
95
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010096int buffer_write_file(struct buffer *buffer, const char *filename)
97{
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080098 FILE *fp = fopen(filename, "wb");
99 if (!fp) {
100 perror(filename);
101 return -1;
102 }
103 assert(buffer && buffer->data);
104 if (fwrite(buffer->data, 1, buffer->size, fp) != buffer->size) {
105 fprintf(stderr, "incomplete write: %s\n", filename);
106 fclose(fp);
107 return -1;
108 }
109 fclose(fp);
110 return 0;
111}
112
Stefan Reinauer2dd161f2015-03-04 00:55:03 +0100113void buffer_delete(struct buffer *buffer)
114{
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +0800115 assert(buffer);
116 if (buffer->name) {
117 free(buffer->name);
118 buffer->name = NULL;
119 }
120 if (buffer->data) {
Sol Boucher64c6cd72015-04-26 02:32:43 -0700121 free(buffer->data - buffer->offset);
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +0800122 buffer->data = NULL;
123 }
Sol Boucher64c6cd72015-04-26 02:32:43 -0700124 buffer->offset = 0;
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +0800125 buffer->size = 0;
126}
127
Ronald G. Minnich3fcde222014-02-04 17:35:44 -0800128void cbfs_file_get_header(struct buffer *buf, struct cbfs_file *file)
129{
130 bgets(buf, &file->magic, sizeof(file->magic));
131 file->len = xdr_be.get32(buf);
132 file->type = xdr_be.get32(buf);
133 file->checksum = xdr_be.get32(buf);
134 file->offset = xdr_be.get32(buf);
135}
136
David Hendricks90ca3b62012-11-16 14:48:22 -0800137static struct {
138 uint32_t arch;
139 const char *name;
140} arch_names[] = {
Furquan Shaikh2af76f42014-04-28 16:39:40 -0700141 { CBFS_ARCHITECTURE_AARCH64, "arm64" },
Gabe Black51edd542013-09-30 23:00:33 -0700142 { CBFS_ARCHITECTURE_ARM, "arm" },
Paul Burton33186922014-06-13 23:56:45 +0100143 { CBFS_ARCHITECTURE_MIPS, "mips" },
Ronald G. Minnich833bf202014-10-16 10:55:39 +0000144 { CBFS_ARCHITECTURE_RISCV, "riscv" },
David Hendricks90ca3b62012-11-16 14:48:22 -0800145 { CBFS_ARCHITECTURE_X86, "x86" },
146 { CBFS_ARCHITECTURE_UNKNOWN, "unknown" }
147};
148
149uint32_t string_to_arch(const char *arch_string)
150{
151 int i;
152 uint32_t ret = CBFS_ARCHITECTURE_UNKNOWN;
153
154 for (i = 0; i < ARRAY_SIZE(arch_names); i++) {
155 if (!strcasecmp(arch_string, arch_names[i].name)) {
156 ret = arch_names[i].arch;
157 break;
158 }
159 }
160
161 return ret;
162}
163
Stefan Reinauer8f50e532013-11-13 14:34:57 -0800164const char *arch_to_string(uint32_t a)
165{
166 int i;
167 const char *ret = NULL;
168
169 for (i = 0; i < ARRAY_SIZE(arch_names); i++) {
170 if (a == arch_names[i].arch) {
171 ret = arch_names[i].name;
172 break;
173 }
174 }
175
176 return ret;
177}
178
Mathias Krause941158f2012-04-12 21:36:23 +0200179static struct filetypes_t {
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000180 uint32_t type;
181 const char *name;
182} filetypes[] = {
183 {CBFS_COMPONENT_STAGE, "stage"},
184 {CBFS_COMPONENT_PAYLOAD, "payload"},
185 {CBFS_COMPONENT_OPTIONROM, "optionrom"},
Stefan Reinauer800379f2010-03-01 08:34:19 +0000186 {CBFS_COMPONENT_BOOTSPLASH, "bootsplash"},
187 {CBFS_COMPONENT_RAW, "raw"},
188 {CBFS_COMPONENT_VSA, "vsa"},
189 {CBFS_COMPONENT_MBI, "mbi"},
190 {CBFS_COMPONENT_MICROCODE, "microcode"},
Martin Rothdde307c2015-03-24 15:54:20 -0600191 {CBFS_COMPONENT_FSP, "fsp"},
192 {CBFS_COMPONENT_MRC, "mrc"},
Patrick Georgia865b172011-01-14 07:40:24 +0000193 {CBFS_COMPONENT_CMOS_DEFAULT, "cmos default"},
Mathias Krause941158f2012-04-12 21:36:23 +0200194 {CBFS_COMPONENT_CMOS_LAYOUT, "cmos layout"},
Martin Rothdde307c2015-03-24 15:54:20 -0600195 {CBFS_COMPONENT_SPD, "spd"},
196 {CBFS_COMPONENT_MRC_CACHE, "mrc_cache"},
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000197 {CBFS_COMPONENT_DELETED, "deleted"},
198 {CBFS_COMPONENT_NULL, "null"}
199};
200
Stefan Reinauer07040582010-04-24 21:24:06 +0000201void print_supported_filetypes(void)
202{
203 int i, number = ARRAY_SIZE(filetypes);
204
205 for (i=0; i<number; i++) {
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +0800206 LOG(" %s%c", filetypes[i].name, (i==(number-1))?'\n':',');
Stefan Reinauer07040582010-04-24 21:24:06 +0000207 if ((i%8) == 7)
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +0800208 LOG("\n");
Stefan Reinauer07040582010-04-24 21:24:06 +0000209 }
210}
211
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000212uint64_t intfiletype(const char *name)
213{
Mathias Krause41c229c2012-07-17 21:17:15 +0200214 size_t i;
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000215 for (i = 0; i < (sizeof(filetypes) / sizeof(struct filetypes_t)); i++)
216 if (strcmp(filetypes[i].name, name) == 0)
217 return filetypes[i].type;
218 return -1;
219}