[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH v4 3/4] dump: do not dump non-existent guest memory
From: |
Laurent Vivier |
Subject: |
[Qemu-ppc] [PATCH v4 3/4] dump: do not dump non-existent guest memory |
Date: |
Wed, 13 Sep 2017 16:20:35 +0200 |
From: Cornelia Huck <address@hidden>
It does not really make sense to dump memory that is not there.
Moreover, that fixes a segmentation fault when calling dump-guest-memory
with no filter for a machine with no memory defined.
New behaviour is:
(qemu) dump-guest-memory /dev/null
dump: no guest memory to dump
(qemu) dump-guest-memory /dev/null 0 4096
dump: no guest memory to dump
Signed-off-by: Cornelia Huck <address@hidden>
Tested-by: Laurent Vivier <address@hidden>
Reviewed-by: Laurent Vivier <address@hidden>
Reviewed-by: Greg Kurz <address@hidden>
Reviewed-by: Peter Xu <address@hidden>
---
dump.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/dump.c b/dump.c
index a79773d0f7..d2093e141b 100644
--- a/dump.c
+++ b/dump.c
@@ -1536,6 +1536,12 @@ static void dump_init(DumpState *s, int fd, bool
has_format,
fprintf(stderr, "DUMP: total memory to dump: %lu\n", s->total_size);
#endif
+ /* it does not make sense to dump non-existent memory */
+ if (!s->total_size) {
+ error_setg(errp, "dump: no guest memory to dump");
+ goto cleanup;
+ }
+
s->start = get_start_block(s);
if (s->start == -1) {
error_setg(errp, QERR_INVALID_PARAMETER, "begin");
--
2.13.5
- [Qemu-ppc] [PATCH v4 0/4] hmp: fix "dump-quest-memory" segfault, Laurent Vivier, 2017/09/13
- [Qemu-ppc] [PATCH v4 3/4] dump: do not dump non-existent guest memory,
Laurent Vivier <=
- [Qemu-ppc] [PATCH v4 1/4] hmp: fix "dump-quest-memory" segfault (ppc), Laurent Vivier, 2017/09/13
- [Qemu-ppc] [PATCH v4 2/4] hmp: fix "dump-quest-memory" segfault (arm), Laurent Vivier, 2017/09/13
- [Qemu-ppc] [PATCH v4 4/4] tests/hmp: test "none" machine with memory, Laurent Vivier, 2017/09/13
- Re: [Qemu-ppc] [PATCH v4 0/4] hmp: fix "dump-quest-memory" segfault, Dr. David Alan Gilbert, 2017/09/14