|
|
383d26 |
From 16f855a65838c81a35ac65a8a8b1084fa0b39689 Mon Sep 17 00:00:00 2001
|
|
|
383d26 |
From: David Hildenbrand <david@redhat.com>
|
|
|
383d26 |
Date: Fri, 21 Sep 2018 09:43:58 +0200
|
|
|
383d26 |
Subject: [PATCH 04/22] exec: check that alignment is a power of two
|
|
|
383d26 |
|
|
|
383d26 |
RH-Author: David Hildenbrand <david@redhat.com>
|
|
|
383d26 |
Message-id: <20180921094358.12256-1-david@redhat.com>
|
|
|
383d26 |
Patchwork-id: 82228
|
|
|
383d26 |
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH] exec: check that alignment is a power of two
|
|
|
383d26 |
Bugzilla: 1629717
|
|
|
383d26 |
RH-Acked-by: Pankaj Gupta <pagupta@redhat.com>
|
|
|
383d26 |
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
383d26 |
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
|
|
|
383d26 |
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
383d26 |
|
|
|
383d26 |
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1629717
|
|
|
383d26 |
Brew: https://brewweb.engineering.redhat.com/brew/taskinfo?taskID=18439720
|
|
|
383d26 |
Upstream: 61362b71c105ccb151ca16897a7d56534423f390
|
|
|
383d26 |
|
|
|
383d26 |
Right now we can crash QEMU using e.g.
|
|
|
383d26 |
|
|
|
383d26 |
qemu-system-x86_64 -m 256M,maxmem=20G,slots=2 \
|
|
|
383d26 |
-object memory-backend-file,id=mem0,size=12288,mem-path=/dev/zero,align=12288 \
|
|
|
383d26 |
-device pc-dimm,id=dimm1,memdev=mem0
|
|
|
383d26 |
|
|
|
383d26 |
qemu-system-x86_64: util/mmap-alloc.c:115:
|
|
|
383d26 |
qemu_ram_mmap: Assertion `is_power_of_2(align)' failed
|
|
|
383d26 |
|
|
|
383d26 |
Fix this by adding a proper check.
|
|
|
383d26 |
|
|
|
383d26 |
Signed-off-by: David Hildenbrand <david@redhat.com>
|
|
|
383d26 |
Message-Id: <20180607154705.6316-3-david@redhat.com>
|
|
|
383d26 |
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
|
|
|
383d26 |
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
|
|
|
383d26 |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
383d26 |
(cherry picked from commit 61362b71c105ccb151ca16897a7d56534423f390)
|
|
|
383d26 |
Signed-off-by: David Hildenbrand <david@redhat.com>
|
|
|
383d26 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
383d26 |
---
|
|
|
383d26 |
exec.c | 4 ++++
|
|
|
383d26 |
1 file changed, 4 insertions(+)
|
|
|
383d26 |
|
|
|
383d26 |
diff --git a/exec.c b/exec.c
|
|
|
383d26 |
index c670185..9028700 100644
|
|
|
383d26 |
--- a/exec.c
|
|
|
383d26 |
+++ b/exec.c
|
|
|
383d26 |
@@ -1629,6 +1629,10 @@ static void *file_ram_alloc(RAMBlock *block,
|
|
|
383d26 |
" must be multiples of page size 0x%zx",
|
|
|
383d26 |
block->mr->align, block->page_size);
|
|
|
383d26 |
return NULL;
|
|
|
383d26 |
+ } else if (block->mr->align && !is_power_of_2(block->mr->align)) {
|
|
|
383d26 |
+ error_setg(errp, "alignment 0x%" PRIx64
|
|
|
383d26 |
+ " must be a power of two", block->mr->align);
|
|
|
383d26 |
+ return NULL;
|
|
|
383d26 |
}
|
|
|
383d26 |
block->mr->align = MAX(block->page_size, block->mr->align);
|
|
|
383d26 |
#if defined(__s390x__)
|
|
|
383d26 |
--
|
|
|
383d26 |
1.8.3.1
|
|
|
383d26 |
|