blob: 455fb8b28342bd41b4faa98d9f6b004e09cd5946 [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
Patrick Georgib7b56dd82009-09-14 13:29:27 +000023#include <stdint.h>
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080024#include <assert.h>
Hung-Te Lin332795c2013-01-28 15:53:34 +080025
26/* Endianess */
Stefan Reinauera1e48242011-10-21 14:24:57 -070027#include "swab.h"
Stefan Reinauer9da75702013-01-04 13:51:36 -080028#ifndef __APPLE__
Hung-Te Lin332795c2013-01-28 15:53:34 +080029#define ntohl(x) (is_big_endian() ? (x) : swab32(x))
30#define htonl(x) (is_big_endian() ? (x) : swab32(x))
Stefan Reinauer9da75702013-01-04 13:51:36 -080031#endif
Hung-Te Lin332795c2013-01-28 15:53:34 +080032#define ntohll(x) (is_big_endian() ? (x) : swab64(x))
33#define htonll(x) (is_big_endian() ? (x) : swab64(x))
34extern int is_big_endian(void);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000035
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +080036/* Message output */
37extern int verbose;
38#define ERROR(x...) { fprintf(stderr, "E: " x); }
39#define WARN(x...) { fprintf(stderr, "W: " x); }
40#define LOG(x...) { fprintf(stderr, x); }
41#define INFO(x...) { if (verbose > 0) fprintf(stderr, "INFO: " x); }
42#define DEBUG(x...) { if (verbose > 1) fprintf(stderr, "DEBUG: " x); }
43
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +080044/* Buffer and file I/O */
45struct buffer {
46 char *name;
47 char *data;
48 size_t size;
49};
50
Aaron Durbin6e8c2792014-03-04 22:01:12 -060051static inline void *buffer_get(const struct buffer *b)
52{
53 return b->data;
54}
55
56static inline size_t buffer_size(const struct buffer *b)
57{
58 return b->size;
59}
60
61static inline void buffer_set_size(struct buffer *b, size_t size)
62{
63 b->size = size;
64}
65
Aaron Durbin4f3bb802014-03-26 22:57:55 -050066/* Initialize a buffer with the given constraints. */
67static inline void buffer_init(struct buffer *b, char *name, void *data,
68 size_t size)
69{
70 b->name = name;
71 b->data = data;
72 b->size = size;
73}
74
Aaron Durbin6e8c2792014-03-04 22:01:12 -060075/*
76 * Splice a buffer into another buffer. If size is zero the entire buffer
77 * is spliced while if size is non-zero the buffer is spliced starting at
78 * offset for size bytes. Note that it's up to caller to bounds check.
79 */
80static inline void buffer_splice(struct buffer *dest, const struct buffer *src,
81 size_t offset, size_t size)
82{
Aaron Durbin4f3bb802014-03-26 22:57:55 -050083 buffer_init(dest, src->name, src->data, src->size);
Aaron Durbin6e8c2792014-03-04 22:01:12 -060084 if (size != 0) {
85 dest->data += offset;
86 buffer_set_size(dest, size);
87 }
88}
89
90static inline void buffer_clone(struct buffer *dest, const struct buffer *src)
91{
92 buffer_splice(dest, src, 0, 0);
93}
94
95static inline void buffer_seek(struct buffer *b, size_t size)
96{
97 b->size -= size;
98 b->data += size;
99}
100
Hung-Te Lin3cfacbf2013-01-30 00:43:46 +0800101/* Creates an empty memory buffer with given size.
102 * Returns 0 on success, otherwise non-zero. */
103int buffer_create(struct buffer *buffer, size_t size, const char *name);
104
105/* Loads a file into memory buffer. Returns 0 on success, otherwise non-zero. */
106int buffer_from_file(struct buffer *buffer, const char *filename);
107
108/* Writes memory buffer content into file.
109 * Returns 0 on success, otherwise non-zero. */
110int buffer_write_file(struct buffer *buffer, const char *filename);
111
112/* Destroys a memory buffer. */
113void buffer_delete(struct buffer *buffer);
114
Stefan Reinauer8f50e532013-11-13 14:34:57 -0800115const char *arch_to_string(uint32_t a);
David Hendricks90ca3b62012-11-16 14:48:22 -0800116uint32_t string_to_arch(const char *arch_string);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000117
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000118#define ALIGN(val, by) (((val) + (by)-1)&~((by)-1))
119
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000120typedef void (*comp_func_ptr) (char *, int, char *, int *);
121typedef enum { CBFS_COMPRESS_NONE = 0, CBFS_COMPRESS_LZMA = 1 } comp_algo;
122
123comp_func_ptr compression_function(comp_algo algo);
124
125uint64_t intfiletype(const char *name);
126
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800127/* cbfs-mkpayload.c */
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800128int parse_elf_to_payload(const struct buffer *input,
Alexandru Gagniuc35850ae2014-02-02 22:37:28 -0600129 struct buffer *output, uint32_t arch, comp_algo algo);
Stefan Reinauer543a6822013-02-04 15:39:13 -0800130int parse_fv_to_payload(const struct buffer *input,
131 struct buffer *output, comp_algo algo);
Patrick Georgide36d332013-08-27 20:22:21 +0200132int parse_bzImage_to_payload(const struct buffer *input,
133 struct buffer *output, const char *initrd,
134 char *cmdline, comp_algo algo);
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800135int parse_flat_binary_to_payload(const struct buffer *input,
136 struct buffer *output,
137 uint32_t loadaddress,
138 uint32_t entrypoint,
139 comp_algo algo);
Hung-Te Lin05dccae2013-01-28 15:04:30 +0800140/* cbfs-mkstage.c */
Hung-Te Linc13e4bf2013-01-29 15:22:11 +0800141int parse_elf_to_stage(const struct buffer *input, struct buffer *output,
Alexandru Gagniuc35850ae2014-02-02 22:37:28 -0600142 uint32_t arch, comp_algo algo, uint32_t *location);
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000143
Stefan Reinauer07040582010-04-24 21:24:06 +0000144void print_supported_filetypes(void);
145
Stefan Reinauer63217582012-10-29 16:52:36 -0700146#define ARRAY_SIZE(a) (int)(sizeof(a) / sizeof((a)[0]))
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800147/* lzma/lzma.c */
148void do_lzma_compress(char *in, int in_len, char *out, int *out_len);
149void do_lzma_uncompress(char *dst, int dst_len, char *src, int src_len);
150/* xdr.c */
151struct xdr {
Aaron Durbin01650042014-03-05 16:38:26 -0600152 uint8_t (*get8)(struct buffer *input);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800153 uint16_t (*get16)(struct buffer *input);
154 uint32_t (*get32)(struct buffer *input);
155 uint64_t (*get64)(struct buffer *input);
Aaron Durbin01650042014-03-05 16:38:26 -0600156 void (*put8)(struct buffer *input, uint8_t val);
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800157 void (*put16)(struct buffer *input, uint16_t val);
158 void (*put32)(struct buffer *input, uint32_t val);
159 void (*put64)(struct buffer *input, uint64_t val);
160};
161
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800162/* xdr.c */
Ronald G. Minnichaa2f7392013-12-03 11:13:35 -0800163extern struct xdr xdr_le, xdr_be;
Aaron Durbin1240d292014-03-10 14:13:27 -0500164size_t bgets(struct buffer *input, void *output, size_t len);
165size_t bputs(struct buffer *b, const void *data, size_t len);
Stefan Reinauer63217582012-10-29 16:52:36 -0700166
167#endif