blob: f364ea17e72345f33c2c1fdca6b629116e6cc9c7 [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;
62 size_t size;
63};
64
Aaron Durbin6e8c2792014-03-04 22:01:12 -060065static inline void *buffer_get(const struct buffer *b)
66{
67 return b->data;
68}
69
70static inline size_t buffer_size(const struct buffer *b)
71{
72 return b->size;
73}
74
75static inline void buffer_set_size(struct buffer *b, size_t size)
76{
77 b->size = size;
78}
79
Aaron Durbin4f3bb802014-03-26 22:57:55 -050080/* Initialize a buffer with the given constraints. */
81static inline void buffer_init(struct buffer *b, char *name, void *data,
82 size_t size)
83{
84 b->name = name;
85 b->data = data;
86 b->size = size;
87}
88
Stefan Reinauer2dd161f2015-03-04 00:55:03 +010089/* Splice a buffer into another buffer. If size is zero the entire buffer
Aaron Durbin6e8c2792014-03-04 22:01:12 -060090 * is spliced while if size is non-zero the buffer is spliced starting at
91 * offset for size bytes. Note that it's up to caller to bounds check.
92 */
93static inline void buffer_splice(struct buffer *dest, const struct buffer *src,
94 size_t offset, size_t size)
95{
Aaron Durbin4f3bb802014-03-26 22:57:55 -050096 buffer_init(dest, src->name, src->data, src->size);
Aaron Durbin6e8c2792014-03-04 22:01:12 -060097 if (size != 0) {
98 dest->data += offset;
99 buffer_set_size(dest, size);
100 }
101}
102
103static inline void buffer_clone(struct buffer *dest, const struct buffer *src)
104{
105 buffer_splice(dest, src, 0, 0);
106}
107
108static inline void buffer_seek(struct buffer *b, size_t size)
109{
110 b->size -= size;
111 b->data += size;
112}
113
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +0800114/* Creates an empty memory buffer with given size.
115 * Returns 0 on success, otherwise non-zero. */
116int buffer_create(struct buffer *buffer, size_t size, const char *name);
117
118/* Loads a file into memory buffer. Returns 0 on success, otherwise non-zero. */
119int buffer_from_file(struct buffer *buffer, const char *filename);
120
121/* Writes memory buffer content into file.
122 * Returns 0 on success, otherwise non-zero. */
123int buffer_write_file(struct buffer *buffer, const char *filename);
124
125/* Destroys a memory buffer. */
126void buffer_delete(struct buffer *buffer);
127
Stefan Reinauer8f50e532013-11-13 14:34:57 -0800128const char *arch_to_string(uint32_t a);
David Hendricks90ca3b62012-11-16 14:48:22 -0800129uint32_t string_to_arch(const char *arch_string);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000130
Gabe Blackdbd006b2014-02-20 23:38:49 -0800131typedef int (*comp_func_ptr) (char *, int, char *, int *);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000132typedef enum { CBFS_COMPRESS_NONE = 0, CBFS_COMPRESS_LZMA = 1 } comp_algo;
133
134comp_func_ptr compression_function(comp_algo algo);
135
136uint64_t intfiletype(const char *name);
137
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800138/* cbfs-mkpayload.c */
Sol Boucher0e539312015-03-05 15:38:03 -0800139int parse_elf_to_payload(const struct buffer *input, struct buffer *output,
140 comp_algo algo);
Stefan Reinauer543a6822013-02-04 15:39:13 -0800141int parse_fv_to_payload(const struct buffer *input,
142 struct buffer *output, comp_algo algo);
Patrick Georgide36d332013-08-27 20:22:21 +0200143int parse_bzImage_to_payload(const struct buffer *input,
144 struct buffer *output, const char *initrd,
145 char *cmdline, comp_algo algo);
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800146int parse_flat_binary_to_payload(const struct buffer *input,
147 struct buffer *output,
148 uint32_t loadaddress,
149 uint32_t entrypoint,
150 comp_algo algo);
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800151/* cbfs-mkstage.c */
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800152int parse_elf_to_stage(const struct buffer *input, struct buffer *output,
Sol Boucher0e539312015-03-05 15:38:03 -0800153 comp_algo algo, uint32_t *location,
Furquan Shaikh405304a2014-10-30 11:44:20 -0700154 const char *ignore_section);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000155
Stefan Reinauer07040582010-04-24 21:24:06 +0000156void print_supported_filetypes(void);
157
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800158/* lzma/lzma.c */
Gabe Blackdbd006b2014-02-20 23:38:49 -0800159int do_lzma_compress(char *in, int in_len, char *out, int *out_len);
160int do_lzma_uncompress(char *dst, int dst_len, char *src, int src_len);
Stefan Reinauer2dd161f2015-03-04 00:55:03 +0100161
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800162/* xdr.c */
163struct xdr {
Aaron Durbin01650042014-03-05 16:38:26 -0600164 uint8_t (*get8)(struct buffer *input);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800165 uint16_t (*get16)(struct buffer *input);
166 uint32_t (*get32)(struct buffer *input);
167 uint64_t (*get64)(struct buffer *input);
Aaron Durbin01650042014-03-05 16:38:26 -0600168 void (*put8)(struct buffer *input, uint8_t val);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800169 void (*put16)(struct buffer *input, uint16_t val);
170 void (*put32)(struct buffer *input, uint32_t val);
171 void (*put64)(struct buffer *input, uint64_t val);
172};
173
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800174extern struct xdr xdr_le, xdr_be;
Aaron Durbin1240d292014-03-10 14:13:27 -0500175size_t bgets(struct buffer *input, void *output, size_t len);
176size_t bputs(struct buffer *b, const void *data, size_t len);
Stefan Reinauer63217582012-10-29 16:52:36 -0700177
178#endif