]> git.proxmox.com Git - mirror_qemu.git/blame - include/hw/loader.h
elf: Add optional function ptr to load_elf() to parse ELF notes
[mirror_qemu.git] / include / hw / loader.h
CommitLineData
ca20cf32
BS
1#ifndef LOADER_H
2#define LOADER_H
a88b362c 3#include "hw/nvram/fw_cfg.h"
ca20cf32
BS
4
5/* loader.c */
a1483f88
MT
6/**
7 * get_image_size: retrieve size of an image file
8 * @filename: Path to the image file
9 *
10 * Returns the size of the image file on success, -1 otherwise.
11 * On error, errno is also set as appropriate.
12 */
f3839fda 13int64_t get_image_size(const char *filename);
06192329
PM
14/**
15 * load_image_size: load an image file into specified buffer
16 * @filename: Path to the image file
17 * @addr: Buffer to load image into
18 * @size: Size of buffer in bytes
19 *
20 * Load an image file from disk into the specified buffer.
21 * If the image is larger than the specified buffer, only
22 * @size bytes are read (this is not considered an error).
23 *
24 * Prefer to use the GLib function g_file_get_contents() rather
25 * than a "get_image_size()/g_malloc()/load_image_size()" sequence.
26 *
27 * Returns the number of bytes read, or -1 on error. On error,
28 * errno is also set as appropriate.
29 */
ea87616d 30ssize_t load_image_size(const char *filename, void *addr, size_t size);
93ffc7c7
AF
31
32/**load_image_targphys_as:
33 * @filename: Path to the image file
34 * @addr: Address to load the image to
35 * @max_sz: The maximum size of the image to load
36 * @as: The AddressSpace to load the ELF to. The value of address_space_memory
37 * is used if nothing is supplied here.
38 *
39 * Load a fixed image into memory.
40 *
41 * Returns the size of the loaded image on success, -1 otherwise.
42 */
43int load_image_targphys_as(const char *filename,
44 hwaddr addr, uint64_t max_sz, AddressSpace *as);
45
e4a25ed9
SH
46/**load_targphys_hex_as:
47 * @filename: Path to the .hex file
48 * @entry: Store the entry point given by the .hex file
49 * @as: The AddressSpace to load the .hex file to. The value of
50 * address_space_memory is used if nothing is supplied here.
51 *
52 * Load a fixed .hex file into memory.
53 *
54 * Returns the size of the loaded .hex file on success, -1 otherwise.
55 */
56int load_targphys_hex_as(const char *filename, hwaddr *entry, AddressSpace *as);
57
93ffc7c7
AF
58/** load_image_targphys:
59 * Same as load_image_targphys_as(), but doesn't allow the caller to specify
60 * an AddressSpace.
61 */
a8170e5e 62int load_image_targphys(const char *filename, hwaddr,
80a2ba3d 63 uint64_t max_sz);
93ffc7c7 64
76151cac
PM
65/**
66 * load_image_mr: load an image into a memory region
67 * @filename: Path to the image file
68 * @mr: Memory Region to load into
69 *
70 * Load the specified file into the memory region.
71 * The file loaded is registered as a ROM, so its contents will be
72 * reinstated whenever the system is reset.
73 * If the file is larger than the memory region's size the call will fail.
74 * Returns -1 on failure, or the size of the file.
75 */
76int load_image_mr(const char *filename, MemoryRegion *mr);
7d48a0f7
LE
77
78/* This is the limit on the maximum uncompressed image size that
79 * load_image_gzipped_buffer() and load_image_gzipped() will read. It prevents
80 * g_malloc() in those functions from allocating a huge amount of memory.
81 */
82#define LOAD_IMAGE_MAX_GUNZIP_BYTES (256 << 20)
83
84int load_image_gzipped_buffer(const char *filename, uint64_t max_sz,
85 uint8_t **buffer);
235e74af 86int load_image_gzipped(const char *filename, hwaddr addr, uint64_t max_sz);
18674b26
AK
87
88#define ELF_LOAD_FAILED -1
89#define ELF_LOAD_NOT_ELF -2
90#define ELF_LOAD_WRONG_ARCH -3
91#define ELF_LOAD_WRONG_ENDIAN -4
92const char *load_elf_strerror(int error);
140b7ce5 93
a2480ffa 94/** load_elf_ram_sym:
140b7ce5 95 * @filename: Path of ELF file
4366e1db
LM
96 * @elf_note_fn: optional function to parse ELF Note type
97 * passed via @translate_opaque
140b7ce5
PC
98 * @translate_fn: optional function to translate load addresses
99 * @translate_opaque: opaque data passed to @translate_fn
100 * @pentry: Populated with program entry point. Ignored if NULL.
101 * @lowaddr: Populated with lowest loaded address. Ignored if NULL.
102 * @highaddr: Populated with highest loaded address. Ignored if NULL.
103 * @bigendian: Expected ELF endianness. 0 for LE otherwise BE
104 * @elf_machine: Expected ELF machine type
105 * @clear_lsb: Set to mask off LSB of addresses (Some architectures use
106 * this for non-address data)
7ef295ea
PC
107 * @data_swab: Set to order of byte swapping for data. 0 for no swap, 1
108 * for swapping bytes within halfwords, 2 for bytes within
109 * words and 3 for within doublewords.
70bb1d16
AF
110 * @as: The AddressSpace to load the ELF to. The value of address_space_memory
111 * is used if nothing is supplied here.
34f1b23f 112 * @load_rom : Load ELF binary as ROM
a2480ffa 113 * @sym_cb: Callback function for symbol table entries
140b7ce5
PC
114 *
115 * Load an ELF file's contents to the emulated system's address space.
116 * Clients may optionally specify a callback to perform address
117 * translations. @pentry, @lowaddr and @highaddr are optional pointers
118 * which will be populated with various load information. @bigendian and
119 * @elf_machine give the expected endianness and machine for the ELF the
120 * load will fail if the target ELF does not match. Some architectures
121 * have some architecture-specific behaviours that come into effect when
122 * their particular values for @elf_machine are set.
8cf6e9da
AF
123 * If @elf_machine is EM_NONE then the machine type will be read from the
124 * ELF header and no checks will be carried out against the machine type.
140b7ce5 125 */
a2480ffa
MC
126typedef void (*symbol_fn_t)(const char *st_name, int st_info,
127 uint64_t st_value, uint64_t st_size);
128
129int load_elf_ram_sym(const char *filename,
4366e1db 130 uint64_t (*elf_note_fn)(void *, void *, bool),
a2480ffa
MC
131 uint64_t (*translate_fn)(void *, uint64_t),
132 void *translate_opaque, uint64_t *pentry,
133 uint64_t *lowaddr, uint64_t *highaddr, int big_endian,
134 int elf_machine, int clear_lsb, int data_swab,
135 AddressSpace *as, bool load_rom, symbol_fn_t sym_cb);
136
137/** load_elf_ram:
138 * Same as load_elf_ram_sym(), but doesn't allow the caller to specify a
139 * symbol callback function
140 */
34f1b23f 141int load_elf_ram(const char *filename,
4366e1db 142 uint64_t (*elf_note_fn)(void *, void *, bool),
34f1b23f
FA
143 uint64_t (*translate_fn)(void *, uint64_t),
144 void *translate_opaque, uint64_t *pentry, uint64_t *lowaddr,
145 uint64_t *highaddr, int big_endian, int elf_machine,
146 int clear_lsb, int data_swab, AddressSpace *as,
147 bool load_rom);
148
149/** load_elf_as:
150 * Same as load_elf_ram(), but always loads the elf as ROM
151 */
70bb1d16 152int load_elf_as(const char *filename,
4366e1db 153 uint64_t (*elf_note_fn)(void *, void *, bool),
70bb1d16
AF
154 uint64_t (*translate_fn)(void *, uint64_t),
155 void *translate_opaque, uint64_t *pentry, uint64_t *lowaddr,
156 uint64_t *highaddr, int big_endian, int elf_machine,
157 int clear_lsb, int data_swab, AddressSpace *as);
140b7ce5 158
70bb1d16
AF
159/** load_elf:
160 * Same as load_elf_as(), but doesn't allow the caller to specify an
161 * AddressSpace.
162 */
4366e1db
LM
163int load_elf(const char *filename,
164 uint64_t (*elf_note_fn)(void *, void *, bool),
165 uint64_t (*translate_fn)(void *, uint64_t),
409dbce5
AJ
166 void *translate_opaque, uint64_t *pentry, uint64_t *lowaddr,
167 uint64_t *highaddr, int big_endian, int elf_machine,
7ef295ea 168 int clear_lsb, int data_swab);
04ae712a
PC
169
170/** load_elf_hdr:
171 * @filename: Path of ELF file
172 * @hdr: Buffer to populate with header data. Header data will not be
173 * filled if set to NULL.
174 * @is64: Set to true if the ELF is 64bit. Ignored if set to NULL
175 * @errp: Populated with an error in failure cases
176 *
177 * Inspect an ELF file's header. Read its full header contents into a
178 * buffer and/or determine if the ELF is 64bit.
179 */
180void load_elf_hdr(const char *filename, void *hdr, bool *is64, Error **errp);
181
a8170e5e
AK
182int load_aout(const char *filename, hwaddr addr, int max_sz,
183 int bswap_needed, hwaddr target_page_size);
5e774eb3 184
f831f955
NH
185#define LOAD_UIMAGE_LOADADDR_INVALID (-1)
186
5e774eb3
AF
187/** load_uimage_as:
188 * @filename: Path of uimage file
189 * @ep: Populated with program entry point. Ignored if NULL.
f831f955
NH
190 * @loadaddr: load address if none specified in the image or when loading a
191 * ramdisk. Populated with the load address. Ignored if NULL or
192 * LOAD_UIMAGE_LOADADDR_INVALID (images which do not specify a load
193 * address will not be loadable).
5e774eb3
AF
194 * @is_linux: Is set to true if the image loaded is Linux. Ignored if NULL.
195 * @translate_fn: optional function to translate load addresses
196 * @translate_opaque: opaque data passed to @translate_fn
197 * @as: The AddressSpace to load the ELF to. The value of address_space_memory
198 * is used if nothing is supplied here.
199 *
200 * Loads a u-boot image into memory.
201 *
202 * Returns the size of the loaded image on success, -1 otherwise.
203 */
204int load_uimage_as(const char *filename, hwaddr *ep,
205 hwaddr *loadaddr, int *is_linux,
206 uint64_t (*translate_fn)(void *, uint64_t),
207 void *translate_opaque, AddressSpace *as);
208
209/** load_uimage:
210 * Same as load_uimage_as(), but doesn't allow the caller to specify an
211 * AddressSpace.
212 */
a8170e5e 213int load_uimage(const char *filename, hwaddr *ep,
25bda50a
MF
214 hwaddr *loadaddr, int *is_linux,
215 uint64_t (*translate_fn)(void *, uint64_t),
216 void *translate_opaque);
ca20cf32 217
84aee0de 218/**
97df5fee 219 * load_ramdisk_as:
84aee0de
SB
220 * @filename: Path to the ramdisk image
221 * @addr: Memory address to load the ramdisk to
222 * @max_sz: Maximum allowed ramdisk size (for non-u-boot ramdisks)
97df5fee
PM
223 * @as: The AddressSpace to load the ELF to. The value of address_space_memory
224 * is used if nothing is supplied here.
84aee0de
SB
225 *
226 * Load a ramdisk image with U-Boot header to the specified memory
227 * address.
228 *
229 * Returns the size of the loaded image on success, -1 otherwise.
230 */
97df5fee
PM
231int load_ramdisk_as(const char *filename, hwaddr addr, uint64_t max_sz,
232 AddressSpace *as);
233
234/**
235 * load_ramdisk:
236 * Same as load_ramdisk_as(), but doesn't allow the caller to specify
237 * an AddressSpace.
238 */
84aee0de
SB
239int load_ramdisk(const char *filename, hwaddr addr, uint64_t max_sz);
240
51b58561
PB
241ssize_t gunzip(void *dst, size_t dstlen, uint8_t *src, size_t srclen);
242
725e14e9 243ssize_t read_targphys(const char *name,
a8170e5e 244 int fd, hwaddr dst_addr, size_t nbytes);
3c178e72 245void pstrcpy_targphys(const char *name,
a8170e5e 246 hwaddr dest, int buf_size,
ca20cf32 247 const char *source);
45a50b16 248
ac41881b 249extern bool option_rom_has_mr;
98bc3ab0 250extern bool rom_file_has_mr;
bdb5ee30
GH
251
252int rom_add_file(const char *file, const char *fw_dir,
ac41881b 253 hwaddr addr, int32_t bootindex,
3e76099a 254 bool option_rom, MemoryRegion *mr, AddressSpace *as);
339240b5
PB
255MemoryRegion *rom_add_blob(const char *name, const void *blob, size_t len,
256 size_t max_len, hwaddr addr,
257 const char *fw_file_name,
6f6f4aec 258 FWCfgCallback fw_callback,
baf2d5bf
MT
259 void *callback_opaque, AddressSpace *as,
260 bool read_only);
d60fa42e 261int rom_add_elf_program(const char *name, void *data, size_t datasize,
3e76099a 262 size_t romsize, hwaddr addr, AddressSpace *as);
6b3f7f63 263int rom_check_and_register_reset(void);
a88b362c 264void rom_set_fw(FWCfgState *f);
bab47d9a
GH
265void rom_set_order_override(int order);
266void rom_reset_order_override(void);
e2336043
SH
267
268/**
269 * rom_transaction_begin:
270 *
271 * Call this before of a series of rom_add_*() calls. Call
272 * rom_transaction_end() afterwards to commit or abort. These functions are
273 * useful for undoing a series of rom_add_*() calls if image file loading fails
274 * partway through.
275 */
276void rom_transaction_begin(void);
277
278/**
279 * rom_transaction_end:
280 * @commit: true to commit added roms, false to drop added roms
281 *
282 * Call this after a series of rom_add_*() calls. See rom_transaction_begin().
283 */
284void rom_transaction_end(bool commit);
285
a8170e5e 286int rom_copy(uint8_t *dest, hwaddr addr, size_t size);
0f0f8b61 287void *rom_ptr(hwaddr addr, size_t size);
1ce6be24 288void hmp_info_roms(Monitor *mon, const QDict *qdict);
45a50b16 289
2e55e842 290#define rom_add_file_fixed(_f, _a, _i) \
3e76099a 291 rom_add_file(_f, NULL, _a, _i, false, NULL, NULL)
45a50b16 292#define rom_add_blob_fixed(_f, _b, _l, _a) \
baf2d5bf 293 rom_add_blob(_f, _b, _l, _l, _a, NULL, NULL, NULL, NULL, true)
76151cac 294#define rom_add_file_mr(_f, _mr, _i) \
3e76099a
AF
295 rom_add_file(_f, NULL, 0, _i, false, _mr, NULL)
296#define rom_add_file_as(_f, _as, _i) \
297 rom_add_file(_f, NULL, 0, _i, false, NULL, _as)
93ffc7c7
AF
298#define rom_add_file_fixed_as(_f, _a, _i, _as) \
299 rom_add_file(_f, NULL, _a, _i, false, NULL, _as)
5e774eb3 300#define rom_add_blob_fixed_as(_f, _b, _l, _a, _as) \
baf2d5bf 301 rom_add_blob(_f, _b, _l, _l, _a, NULL, NULL, NULL, _as, true)
45a50b16
GH
302
303#define PC_ROM_MIN_VGA 0xc0000
304#define PC_ROM_MIN_OPTION 0xc8000
305#define PC_ROM_MAX 0xe0000
306#define PC_ROM_ALIGN 0x800
307#define PC_ROM_SIZE (PC_ROM_MAX - PC_ROM_MIN_VGA)
308
de2aff17 309int rom_add_vga(const char *file);
2e55e842 310int rom_add_option(const char *file, int32_t bootindex);
45a50b16 311
51b58561
PB
312/* This is the usual maximum in uboot, so if a uImage overflows this, it would
313 * overflow on real hardware too. */
314#define UBOOT_MAX_GUNZIP_BYTES (64 << 20)
315
ca20cf32 316#endif