blob: 6ac39ef826af3659165a9cbfe9d46a160b9b920c [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>
Patrick Georgi32eeff42014-08-11 09:27:18 +020025#include <sys/types.h>
26#include <sys/stat.h>
27#include <unistd.h>
Uwe Hermann942a40d2010-02-10 19:52:35 +000028#include <libgen.h>
Patrick Georgib7b56dd82009-09-14 13:29:27 +000029#include "common.h"
30#include "cbfs.h"
Patrick Georgib7b56dd82009-09-14 13:29:27 +000031
Hung-Te Lin332795c2013-01-28 15:53:34 +080032/* Utilities */
Aaron Durbinfae75172014-03-05 15:02:21 -060033int verbose = 0;
Hung-Te Lin332795c2013-01-28 15:53:34 +080034
35/* Small, OS/libc independent runtime check for endianess */
36int is_big_endian(void)
37{
38 static const uint32_t inttest = 0x12345678;
39 uint8_t inttest_lsb = *(uint8_t *)&inttest;
40 if (inttest_lsb == 0x12) {
41 return 1;
42 }
43 return 0;
44}
45
Patrick Georgi32eeff42014-08-11 09:27:18 +020046static off_t get_file_size(FILE *f)
47{
48 struct stat s;
49 int fd = fileno(f);
50 if (fd == -1) return -1;
51 if (fstat(fd, &s) == -1) return -1;
52 return s.st_size;
53}
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080054/* Buffer and file I/O */
55
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010056int buffer_create(struct buffer *buffer, size_t size, const char *name)
57{
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080058 buffer->name = strdup(name);
59 buffer->size = size;
60 buffer->data = (char *)malloc(buffer->size);
61 if (!buffer->data) {
62 fprintf(stderr, "buffer_create: Insufficient memory (0x%zx).\n",
63 size);
64 }
65 return (buffer->data == NULL);
66}
67
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010068int buffer_from_file(struct buffer *buffer, const char *filename)
69{
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080070 FILE *fp = fopen(filename, "rb");
71 if (!fp) {
72 perror(filename);
73 return -1;
74 }
Patrick Georgi32eeff42014-08-11 09:27:18 +020075 buffer->size = get_file_size(fp);
76 if (buffer->size == -1) {
77 fprintf(stderr, "could not determine size of %s\n", filename);
78 fclose(fp);
79 return -1;
80 }
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080081 buffer->name = strdup(filename);
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080082 buffer->data = (char *)malloc(buffer->size);
83 assert(buffer->data);
84 if (fread(buffer->data, 1, buffer->size, fp) != buffer->size) {
85 fprintf(stderr, "incomplete read: %s\n", filename);
86 fclose(fp);
87 return -1;
88 }
89 fclose(fp);
90 return 0;
91}
92
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010093int buffer_write_file(struct buffer *buffer, const char *filename)
94{
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080095 FILE *fp = fopen(filename, "wb");
96 if (!fp) {
97 perror(filename);
98 return -1;
99 }
100 assert(buffer && buffer->data);
101 if (fwrite(buffer->data, 1, buffer->size, fp) != buffer->size) {
102 fprintf(stderr, "incomplete write: %s\n", filename);
103 fclose(fp);
104 return -1;
105 }
106 fclose(fp);
107 return 0;
108}
109
Stefan Reinauer2dd161f2015-03-04 00:55:03 +0100110void buffer_delete(struct buffer *buffer)
111{
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +0800112 assert(buffer);
113 if (buffer->name) {
114 free(buffer->name);
115 buffer->name = NULL;
116 }
117 if (buffer->data) {
118 free(buffer->data);
119 buffer->data = NULL;
120 }
121 buffer->size = 0;
122}
123
Ronald G. Minnich3fcde222014-02-04 17:35:44 -0800124void cbfs_file_get_header(struct buffer *buf, struct cbfs_file *file)
125{
126 bgets(buf, &file->magic, sizeof(file->magic));
127 file->len = xdr_be.get32(buf);
128 file->type = xdr_be.get32(buf);
129 file->checksum = xdr_be.get32(buf);
130 file->offset = xdr_be.get32(buf);
131}
132
David Hendricks90ca3b62012-11-16 14:48:22 -0800133static struct {
134 uint32_t arch;
135 const char *name;
136} arch_names[] = {
Furquan Shaikh2af76f42014-04-28 16:39:40 -0700137 { CBFS_ARCHITECTURE_AARCH64, "arm64" },
Gabe Black51edd542013-09-30 23:00:33 -0700138 { CBFS_ARCHITECTURE_ARM, "arm" },
Paul Burton33186922014-06-13 23:56:45 +0100139 { CBFS_ARCHITECTURE_MIPS, "mips" },
Ronald G. Minnich833bf202014-10-16 10:55:39 +0000140 { CBFS_ARCHITECTURE_RISCV, "riscv" },
David Hendricks90ca3b62012-11-16 14:48:22 -0800141 { CBFS_ARCHITECTURE_X86, "x86" },
142 { CBFS_ARCHITECTURE_UNKNOWN, "unknown" }
143};
144
145uint32_t string_to_arch(const char *arch_string)
146{
147 int i;
148 uint32_t ret = CBFS_ARCHITECTURE_UNKNOWN;
149
150 for (i = 0; i < ARRAY_SIZE(arch_names); i++) {
151 if (!strcasecmp(arch_string, arch_names[i].name)) {
152 ret = arch_names[i].arch;
153 break;
154 }
155 }
156
157 return ret;
158}
159
Stefan Reinauer8f50e532013-11-13 14:34:57 -0800160const char *arch_to_string(uint32_t a)
161{
162 int i;
163 const char *ret = NULL;
164
165 for (i = 0; i < ARRAY_SIZE(arch_names); i++) {
166 if (a == arch_names[i].arch) {
167 ret = arch_names[i].name;
168 break;
169 }
170 }
171
172 return ret;
173}
174
Mathias Krause941158f2012-04-12 21:36:23 +0200175static struct filetypes_t {
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000176 uint32_t type;
177 const char *name;
178} filetypes[] = {
179 {CBFS_COMPONENT_STAGE, "stage"},
180 {CBFS_COMPONENT_PAYLOAD, "payload"},
181 {CBFS_COMPONENT_OPTIONROM, "optionrom"},
Stefan Reinauer800379f2010-03-01 08:34:19 +0000182 {CBFS_COMPONENT_BOOTSPLASH, "bootsplash"},
183 {CBFS_COMPONENT_RAW, "raw"},
184 {CBFS_COMPONENT_VSA, "vsa"},
185 {CBFS_COMPONENT_MBI, "mbi"},
186 {CBFS_COMPONENT_MICROCODE, "microcode"},
Patrick Georgia865b172011-01-14 07:40:24 +0000187 {CBFS_COMPONENT_CMOS_DEFAULT, "cmos default"},
Mathias Krause941158f2012-04-12 21:36:23 +0200188 {CBFS_COMPONENT_CMOS_LAYOUT, "cmos layout"},
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000189 {CBFS_COMPONENT_DELETED, "deleted"},
190 {CBFS_COMPONENT_NULL, "null"}
191};
192
Stefan Reinauer07040582010-04-24 21:24:06 +0000193void print_supported_filetypes(void)
194{
195 int i, number = ARRAY_SIZE(filetypes);
196
197 for (i=0; i<number; i++) {
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +0800198 LOG(" %s%c", filetypes[i].name, (i==(number-1))?'\n':',');
Stefan Reinauer07040582010-04-24 21:24:06 +0000199 if ((i%8) == 7)
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +0800200 LOG("\n");
Stefan Reinauer07040582010-04-24 21:24:06 +0000201 }
202}
203
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000204uint64_t intfiletype(const char *name)
205{
Mathias Krause41c229c2012-07-17 21:17:15 +0200206 size_t i;
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000207 for (i = 0; i < (sizeof(filetypes) / sizeof(struct filetypes_t)); i++)
208 if (strcmp(filetypes[i].name, name) == 0)
209 return filetypes[i].type;
210 return -1;
211}