mirror of https://github.com/xemu-project/xemu.git
hw/core/loader: allow loading larger ROMs
The read() syscall is not guaranteed to return all data from a file. The default ROM loader implementation currently does not take this into account, instead failing if all bytes are not read at once. This change loads the ROM using g_file_get_contents() instead, which correctly reads all data using multiple calls to read() while also returning the loaded ROM size. Signed-off-by: Gregor Haas <gregorhaas1997@gmail.com> Reviewed-by: Xingtao Yao <yaoxt.fnst@fujitsu.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20240628182706.99525-1-gregorhaas1997@gmail.com> [PMD: Use gsize with g_file_get_contents()] Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
959269e910
commit
c88d07488c
|
@ -1076,8 +1076,8 @@ ssize_t rom_add_file(const char *file, const char *fw_dir,
|
||||||
{
|
{
|
||||||
MachineClass *mc = MACHINE_GET_CLASS(qdev_get_machine());
|
MachineClass *mc = MACHINE_GET_CLASS(qdev_get_machine());
|
||||||
Rom *rom;
|
Rom *rom;
|
||||||
ssize_t rc;
|
gsize size;
|
||||||
int fd = -1;
|
g_autoptr(GError) gerr = NULL;
|
||||||
char devpath[100];
|
char devpath[100];
|
||||||
|
|
||||||
if (as && mr) {
|
if (as && mr) {
|
||||||
|
@ -1095,10 +1095,10 @@ ssize_t rom_add_file(const char *file, const char *fw_dir,
|
||||||
rom->path = g_strdup(file);
|
rom->path = g_strdup(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
fd = open(rom->path, O_RDONLY | O_BINARY);
|
if (!g_file_get_contents(rom->path, (gchar **) &rom->data,
|
||||||
if (fd == -1) {
|
&size, &gerr)) {
|
||||||
fprintf(stderr, "Could not open option rom '%s': %s\n",
|
fprintf(stderr, "rom: file %-20s: error %s\n",
|
||||||
rom->path, strerror(errno));
|
rom->name, gerr->message);
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1107,23 +1107,8 @@ ssize_t rom_add_file(const char *file, const char *fw_dir,
|
||||||
rom->fw_file = g_strdup(file);
|
rom->fw_file = g_strdup(file);
|
||||||
}
|
}
|
||||||
rom->addr = addr;
|
rom->addr = addr;
|
||||||
rom->romsize = lseek(fd, 0, SEEK_END);
|
rom->romsize = size;
|
||||||
if (rom->romsize == -1) {
|
|
||||||
fprintf(stderr, "rom: file %-20s: get size error: %s\n",
|
|
||||||
rom->name, strerror(errno));
|
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
|
|
||||||
rom->datasize = rom->romsize;
|
rom->datasize = rom->romsize;
|
||||||
rom->data = g_malloc0(rom->datasize);
|
|
||||||
lseek(fd, 0, SEEK_SET);
|
|
||||||
rc = read(fd, rom->data, rom->datasize);
|
|
||||||
if (rc != rom->datasize) {
|
|
||||||
fprintf(stderr, "rom: file %-20s: read error: rc=%zd (expected %zd)\n",
|
|
||||||
rom->name, rc, rom->datasize);
|
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
close(fd);
|
|
||||||
rom_insert(rom);
|
rom_insert(rom);
|
||||||
if (rom->fw_file && fw_cfg) {
|
if (rom->fw_file && fw_cfg) {
|
||||||
const char *basename;
|
const char *basename;
|
||||||
|
@ -1160,9 +1145,6 @@ ssize_t rom_add_file(const char *file, const char *fw_dir,
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err:
|
err:
|
||||||
if (fd != -1)
|
|
||||||
close(fd);
|
|
||||||
|
|
||||||
rom_free(rom);
|
rom_free(rom);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue