[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GIT PULL 06/12] softmmu/physmem: Fail creation of new files in file_ram
From: |
David Hildenbrand |
Subject: |
[GIT PULL 06/12] softmmu/physmem: Fail creation of new files in file_ram_open() with readonly=true |
Date: |
Tue, 19 Sep 2023 12:30:23 +0200 |
Currently, if a file does not exist yet, file_ram_open() will create new
empty file and open it writable. However, it even does that when
readonly=true was specified.
Specifying O_RDONLY instead to create a new readonly file would
theoretically work, however, ftruncate() will refuse to resize the new
empty file and we'll get a warning:
ftruncate: Invalid argument
And later eventually more problems when actually mmap'ing that file and
accessing it.
If someone intends to let QEMU open+mmap a file read-only, better
create+resize+fill that file ahead of time outside of QEMU context.
We'll now fail with:
./qemu-system-x86_64 \
-object memory-backend-file,id=ram0,mem-path=tmp,readonly=true,size=1g
qemu-system-x86_64: can't open backing store tmp for guest RAM: No such file or
directory
All use cases of readonly files (R/O NVDIMMs, VM templating) work on
existing files, so silently creating new files might just hide user
errors when accidentally specifying a non-existent file.
Note that the only memory-backend-file will end up calling
memory_region_init_ram_from_file() -> qemu_ram_alloc_from_file() ->
file_ram_open().
Move error reporting to the single caller.
Message-ID: <20230906120503.359863-7-david@redhat.com>
Acked-by: Peter Xu <peterx@redhat.com>
Signed-off-by: David Hildenbrand <david@redhat.com>
---
softmmu/physmem.c | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/softmmu/physmem.c b/softmmu/physmem.c
index c520c2ac55..138402b6cf 100644
--- a/softmmu/physmem.c
+++ b/softmmu/physmem.c
@@ -1288,8 +1288,7 @@ static int64_t get_file_align(int fd)
static int file_ram_open(const char *path,
const char *region_name,
bool readonly,
- bool *created,
- Error **errp)
+ bool *created)
{
char *filename;
char *sanitized_name;
@@ -1304,6 +1303,10 @@ static int file_ram_open(const char *path,
break;
}
if (errno == ENOENT) {
+ if (readonly) {
+ /* Refuse to create new, readonly files. */
+ return -ENOENT;
+ }
/* @path names a file that doesn't exist, create it */
fd = open(path, O_RDWR | O_CREAT | O_EXCL, 0644);
if (fd >= 0) {
@@ -1333,10 +1336,7 @@ static int file_ram_open(const char *path,
g_free(filename);
}
if (errno != EEXIST && errno != EINTR) {
- error_setg_errno(errp, errno,
- "can't open backing store %s for guest RAM",
- path);
- return -1;
+ return -errno;
}
/*
* Try again on EINTR and EEXIST. The latter happens when
@@ -1946,8 +1946,10 @@ RAMBlock *qemu_ram_alloc_from_file(ram_addr_t size,
MemoryRegion *mr,
RAMBlock *block;
fd = file_ram_open(mem_path, memory_region_name(mr),
- !!(ram_flags & RAM_READONLY_FD), &created, errp);
+ !!(ram_flags & RAM_READONLY_FD), &created);
if (fd < 0) {
+ error_setg_errno(errp, -fd, "can't open backing store %s for guest
RAM",
+ mem_path);
return NULL;
}
--
2.41.0
- [GIT PULL 00/12] Host Memory Backends and Memory devices queue 2023-09-19, David Hildenbrand, 2023/09/19
- [GIT PULL 04/12] softmmu/physmem: Remap with proper protection in qemu_ram_remap(), David Hildenbrand, 2023/09/19
- [GIT PULL 10/12] softmmu/physmem: Hint that "readonly=on, rom=off" exists when opening file R/W for private mapping fails, David Hildenbrand, 2023/09/19
- [GIT PULL 01/12] nvdimm: Reject writing label data to ROM instead of crashing QEMU, David Hildenbrand, 2023/09/19
- [GIT PULL 08/12] docs: Don't mention "-mem-path" in multi-process.rst, David Hildenbrand, 2023/09/19
- [GIT PULL 03/12] backends/hostmem-file: Add "rom" property to support VM templating with R/O files, David Hildenbrand, 2023/09/19
- [GIT PULL 05/12] softmmu/physmem: Bail out early in ram_block_discard_range() with readonly files, David Hildenbrand, 2023/09/19
- [GIT PULL 02/12] softmmu/physmem: Distinguish between file access mode and mmap protection, David Hildenbrand, 2023/09/19
- [GIT PULL 06/12] softmmu/physmem: Fail creation of new files in file_ram_open() with readonly=true,
David Hildenbrand <=
- [GIT PULL 11/12] machine: Improve error message when using default RAM backend id, David Hildenbrand, 2023/09/19
- [GIT PULL 09/12] docs: Start documenting VM templating, David Hildenbrand, 2023/09/19
- [GIT PULL 07/12] softmmu/physmem: Never return directories from file_ram_open(), David Hildenbrand, 2023/09/19
- [GIT PULL 12/12] memory: avoid updating ioeventfds for some address_space, David Hildenbrand, 2023/09/19
- Re: [GIT PULL 00/12] Host Memory Backends and Memory devices queue 2023-09-19, Stefan Hajnoczi, 2023/09/19