blob: 78ec40aaa1d069dc7b20f8f17bd68b6282718d8d [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
Sol Boucher1a3349f2015-05-05 18:25:18 -070089/* Splice a buffer into another buffer. Note that it's up to the caller to
90 * bounds check the offset and size. */
Aaron Durbin6e8c2792014-03-04 22:01:12 -060091static inline void buffer_splice(struct buffer *dest, const struct buffer *src,
92 size_t offset, size_t size)
93{
Aaron Durbin4f3bb802014-03-26 22:57:55 -050094 buffer_init(dest, src->name, src->data, src->size);
Sol Boucher1a3349f2015-05-05 18:25:18 -070095 dest->data += offset;
96 buffer_set_size(dest, size);
Aaron Durbin6e8c2792014-03-04 22:01:12 -060097}
98
99static 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
104static inline void buffer_seek(struct buffer *b, size_t size)
105{
106 b->size -= size;
107 b->data += size;
108}
109
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +0800110/* Creates an empty memory buffer with given size.
111 * Returns 0 on success, otherwise non-zero. */
112int buffer_create(struct buffer *buffer, size_t size, const char *name);
113
114/* Loads a file into memory buffer. Returns 0 on success, otherwise non-zero. */
115int buffer_from_file(struct buffer *buffer, const char *filename);
116
117/* Writes memory buffer content into file.
118 * Returns 0 on success, otherwise non-zero. */
119int buffer_write_file(struct buffer *buffer, const char *filename);
120
121/* Destroys a memory buffer. */
122void buffer_delete(struct buffer *buffer);
123
Stefan Reinauer8f50e532013-11-13 14:34:57 -0800124const char *arch_to_string(uint32_t a);
David Hendricks90ca3b62012-11-16 14:48:22 -0800125uint32_t string_to_arch(const char *arch_string);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000126
Gabe Blackdbd006b2014-02-20 23:38:49 -0800127typedef int (*comp_func_ptr) (char *, int, char *, int *);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000128typedef enum { CBFS_COMPRESS_NONE = 0, CBFS_COMPRESS_LZMA = 1 } comp_algo;
129
130comp_func_ptr compression_function(comp_algo algo);
131
132uint64_t intfiletype(const char *name);
133
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800134/* cbfs-mkpayload.c */
Sol Boucher0e539312015-03-05 15:38:03 -0800135int parse_elf_to_payload(const struct buffer *input, struct buffer *output,
136 comp_algo algo);
Stefan Reinauer543a6822013-02-04 15:39:13 -0800137int parse_fv_to_payload(const struct buffer *input,
138 struct buffer *output, comp_algo algo);
Patrick Georgide36d332013-08-27 20:22:21 +0200139int parse_bzImage_to_payload(const struct buffer *input,
140 struct buffer *output, const char *initrd,
141 char *cmdline, comp_algo algo);
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800142int parse_flat_binary_to_payload(const struct buffer *input,
143 struct buffer *output,
144 uint32_t loadaddress,
145 uint32_t entrypoint,
146 comp_algo algo);
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800147/* cbfs-mkstage.c */
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800148int parse_elf_to_stage(const struct buffer *input, struct buffer *output,
Sol Boucher0e539312015-03-05 15:38:03 -0800149 comp_algo algo, uint32_t *location,
Furquan Shaikh405304a2014-10-30 11:44:20 -0700150 const char *ignore_section);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000151
Stefan Reinauer07040582010-04-24 21:24:06 +0000152void print_supported_filetypes(void);
153
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800154/* lzma/lzma.c */
Gabe Blackdbd006b2014-02-20 23:38:49 -0800155int do_lzma_compress(char *in, int in_len, char *out, int *out_len);
156int do_lzma_uncompress(char *dst, int dst_len, char *src, int src_len);
Stefan Reinauer2dd161f2015-03-04 00:55:03 +0100157
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800158/* xdr.c */
159struct xdr {
Aaron Durbin01650042014-03-05 16:38:26 -0600160 uint8_t (*get8)(struct buffer *input);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800161 uint16_t (*get16)(struct buffer *input);
162 uint32_t (*get32)(struct buffer *input);
163 uint64_t (*get64)(struct buffer *input);
Aaron Durbin01650042014-03-05 16:38:26 -0600164 void (*put8)(struct buffer *input, uint8_t val);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800165 void (*put16)(struct buffer *input, uint16_t val);
166 void (*put32)(struct buffer *input, uint32_t val);
167 void (*put64)(struct buffer *input, uint64_t val);
168};
169
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800170extern struct xdr xdr_le, xdr_be;
Aaron Durbin1240d292014-03-10 14:13:27 -0500171size_t bgets(struct buffer *input, void *output, size_t len);
172size_t bputs(struct buffer *b, const void *data, size_t len);
Stefan Reinauer63217582012-10-29 16:52:36 -0700173
174#endif