5d360b
From 693375003f594a1d19acd35df19141b92a5c8822 Mon Sep 17 00:00:00 2001
5d360b
From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= <marcandre.lureau@redhat.com>
5d360b
Date: Wed, 13 Dec 2017 13:39:01 +0100
5d360b
Subject: [PATCH 30/41] dump: add guest ELF note
5d360b
MIME-Version: 1.0
5d360b
Content-Type: text/plain; charset=UTF-8
5d360b
Content-Transfer-Encoding: 8bit
5d360b
5d360b
RH-Author: Marc-André Lureau <marcandre.lureau@redhat.com>
5d360b
Message-id: <20171213133912.26176-31-marcandre.lureau@redhat.com>
5d360b
Patchwork-id: 78377
5d360b
O-Subject: [RHEL-7.5 qemu-kvm PATCH v3 30/41] dump: add guest ELF note
5d360b
Bugzilla: 1411490
5d360b
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
5d360b
RH-Acked-by: Michael S. Tsirkin <mst@redhat.com>
5d360b
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
5d360b
5d360b
Read the guest ELF PT_NOTE from guest memory when fw_cfg
5d360b
etc/vmcoreinfo entry provides the location, and write it as an
5d360b
additional note in the dump.
5d360b
5d360b
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
5d360b
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
5d360b
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
5d360b
5d360b
(cherry picked from commit 903ef7349699dcd932b5981b85c1f1ebe4a4bf2a)
5d360b
5d360b
RHEL: Minor conflicts due to "detach" mode not being backported.
5d360b
      Replace warn_report() with error_report().
5d360b
5d360b
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
5d360b
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
5d360b
---
5d360b
 dump.c                | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++
5d360b
 include/sysemu/dump.h |   2 +
5d360b
 2 files changed, 108 insertions(+)
5d360b
5d360b
diff --git a/dump.c b/dump.c
5d360b
index d629c8d..823d1ad 100644
5d360b
--- a/dump.c
5d360b
+++ b/dump.c
5d360b
@@ -24,6 +24,7 @@
5d360b
 #include "sysemu/cpus.h"
5d360b
 #include "qapi/error.h"
5d360b
 #include "qmp-commands.h"
5d360b
+#include "hw/misc/vmcoreinfo.h"
5d360b
 
5d360b
 #include <zlib.h>
5d360b
 #ifdef CONFIG_LZO
5d360b
@@ -36,6 +37,13 @@
5d360b
 #define ELF_MACHINE_UNAME "Unknown"
5d360b
 #endif
5d360b
 
5d360b
+#define MAX_GUEST_NOTE_SIZE (1 << 20) /* 1MB should be enough */
5d360b
+
5d360b
+#define ELF_NOTE_SIZE(hdr_size, name_size, desc_size)   \
5d360b
+    ((DIV_ROUND_UP((hdr_size), 4) +                     \
5d360b
+      DIV_ROUND_UP((name_size), 4) +                    \
5d360b
+      DIV_ROUND_UP((desc_size), 4)) * 4)
5d360b
+
5d360b
 uint16_t cpu_to_dump16(DumpState *s, uint16_t val)
5d360b
 {
5d360b
     if (s->dump_info.d_endian == ELFDATA2LSB) {
5d360b
@@ -74,6 +82,8 @@ static int dump_cleanup(DumpState *s)
5d360b
     guest_phys_blocks_free(&s->guest_phys_blocks);
5d360b
     memory_mapping_list_free(&s->list);
5d360b
     close(s->fd);
5d360b
+    g_free(s->guest_note);
5d360b
+    s->guest_note = NULL;
5d360b
     if (s->resume) {
5d360b
         vm_start();
5d360b
     }
5d360b
@@ -227,6 +237,19 @@ static inline int cpu_index(CPUState *cpu)
5d360b
     return cpu->cpu_index + 1;
5d360b
 }
5d360b
 
5d360b
+static void write_guest_note(WriteCoreDumpFunction f, DumpState *s,
5d360b
+                             Error **errp)
5d360b
+{
5d360b
+    int ret;
5d360b
+
5d360b
+    if (s->guest_note) {
5d360b
+        ret = f(s->guest_note, s->guest_note_size, s);
5d360b
+        if (ret < 0) {
5d360b
+            error_setg(errp, "dump: failed to write guest note");
5d360b
+        }
5d360b
+    }
5d360b
+}
5d360b
+
5d360b
 static void write_elf64_notes(WriteCoreDumpFunction f, DumpState *s,
5d360b
                               Error **errp)
5d360b
 {
5d360b
@@ -253,6 +276,8 @@ static void write_elf64_notes(WriteCoreDumpFunction f, DumpState *s,
5d360b
             return;
5d360b
         }
5d360b
     }
5d360b
+
5d360b
+    write_guest_note(f, s, errp);
5d360b
 }
5d360b
 
5d360b
 static void write_elf32_note(DumpState *s, Error **errp)
5d360b
@@ -301,6 +326,8 @@ static void write_elf32_notes(WriteCoreDumpFunction f, DumpState *s,
5d360b
             return;
5d360b
         }
5d360b
     }
5d360b
+
5d360b
+    write_guest_note(f, s, errp);
5d360b
 }
5d360b
 
5d360b
 static void write_elf_section(DumpState *s, int type, Error **errp)
5d360b
@@ -712,6 +739,44 @@ static int buf_write_note(const void *buf, size_t size, void *opaque)
5d360b
     return 0;
5d360b
 }
5d360b
 
5d360b
+/*
5d360b
+ * This function retrieves various sizes from an elf header.
5d360b
+ *
5d360b
+ * @note has to be a valid ELF note. The return sizes are unmodified
5d360b
+ * (not padded or rounded up to be multiple of 4).
5d360b
+ */
5d360b
+static void get_note_sizes(DumpState *s, const void *note,
5d360b
+                           uint64_t *note_head_size,
5d360b
+                           uint64_t *name_size,
5d360b
+                           uint64_t *desc_size)
5d360b
+{
5d360b
+    uint64_t note_head_sz;
5d360b
+    uint64_t name_sz;
5d360b
+    uint64_t desc_sz;
5d360b
+
5d360b
+    if (s->dump_info.d_class == ELFCLASS64) {
5d360b
+        const Elf64_Nhdr *hdr = note;
5d360b
+        note_head_sz = sizeof(Elf64_Nhdr);
5d360b
+        name_sz = tswap64(hdr->n_namesz);
5d360b
+        desc_sz = tswap64(hdr->n_descsz);
5d360b
+    } else {
5d360b
+        const Elf32_Nhdr *hdr = note;
5d360b
+        note_head_sz = sizeof(Elf32_Nhdr);
5d360b
+        name_sz = tswap32(hdr->n_namesz);
5d360b
+        desc_sz = tswap32(hdr->n_descsz);
5d360b
+    }
5d360b
+
5d360b
+    if (note_head_size) {
5d360b
+        *note_head_size = note_head_sz;
5d360b
+    }
5d360b
+    if (name_size) {
5d360b
+        *name_size = name_sz;
5d360b
+    }
5d360b
+    if (desc_size) {
5d360b
+        *desc_size = desc_sz;
5d360b
+    }
5d360b
+}
5d360b
+
5d360b
 /* write common header, sub header and elf note to vmcore */
5d360b
 static void create_header32(DumpState *s, Error **errp)
5d360b
 {
5d360b
@@ -1493,6 +1558,7 @@ static void dump_init(DumpState *s, int fd, bool has_format,
5d360b
                       int64_t begin, int64_t length, Error **errp)
5d360b
 {
5d360b
     CPUArchState *env;
5d360b
+    VMCoreInfoState *vmci = vmcoreinfo_find();
5d360b
     int nr_cpus;
5d360b
     Error *err = NULL;
5d360b
     int ret;
5d360b
@@ -1569,6 +1635,46 @@ static void dump_init(DumpState *s, int fd, bool has_format,
5d360b
         goto cleanup;
5d360b
     }
5d360b
 
5d360b
+    /*
5d360b
+     * The goal of this block is to copy the guest note out of
5d360b
+     * the guest.  Failure to do so is not fatal for dumping.
5d360b
+     */
5d360b
+    if (vmci) {
5d360b
+        uint64_t addr, note_head_size, name_size, desc_size;
5d360b
+        uint32_t size;
5d360b
+        uint16_t format;
5d360b
+
5d360b
+        note_head_size = s->dump_info.d_class == ELFCLASS32 ?
5d360b
+            sizeof(Elf32_Nhdr) : sizeof(Elf64_Nhdr);
5d360b
+
5d360b
+        format = le16_to_cpu(vmci->vmcoreinfo.guest_format);
5d360b
+        size = le32_to_cpu(vmci->vmcoreinfo.size);
5d360b
+        addr = le64_to_cpu(vmci->vmcoreinfo.paddr);
5d360b
+        if (!vmci->has_vmcoreinfo) {
5d360b
+            error_report("guest note is not present");
5d360b
+        } else if (size < note_head_size || size > MAX_GUEST_NOTE_SIZE) {
5d360b
+            error_report("guest note size is invalid: %" PRIu32, size);
5d360b
+        } else if (format != VMCOREINFO_FORMAT_ELF) {
5d360b
+            error_report("guest note format is unsupported: %" PRIu16, format);
5d360b
+        } else {
5d360b
+            s->guest_note = g_malloc(size + 1); /* +1 for adding \0 */
5d360b
+            cpu_physical_memory_read(addr, s->guest_note, size);
5d360b
+
5d360b
+            get_note_sizes(s, s->guest_note, NULL, &name_size, &desc_size);
5d360b
+            s->guest_note_size = ELF_NOTE_SIZE(note_head_size, name_size,
5d360b
+                                               desc_size);
5d360b
+            if (name_size > MAX_GUEST_NOTE_SIZE ||
5d360b
+                desc_size > MAX_GUEST_NOTE_SIZE ||
5d360b
+                s->guest_note_size > size) {
5d360b
+                error_report("Invalid guest note header");
5d360b
+                g_free(s->guest_note);
5d360b
+                s->guest_note = NULL;
5d360b
+            } else {
5d360b
+                s->note_size += s->guest_note_size;
5d360b
+            }
5d360b
+        }
5d360b
+    }
5d360b
+
5d360b
     /* get memory mapping */
5d360b
     if (paging) {
5d360b
         qemu_get_guest_memory_mapping(&s->list, &s->guest_phys_blocks, &err;;
5d360b
diff --git a/include/sysemu/dump.h b/include/sysemu/dump.h
5d360b
index b5ebb0a..343dad4 100644
5d360b
--- a/include/sysemu/dump.h
5d360b
+++ b/include/sysemu/dump.h
5d360b
@@ -189,6 +189,8 @@ typedef struct DumpState {
5d360b
                                   * this could be used to calculate
5d360b
                                   * how much work we have
5d360b
                                   * finished. */
5d360b
+    uint8_t *guest_note;         /* ELF note content */
5d360b
+    size_t guest_note_size;
5d360b
 } DumpState;
5d360b
 
5d360b
 uint16_t cpu_to_dump16(DumpState *s, uint16_t val);
5d360b
-- 
5d360b
1.8.3.1
5d360b