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