thebeanogamer / rpms / qemu-kvm

Forked from rpms/qemu-kvm 5 months ago
Clone
97168e
From bee31226b87d0b05faae84e88cce3af1b8dabbfd Mon Sep 17 00:00:00 2001
97168e
From: Janosch Frank <frankja@linux.ibm.com>
97168e
Date: Wed, 30 Mar 2022 12:35:59 +0000
97168e
Subject: [PATCH 17/42] dump: Add more offset variables
97168e
MIME-Version: 1.0
97168e
Content-Type: text/plain; charset=UTF-8
97168e
Content-Transfer-Encoding: 8bit
97168e
97168e
RH-Author: Cédric Le Goater <clg@redhat.com>
97168e
RH-MergeRequest: 226: s390: Enhanced Interpretation for PCI Functions and Secure Execution guest dump
97168e
RH-Bugzilla: 1664378 2043909
97168e
RH-Acked-by: Thomas Huth <thuth@redhat.com>
97168e
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
97168e
RH-Acked-by: Jon Maloy <jmaloy@redhat.com>
97168e
RH-Commit: [17/41] fbe629e1476e8a0e039f989af6e1f4707075ba01
97168e
97168e
Offset calculations are easy enough to get wrong. Let's add a few
97168e
variables to make moving around elf headers and data sections easier.
97168e
97168e
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
97168e
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
97168e
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
97168e
Message-Id: <20220330123603.107120-6-frankja@linux.ibm.com>
97168e
(cherry picked from commit e71d353360bb09a8e784e35d78370c691f6ea185)
97168e
Signed-off-by: Cédric Le Goater <clg@redhat.com>
97168e
---
97168e
 dump/dump.c           | 35 +++++++++++++++--------------------
97168e
 include/sysemu/dump.h |  4 ++++
97168e
 2 files changed, 19 insertions(+), 20 deletions(-)
97168e
97168e
diff --git a/dump/dump.c b/dump/dump.c
97168e
index 5cc2322325..85a402b38c 100644
97168e
--- a/dump/dump.c
97168e
+++ b/dump/dump.c
97168e
@@ -142,13 +142,11 @@ static void write_elf64_header(DumpState *s, Error **errp)
97168e
     elf_header.e_machine = cpu_to_dump16(s, s->dump_info.d_machine);
97168e
     elf_header.e_version = cpu_to_dump32(s, EV_CURRENT);
97168e
     elf_header.e_ehsize = cpu_to_dump16(s, sizeof(elf_header));
97168e
-    elf_header.e_phoff = cpu_to_dump64(s, sizeof(Elf64_Ehdr));
97168e
+    elf_header.e_phoff = cpu_to_dump64(s, s->phdr_offset);
97168e
     elf_header.e_phentsize = cpu_to_dump16(s, sizeof(Elf64_Phdr));
97168e
     elf_header.e_phnum = cpu_to_dump16(s, phnum);
97168e
     if (s->shdr_num) {
97168e
-        uint64_t shoff = sizeof(Elf64_Ehdr) + sizeof(Elf64_Phdr) * s->phdr_num;
97168e
-
97168e
-        elf_header.e_shoff = cpu_to_dump64(s, shoff);
97168e
+        elf_header.e_shoff = cpu_to_dump64(s, s->shdr_offset);
97168e
         elf_header.e_shentsize = cpu_to_dump16(s, sizeof(Elf64_Shdr));
97168e
         elf_header.e_shnum = cpu_to_dump16(s, s->shdr_num);
97168e
     }
97168e
@@ -179,13 +177,11 @@ static void write_elf32_header(DumpState *s, Error **errp)
97168e
     elf_header.e_machine = cpu_to_dump16(s, s->dump_info.d_machine);
97168e
     elf_header.e_version = cpu_to_dump32(s, EV_CURRENT);
97168e
     elf_header.e_ehsize = cpu_to_dump16(s, sizeof(elf_header));
97168e
-    elf_header.e_phoff = cpu_to_dump32(s, sizeof(Elf32_Ehdr));
97168e
+    elf_header.e_phoff = cpu_to_dump32(s, s->phdr_offset);
97168e
     elf_header.e_phentsize = cpu_to_dump16(s, sizeof(Elf32_Phdr));
97168e
     elf_header.e_phnum = cpu_to_dump16(s, phnum);
97168e
     if (s->shdr_num) {
97168e
-        uint32_t shoff = sizeof(Elf32_Ehdr) + sizeof(Elf32_Phdr) * s->phdr_num;
97168e
-
97168e
-        elf_header.e_shoff = cpu_to_dump32(s, shoff);
97168e
+        elf_header.e_shoff = cpu_to_dump32(s, s->shdr_offset);
97168e
         elf_header.e_shentsize = cpu_to_dump16(s, sizeof(Elf32_Shdr));
97168e
         elf_header.e_shnum = cpu_to_dump16(s, s->shdr_num);
97168e
     }
97168e
@@ -248,12 +244,11 @@ static void write_elf32_load(DumpState *s, MemoryMapping *memory_mapping,
97168e
 static void write_elf64_note(DumpState *s, Error **errp)
97168e
 {
97168e
     Elf64_Phdr phdr;
97168e
-    hwaddr begin = s->memory_offset - s->note_size;
97168e
     int ret;
97168e
 
97168e
     memset(&phdr, 0, sizeof(Elf64_Phdr));
97168e
     phdr.p_type = cpu_to_dump32(s, PT_NOTE);
97168e
-    phdr.p_offset = cpu_to_dump64(s, begin);
97168e
+    phdr.p_offset = cpu_to_dump64(s, s->note_offset);
97168e
     phdr.p_paddr = 0;
97168e
     phdr.p_filesz = cpu_to_dump64(s, s->note_size);
97168e
     phdr.p_memsz = cpu_to_dump64(s, s->note_size);
97168e
@@ -313,13 +308,12 @@ static void write_elf64_notes(WriteCoreDumpFunction f, DumpState *s,
97168e
 
97168e
 static void write_elf32_note(DumpState *s, Error **errp)
97168e
 {
97168e
-    hwaddr begin = s->memory_offset - s->note_size;
97168e
     Elf32_Phdr phdr;
97168e
     int ret;
97168e
 
97168e
     memset(&phdr, 0, sizeof(Elf32_Phdr));
97168e
     phdr.p_type = cpu_to_dump32(s, PT_NOTE);
97168e
-    phdr.p_offset = cpu_to_dump32(s, begin);
97168e
+    phdr.p_offset = cpu_to_dump32(s, s->note_offset);
97168e
     phdr.p_paddr = 0;
97168e
     phdr.p_filesz = cpu_to_dump32(s, s->note_size);
97168e
     phdr.p_memsz = cpu_to_dump32(s, s->note_size);
97168e
@@ -1826,15 +1820,16 @@ static void dump_init(DumpState *s, int fd, bool has_format,
97168e
     }
97168e
 
97168e
     if (s->dump_info.d_class == ELFCLASS64) {
97168e
-        s->memory_offset = sizeof(Elf64_Ehdr) +
97168e
-                           sizeof(Elf64_Phdr) * s->phdr_num +
97168e
-                           sizeof(Elf64_Shdr) * s->shdr_num +
97168e
-                           s->note_size;
97168e
+        s->phdr_offset = sizeof(Elf64_Ehdr);
97168e
+        s->shdr_offset = s->phdr_offset + sizeof(Elf64_Phdr) * s->phdr_num;
97168e
+        s->note_offset = s->shdr_offset + sizeof(Elf64_Shdr) * s->shdr_num;
97168e
+        s->memory_offset = s->note_offset + s->note_size;
97168e
     } else {
97168e
-        s->memory_offset = sizeof(Elf32_Ehdr) +
97168e
-                           sizeof(Elf32_Phdr) * s->phdr_num +
97168e
-                           sizeof(Elf32_Shdr) * s->shdr_num +
97168e
-                           s->note_size;
97168e
+
97168e
+        s->phdr_offset = sizeof(Elf32_Ehdr);
97168e
+        s->shdr_offset = s->phdr_offset + sizeof(Elf32_Phdr) * s->phdr_num;
97168e
+        s->note_offset = s->shdr_offset + sizeof(Elf32_Shdr) * s->shdr_num;
97168e
+        s->memory_offset = s->note_offset + s->note_size;
97168e
     }
97168e
 
97168e
     return;
97168e
diff --git a/include/sysemu/dump.h b/include/sysemu/dump.h
97168e
index 19458bffbd..ffc2ea1072 100644
97168e
--- a/include/sysemu/dump.h
97168e
+++ b/include/sysemu/dump.h
97168e
@@ -159,6 +159,10 @@ typedef struct DumpState {
97168e
     bool resume;
97168e
     bool detached;
97168e
     ssize_t note_size;
97168e
+    hwaddr shdr_offset;
97168e
+    hwaddr phdr_offset;
97168e
+    hwaddr section_offset;
97168e
+    hwaddr note_offset;
97168e
     hwaddr memory_offset;
97168e
     int fd;
97168e
 
97168e
-- 
97168e
2.37.3
97168e