xref: /qemu/hw/core/loader.c (revision 7a4e543d)
1 /*
2  * QEMU Executable loader
3  *
4  * Copyright (c) 2006 Fabrice Bellard
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  * Gunzip functionality in this file is derived from u-boot:
25  *
26  * (C) Copyright 2008 Semihalf
27  *
28  * (C) Copyright 2000-2005
29  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
30  *
31  * This program is free software; you can redistribute it and/or
32  * modify it under the terms of the GNU General Public License as
33  * published by the Free Software Foundation; either version 2 of
34  * the License, or (at your option) any later version.
35  *
36  * This program is distributed in the hope that it will be useful,
37  * but WITHOUT ANY WARRANTY; without even the implied warranty of
38  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
39  * GNU General Public License for more details.
40  *
41  * You should have received a copy of the GNU General Public License along
42  * with this program; if not, see <http://www.gnu.org/licenses/>.
43  */
44 
45 #include "qemu/osdep.h"
46 #include "hw/hw.h"
47 #include "disas/disas.h"
48 #include "monitor/monitor.h"
49 #include "sysemu/sysemu.h"
50 #include "uboot_image.h"
51 #include "hw/loader.h"
52 #include "hw/nvram/fw_cfg.h"
53 #include "exec/memory.h"
54 #include "exec/address-spaces.h"
55 #include "hw/boards.h"
56 
57 #include <zlib.h>
58 
59 static int roms_loaded;
60 
61 /* return the size or -1 if error */
62 int get_image_size(const char *filename)
63 {
64     int fd, size;
65     fd = open(filename, O_RDONLY | O_BINARY);
66     if (fd < 0)
67         return -1;
68     size = lseek(fd, 0, SEEK_END);
69     close(fd);
70     return size;
71 }
72 
73 /* return the size or -1 if error */
74 /* deprecated, because caller does not specify buffer size! */
75 int load_image(const char *filename, uint8_t *addr)
76 {
77     int fd, size;
78     fd = open(filename, O_RDONLY | O_BINARY);
79     if (fd < 0)
80         return -1;
81     size = lseek(fd, 0, SEEK_END);
82     if (size == -1) {
83         fprintf(stderr, "file %-20s: get size error: %s\n",
84                 filename, strerror(errno));
85         close(fd);
86         return -1;
87     }
88 
89     lseek(fd, 0, SEEK_SET);
90     if (read(fd, addr, size) != size) {
91         close(fd);
92         return -1;
93     }
94     close(fd);
95     return size;
96 }
97 
98 /* return the size or -1 if error */
99 ssize_t load_image_size(const char *filename, void *addr, size_t size)
100 {
101     int fd;
102     ssize_t actsize;
103 
104     fd = open(filename, O_RDONLY | O_BINARY);
105     if (fd < 0) {
106         return -1;
107     }
108 
109     actsize = read(fd, addr, size);
110     if (actsize < 0) {
111         close(fd);
112         return -1;
113     }
114     close(fd);
115 
116     return actsize;
117 }
118 
119 /* read()-like version */
120 ssize_t read_targphys(const char *name,
121                       int fd, hwaddr dst_addr, size_t nbytes)
122 {
123     uint8_t *buf;
124     ssize_t did;
125 
126     buf = g_malloc(nbytes);
127     did = read(fd, buf, nbytes);
128     if (did > 0)
129         rom_add_blob_fixed("read", buf, did, dst_addr);
130     g_free(buf);
131     return did;
132 }
133 
134 /* return the size or -1 if error */
135 int load_image_targphys(const char *filename,
136                         hwaddr addr, uint64_t max_sz)
137 {
138     int size;
139 
140     size = get_image_size(filename);
141     if (size > max_sz) {
142         return -1;
143     }
144     if (size > 0) {
145         rom_add_file_fixed(filename, addr, -1);
146     }
147     return size;
148 }
149 
150 void pstrcpy_targphys(const char *name, hwaddr dest, int buf_size,
151                       const char *source)
152 {
153     const char *nulp;
154     char *ptr;
155 
156     if (buf_size <= 0) return;
157     nulp = memchr(source, 0, buf_size);
158     if (nulp) {
159         rom_add_blob_fixed(name, source, (nulp - source) + 1, dest);
160     } else {
161         rom_add_blob_fixed(name, source, buf_size, dest);
162         ptr = rom_ptr(dest + buf_size - 1);
163         *ptr = 0;
164     }
165 }
166 
167 /* A.OUT loader */
168 
169 struct exec
170 {
171   uint32_t a_info;   /* Use macros N_MAGIC, etc for access */
172   uint32_t a_text;   /* length of text, in bytes */
173   uint32_t a_data;   /* length of data, in bytes */
174   uint32_t a_bss;    /* length of uninitialized data area, in bytes */
175   uint32_t a_syms;   /* length of symbol table data in file, in bytes */
176   uint32_t a_entry;  /* start address */
177   uint32_t a_trsize; /* length of relocation info for text, in bytes */
178   uint32_t a_drsize; /* length of relocation info for data, in bytes */
179 };
180 
181 static void bswap_ahdr(struct exec *e)
182 {
183     bswap32s(&e->a_info);
184     bswap32s(&e->a_text);
185     bswap32s(&e->a_data);
186     bswap32s(&e->a_bss);
187     bswap32s(&e->a_syms);
188     bswap32s(&e->a_entry);
189     bswap32s(&e->a_trsize);
190     bswap32s(&e->a_drsize);
191 }
192 
193 #define N_MAGIC(exec) ((exec).a_info & 0xffff)
194 #define OMAGIC 0407
195 #define NMAGIC 0410
196 #define ZMAGIC 0413
197 #define QMAGIC 0314
198 #define _N_HDROFF(x) (1024 - sizeof (struct exec))
199 #define N_TXTOFF(x)							\
200     (N_MAGIC(x) == ZMAGIC ? _N_HDROFF((x)) + sizeof (struct exec) :	\
201      (N_MAGIC(x) == QMAGIC ? 0 : sizeof (struct exec)))
202 #define N_TXTADDR(x, target_page_size) (N_MAGIC(x) == QMAGIC ? target_page_size : 0)
203 #define _N_SEGMENT_ROUND(x, target_page_size) (((x) + target_page_size - 1) & ~(target_page_size - 1))
204 
205 #define _N_TXTENDADDR(x, target_page_size) (N_TXTADDR(x, target_page_size)+(x).a_text)
206 
207 #define N_DATADDR(x, target_page_size) \
208     (N_MAGIC(x)==OMAGIC? (_N_TXTENDADDR(x, target_page_size)) \
209      : (_N_SEGMENT_ROUND (_N_TXTENDADDR(x, target_page_size), target_page_size)))
210 
211 
212 int load_aout(const char *filename, hwaddr addr, int max_sz,
213               int bswap_needed, hwaddr target_page_size)
214 {
215     int fd;
216     ssize_t size, ret;
217     struct exec e;
218     uint32_t magic;
219 
220     fd = open(filename, O_RDONLY | O_BINARY);
221     if (fd < 0)
222         return -1;
223 
224     size = read(fd, &e, sizeof(e));
225     if (size < 0)
226         goto fail;
227 
228     if (bswap_needed) {
229         bswap_ahdr(&e);
230     }
231 
232     magic = N_MAGIC(e);
233     switch (magic) {
234     case ZMAGIC:
235     case QMAGIC:
236     case OMAGIC:
237         if (e.a_text + e.a_data > max_sz)
238             goto fail;
239 	lseek(fd, N_TXTOFF(e), SEEK_SET);
240 	size = read_targphys(filename, fd, addr, e.a_text + e.a_data);
241 	if (size < 0)
242 	    goto fail;
243 	break;
244     case NMAGIC:
245         if (N_DATADDR(e, target_page_size) + e.a_data > max_sz)
246             goto fail;
247 	lseek(fd, N_TXTOFF(e), SEEK_SET);
248 	size = read_targphys(filename, fd, addr, e.a_text);
249 	if (size < 0)
250 	    goto fail;
251         ret = read_targphys(filename, fd, addr + N_DATADDR(e, target_page_size),
252                             e.a_data);
253 	if (ret < 0)
254 	    goto fail;
255 	size += ret;
256 	break;
257     default:
258 	goto fail;
259     }
260     close(fd);
261     return size;
262  fail:
263     close(fd);
264     return -1;
265 }
266 
267 /* ELF loader */
268 
269 static void *load_at(int fd, off_t offset, size_t size)
270 {
271     void *ptr;
272     if (lseek(fd, offset, SEEK_SET) < 0)
273         return NULL;
274     ptr = g_malloc(size);
275     if (read(fd, ptr, size) != size) {
276         g_free(ptr);
277         return NULL;
278     }
279     return ptr;
280 }
281 
282 #ifdef ELF_CLASS
283 #undef ELF_CLASS
284 #endif
285 
286 #define ELF_CLASS   ELFCLASS32
287 #include "elf.h"
288 
289 #define SZ		32
290 #define elf_word        uint32_t
291 #define elf_sword        int32_t
292 #define bswapSZs	bswap32s
293 #include "hw/elf_ops.h"
294 
295 #undef elfhdr
296 #undef elf_phdr
297 #undef elf_shdr
298 #undef elf_sym
299 #undef elf_rela
300 #undef elf_note
301 #undef elf_word
302 #undef elf_sword
303 #undef bswapSZs
304 #undef SZ
305 #define elfhdr		elf64_hdr
306 #define elf_phdr	elf64_phdr
307 #define elf_note	elf64_note
308 #define elf_shdr	elf64_shdr
309 #define elf_sym		elf64_sym
310 #define elf_rela        elf64_rela
311 #define elf_word        uint64_t
312 #define elf_sword        int64_t
313 #define bswapSZs	bswap64s
314 #define SZ		64
315 #include "hw/elf_ops.h"
316 
317 const char *load_elf_strerror(int error)
318 {
319     switch (error) {
320     case 0:
321         return "No error";
322     case ELF_LOAD_FAILED:
323         return "Failed to load ELF";
324     case ELF_LOAD_NOT_ELF:
325         return "The image is not ELF";
326     case ELF_LOAD_WRONG_ARCH:
327         return "The image is from incompatible architecture";
328     case ELF_LOAD_WRONG_ENDIAN:
329         return "The image has incorrect endianness";
330     default:
331         return "Unknown error";
332     }
333 }
334 
335 /* return < 0 if error, otherwise the number of bytes loaded in memory */
336 int load_elf(const char *filename, uint64_t (*translate_fn)(void *, uint64_t),
337              void *translate_opaque, uint64_t *pentry, uint64_t *lowaddr,
338              uint64_t *highaddr, int big_endian, int elf_machine, int clear_lsb)
339 {
340     int fd, data_order, target_data_order, must_swab, ret = ELF_LOAD_FAILED;
341     uint8_t e_ident[EI_NIDENT];
342 
343     fd = open(filename, O_RDONLY | O_BINARY);
344     if (fd < 0) {
345         perror(filename);
346         return -1;
347     }
348     if (read(fd, e_ident, sizeof(e_ident)) != sizeof(e_ident))
349         goto fail;
350     if (e_ident[0] != ELFMAG0 ||
351         e_ident[1] != ELFMAG1 ||
352         e_ident[2] != ELFMAG2 ||
353         e_ident[3] != ELFMAG3) {
354         ret = ELF_LOAD_NOT_ELF;
355         goto fail;
356     }
357 #ifdef HOST_WORDS_BIGENDIAN
358     data_order = ELFDATA2MSB;
359 #else
360     data_order = ELFDATA2LSB;
361 #endif
362     must_swab = data_order != e_ident[EI_DATA];
363     if (big_endian) {
364         target_data_order = ELFDATA2MSB;
365     } else {
366         target_data_order = ELFDATA2LSB;
367     }
368 
369     if (target_data_order != e_ident[EI_DATA]) {
370         ret = ELF_LOAD_WRONG_ENDIAN;
371         goto fail;
372     }
373 
374     lseek(fd, 0, SEEK_SET);
375     if (e_ident[EI_CLASS] == ELFCLASS64) {
376         ret = load_elf64(filename, fd, translate_fn, translate_opaque, must_swab,
377                          pentry, lowaddr, highaddr, elf_machine, clear_lsb);
378     } else {
379         ret = load_elf32(filename, fd, translate_fn, translate_opaque, must_swab,
380                          pentry, lowaddr, highaddr, elf_machine, clear_lsb);
381     }
382 
383  fail:
384     close(fd);
385     return ret;
386 }
387 
388 static void bswap_uboot_header(uboot_image_header_t *hdr)
389 {
390 #ifndef HOST_WORDS_BIGENDIAN
391     bswap32s(&hdr->ih_magic);
392     bswap32s(&hdr->ih_hcrc);
393     bswap32s(&hdr->ih_time);
394     bswap32s(&hdr->ih_size);
395     bswap32s(&hdr->ih_load);
396     bswap32s(&hdr->ih_ep);
397     bswap32s(&hdr->ih_dcrc);
398 #endif
399 }
400 
401 
402 #define ZALLOC_ALIGNMENT	16
403 
404 static void *zalloc(void *x, unsigned items, unsigned size)
405 {
406     void *p;
407 
408     size *= items;
409     size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1);
410 
411     p = g_malloc(size);
412 
413     return (p);
414 }
415 
416 static void zfree(void *x, void *addr)
417 {
418     g_free(addr);
419 }
420 
421 
422 #define HEAD_CRC	2
423 #define EXTRA_FIELD	4
424 #define ORIG_NAME	8
425 #define COMMENT		0x10
426 #define RESERVED	0xe0
427 
428 #define DEFLATED	8
429 
430 /* This is the usual maximum in uboot, so if a uImage overflows this, it would
431  * overflow on real hardware too. */
432 #define UBOOT_MAX_GUNZIP_BYTES (64 << 20)
433 
434 static ssize_t gunzip(void *dst, size_t dstlen, uint8_t *src,
435                       size_t srclen)
436 {
437     z_stream s;
438     ssize_t dstbytes;
439     int r, i, flags;
440 
441     /* skip header */
442     i = 10;
443     flags = src[3];
444     if (src[2] != DEFLATED || (flags & RESERVED) != 0) {
445         puts ("Error: Bad gzipped data\n");
446         return -1;
447     }
448     if ((flags & EXTRA_FIELD) != 0)
449         i = 12 + src[10] + (src[11] << 8);
450     if ((flags & ORIG_NAME) != 0)
451         while (src[i++] != 0)
452             ;
453     if ((flags & COMMENT) != 0)
454         while (src[i++] != 0)
455             ;
456     if ((flags & HEAD_CRC) != 0)
457         i += 2;
458     if (i >= srclen) {
459         puts ("Error: gunzip out of data in header\n");
460         return -1;
461     }
462 
463     s.zalloc = zalloc;
464     s.zfree = zfree;
465 
466     r = inflateInit2(&s, -MAX_WBITS);
467     if (r != Z_OK) {
468         printf ("Error: inflateInit2() returned %d\n", r);
469         return (-1);
470     }
471     s.next_in = src + i;
472     s.avail_in = srclen - i;
473     s.next_out = dst;
474     s.avail_out = dstlen;
475     r = inflate(&s, Z_FINISH);
476     if (r != Z_OK && r != Z_STREAM_END) {
477         printf ("Error: inflate() returned %d\n", r);
478         return -1;
479     }
480     dstbytes = s.next_out - (unsigned char *) dst;
481     inflateEnd(&s);
482 
483     return dstbytes;
484 }
485 
486 /* Load a U-Boot image.  */
487 static int load_uboot_image(const char *filename, hwaddr *ep, hwaddr *loadaddr,
488                             int *is_linux, uint8_t image_type,
489                             uint64_t (*translate_fn)(void *, uint64_t),
490                             void *translate_opaque)
491 {
492     int fd;
493     int size;
494     hwaddr address;
495     uboot_image_header_t h;
496     uboot_image_header_t *hdr = &h;
497     uint8_t *data = NULL;
498     int ret = -1;
499     int do_uncompress = 0;
500 
501     fd = open(filename, O_RDONLY | O_BINARY);
502     if (fd < 0)
503         return -1;
504 
505     size = read(fd, hdr, sizeof(uboot_image_header_t));
506     if (size < 0)
507         goto out;
508 
509     bswap_uboot_header(hdr);
510 
511     if (hdr->ih_magic != IH_MAGIC)
512         goto out;
513 
514     if (hdr->ih_type != image_type) {
515         fprintf(stderr, "Wrong image type %d, expected %d\n", hdr->ih_type,
516                 image_type);
517         goto out;
518     }
519 
520     /* TODO: Implement other image types.  */
521     switch (hdr->ih_type) {
522     case IH_TYPE_KERNEL:
523         address = hdr->ih_load;
524         if (translate_fn) {
525             address = translate_fn(translate_opaque, address);
526         }
527         if (loadaddr) {
528             *loadaddr = hdr->ih_load;
529         }
530 
531         switch (hdr->ih_comp) {
532         case IH_COMP_NONE:
533             break;
534         case IH_COMP_GZIP:
535             do_uncompress = 1;
536             break;
537         default:
538             fprintf(stderr,
539                     "Unable to load u-boot images with compression type %d\n",
540                     hdr->ih_comp);
541             goto out;
542         }
543 
544         if (ep) {
545             *ep = hdr->ih_ep;
546         }
547 
548         /* TODO: Check CPU type.  */
549         if (is_linux) {
550             if (hdr->ih_os == IH_OS_LINUX) {
551                 *is_linux = 1;
552             } else {
553                 *is_linux = 0;
554             }
555         }
556 
557         break;
558     case IH_TYPE_RAMDISK:
559         address = *loadaddr;
560         break;
561     default:
562         fprintf(stderr, "Unsupported u-boot image type %d\n", hdr->ih_type);
563         goto out;
564     }
565 
566     data = g_malloc(hdr->ih_size);
567 
568     if (read(fd, data, hdr->ih_size) != hdr->ih_size) {
569         fprintf(stderr, "Error reading file\n");
570         goto out;
571     }
572 
573     if (do_uncompress) {
574         uint8_t *compressed_data;
575         size_t max_bytes;
576         ssize_t bytes;
577 
578         compressed_data = data;
579         max_bytes = UBOOT_MAX_GUNZIP_BYTES;
580         data = g_malloc(max_bytes);
581 
582         bytes = gunzip(data, max_bytes, compressed_data, hdr->ih_size);
583         g_free(compressed_data);
584         if (bytes < 0) {
585             fprintf(stderr, "Unable to decompress gzipped image!\n");
586             goto out;
587         }
588         hdr->ih_size = bytes;
589     }
590 
591     rom_add_blob_fixed(filename, data, hdr->ih_size, address);
592 
593     ret = hdr->ih_size;
594 
595 out:
596     g_free(data);
597     close(fd);
598     return ret;
599 }
600 
601 int load_uimage(const char *filename, hwaddr *ep, hwaddr *loadaddr,
602                 int *is_linux,
603                 uint64_t (*translate_fn)(void *, uint64_t),
604                 void *translate_opaque)
605 {
606     return load_uboot_image(filename, ep, loadaddr, is_linux, IH_TYPE_KERNEL,
607                             translate_fn, translate_opaque);
608 }
609 
610 /* Load a ramdisk.  */
611 int load_ramdisk(const char *filename, hwaddr addr, uint64_t max_sz)
612 {
613     return load_uboot_image(filename, NULL, &addr, NULL, IH_TYPE_RAMDISK,
614                             NULL, NULL);
615 }
616 
617 /* Load a gzip-compressed kernel to a dynamically allocated buffer. */
618 int load_image_gzipped_buffer(const char *filename, uint64_t max_sz,
619                               uint8_t **buffer)
620 {
621     uint8_t *compressed_data = NULL;
622     uint8_t *data = NULL;
623     gsize len;
624     ssize_t bytes;
625     int ret = -1;
626 
627     if (!g_file_get_contents(filename, (char **) &compressed_data, &len,
628                              NULL)) {
629         goto out;
630     }
631 
632     /* Is it a gzip-compressed file? */
633     if (len < 2 ||
634         compressed_data[0] != 0x1f ||
635         compressed_data[1] != 0x8b) {
636         goto out;
637     }
638 
639     if (max_sz > LOAD_IMAGE_MAX_GUNZIP_BYTES) {
640         max_sz = LOAD_IMAGE_MAX_GUNZIP_BYTES;
641     }
642 
643     data = g_malloc(max_sz);
644     bytes = gunzip(data, max_sz, compressed_data, len);
645     if (bytes < 0) {
646         fprintf(stderr, "%s: unable to decompress gzipped kernel file\n",
647                 filename);
648         goto out;
649     }
650 
651     /* trim to actual size and return to caller */
652     *buffer = g_realloc(data, bytes);
653     ret = bytes;
654     /* ownership has been transferred to caller */
655     data = NULL;
656 
657  out:
658     g_free(compressed_data);
659     g_free(data);
660     return ret;
661 }
662 
663 /* Load a gzip-compressed kernel. */
664 int load_image_gzipped(const char *filename, hwaddr addr, uint64_t max_sz)
665 {
666     int bytes;
667     uint8_t *data;
668 
669     bytes = load_image_gzipped_buffer(filename, max_sz, &data);
670     if (bytes != -1) {
671         rom_add_blob_fixed(filename, data, bytes, addr);
672         g_free(data);
673     }
674     return bytes;
675 }
676 
677 /*
678  * Functions for reboot-persistent memory regions.
679  *  - used for vga bios and option roms.
680  *  - also linux kernel (-kernel / -initrd).
681  */
682 
683 typedef struct Rom Rom;
684 
685 struct Rom {
686     char *name;
687     char *path;
688 
689     /* datasize is the amount of memory allocated in "data". If datasize is less
690      * than romsize, it means that the area from datasize to romsize is filled
691      * with zeros.
692      */
693     size_t romsize;
694     size_t datasize;
695 
696     uint8_t *data;
697     MemoryRegion *mr;
698     int isrom;
699     char *fw_dir;
700     char *fw_file;
701 
702     hwaddr addr;
703     QTAILQ_ENTRY(Rom) next;
704 };
705 
706 static FWCfgState *fw_cfg;
707 static QTAILQ_HEAD(, Rom) roms = QTAILQ_HEAD_INITIALIZER(roms);
708 
709 static void rom_insert(Rom *rom)
710 {
711     Rom *item;
712 
713     if (roms_loaded) {
714         hw_error ("ROM images must be loaded at startup\n");
715     }
716 
717     /* list is ordered by load address */
718     QTAILQ_FOREACH(item, &roms, next) {
719         if (rom->addr >= item->addr)
720             continue;
721         QTAILQ_INSERT_BEFORE(item, rom, next);
722         return;
723     }
724     QTAILQ_INSERT_TAIL(&roms, rom, next);
725 }
726 
727 static void fw_cfg_resized(const char *id, uint64_t length, void *host)
728 {
729     if (fw_cfg) {
730         fw_cfg_modify_file(fw_cfg, id + strlen("/rom@"), host, length);
731     }
732 }
733 
734 static void *rom_set_mr(Rom *rom, Object *owner, const char *name)
735 {
736     void *data;
737 
738     rom->mr = g_malloc(sizeof(*rom->mr));
739     memory_region_init_resizeable_ram(rom->mr, owner, name,
740                                       rom->datasize, rom->romsize,
741                                       fw_cfg_resized,
742                                       &error_fatal);
743     memory_region_set_readonly(rom->mr, true);
744     vmstate_register_ram_global(rom->mr);
745 
746     data = memory_region_get_ram_ptr(rom->mr);
747     memcpy(data, rom->data, rom->datasize);
748 
749     return data;
750 }
751 
752 int rom_add_file(const char *file, const char *fw_dir,
753                  hwaddr addr, int32_t bootindex,
754                  bool option_rom)
755 {
756     MachineClass *mc = MACHINE_GET_CLASS(qdev_get_machine());
757     Rom *rom;
758     int rc, fd = -1;
759     char devpath[100];
760 
761     rom = g_malloc0(sizeof(*rom));
762     rom->name = g_strdup(file);
763     rom->path = qemu_find_file(QEMU_FILE_TYPE_BIOS, rom->name);
764     if (rom->path == NULL) {
765         rom->path = g_strdup(file);
766     }
767 
768     fd = open(rom->path, O_RDONLY | O_BINARY);
769     if (fd == -1) {
770         fprintf(stderr, "Could not open option rom '%s': %s\n",
771                 rom->path, strerror(errno));
772         goto err;
773     }
774 
775     if (fw_dir) {
776         rom->fw_dir  = g_strdup(fw_dir);
777         rom->fw_file = g_strdup(file);
778     }
779     rom->addr     = addr;
780     rom->romsize  = lseek(fd, 0, SEEK_END);
781     if (rom->romsize == -1) {
782         fprintf(stderr, "rom: file %-20s: get size error: %s\n",
783                 rom->name, strerror(errno));
784         goto err;
785     }
786 
787     rom->datasize = rom->romsize;
788     rom->data     = g_malloc0(rom->datasize);
789     lseek(fd, 0, SEEK_SET);
790     rc = read(fd, rom->data, rom->datasize);
791     if (rc != rom->datasize) {
792         fprintf(stderr, "rom: file %-20s: read error: rc=%d (expected %zd)\n",
793                 rom->name, rc, rom->datasize);
794         goto err;
795     }
796     close(fd);
797     rom_insert(rom);
798     if (rom->fw_file && fw_cfg) {
799         const char *basename;
800         char fw_file_name[FW_CFG_MAX_FILE_PATH];
801         void *data;
802 
803         basename = strrchr(rom->fw_file, '/');
804         if (basename) {
805             basename++;
806         } else {
807             basename = rom->fw_file;
808         }
809         snprintf(fw_file_name, sizeof(fw_file_name), "%s/%s", rom->fw_dir,
810                  basename);
811         snprintf(devpath, sizeof(devpath), "/rom@%s", fw_file_name);
812 
813         if ((!option_rom || mc->option_rom_has_mr) && mc->rom_file_has_mr) {
814             data = rom_set_mr(rom, OBJECT(fw_cfg), devpath);
815         } else {
816             data = rom->data;
817         }
818 
819         fw_cfg_add_file(fw_cfg, fw_file_name, data, rom->romsize);
820     } else {
821         snprintf(devpath, sizeof(devpath), "/rom@" TARGET_FMT_plx, addr);
822     }
823 
824     add_boot_device_path(bootindex, NULL, devpath);
825     return 0;
826 
827 err:
828     if (fd != -1)
829         close(fd);
830     g_free(rom->data);
831     g_free(rom->path);
832     g_free(rom->name);
833     g_free(rom);
834     return -1;
835 }
836 
837 MemoryRegion *rom_add_blob(const char *name, const void *blob, size_t len,
838                    size_t max_len, hwaddr addr, const char *fw_file_name,
839                    FWCfgReadCallback fw_callback, void *callback_opaque)
840 {
841     MachineClass *mc = MACHINE_GET_CLASS(qdev_get_machine());
842     Rom *rom;
843     MemoryRegion *mr = NULL;
844 
845     rom           = g_malloc0(sizeof(*rom));
846     rom->name     = g_strdup(name);
847     rom->addr     = addr;
848     rom->romsize  = max_len ? max_len : len;
849     rom->datasize = len;
850     rom->data     = g_malloc0(rom->datasize);
851     memcpy(rom->data, blob, len);
852     rom_insert(rom);
853     if (fw_file_name && fw_cfg) {
854         char devpath[100];
855         void *data;
856 
857         snprintf(devpath, sizeof(devpath), "/rom@%s", fw_file_name);
858 
859         if (mc->rom_file_has_mr) {
860             data = rom_set_mr(rom, OBJECT(fw_cfg), devpath);
861             mr = rom->mr;
862         } else {
863             data = rom->data;
864         }
865 
866         fw_cfg_add_file_callback(fw_cfg, fw_file_name,
867                                  fw_callback, callback_opaque,
868                                  data, rom->datasize);
869     }
870     return mr;
871 }
872 
873 /* This function is specific for elf program because we don't need to allocate
874  * all the rom. We just allocate the first part and the rest is just zeros. This
875  * is why romsize and datasize are different. Also, this function seize the
876  * memory ownership of "data", so we don't have to allocate and copy the buffer.
877  */
878 int rom_add_elf_program(const char *name, void *data, size_t datasize,
879                         size_t romsize, hwaddr addr)
880 {
881     Rom *rom;
882 
883     rom           = g_malloc0(sizeof(*rom));
884     rom->name     = g_strdup(name);
885     rom->addr     = addr;
886     rom->datasize = datasize;
887     rom->romsize  = romsize;
888     rom->data     = data;
889     rom_insert(rom);
890     return 0;
891 }
892 
893 int rom_add_vga(const char *file)
894 {
895     return rom_add_file(file, "vgaroms", 0, -1, true);
896 }
897 
898 int rom_add_option(const char *file, int32_t bootindex)
899 {
900     return rom_add_file(file, "genroms", 0, bootindex, true);
901 }
902 
903 static void rom_reset(void *unused)
904 {
905     Rom *rom;
906 
907     QTAILQ_FOREACH(rom, &roms, next) {
908         if (rom->fw_file) {
909             continue;
910         }
911         if (rom->data == NULL) {
912             continue;
913         }
914         if (rom->mr) {
915             void *host = memory_region_get_ram_ptr(rom->mr);
916             memcpy(host, rom->data, rom->datasize);
917         } else {
918             cpu_physical_memory_write_rom(&address_space_memory,
919                                           rom->addr, rom->data, rom->datasize);
920         }
921         if (rom->isrom) {
922             /* rom needs to be written only once */
923             g_free(rom->data);
924             rom->data = NULL;
925         }
926         /*
927          * The rom loader is really on the same level as firmware in the guest
928          * shadowing a ROM into RAM. Such a shadowing mechanism needs to ensure
929          * that the instruction cache for that new region is clear, so that the
930          * CPU definitely fetches its instructions from the just written data.
931          */
932         cpu_flush_icache_range(rom->addr, rom->datasize);
933     }
934 }
935 
936 int rom_check_and_register_reset(void)
937 {
938     hwaddr addr = 0;
939     MemoryRegionSection section;
940     Rom *rom;
941 
942     QTAILQ_FOREACH(rom, &roms, next) {
943         if (rom->fw_file) {
944             continue;
945         }
946         if (addr > rom->addr) {
947             fprintf(stderr, "rom: requested regions overlap "
948                     "(rom %s. free=0x" TARGET_FMT_plx
949                     ", addr=0x" TARGET_FMT_plx ")\n",
950                     rom->name, addr, rom->addr);
951             return -1;
952         }
953         addr  = rom->addr;
954         addr += rom->romsize;
955         section = memory_region_find(get_system_memory(), rom->addr, 1);
956         rom->isrom = int128_nz(section.size) && memory_region_is_rom(section.mr);
957         memory_region_unref(section.mr);
958     }
959     qemu_register_reset(rom_reset, NULL);
960     roms_loaded = 1;
961     return 0;
962 }
963 
964 void rom_set_fw(FWCfgState *f)
965 {
966     fw_cfg = f;
967 }
968 
969 static Rom *find_rom(hwaddr addr)
970 {
971     Rom *rom;
972 
973     QTAILQ_FOREACH(rom, &roms, next) {
974         if (rom->fw_file) {
975             continue;
976         }
977         if (rom->mr) {
978             continue;
979         }
980         if (rom->addr > addr) {
981             continue;
982         }
983         if (rom->addr + rom->romsize < addr) {
984             continue;
985         }
986         return rom;
987     }
988     return NULL;
989 }
990 
991 /*
992  * Copies memory from registered ROMs to dest. Any memory that is contained in
993  * a ROM between addr and addr + size is copied. Note that this can involve
994  * multiple ROMs, which need not start at addr and need not end at addr + size.
995  */
996 int rom_copy(uint8_t *dest, hwaddr addr, size_t size)
997 {
998     hwaddr end = addr + size;
999     uint8_t *s, *d = dest;
1000     size_t l = 0;
1001     Rom *rom;
1002 
1003     QTAILQ_FOREACH(rom, &roms, next) {
1004         if (rom->fw_file) {
1005             continue;
1006         }
1007         if (rom->mr) {
1008             continue;
1009         }
1010         if (rom->addr + rom->romsize < addr) {
1011             continue;
1012         }
1013         if (rom->addr > end) {
1014             break;
1015         }
1016 
1017         d = dest + (rom->addr - addr);
1018         s = rom->data;
1019         l = rom->datasize;
1020 
1021         if ((d + l) > (dest + size)) {
1022             l = dest - d;
1023         }
1024 
1025         if (l > 0) {
1026             memcpy(d, s, l);
1027         }
1028 
1029         if (rom->romsize > rom->datasize) {
1030             /* If datasize is less than romsize, it means that we didn't
1031              * allocate all the ROM because the trailing data are only zeros.
1032              */
1033 
1034             d += l;
1035             l = rom->romsize - rom->datasize;
1036 
1037             if ((d + l) > (dest + size)) {
1038                 /* Rom size doesn't fit in the destination area. Adjust to avoid
1039                  * overflow.
1040                  */
1041                 l = dest - d;
1042             }
1043 
1044             if (l > 0) {
1045                 memset(d, 0x0, l);
1046             }
1047         }
1048     }
1049 
1050     return (d + l) - dest;
1051 }
1052 
1053 void *rom_ptr(hwaddr addr)
1054 {
1055     Rom *rom;
1056 
1057     rom = find_rom(addr);
1058     if (!rom || !rom->data)
1059         return NULL;
1060     return rom->data + (addr - rom->addr);
1061 }
1062 
1063 void hmp_info_roms(Monitor *mon, const QDict *qdict)
1064 {
1065     Rom *rom;
1066 
1067     QTAILQ_FOREACH(rom, &roms, next) {
1068         if (rom->mr) {
1069             monitor_printf(mon, "%s"
1070                            " size=0x%06zx name=\"%s\"\n",
1071                            memory_region_name(rom->mr),
1072                            rom->romsize,
1073                            rom->name);
1074         } else if (!rom->fw_file) {
1075             monitor_printf(mon, "addr=" TARGET_FMT_plx
1076                            " size=0x%06zx mem=%s name=\"%s\"\n",
1077                            rom->addr, rom->romsize,
1078                            rom->isrom ? "rom" : "ram",
1079                            rom->name);
1080         } else {
1081             monitor_printf(mon, "fw=%s/%s"
1082                            " size=0x%06zx name=\"%s\"\n",
1083                            rom->fw_dir,
1084                            rom->fw_file,
1085                            rom->romsize,
1086                            rom->name);
1087         }
1088     }
1089 }
1090