blob: 0cf6b6e31f874ce1f9d429d81d326656aaf38b56 [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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
18 */
19
Stefan Reinauer63217582012-10-29 16:52:36 -070020#ifndef __CBFSTOOL_COMMON_H
21#define __CBFSTOOL_COMMON_H
22
Sol Boucher69b88bf2015-02-26 11:47:19 -080023#include <stddef.h>
Patrick Georgib7b56dd82009-09-14 13:29:27 +000024#include <stdint.h>
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080025#include <assert.h>
Hung-Te Lin332795c2013-01-28 15:53:34 +080026
27/* Endianess */
Stefan Reinauera1e48242011-10-21 14:24:57 -070028#include "swab.h"
Stefan Reinauer9da75702013-01-04 13:51:36 -080029#ifndef __APPLE__
Sol Boucher0e539312015-03-05 15:38:03 -080030#define ntohl(x) (is_big_endian() ? (uint32_t)(x) : swab32(x))
31#define htonl(x) (is_big_endian() ? (uint32_t)(x) : swab32(x))
Stefan Reinauer9da75702013-01-04 13:51:36 -080032#endif
Sol Boucher0e539312015-03-05 15:38:03 -080033#define ntohll(x) (is_big_endian() ? (uint64_t)(x) : swab64(x))
34#define htonll(x) (is_big_endian() ? (uint64_t)(x) : swab64(x))
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010035int is_big_endian(void);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000036
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +080037/* Message output */
38extern int verbose;
Sol Boucher0e539312015-03-05 15:38:03 -080039#define ERROR(...) { fprintf(stderr, "E: " __VA_ARGS__); }
40#define WARN(...) { fprintf(stderr, "W: " __VA_ARGS__); }
41#define LOG(...) { fprintf(stderr, __VA_ARGS__); }
42#define INFO(...) { if (verbose > 0) fprintf(stderr, "INFO: " __VA_ARGS__); }
43#define DEBUG(...) { if (verbose > 1) fprintf(stderr, "DEBUG: " __VA_ARGS__); }
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +080044
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010045/* Helpers */
46#define ARRAY_SIZE(a) (int)(sizeof(a) / sizeof((a)[0]))
47#define ALIGN(val, by) (((val) + (by)-1)&~((by)-1))
48
49#define unused __attribute__((unused))
50
Julius Wernerefcee762014-11-10 13:14:24 -080051static inline uint32_t align_up(uint32_t value, uint32_t align)
52{
53 if (value % align)
54 value += align - (value % align);
55 return value;
56}
57
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080058/* Buffer and file I/O */
59struct buffer {
60 char *name;
61 char *data;
Sol Boucher64c6cd72015-04-26 02:32:43 -070062 size_t offset;
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080063 size_t size;
64};
65
Aaron Durbin6e8c2792014-03-04 22:01:12 -060066static inline void *buffer_get(const struct buffer *b)
67{
68 return b->data;
69}
70
71static inline size_t buffer_size(const struct buffer *b)
72{
73 return b->size;
74}
75
Sol Boucher64c6cd72015-04-26 02:32:43 -070076/*
77 * Shrink a buffer toward the beginning of its previous space.
78 * Afterward, buffer_delete() remains the means of cleaning it up. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -060079static inline void buffer_set_size(struct buffer *b, size_t size)
80{
81 b->size = size;
82}
83
Aaron Durbin4f3bb802014-03-26 22:57:55 -050084/* Initialize a buffer with the given constraints. */
85static inline void buffer_init(struct buffer *b, char *name, void *data,
86 size_t size)
87{
88 b->name = name;
89 b->data = data;
90 b->size = size;
91}
92
Sol Boucher1a3349f2015-05-05 18:25:18 -070093/* Splice a buffer into another buffer. Note that it's up to the caller to
Sol Boucher64c6cd72015-04-26 02:32:43 -070094 * bounds check the offset and size. The resulting buffer is backed by the same
95 * storage as the original, so although it is valid to buffer_delete() either
96 * one of them, doing so releases both simultaneously. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -060097static inline void buffer_splice(struct buffer *dest, const struct buffer *src,
98 size_t offset, size_t size)
99{
Sol Boucher64c6cd72015-04-26 02:32:43 -0700100 dest->name = src->name;
101 dest->data = src->data + offset;
102 dest->offset = src->offset + offset;
103 dest->size = size;
Aaron Durbin6e8c2792014-03-04 22:01:12 -0600104}
105
Sol Boucher64c6cd72015-04-26 02:32:43 -0700106/*
107 * Shallow copy a buffer. To clean up the resources, buffer_delete()
108 * either one, but not both. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -0600109static inline void buffer_clone(struct buffer *dest, const struct buffer *src)
110{
Sol Boucher1a3349f2015-05-05 18:25:18 -0700111 buffer_splice(dest, src, 0, src->size);
Aaron Durbin6e8c2792014-03-04 22:01:12 -0600112}
113
Sol Boucher64c6cd72015-04-26 02:32:43 -0700114/*
115 * Shrink a buffer toward the end of its previous space.
116 * Afterward, buffer_delete() remains the means of cleaning it up. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -0600117static inline void buffer_seek(struct buffer *b, size_t size)
118{
Sol Boucher64c6cd72015-04-26 02:32:43 -0700119 b->offset += size;
Aaron Durbin6e8c2792014-03-04 22:01:12 -0600120 b->size -= size;
121 b->data += size;
122}
123
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +0800124/* Creates an empty memory buffer with given size.
125 * Returns 0 on success, otherwise non-zero. */
126int buffer_create(struct buffer *buffer, size_t size, const char *name);
127
128/* Loads a file into memory buffer. Returns 0 on success, otherwise non-zero. */
129int buffer_from_file(struct buffer *buffer, const char *filename);
130
131/* Writes memory buffer content into file.
132 * Returns 0 on success, otherwise non-zero. */
133int buffer_write_file(struct buffer *buffer, const char *filename);
134
135/* Destroys a memory buffer. */
136void buffer_delete(struct buffer *buffer);
137
Stefan Reinauer8f50e532013-11-13 14:34:57 -0800138const char *arch_to_string(uint32_t a);
David Hendricks90ca3b62012-11-16 14:48:22 -0800139uint32_t string_to_arch(const char *arch_string);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000140
Gabe Blackdbd006b2014-02-20 23:38:49 -0800141typedef int (*comp_func_ptr) (char *, int, char *, int *);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000142typedef enum { CBFS_COMPRESS_NONE = 0, CBFS_COMPRESS_LZMA = 1 } comp_algo;
143
144comp_func_ptr compression_function(comp_algo algo);
145
146uint64_t intfiletype(const char *name);
147
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800148/* cbfs-mkpayload.c */
Sol Boucher0e539312015-03-05 15:38:03 -0800149int parse_elf_to_payload(const struct buffer *input, struct buffer *output,
150 comp_algo algo);
Stefan Reinauer543a6822013-02-04 15:39:13 -0800151int parse_fv_to_payload(const struct buffer *input,
152 struct buffer *output, comp_algo algo);
Patrick Georgide36d332013-08-27 20:22:21 +0200153int parse_bzImage_to_payload(const struct buffer *input,
154 struct buffer *output, const char *initrd,
155 char *cmdline, comp_algo algo);
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800156int parse_flat_binary_to_payload(const struct buffer *input,
157 struct buffer *output,
158 uint32_t loadaddress,
159 uint32_t entrypoint,
160 comp_algo algo);
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800161/* cbfs-mkstage.c */
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800162int parse_elf_to_stage(const struct buffer *input, struct buffer *output,
Sol Boucher0e539312015-03-05 15:38:03 -0800163 comp_algo algo, uint32_t *location,
Furquan Shaikh405304a2014-10-30 11:44:20 -0700164 const char *ignore_section);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000165
Stefan Reinauer07040582010-04-24 21:24:06 +0000166void print_supported_filetypes(void);
167
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800168/* lzma/lzma.c */
Gabe Blackdbd006b2014-02-20 23:38:49 -0800169int do_lzma_compress(char *in, int in_len, char *out, int *out_len);
170int do_lzma_uncompress(char *dst, int dst_len, char *src, int src_len);
Stefan Reinauer2dd161f2015-03-04 00:55:03 +0100171
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800172/* xdr.c */
173struct xdr {
Aaron Durbin01650042014-03-05 16:38:26 -0600174 uint8_t (*get8)(struct buffer *input);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800175 uint16_t (*get16)(struct buffer *input);
176 uint32_t (*get32)(struct buffer *input);
177 uint64_t (*get64)(struct buffer *input);
Aaron Durbin01650042014-03-05 16:38:26 -0600178 void (*put8)(struct buffer *input, uint8_t val);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800179 void (*put16)(struct buffer *input, uint16_t val);
180 void (*put32)(struct buffer *input, uint32_t val);
181 void (*put64)(struct buffer *input, uint64_t val);
182};
183
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800184extern struct xdr xdr_le, xdr_be;
Aaron Durbin1240d292014-03-10 14:13:27 -0500185size_t bgets(struct buffer *input, void *output, size_t len);
186size_t bputs(struct buffer *b, const void *data, size_t len);
Stefan Reinauer63217582012-10-29 16:52:36 -0700187
188#endif