rush: Enable dp display
[coreboot.git] / util / cbfstool / common.c
blob9923ca344e9ce92ed9a109697fe7ce804a560d24
1 /*
2 * common utility functions for cbfstool
4 * Copyright (C) 2009 coresystems GmbH
5 * written by Patrick Georgi <patrick.georgi@coresystems.de>
6 * Copyright (C) 2012 Google, Inc.
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.
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.
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
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <unistd.h>
28 #include <libgen.h>
29 #include "common.h"
30 #include "cbfs.h"
32 /* Utilities */
33 int verbose = 0;
35 /* Small, OS/libc independent runtime check for endianess */
36 int is_big_endian(void)
38 static const uint32_t inttest = 0x12345678;
39 uint8_t inttest_lsb = *(uint8_t *)&inttest;
40 if (inttest_lsb == 0x12) {
41 return 1;
43 return 0;
46 static off_t get_file_size(FILE *f)
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;
54 /* Buffer and file I/O */
56 int buffer_create(struct buffer *buffer, size_t size, const char *name)
58 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);
65 return (buffer->data == NULL);
68 int buffer_from_file(struct buffer *buffer, const char *filename)
70 FILE *fp = fopen(filename, "rb");
71 if (!fp) {
72 perror(filename);
73 return -1;
75 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;
81 buffer->name = strdup(filename);
82 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;
89 fclose(fp);
90 return 0;
93 int buffer_write_file(struct buffer *buffer, const char *filename)
95 FILE *fp = fopen(filename, "wb");
96 if (!fp) {
97 perror(filename);
98 return -1;
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;
106 fclose(fp);
107 return 0;
110 void buffer_delete(struct buffer *buffer)
112 assert(buffer);
113 if (buffer->name) {
114 free(buffer->name);
115 buffer->name = NULL;
117 if (buffer->data) {
118 free(buffer->data);
119 buffer->data = NULL;
121 buffer->size = 0;
124 void cbfs_file_get_header(struct buffer *buf, struct cbfs_file *file)
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);
133 static struct {
134 uint32_t arch;
135 const char *name;
136 } arch_names[] = {
137 { CBFS_ARCHITECTURE_AARCH64, "arm64" },
138 { CBFS_ARCHITECTURE_ARM, "arm" },
139 { CBFS_ARCHITECTURE_MIPS, "mips" },
140 { CBFS_ARCHITECTURE_RISCV, "riscv" },
141 { CBFS_ARCHITECTURE_X86, "x86" },
142 { CBFS_ARCHITECTURE_UNKNOWN, "unknown" }
145 uint32_t string_to_arch(const char *arch_string)
147 int i;
148 uint32_t ret = CBFS_ARCHITECTURE_UNKNOWN;
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;
157 return ret;
160 const char *arch_to_string(uint32_t a)
162 int i;
163 const char *ret = NULL;
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;
172 return ret;
175 static struct filetypes_t {
176 uint32_t type;
177 const char *name;
178 } filetypes[] = {
179 {CBFS_COMPONENT_STAGE, "stage"},
180 {CBFS_COMPONENT_PAYLOAD, "payload"},
181 {CBFS_COMPONENT_OPTIONROM, "optionrom"},
182 {CBFS_COMPONENT_BOOTSPLASH, "bootsplash"},
183 {CBFS_COMPONENT_RAW, "raw"},
184 {CBFS_COMPONENT_VSA, "vsa"},
185 {CBFS_COMPONENT_MBI, "mbi"},
186 {CBFS_COMPONENT_MICROCODE, "microcode"},
187 {CBFS_COMPONENT_FSP, "fsp"},
188 {CBFS_COMPONENT_MRC, "mrc"},
189 {CBFS_COMPONENT_CMOS_DEFAULT, "cmos default"},
190 {CBFS_COMPONENT_CMOS_LAYOUT, "cmos layout"},
191 {CBFS_COMPONENT_SPD, "spd"},
192 {CBFS_COMPONENT_MRC_CACHE, "mrc_cache"},
193 {CBFS_COMPONENT_DELETED, "deleted"},
194 {CBFS_COMPONENT_NULL, "null"}
197 void print_supported_filetypes(void)
199 int i, number = ARRAY_SIZE(filetypes);
201 for (i=0; i<number; i++) {
202 LOG(" %s%c", filetypes[i].name, (i==(number-1))?'\n':',');
203 if ((i%8) == 7)
204 LOG("\n");
208 uint64_t intfiletype(const char *name)
210 size_t i;
211 for (i = 0; i < (sizeof(filetypes) / sizeof(struct filetypes_t)); i++)
212 if (strcmp(filetypes[i].name, name) == 0)
213 return filetypes[i].type;
214 return -1;