blob: 85dfdeb5894a334ca7be86356fea4ea94d634433 [file] [log] [blame]
Patrick Georgib7b56dd82009-09-14 13:29:27 +00001/*
2 * Copyright (C) 2009 coresystems GmbH
3 * written by Patrick Georgi <patrick.georgi@coresystems.de>
David Hendricks90ca3b62012-11-16 14:48:22 -08004 * Copyright (C) 2012 Google, Inc.
Patrick Georgib7b56dd82009-09-14 13:29:27 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Patrick Georgib7b56dd82009-09-14 13:29:27 +000014 */
15
Stefan Reinauer63217582012-10-29 16:52:36 -070016#ifndef __CBFSTOOL_COMMON_H
17#define __CBFSTOOL_COMMON_H
18
Sol Bouchere3260a02015-03-25 13:40:08 -070019#include <stdbool.h>
Sol Boucher69b88bf2015-02-26 11:47:19 -080020#include <stddef.h>
Patrick Georgib7b56dd82009-09-14 13:29:27 +000021#include <stdint.h>
Sol Bouchere3260a02015-03-25 13:40:08 -070022#include <string.h>
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080023#include <assert.h>
Hung-Te Lin332795c2013-01-28 15:53:34 +080024
Furquan Shaikh161d2332016-05-26 14:41:02 -070025#include <commonlib/helpers.h>
Aaron Durbind38e3de2015-10-01 14:25:19 -050026#include <console/console.h>
27
Hung-Te Lin332795c2013-01-28 15:53:34 +080028/* Endianess */
Stefan Reinauera1e48242011-10-21 14:24:57 -070029#include "swab.h"
Patrick Georgib7b56dd82009-09-14 13:29:27 +000030
Sol Boucher67d59982015-05-07 02:39:22 -070031#define IS_TOP_ALIGNED_ADDRESS(x) ((uint32_t)(x) > 0x80000000)
32
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010033#define unused __attribute__((unused))
34
Julius Wernerefcee762014-11-10 13:14:24 -080035static inline uint32_t align_up(uint32_t value, uint32_t align)
36{
37 if (value % align)
38 value += align - (value % align);
39 return value;
40}
41
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080042/* Buffer and file I/O */
43struct buffer {
44 char *name;
45 char *data;
Sol Boucher64c6cd72015-04-26 02:32:43 -070046 size_t offset;
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080047 size_t size;
48};
49
Aaron Durbin6e8c2792014-03-04 22:01:12 -060050static inline void *buffer_get(const struct buffer *b)
51{
52 return b->data;
53}
54
55static inline size_t buffer_size(const struct buffer *b)
56{
57 return b->size;
58}
59
Aaron Durbin2dd5f4c2016-01-26 09:01:14 -060060static inline size_t buffer_offset(const struct buffer *b)
61{
62 return b->offset;
63}
64
Sol Boucher64c6cd72015-04-26 02:32:43 -070065/*
66 * Shrink a buffer toward the beginning of its previous space.
67 * Afterward, buffer_delete() remains the means of cleaning it up. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -060068static inline void buffer_set_size(struct buffer *b, size_t size)
69{
70 b->size = size;
71}
72
Aaron Durbin4f3bb802014-03-26 22:57:55 -050073/* Initialize a buffer with the given constraints. */
74static inline void buffer_init(struct buffer *b, char *name, void *data,
75 size_t size)
76{
77 b->name = name;
78 b->data = data;
79 b->size = size;
Aaron Durbincd9ba8a2015-10-23 17:36:57 -050080 b->offset = 0;
Aaron Durbin4f3bb802014-03-26 22:57:55 -050081}
82
Sol Boucher1a3349f2015-05-05 18:25:18 -070083/* Splice a buffer into another buffer. Note that it's up to the caller to
Sol Boucher64c6cd72015-04-26 02:32:43 -070084 * bounds check the offset and size. The resulting buffer is backed by the same
85 * storage as the original, so although it is valid to buffer_delete() either
86 * one of them, doing so releases both simultaneously. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -060087static inline void buffer_splice(struct buffer *dest, const struct buffer *src,
88 size_t offset, size_t size)
89{
Sol Boucher64c6cd72015-04-26 02:32:43 -070090 dest->name = src->name;
91 dest->data = src->data + offset;
92 dest->offset = src->offset + offset;
93 dest->size = size;
Aaron Durbin6e8c2792014-03-04 22:01:12 -060094}
95
Sol Boucher64c6cd72015-04-26 02:32:43 -070096/*
97 * Shallow copy a buffer. To clean up the resources, buffer_delete()
98 * either one, but not both. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -060099static inline void buffer_clone(struct buffer *dest, const struct buffer *src)
100{
Sol Boucher1a3349f2015-05-05 18:25:18 -0700101 buffer_splice(dest, src, 0, src->size);
Aaron Durbin6e8c2792014-03-04 22:01:12 -0600102}
103
Sol Boucher64c6cd72015-04-26 02:32:43 -0700104/*
105 * Shrink a buffer toward the end of its previous space.
106 * Afterward, buffer_delete() remains the means of cleaning it up. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -0600107static inline void buffer_seek(struct buffer *b, size_t size)
108{
Sol Boucher64c6cd72015-04-26 02:32:43 -0700109 b->offset += size;
Aaron Durbin6e8c2792014-03-04 22:01:12 -0600110 b->size -= size;
111 b->data += size;
112}
113
Sol Bouchere3260a02015-03-25 13:40:08 -0700114/* Returns whether the buffer begins with the specified magic bytes. */
115static inline bool buffer_check_magic(const struct buffer *b, const char *magic,
116 size_t magic_len)
117{
118 assert(magic);
119 return b && b->size >= magic_len &&
120 memcmp(b->data, magic, magic_len) == 0;
121}
122
Patrick Georgi9b24f7c2015-11-11 18:43:11 +0100123/* Returns the start of the underlying buffer, with the offset undone */
124static inline void *buffer_get_original_backing(const struct buffer *b)
125{
126 if (!b)
127 return NULL;
Aaron Durbin2dd5f4c2016-01-26 09:01:14 -0600128 return buffer_get(b) - buffer_offset(b);
Patrick Georgi9b24f7c2015-11-11 18:43:11 +0100129}
130
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +0800131/* Creates an empty memory buffer with given size.
132 * Returns 0 on success, otherwise non-zero. */
133int buffer_create(struct buffer *buffer, size_t size, const char *name);
134
135/* Loads a file into memory buffer. Returns 0 on success, otherwise non-zero. */
136int buffer_from_file(struct buffer *buffer, const char *filename);
137
138/* Writes memory buffer content into file.
139 * Returns 0 on success, otherwise non-zero. */
140int buffer_write_file(struct buffer *buffer, const char *filename);
141
142/* Destroys a memory buffer. */
143void buffer_delete(struct buffer *buffer);
144
Stefan Reinauer8f50e532013-11-13 14:34:57 -0800145const char *arch_to_string(uint32_t a);
David Hendricks90ca3b62012-11-16 14:48:22 -0800146uint32_t string_to_arch(const char *arch_string);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000147
Patrick Georgi61c82292015-08-26 12:53:41 +0200148/* Compress in_len bytes from in, storing the result at out, returning the
149 * resulting length in out_len.
150 * Returns 0 on error,
151 * != 0 otherwise, depending on the compressing function.
152 */
153typedef int (*comp_func_ptr) (char *in, int in_len, char *out, int *out_len);
154
155/* Decompress in_len bytes from in, storing the result at out, up to out_len
156 * bytes.
157 * Returns 0 on error,
158 * != 0 otherwise, depending on the decompressing function.
159 */
Aaron Durbin5213c532015-10-23 17:38:40 -0500160typedef int (*decomp_func_ptr) (char *in, int in_len, char *out, int out_len,
161 size_t *actual_size);
Patrick Georgi61c82292015-08-26 12:53:41 +0200162
Julius Werner09f29212015-09-29 13:51:35 -0700163enum comp_algo {
164 CBFS_COMPRESS_NONE = 0,
165 CBFS_COMPRESS_LZMA = 1,
166 CBFS_COMPRESS_LZ4 = 2,
167};
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000168
Patrick Georgic88d16b2017-01-11 15:26:58 +0100169struct typedesc_t {
170 uint32_t type;
171 const char *name;
172};
173
174static const struct typedesc_t types_cbfs_compression[] = {
175 {CBFS_COMPRESS_NONE, "none"},
176 {CBFS_COMPRESS_LZMA, "LZMA"},
177 {CBFS_COMPRESS_LZ4, "LZ4"},
178 {0, NULL},
179};
180
Sol Boucher6310ccc2015-05-07 21:12:28 -0700181comp_func_ptr compression_function(enum comp_algo algo);
Patrick Georgi61c82292015-08-26 12:53:41 +0200182decomp_func_ptr decompression_function(enum comp_algo algo);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000183
184uint64_t intfiletype(const char *name);
185
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800186/* cbfs-mkpayload.c */
Sol Boucher0e539312015-03-05 15:38:03 -0800187int parse_elf_to_payload(const struct buffer *input, struct buffer *output,
Sol Boucher6310ccc2015-05-07 21:12:28 -0700188 enum comp_algo algo);
189int parse_fv_to_payload(const struct buffer *input, struct buffer *output,
190 enum comp_algo algo);
Patrick Georgide36d332013-08-27 20:22:21 +0200191int parse_bzImage_to_payload(const struct buffer *input,
192 struct buffer *output, const char *initrd,
Sol Boucher6310ccc2015-05-07 21:12:28 -0700193 char *cmdline, enum comp_algo algo);
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800194int parse_flat_binary_to_payload(const struct buffer *input,
195 struct buffer *output,
196 uint32_t loadaddress,
197 uint32_t entrypoint,
Sol Boucher6310ccc2015-05-07 21:12:28 -0700198 enum comp_algo algo);
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800199/* cbfs-mkstage.c */
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800200int parse_elf_to_stage(const struct buffer *input, struct buffer *output,
Sol Boucher6310ccc2015-05-07 21:12:28 -0700201 enum comp_algo algo, uint32_t *location,
Furquan Shaikh405304a2014-10-30 11:44:20 -0700202 const char *ignore_section);
Aaron Durbin4be16742015-09-15 17:00:23 -0500203/* location is TOP aligned. */
204int parse_elf_to_xip_stage(const struct buffer *input, struct buffer *output,
205 uint32_t *location, const char *ignore_section);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000206
Stefan Reinauer07040582010-04-24 21:24:06 +0000207void print_supported_filetypes(void);
208
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800209/* lzma/lzma.c */
Gabe Blackdbd006b2014-02-20 23:38:49 -0800210int do_lzma_compress(char *in, int in_len, char *out, int *out_len);
Aaron Durbin5213c532015-10-23 17:38:40 -0500211int do_lzma_uncompress(char *dst, int dst_len, char *src, int src_len,
212 size_t *actual_size);
Stefan Reinauer2dd161f2015-03-04 00:55:03 +0100213
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800214/* xdr.c */
215struct xdr {
Aaron Durbin01650042014-03-05 16:38:26 -0600216 uint8_t (*get8)(struct buffer *input);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800217 uint16_t (*get16)(struct buffer *input);
218 uint32_t (*get32)(struct buffer *input);
219 uint64_t (*get64)(struct buffer *input);
Aaron Durbin01650042014-03-05 16:38:26 -0600220 void (*put8)(struct buffer *input, uint8_t val);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800221 void (*put16)(struct buffer *input, uint16_t val);
222 void (*put32)(struct buffer *input, uint32_t val);
223 void (*put64)(struct buffer *input, uint64_t val);
224};
225
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800226extern struct xdr xdr_le, xdr_be;
Aaron Durbin1240d292014-03-10 14:13:27 -0500227size_t bgets(struct buffer *input, void *output, size_t len);
228size_t bputs(struct buffer *b, const void *data, size_t len);
Stefan Reinauer63217582012-10-29 16:52:36 -0700229
Patrick Georgica97fa72015-10-01 15:52:56 +0200230/* Returns a 0-terminated string containing a hex representation of
231 * len bytes starting at data.
232 * The string is malloc'd and it's the caller's responsibility to free
233 * the memory.
234 * On error, bintohex returns NULL.
235 */
236char *bintohex(uint8_t *data, size_t len);
Stefan Reinauer63217582012-10-29 16:52:36 -0700237#endif