60 lines
2.1 KiB
Diff
60 lines
2.1 KiB
Diff
From b339a54e493d97a5616be8883d1a0b4ebcd149d3 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <b339a54e493d97a5616be8883d1a0b4ebcd149d3@dist-git>
|
|
From: Michal Privoznik <mprivozn@redhat.com>
|
|
Date: Fri, 21 Jun 2019 09:25:18 +0200
|
|
Subject: [PATCH] cpu: Don't access invalid memory in virCPUx86Translate
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Problem is that if there are no signatures for a CPU, then we
|
|
still allocate cpu->signatures (even though with size 0). Later,
|
|
we access cpu->signatures[0] if cpu->signatures is not NULL.
|
|
|
|
Invalid read of size 4
|
|
at 0x5F439D7: virCPUx86Translate (cpu_x86.c:2930)
|
|
by 0x5F3C239: virCPUTranslate (cpu.c:927)
|
|
by 0x57CE7A1: qemuProcessUpdateGuestCPU (qemu_process.c:5870)
|
|
...
|
|
Address 0xf752d40 is 0 bytes after a block of size 0 alloc'd
|
|
at 0x4C30EC6: calloc (vg_replace_malloc.c:711)
|
|
by 0x5DBDE4E: virAllocN (viralloc.c:190)
|
|
by 0x5F3E4FA: x86ModelCopySignatures (cpu_x86.c:990)
|
|
by 0x5F3E60F: x86ModelCopy (cpu_x86.c:1008)
|
|
by 0x5F3E7CB: x86ModelFromCPU (cpu_x86.c:1068)
|
|
by 0x5F4397E: virCPUx86Translate (cpu_x86.c:2922)
|
|
by 0x5F3C239: virCPUTranslate (cpu.c:927)
|
|
by 0x57CE7A1: qemuProcessUpdateGuestCPU (qemu_process.c:5870)
|
|
...
|
|
|
|
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
|
|
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
|
|
(cherry picked from commit 62cb9c335c43a722e81ac0a1ed6e1111ba1d428b)
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1686895
|
|
|
|
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
|
|
Message-Id: <b36b22d237a7044a473e9b72de9763b2c603198c.1561068591.git.jdenemar@redhat.com>
|
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
---
|
|
src/cpu/cpu_x86.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/src/cpu/cpu_x86.c b/src/cpu/cpu_x86.c
|
|
index 24569a90f3..66aa5a612c 100644
|
|
--- a/src/cpu/cpu_x86.c
|
|
+++ b/src/cpu/cpu_x86.c
|
|
@@ -985,6 +985,9 @@ x86ModelCopySignatures(virCPUx86ModelPtr dst,
|
|
{
|
|
size_t i;
|
|
|
|
+ if (src->nsignatures == 0)
|
|
+ return 0;
|
|
+
|
|
if (VIR_ALLOC_N(dst->signatures, src->nsignatures) < 0)
|
|
return -1;
|
|
|
|
--
|
|
2.22.0
|
|
|