blob: 0d95fc5b7a3c583a6a319794c070476dc6f35b90 [file] [log] [blame]
Wen Congyang783e9b42012-05-07 12:10:47 +08001/*
2 * QEMU dump
3 *
4 * Copyright Fujitsu, Corp. 2011, 2012
5 *
6 * Authors:
7 * Wen Congyang <wency@cn.fujitsu.com>
8 *
Stefan Weil352666e2012-06-10 19:34:04 +00009 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
Wen Congyang783e9b42012-05-07 12:10:47 +080011 *
12 */
13
Peter Maydelld38ea872016-01-29 17:50:05 +000014#include "qemu/osdep.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020015#include "qemu/cutils.h"
Wen Congyang783e9b42012-05-07 12:10:47 +080016#include "elf.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010017#include "exec/hwaddr.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +010018#include "monitor/monitor.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010019#include "sysemu/kvm.h"
20#include "sysemu/dump.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010021#include "sysemu/memory_mapping.h"
Markus Armbruster54d31232019-08-12 07:23:59 +020022#include "sysemu/runstate.h"
Andreas Färber1b3509c2013-06-09 16:48:29 +020023#include "sysemu/cpus.h"
Markus Armbrustere688df62018-02-01 12:18:31 +010024#include "qapi/error.h"
Markus Armbrusterd06b7472019-06-19 22:10:47 +020025#include "qapi/qapi-commands-dump.h"
26#include "qapi/qapi-events-dump.h"
Markus Armbrustercc7a8ea2015-03-17 17:22:46 +010027#include "qapi/qmp/qerror.h"
Marc-André Lureau903ef732017-09-11 18:59:25 +020028#include "qemu/error-report.h"
Markus Armbrusterdb725812019-08-12 07:23:50 +020029#include "qemu/main-loop.h"
Marc-André Lureau903ef732017-09-11 18:59:25 +020030#include "hw/misc/vmcoreinfo.h"
Peter Xub7bc6b12021-09-22 12:20:09 -040031#include "migration/blocker.h"
Wen Congyang783e9b42012-05-07 12:10:47 +080032
Viktor Prutyanov2da91b52018-05-17 19:23:39 +030033#ifdef TARGET_X86_64
34#include "win_dump.h"
35#endif
36
qiaonuohand12f57e2014-02-18 14:11:35 +080037#include <zlib.h>
38#ifdef CONFIG_LZO
39#include <lzo/lzo1x.h>
40#endif
41#ifdef CONFIG_SNAPPY
42#include <snappy-c.h>
43#endif
qiaonuohan4ab23a92014-02-18 14:11:37 +080044#ifndef ELF_MACHINE_UNAME
45#define ELF_MACHINE_UNAME "Unknown"
46#endif
qiaonuohand12f57e2014-02-18 14:11:35 +080047
Marc-André Lureau903ef732017-09-11 18:59:25 +020048#define MAX_GUEST_NOTE_SIZE (1 << 20) /* 1MB should be enough */
49
Peter Xub7bc6b12021-09-22 12:20:09 -040050static Error *dump_migration_blocker;
51
Marc-André Lureau903ef732017-09-11 18:59:25 +020052#define ELF_NOTE_SIZE(hdr_size, name_size, desc_size) \
53 ((DIV_ROUND_UP((hdr_size), 4) + \
54 DIV_ROUND_UP((name_size), 4) + \
55 DIV_ROUND_UP((desc_size), 4)) * 4)
56
Janosch Frank05bbaa502022-03-30 12:36:00 +000057static inline bool dump_is_64bit(DumpState *s)
58{
59 return s->dump_info.d_class == ELFCLASS64;
60}
61
Bharata B Raoacb0ef52014-05-19 19:57:44 +020062uint16_t cpu_to_dump16(DumpState *s, uint16_t val)
Wen Congyang783e9b42012-05-07 12:10:47 +080063{
Bharata B Raoacb0ef52014-05-19 19:57:44 +020064 if (s->dump_info.d_endian == ELFDATA2LSB) {
Wen Congyang783e9b42012-05-07 12:10:47 +080065 val = cpu_to_le16(val);
66 } else {
67 val = cpu_to_be16(val);
68 }
69
70 return val;
71}
72
Bharata B Raoacb0ef52014-05-19 19:57:44 +020073uint32_t cpu_to_dump32(DumpState *s, uint32_t val)
Wen Congyang783e9b42012-05-07 12:10:47 +080074{
Bharata B Raoacb0ef52014-05-19 19:57:44 +020075 if (s->dump_info.d_endian == ELFDATA2LSB) {
Wen Congyang783e9b42012-05-07 12:10:47 +080076 val = cpu_to_le32(val);
77 } else {
78 val = cpu_to_be32(val);
79 }
80
81 return val;
82}
83
Bharata B Raoacb0ef52014-05-19 19:57:44 +020084uint64_t cpu_to_dump64(DumpState *s, uint64_t val)
Wen Congyang783e9b42012-05-07 12:10:47 +080085{
Bharata B Raoacb0ef52014-05-19 19:57:44 +020086 if (s->dump_info.d_endian == ELFDATA2LSB) {
Wen Congyang783e9b42012-05-07 12:10:47 +080087 val = cpu_to_le64(val);
88 } else {
89 val = cpu_to_be64(val);
90 }
91
92 return val;
93}
94
Wen Congyang783e9b42012-05-07 12:10:47 +080095static int dump_cleanup(DumpState *s)
96{
Laszlo Ersek5ee163e2013-08-06 12:37:09 +020097 guest_phys_blocks_free(&s->guest_phys_blocks);
Wen Congyang783e9b42012-05-07 12:10:47 +080098 memory_mapping_list_free(&s->list);
Chen Gang29282072014-08-03 23:28:56 +080099 close(s->fd);
Marc-André Lureau903ef732017-09-11 18:59:25 +0200100 g_free(s->guest_note);
101 s->guest_note = NULL;
Wen Congyang783e9b42012-05-07 12:10:47 +0800102 if (s->resume) {
Fam Zheng6796b402017-05-03 15:28:19 +0800103 if (s->detached) {
104 qemu_mutex_lock_iothread();
105 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800106 vm_start();
Fam Zheng6796b402017-05-03 15:28:19 +0800107 if (s->detached) {
108 qemu_mutex_unlock_iothread();
109 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800110 }
Peter Xub7bc6b12021-09-22 12:20:09 -0400111 migrate_del_blocker(dump_migration_blocker);
Wen Congyang783e9b42012-05-07 12:10:47 +0800112
Chen Gang29282072014-08-03 23:28:56 +0800113 return 0;
Wen Congyang783e9b42012-05-07 12:10:47 +0800114}
115
qiaonuohanb5ba1cc2014-02-18 14:11:25 +0800116static int fd_write_vmcore(const void *buf, size_t size, void *opaque)
Wen Congyang783e9b42012-05-07 12:10:47 +0800117{
118 DumpState *s = opaque;
Luiz Capitulino2f616522012-09-21 13:17:55 -0300119 size_t written_size;
Wen Congyang783e9b42012-05-07 12:10:47 +0800120
Luiz Capitulino2f616522012-09-21 13:17:55 -0300121 written_size = qemu_write_full(s->fd, buf, size);
122 if (written_size != size) {
Yasmin Beatriz0c336592018-02-12 12:25:06 -0200123 return -errno;
Wen Congyang783e9b42012-05-07 12:10:47 +0800124 }
125
126 return 0;
127}
128
zhanghailiang4c7e2512014-10-09 14:13:11 +0800129static void write_elf64_header(DumpState *s, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800130{
Janosch Frank046bc412022-04-07 09:48:24 +0000131 /*
132 * phnum in the elf header is 16 bit, if we have more segments we
133 * set phnum to PN_XNUM and write the real number of segments to a
134 * special section.
135 */
136 uint16_t phnum = MIN(s->phdr_num, PN_XNUM);
Wen Congyang783e9b42012-05-07 12:10:47 +0800137 Elf64_Ehdr elf_header;
138 int ret;
Wen Congyang783e9b42012-05-07 12:10:47 +0800139
140 memset(&elf_header, 0, sizeof(Elf64_Ehdr));
141 memcpy(&elf_header, ELFMAG, SELFMAG);
142 elf_header.e_ident[EI_CLASS] = ELFCLASS64;
143 elf_header.e_ident[EI_DATA] = s->dump_info.d_endian;
144 elf_header.e_ident[EI_VERSION] = EV_CURRENT;
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200145 elf_header.e_type = cpu_to_dump16(s, ET_CORE);
146 elf_header.e_machine = cpu_to_dump16(s, s->dump_info.d_machine);
147 elf_header.e_version = cpu_to_dump32(s, EV_CURRENT);
148 elf_header.e_ehsize = cpu_to_dump16(s, sizeof(elf_header));
Janosch Franke71d3532022-03-30 12:35:59 +0000149 elf_header.e_phoff = cpu_to_dump64(s, s->phdr_offset);
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200150 elf_header.e_phentsize = cpu_to_dump16(s, sizeof(Elf64_Phdr));
Janosch Frank046bc412022-04-07 09:48:24 +0000151 elf_header.e_phnum = cpu_to_dump16(s, phnum);
Janosch Frank862a3952022-03-30 12:35:57 +0000152 if (s->shdr_num) {
Janosch Franke71d3532022-03-30 12:35:59 +0000153 elf_header.e_shoff = cpu_to_dump64(s, s->shdr_offset);
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200154 elf_header.e_shentsize = cpu_to_dump16(s, sizeof(Elf64_Shdr));
Janosch Frank862a3952022-03-30 12:35:57 +0000155 elf_header.e_shnum = cpu_to_dump16(s, s->shdr_num);
Wen Congyang783e9b42012-05-07 12:10:47 +0800156 }
157
158 ret = fd_write_vmcore(&elf_header, sizeof(elf_header), s);
159 if (ret < 0) {
Yasmin Beatriz0c336592018-02-12 12:25:06 -0200160 error_setg_errno(errp, -ret, "dump: failed to write elf header");
Wen Congyang783e9b42012-05-07 12:10:47 +0800161 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800162}
163
zhanghailiang4c7e2512014-10-09 14:13:11 +0800164static void write_elf32_header(DumpState *s, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800165{
Janosch Frank046bc412022-04-07 09:48:24 +0000166 /*
167 * phnum in the elf header is 16 bit, if we have more segments we
168 * set phnum to PN_XNUM and write the real number of segments to a
169 * special section.
170 */
171 uint16_t phnum = MIN(s->phdr_num, PN_XNUM);
Wen Congyang783e9b42012-05-07 12:10:47 +0800172 Elf32_Ehdr elf_header;
173 int ret;
Wen Congyang783e9b42012-05-07 12:10:47 +0800174
175 memset(&elf_header, 0, sizeof(Elf32_Ehdr));
176 memcpy(&elf_header, ELFMAG, SELFMAG);
177 elf_header.e_ident[EI_CLASS] = ELFCLASS32;
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200178 elf_header.e_ident[EI_DATA] = s->dump_info.d_endian;
Wen Congyang783e9b42012-05-07 12:10:47 +0800179 elf_header.e_ident[EI_VERSION] = EV_CURRENT;
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200180 elf_header.e_type = cpu_to_dump16(s, ET_CORE);
181 elf_header.e_machine = cpu_to_dump16(s, s->dump_info.d_machine);
182 elf_header.e_version = cpu_to_dump32(s, EV_CURRENT);
183 elf_header.e_ehsize = cpu_to_dump16(s, sizeof(elf_header));
Janosch Franke71d3532022-03-30 12:35:59 +0000184 elf_header.e_phoff = cpu_to_dump32(s, s->phdr_offset);
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200185 elf_header.e_phentsize = cpu_to_dump16(s, sizeof(Elf32_Phdr));
Janosch Frank046bc412022-04-07 09:48:24 +0000186 elf_header.e_phnum = cpu_to_dump16(s, phnum);
Janosch Frank862a3952022-03-30 12:35:57 +0000187 if (s->shdr_num) {
Janosch Franke71d3532022-03-30 12:35:59 +0000188 elf_header.e_shoff = cpu_to_dump32(s, s->shdr_offset);
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200189 elf_header.e_shentsize = cpu_to_dump16(s, sizeof(Elf32_Shdr));
Janosch Frank862a3952022-03-30 12:35:57 +0000190 elf_header.e_shnum = cpu_to_dump16(s, s->shdr_num);
Wen Congyang783e9b42012-05-07 12:10:47 +0800191 }
192
193 ret = fd_write_vmcore(&elf_header, sizeof(elf_header), s);
194 if (ret < 0) {
Yasmin Beatriz0c336592018-02-12 12:25:06 -0200195 error_setg_errno(errp, -ret, "dump: failed to write elf header");
Wen Congyang783e9b42012-05-07 12:10:47 +0800196 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800197}
198
zhanghailiang4c7e2512014-10-09 14:13:11 +0800199static void write_elf64_load(DumpState *s, MemoryMapping *memory_mapping,
200 int phdr_index, hwaddr offset,
201 hwaddr filesz, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800202{
203 Elf64_Phdr phdr;
204 int ret;
Wen Congyang783e9b42012-05-07 12:10:47 +0800205
206 memset(&phdr, 0, sizeof(Elf64_Phdr));
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200207 phdr.p_type = cpu_to_dump32(s, PT_LOAD);
208 phdr.p_offset = cpu_to_dump64(s, offset);
209 phdr.p_paddr = cpu_to_dump64(s, memory_mapping->phys_addr);
210 phdr.p_filesz = cpu_to_dump64(s, filesz);
211 phdr.p_memsz = cpu_to_dump64(s, memory_mapping->length);
Jon Dorone17bebd2019-01-09 10:22:03 +0200212 phdr.p_vaddr = cpu_to_dump64(s, memory_mapping->virt_addr) ?: phdr.p_paddr;
Wen Congyang783e9b42012-05-07 12:10:47 +0800213
Laszlo Ersek2cac2602013-08-06 12:37:08 +0200214 assert(memory_mapping->length >= filesz);
215
Wen Congyang783e9b42012-05-07 12:10:47 +0800216 ret = fd_write_vmcore(&phdr, sizeof(Elf64_Phdr), s);
217 if (ret < 0) {
Yasmin Beatriz0c336592018-02-12 12:25:06 -0200218 error_setg_errno(errp, -ret,
219 "dump: failed to write program header table");
Wen Congyang783e9b42012-05-07 12:10:47 +0800220 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800221}
222
zhanghailiang4c7e2512014-10-09 14:13:11 +0800223static void write_elf32_load(DumpState *s, MemoryMapping *memory_mapping,
224 int phdr_index, hwaddr offset,
225 hwaddr filesz, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800226{
227 Elf32_Phdr phdr;
228 int ret;
Wen Congyang783e9b42012-05-07 12:10:47 +0800229
230 memset(&phdr, 0, sizeof(Elf32_Phdr));
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200231 phdr.p_type = cpu_to_dump32(s, PT_LOAD);
232 phdr.p_offset = cpu_to_dump32(s, offset);
233 phdr.p_paddr = cpu_to_dump32(s, memory_mapping->phys_addr);
234 phdr.p_filesz = cpu_to_dump32(s, filesz);
235 phdr.p_memsz = cpu_to_dump32(s, memory_mapping->length);
Jon Dorone17bebd2019-01-09 10:22:03 +0200236 phdr.p_vaddr =
237 cpu_to_dump32(s, memory_mapping->virt_addr) ?: phdr.p_paddr;
Wen Congyang783e9b42012-05-07 12:10:47 +0800238
Laszlo Ersek2cac2602013-08-06 12:37:08 +0200239 assert(memory_mapping->length >= filesz);
240
Wen Congyang783e9b42012-05-07 12:10:47 +0800241 ret = fd_write_vmcore(&phdr, sizeof(Elf32_Phdr), s);
242 if (ret < 0) {
Yasmin Beatriz0c336592018-02-12 12:25:06 -0200243 error_setg_errno(errp, -ret,
244 "dump: failed to write program header table");
Wen Congyang783e9b42012-05-07 12:10:47 +0800245 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800246}
247
Janosch Frankbc7d5582022-03-30 12:36:01 +0000248static void write_elf64_phdr_note(DumpState *s, Elf64_Phdr *phdr)
Wen Congyang783e9b42012-05-07 12:10:47 +0800249{
Janosch Frankbc7d5582022-03-30 12:36:01 +0000250 memset(phdr, 0, sizeof(*phdr));
251 phdr->p_type = cpu_to_dump32(s, PT_NOTE);
252 phdr->p_offset = cpu_to_dump64(s, s->note_offset);
253 phdr->p_paddr = 0;
254 phdr->p_filesz = cpu_to_dump64(s, s->note_size);
255 phdr->p_memsz = cpu_to_dump64(s, s->note_size);
256 phdr->p_vaddr = 0;
Wen Congyang783e9b42012-05-07 12:10:47 +0800257}
258
Paolo Bonzini0bc3cd62013-04-08 17:29:59 +0200259static inline int cpu_index(CPUState *cpu)
260{
261 return cpu->cpu_index + 1;
262}
263
Marc-André Lureau903ef732017-09-11 18:59:25 +0200264static void write_guest_note(WriteCoreDumpFunction f, DumpState *s,
265 Error **errp)
266{
267 int ret;
268
269 if (s->guest_note) {
270 ret = f(s->guest_note, s->guest_note_size, s);
271 if (ret < 0) {
272 error_setg(errp, "dump: failed to write guest note");
273 }
274 }
275}
276
zhanghailiang4c7e2512014-10-09 14:13:11 +0800277static void write_elf64_notes(WriteCoreDumpFunction f, DumpState *s,
278 Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800279{
Andreas Färber0d342822012-12-17 07:12:13 +0100280 CPUState *cpu;
Wen Congyang783e9b42012-05-07 12:10:47 +0800281 int ret;
282 int id;
283
Andreas Färberbdc44642013-06-24 23:50:24 +0200284 CPU_FOREACH(cpu) {
Andreas Färber0d342822012-12-17 07:12:13 +0100285 id = cpu_index(cpu);
qiaonuohan6a519912014-02-18 14:11:26 +0800286 ret = cpu_write_elf64_note(f, cpu, id, s);
Wen Congyang783e9b42012-05-07 12:10:47 +0800287 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +0800288 error_setg(errp, "dump: failed to write elf notes");
zhanghailiang4c7e2512014-10-09 14:13:11 +0800289 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800290 }
291 }
292
Andreas Färberbdc44642013-06-24 23:50:24 +0200293 CPU_FOREACH(cpu) {
qiaonuohan6a519912014-02-18 14:11:26 +0800294 ret = cpu_write_elf64_qemunote(f, cpu, s);
Wen Congyang783e9b42012-05-07 12:10:47 +0800295 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +0800296 error_setg(errp, "dump: failed to write CPU status");
zhanghailiang4c7e2512014-10-09 14:13:11 +0800297 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800298 }
299 }
Marc-André Lureau903ef732017-09-11 18:59:25 +0200300
301 write_guest_note(f, s, errp);
Wen Congyang783e9b42012-05-07 12:10:47 +0800302}
303
Janosch Frankbc7d5582022-03-30 12:36:01 +0000304static void write_elf32_phdr_note(DumpState *s, Elf32_Phdr *phdr)
Wen Congyang783e9b42012-05-07 12:10:47 +0800305{
Janosch Frankbc7d5582022-03-30 12:36:01 +0000306 memset(phdr, 0, sizeof(*phdr));
307 phdr->p_type = cpu_to_dump32(s, PT_NOTE);
308 phdr->p_offset = cpu_to_dump32(s, s->note_offset);
309 phdr->p_paddr = 0;
310 phdr->p_filesz = cpu_to_dump32(s, s->note_size);
311 phdr->p_memsz = cpu_to_dump32(s, s->note_size);
312 phdr->p_vaddr = 0;
Wen Congyang783e9b42012-05-07 12:10:47 +0800313}
314
zhanghailiang4c7e2512014-10-09 14:13:11 +0800315static void write_elf32_notes(WriteCoreDumpFunction f, DumpState *s,
316 Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800317{
Andreas Färber0d342822012-12-17 07:12:13 +0100318 CPUState *cpu;
Wen Congyang783e9b42012-05-07 12:10:47 +0800319 int ret;
320 int id;
321
Andreas Färberbdc44642013-06-24 23:50:24 +0200322 CPU_FOREACH(cpu) {
Andreas Färber0d342822012-12-17 07:12:13 +0100323 id = cpu_index(cpu);
qiaonuohan6a519912014-02-18 14:11:26 +0800324 ret = cpu_write_elf32_note(f, cpu, id, s);
Wen Congyang783e9b42012-05-07 12:10:47 +0800325 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +0800326 error_setg(errp, "dump: failed to write elf notes");
zhanghailiang4c7e2512014-10-09 14:13:11 +0800327 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800328 }
329 }
330
Andreas Färberbdc44642013-06-24 23:50:24 +0200331 CPU_FOREACH(cpu) {
qiaonuohan6a519912014-02-18 14:11:26 +0800332 ret = cpu_write_elf32_qemunote(f, cpu, s);
Wen Congyang783e9b42012-05-07 12:10:47 +0800333 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +0800334 error_setg(errp, "dump: failed to write CPU status");
zhanghailiang4c7e2512014-10-09 14:13:11 +0800335 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800336 }
337 }
Marc-André Lureau903ef732017-09-11 18:59:25 +0200338
339 write_guest_note(f, s, errp);
Wen Congyang783e9b42012-05-07 12:10:47 +0800340}
341
Janosch Frankbc7d5582022-03-30 12:36:01 +0000342static void write_elf_phdr_note(DumpState *s, Error **errp)
343{
344 ERRP_GUARD();
345 Elf32_Phdr phdr32;
346 Elf64_Phdr phdr64;
347 void *phdr;
348 size_t size;
349 int ret;
350
351 if (dump_is_64bit(s)) {
352 write_elf64_phdr_note(s, &phdr64);
353 size = sizeof(phdr64);
354 phdr = &phdr64;
355 } else {
356 write_elf32_phdr_note(s, &phdr32);
357 size = sizeof(phdr32);
358 phdr = &phdr32;
359 }
360
361 ret = fd_write_vmcore(phdr, size, s);
362 if (ret < 0) {
363 error_setg_errno(errp, -ret,
364 "dump: failed to write program header table");
365 }
366}
367
zhanghailiang4c7e2512014-10-09 14:13:11 +0800368static void write_elf_section(DumpState *s, int type, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800369{
370 Elf32_Shdr shdr32;
371 Elf64_Shdr shdr64;
Wen Congyang783e9b42012-05-07 12:10:47 +0800372 int shdr_size;
373 void *shdr;
374 int ret;
375
376 if (type == 0) {
377 shdr_size = sizeof(Elf32_Shdr);
378 memset(&shdr32, 0, shdr_size);
Janosch Frank046bc412022-04-07 09:48:24 +0000379 shdr32.sh_info = cpu_to_dump32(s, s->phdr_num);
Wen Congyang783e9b42012-05-07 12:10:47 +0800380 shdr = &shdr32;
381 } else {
382 shdr_size = sizeof(Elf64_Shdr);
383 memset(&shdr64, 0, shdr_size);
Janosch Frank046bc412022-04-07 09:48:24 +0000384 shdr64.sh_info = cpu_to_dump32(s, s->phdr_num);
Wen Congyang783e9b42012-05-07 12:10:47 +0800385 shdr = &shdr64;
386 }
387
Peter Maydell174d2d62020-03-24 17:36:30 +0000388 ret = fd_write_vmcore(shdr, shdr_size, s);
Wen Congyang783e9b42012-05-07 12:10:47 +0800389 if (ret < 0) {
Yasmin Beatriz0c336592018-02-12 12:25:06 -0200390 error_setg_errno(errp, -ret,
391 "dump: failed to write section header table");
Wen Congyang783e9b42012-05-07 12:10:47 +0800392 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800393}
394
zhanghailiang4c7e2512014-10-09 14:13:11 +0800395static void write_data(DumpState *s, void *buf, int length, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800396{
397 int ret;
398
399 ret = fd_write_vmcore(buf, length, s);
400 if (ret < 0) {
Yasmin Beatriz0c336592018-02-12 12:25:06 -0200401 error_setg_errno(errp, -ret, "dump: failed to save memory");
Peter Xu2264c2c2016-02-18 13:16:53 +0800402 } else {
403 s->written_size += length;
Wen Congyang783e9b42012-05-07 12:10:47 +0800404 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800405}
406
zhanghailiang4c7e2512014-10-09 14:13:11 +0800407/* write the memory to vmcore. 1 page per I/O. */
408static void write_memory(DumpState *s, GuestPhysBlock *block, ram_addr_t start,
409 int64_t size, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800410{
Janosch Frank86a518b2022-03-30 12:35:55 +0000411 ERRP_GUARD();
Wen Congyang783e9b42012-05-07 12:10:47 +0800412 int64_t i;
Wen Congyang783e9b42012-05-07 12:10:47 +0800413
Andrew Jones8161bef2016-01-11 20:56:20 +0100414 for (i = 0; i < size / s->dump_info.page_size; i++) {
415 write_data(s, block->host_addr + start + i * s->dump_info.page_size,
Janosch Frank86a518b2022-03-30 12:35:55 +0000416 s->dump_info.page_size, errp);
417 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800418 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800419 }
420 }
421
Andrew Jones8161bef2016-01-11 20:56:20 +0100422 if ((size % s->dump_info.page_size) != 0) {
423 write_data(s, block->host_addr + start + i * s->dump_info.page_size,
Janosch Frank86a518b2022-03-30 12:35:55 +0000424 size % s->dump_info.page_size, errp);
425 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800426 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800427 }
428 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800429}
430
Laszlo Ersek2cac2602013-08-06 12:37:08 +0200431/* get the memory's offset and size in the vmcore */
432static void get_offset_range(hwaddr phys_addr,
433 ram_addr_t mapping_length,
434 DumpState *s,
435 hwaddr *p_offset,
436 hwaddr *p_filesz)
Wen Congyang783e9b42012-05-07 12:10:47 +0800437{
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200438 GuestPhysBlock *block;
Avi Kivitya8170e52012-10-23 12:30:10 +0200439 hwaddr offset = s->memory_offset;
Wen Congyang783e9b42012-05-07 12:10:47 +0800440 int64_t size_in_block, start;
441
Laszlo Ersek2cac2602013-08-06 12:37:08 +0200442 /* When the memory is not stored into vmcore, offset will be -1 */
443 *p_offset = -1;
444 *p_filesz = 0;
445
Wen Congyang783e9b42012-05-07 12:10:47 +0800446 if (s->has_filter) {
447 if (phys_addr < s->begin || phys_addr >= s->begin + s->length) {
Laszlo Ersek2cac2602013-08-06 12:37:08 +0200448 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800449 }
450 }
451
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200452 QTAILQ_FOREACH(block, &s->guest_phys_blocks.head, next) {
Wen Congyang783e9b42012-05-07 12:10:47 +0800453 if (s->has_filter) {
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200454 if (block->target_start >= s->begin + s->length ||
455 block->target_end <= s->begin) {
Wen Congyang783e9b42012-05-07 12:10:47 +0800456 /* This block is out of the range */
457 continue;
458 }
459
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200460 if (s->begin <= block->target_start) {
461 start = block->target_start;
Wen Congyang783e9b42012-05-07 12:10:47 +0800462 } else {
463 start = s->begin;
464 }
465
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200466 size_in_block = block->target_end - start;
467 if (s->begin + s->length < block->target_end) {
468 size_in_block -= block->target_end - (s->begin + s->length);
Wen Congyang783e9b42012-05-07 12:10:47 +0800469 }
470 } else {
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200471 start = block->target_start;
472 size_in_block = block->target_end - block->target_start;
Wen Congyang783e9b42012-05-07 12:10:47 +0800473 }
474
475 if (phys_addr >= start && phys_addr < start + size_in_block) {
Laszlo Ersek2cac2602013-08-06 12:37:08 +0200476 *p_offset = phys_addr - start + offset;
477
478 /* The offset range mapped from the vmcore file must not spill over
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200479 * the GuestPhysBlock, clamp it. The rest of the mapping will be
Laszlo Ersek2cac2602013-08-06 12:37:08 +0200480 * zero-filled in memory at load time; see
481 * <http://refspecs.linuxbase.org/elf/gabi4+/ch5.pheader.html>.
482 */
483 *p_filesz = phys_addr + mapping_length <= start + size_in_block ?
484 mapping_length :
485 size_in_block - (phys_addr - start);
486 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800487 }
488
489 offset += size_in_block;
490 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800491}
492
zhanghailiang4c7e2512014-10-09 14:13:11 +0800493static void write_elf_loads(DumpState *s, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800494{
Janosch Frank86a518b2022-03-30 12:35:55 +0000495 ERRP_GUARD();
Laszlo Ersek2cac2602013-08-06 12:37:08 +0200496 hwaddr offset, filesz;
Wen Congyang783e9b42012-05-07 12:10:47 +0800497 MemoryMapping *memory_mapping;
498 uint32_t phdr_index = 1;
Wen Congyang783e9b42012-05-07 12:10:47 +0800499
500 QTAILQ_FOREACH(memory_mapping, &s->list.head, next) {
Laszlo Ersek2cac2602013-08-06 12:37:08 +0200501 get_offset_range(memory_mapping->phys_addr,
502 memory_mapping->length,
503 s, &offset, &filesz);
Janosch Frank05bbaa502022-03-30 12:36:00 +0000504 if (dump_is_64bit(s)) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800505 write_elf64_load(s, memory_mapping, phdr_index++, offset,
Janosch Frank86a518b2022-03-30 12:35:55 +0000506 filesz, errp);
Wen Congyang783e9b42012-05-07 12:10:47 +0800507 } else {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800508 write_elf32_load(s, memory_mapping, phdr_index++, offset,
Janosch Frank86a518b2022-03-30 12:35:55 +0000509 filesz, errp);
Wen Congyang783e9b42012-05-07 12:10:47 +0800510 }
511
Janosch Frank86a518b2022-03-30 12:35:55 +0000512 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800513 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800514 }
515
Janosch Frank046bc412022-04-07 09:48:24 +0000516 if (phdr_index >= s->phdr_num) {
Wen Congyang783e9b42012-05-07 12:10:47 +0800517 break;
518 }
519 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800520}
521
522/* write elf header, PT_NOTE and elf note to vmcore. */
zhanghailiang4c7e2512014-10-09 14:13:11 +0800523static void dump_begin(DumpState *s, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800524{
Janosch Frank86a518b2022-03-30 12:35:55 +0000525 ERRP_GUARD();
Wen Congyang783e9b42012-05-07 12:10:47 +0800526
527 /*
528 * the vmcore's format is:
529 * --------------
530 * | elf header |
531 * --------------
532 * | PT_NOTE |
533 * --------------
534 * | PT_LOAD |
535 * --------------
536 * | ...... |
537 * --------------
538 * | PT_LOAD |
539 * --------------
540 * | sec_hdr |
541 * --------------
542 * | elf note |
543 * --------------
544 * | memory |
545 * --------------
546 *
547 * we only know where the memory is saved after we write elf note into
548 * vmcore.
549 */
550
551 /* write elf header to vmcore */
Janosch Frank05bbaa502022-03-30 12:36:00 +0000552 if (dump_is_64bit(s)) {
Janosch Frank86a518b2022-03-30 12:35:55 +0000553 write_elf64_header(s, errp);
Wen Congyang783e9b42012-05-07 12:10:47 +0800554 } else {
Janosch Frank86a518b2022-03-30 12:35:55 +0000555 write_elf32_header(s, errp);
Wen Congyang783e9b42012-05-07 12:10:47 +0800556 }
Janosch Frank86a518b2022-03-30 12:35:55 +0000557 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800558 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800559 }
560
Janosch Frankbc7d5582022-03-30 12:36:01 +0000561 /* write PT_NOTE to vmcore */
562 write_elf_phdr_note(s, errp);
563 if (*errp) {
564 return;
565 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800566
Janosch Frankbc7d5582022-03-30 12:36:01 +0000567 if (dump_is_64bit(s)) {
Wen Congyang783e9b42012-05-07 12:10:47 +0800568 /* write all PT_LOAD to vmcore */
Janosch Frank86a518b2022-03-30 12:35:55 +0000569 write_elf_loads(s, errp);
570 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800571 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800572 }
573
574 /* write section to vmcore */
Janosch Frank862a3952022-03-30 12:35:57 +0000575 if (s->shdr_num) {
Janosch Frank86a518b2022-03-30 12:35:55 +0000576 write_elf_section(s, 1, errp);
577 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800578 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800579 }
580 }
581
582 /* write notes to vmcore */
Janosch Frank86a518b2022-03-30 12:35:55 +0000583 write_elf64_notes(fd_write_vmcore, s, errp);
584 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800585 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800586 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800587 } else {
Wen Congyang783e9b42012-05-07 12:10:47 +0800588 /* write all PT_LOAD to vmcore */
Janosch Frank86a518b2022-03-30 12:35:55 +0000589 write_elf_loads(s, errp);
590 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800591 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800592 }
593
594 /* write section to vmcore */
Janosch Frank862a3952022-03-30 12:35:57 +0000595 if (s->shdr_num) {
Janosch Frank86a518b2022-03-30 12:35:55 +0000596 write_elf_section(s, 0, errp);
597 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800598 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800599 }
600 }
601
602 /* write notes to vmcore */
Janosch Frank86a518b2022-03-30 12:35:55 +0000603 write_elf32_notes(fd_write_vmcore, s, errp);
604 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800605 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800606 }
607 }
Wen Congyang783e9b42012-05-07 12:10:47 +0800608}
609
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200610static int get_next_block(DumpState *s, GuestPhysBlock *block)
Wen Congyang783e9b42012-05-07 12:10:47 +0800611{
612 while (1) {
Paolo Bonzinia3161032012-11-14 15:54:48 +0100613 block = QTAILQ_NEXT(block, next);
Wen Congyang783e9b42012-05-07 12:10:47 +0800614 if (!block) {
615 /* no more block */
616 return 1;
617 }
618
619 s->start = 0;
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200620 s->next_block = block;
Wen Congyang783e9b42012-05-07 12:10:47 +0800621 if (s->has_filter) {
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200622 if (block->target_start >= s->begin + s->length ||
623 block->target_end <= s->begin) {
Wen Congyang783e9b42012-05-07 12:10:47 +0800624 /* This block is out of the range */
625 continue;
626 }
627
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200628 if (s->begin > block->target_start) {
629 s->start = s->begin - block->target_start;
Wen Congyang783e9b42012-05-07 12:10:47 +0800630 }
631 }
632
633 return 0;
634 }
635}
636
637/* write all memory to vmcore */
zhanghailiang4c7e2512014-10-09 14:13:11 +0800638static void dump_iterate(DumpState *s, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800639{
Janosch Frank86a518b2022-03-30 12:35:55 +0000640 ERRP_GUARD();
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200641 GuestPhysBlock *block;
Wen Congyang783e9b42012-05-07 12:10:47 +0800642 int64_t size;
Wen Congyang783e9b42012-05-07 12:10:47 +0800643
Gonglei08a655b2014-10-30 14:01:17 +0800644 do {
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200645 block = s->next_block;
Wen Congyang783e9b42012-05-07 12:10:47 +0800646
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200647 size = block->target_end - block->target_start;
Wen Congyang783e9b42012-05-07 12:10:47 +0800648 if (s->has_filter) {
649 size -= s->start;
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +0200650 if (s->begin + s->length < block->target_end) {
651 size -= block->target_end - (s->begin + s->length);
Wen Congyang783e9b42012-05-07 12:10:47 +0800652 }
653 }
Janosch Frank86a518b2022-03-30 12:35:55 +0000654 write_memory(s, block, s->start, size, errp);
655 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800656 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800657 }
658
Gonglei08a655b2014-10-30 14:01:17 +0800659 } while (!get_next_block(s, block));
Wen Congyang783e9b42012-05-07 12:10:47 +0800660}
661
zhanghailiang4c7e2512014-10-09 14:13:11 +0800662static void create_vmcore(DumpState *s, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +0800663{
Janosch Frank86a518b2022-03-30 12:35:55 +0000664 ERRP_GUARD();
Wen Congyang783e9b42012-05-07 12:10:47 +0800665
Janosch Frank86a518b2022-03-30 12:35:55 +0000666 dump_begin(s, errp);
667 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +0800668 return;
Wen Congyang783e9b42012-05-07 12:10:47 +0800669 }
670
zhanghailiang4c7e2512014-10-09 14:13:11 +0800671 dump_iterate(s, errp);
Wen Congyang783e9b42012-05-07 12:10:47 +0800672}
673
qiaonuohanfda05382014-02-18 14:11:27 +0800674static int write_start_flat_header(int fd)
675{
Laszlo Ersek92ba1402014-05-20 13:39:42 +0200676 MakedumpfileHeader *mh;
qiaonuohanfda05382014-02-18 14:11:27 +0800677 int ret = 0;
678
Laszlo Ersek92ba1402014-05-20 13:39:42 +0200679 QEMU_BUILD_BUG_ON(sizeof *mh > MAX_SIZE_MDF_HEADER);
680 mh = g_malloc0(MAX_SIZE_MDF_HEADER);
qiaonuohanfda05382014-02-18 14:11:27 +0800681
Laszlo Ersek92ba1402014-05-20 13:39:42 +0200682 memcpy(mh->signature, MAKEDUMPFILE_SIGNATURE,
683 MIN(sizeof mh->signature, sizeof MAKEDUMPFILE_SIGNATURE));
qiaonuohanfda05382014-02-18 14:11:27 +0800684
Laszlo Ersek92ba1402014-05-20 13:39:42 +0200685 mh->type = cpu_to_be64(TYPE_FLAT_HEADER);
686 mh->version = cpu_to_be64(VERSION_FLAT_HEADER);
qiaonuohanfda05382014-02-18 14:11:27 +0800687
688 size_t written_size;
Laszlo Ersek92ba1402014-05-20 13:39:42 +0200689 written_size = qemu_write_full(fd, mh, MAX_SIZE_MDF_HEADER);
qiaonuohanfda05382014-02-18 14:11:27 +0800690 if (written_size != MAX_SIZE_MDF_HEADER) {
691 ret = -1;
692 }
693
Laszlo Ersek92ba1402014-05-20 13:39:42 +0200694 g_free(mh);
qiaonuohanfda05382014-02-18 14:11:27 +0800695 return ret;
696}
697
698static int write_end_flat_header(int fd)
699{
700 MakedumpfileDataHeader mdh;
701
702 mdh.offset = END_FLAG_FLAT_HEADER;
703 mdh.buf_size = END_FLAG_FLAT_HEADER;
704
705 size_t written_size;
706 written_size = qemu_write_full(fd, &mdh, sizeof(mdh));
707 if (written_size != sizeof(mdh)) {
708 return -1;
709 }
710
711 return 0;
712}
713
qiaonuohan5d31bab2014-02-18 14:11:28 +0800714static int write_buffer(int fd, off_t offset, const void *buf, size_t size)
715{
716 size_t written_size;
717 MakedumpfileDataHeader mdh;
718
719 mdh.offset = cpu_to_be64(offset);
720 mdh.buf_size = cpu_to_be64(size);
721
722 written_size = qemu_write_full(fd, &mdh, sizeof(mdh));
723 if (written_size != sizeof(mdh)) {
724 return -1;
725 }
726
727 written_size = qemu_write_full(fd, buf, size);
728 if (written_size != size) {
729 return -1;
730 }
731
732 return 0;
733}
734
qiaonuohan4835ef72014-02-18 14:11:29 +0800735static int buf_write_note(const void *buf, size_t size, void *opaque)
736{
737 DumpState *s = opaque;
738
739 /* note_buf is not enough */
740 if (s->note_buf_offset + size > s->note_size) {
741 return -1;
742 }
743
744 memcpy(s->note_buf + s->note_buf_offset, buf, size);
745
746 s->note_buf_offset += size;
747
748 return 0;
749}
750
Marc-André Lureau903ef732017-09-11 18:59:25 +0200751/*
752 * This function retrieves various sizes from an elf header.
753 *
754 * @note has to be a valid ELF note. The return sizes are unmodified
755 * (not padded or rounded up to be multiple of 4).
756 */
757static void get_note_sizes(DumpState *s, const void *note,
758 uint64_t *note_head_size,
759 uint64_t *name_size,
760 uint64_t *desc_size)
761{
762 uint64_t note_head_sz;
763 uint64_t name_sz;
764 uint64_t desc_sz;
765
Janosch Frank05bbaa502022-03-30 12:36:00 +0000766 if (dump_is_64bit(s)) {
Marc-André Lureau903ef732017-09-11 18:59:25 +0200767 const Elf64_Nhdr *hdr = note;
768 note_head_sz = sizeof(Elf64_Nhdr);
769 name_sz = tswap64(hdr->n_namesz);
770 desc_sz = tswap64(hdr->n_descsz);
771 } else {
772 const Elf32_Nhdr *hdr = note;
773 note_head_sz = sizeof(Elf32_Nhdr);
774 name_sz = tswap32(hdr->n_namesz);
775 desc_sz = tswap32(hdr->n_descsz);
776 }
777
778 if (note_head_size) {
779 *note_head_size = note_head_sz;
780 }
781 if (name_size) {
782 *name_size = name_sz;
783 }
784 if (desc_size) {
785 *desc_size = desc_sz;
786 }
787}
788
Marc-André Lureaud9feb512017-09-11 18:59:26 +0200789static bool note_name_equal(DumpState *s,
790 const uint8_t *note, const char *name)
791{
792 int len = strlen(name) + 1;
793 uint64_t head_size, name_size;
794
795 get_note_sizes(s, note, &head_size, &name_size, NULL);
796 head_size = ROUND_UP(head_size, 4);
797
Marc-André Lureauc983ca82017-12-12 15:53:59 +0100798 return name_size == len && memcmp(note + head_size, name, len) == 0;
Marc-André Lureaud9feb512017-09-11 18:59:26 +0200799}
800
qiaonuohan298f1162014-02-18 14:11:32 +0800801/* write common header, sub header and elf note to vmcore */
zhanghailiang4c7e2512014-10-09 14:13:11 +0800802static void create_header32(DumpState *s, Error **errp)
qiaonuohan298f1162014-02-18 14:11:32 +0800803{
Janosch Frank86a518b2022-03-30 12:35:55 +0000804 ERRP_GUARD();
qiaonuohan298f1162014-02-18 14:11:32 +0800805 DiskDumpHeader32 *dh = NULL;
806 KdumpSubHeader32 *kh = NULL;
807 size_t size;
qiaonuohan298f1162014-02-18 14:11:32 +0800808 uint32_t block_size;
809 uint32_t sub_hdr_size;
810 uint32_t bitmap_blocks;
811 uint32_t status = 0;
812 uint64_t offset_note;
813
814 /* write common header, the version of kdump-compressed format is 6th */
815 size = sizeof(DiskDumpHeader32);
816 dh = g_malloc0(size);
817
Eric Blake84c868f2018-03-27 15:21:51 -0500818 memcpy(dh->signature, KDUMP_SIGNATURE, SIG_LEN);
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200819 dh->header_version = cpu_to_dump32(s, 6);
Andrew Jones8161bef2016-01-11 20:56:20 +0100820 block_size = s->dump_info.page_size;
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200821 dh->block_size = cpu_to_dump32(s, block_size);
qiaonuohan298f1162014-02-18 14:11:32 +0800822 sub_hdr_size = sizeof(struct KdumpSubHeader32) + s->note_size;
823 sub_hdr_size = DIV_ROUND_UP(sub_hdr_size, block_size);
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200824 dh->sub_hdr_size = cpu_to_dump32(s, sub_hdr_size);
qiaonuohan298f1162014-02-18 14:11:32 +0800825 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200826 dh->max_mapnr = cpu_to_dump32(s, MIN(s->max_mapnr, UINT_MAX));
827 dh->nr_cpus = cpu_to_dump32(s, s->nr_cpus);
qiaonuohan298f1162014-02-18 14:11:32 +0800828 bitmap_blocks = DIV_ROUND_UP(s->len_dump_bitmap, block_size) * 2;
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200829 dh->bitmap_blocks = cpu_to_dump32(s, bitmap_blocks);
qiaonuohan4ab23a92014-02-18 14:11:37 +0800830 strncpy(dh->utsname.machine, ELF_MACHINE_UNAME, sizeof(dh->utsname.machine));
qiaonuohan298f1162014-02-18 14:11:32 +0800831
832 if (s->flag_compress & DUMP_DH_COMPRESSED_ZLIB) {
833 status |= DUMP_DH_COMPRESSED_ZLIB;
834 }
835#ifdef CONFIG_LZO
836 if (s->flag_compress & DUMP_DH_COMPRESSED_LZO) {
837 status |= DUMP_DH_COMPRESSED_LZO;
838 }
839#endif
840#ifdef CONFIG_SNAPPY
841 if (s->flag_compress & DUMP_DH_COMPRESSED_SNAPPY) {
842 status |= DUMP_DH_COMPRESSED_SNAPPY;
843 }
844#endif
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200845 dh->status = cpu_to_dump32(s, status);
qiaonuohan298f1162014-02-18 14:11:32 +0800846
847 if (write_buffer(s->fd, 0, dh, size) < 0) {
Peter Xue3517a52016-02-18 13:16:46 +0800848 error_setg(errp, "dump: failed to write disk dump header");
qiaonuohan298f1162014-02-18 14:11:32 +0800849 goto out;
850 }
851
852 /* write sub header */
853 size = sizeof(KdumpSubHeader32);
854 kh = g_malloc0(size);
855
856 /* 64bit max_mapnr_64 */
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200857 kh->max_mapnr_64 = cpu_to_dump64(s, s->max_mapnr);
Andrew Jonesb6e05aa2016-01-11 20:56:21 +0100858 kh->phys_base = cpu_to_dump32(s, s->dump_info.phys_base);
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200859 kh->dump_level = cpu_to_dump32(s, DUMP_LEVEL);
qiaonuohan298f1162014-02-18 14:11:32 +0800860
861 offset_note = DISKDUMP_HEADER_BLOCKS * block_size + size;
Marc-André Lureau9ada5752017-09-11 18:59:27 +0200862 if (s->guest_note &&
863 note_name_equal(s, s->guest_note, "VMCOREINFO")) {
864 uint64_t hsize, name_size, size_vmcoreinfo_desc, offset_vmcoreinfo;
865
866 get_note_sizes(s, s->guest_note,
867 &hsize, &name_size, &size_vmcoreinfo_desc);
868 offset_vmcoreinfo = offset_note + s->note_size - s->guest_note_size +
869 (DIV_ROUND_UP(hsize, 4) + DIV_ROUND_UP(name_size, 4)) * 4;
870 kh->offset_vmcoreinfo = cpu_to_dump64(s, offset_vmcoreinfo);
871 kh->size_vmcoreinfo = cpu_to_dump32(s, size_vmcoreinfo_desc);
872 }
873
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200874 kh->offset_note = cpu_to_dump64(s, offset_note);
875 kh->note_size = cpu_to_dump32(s, s->note_size);
qiaonuohan298f1162014-02-18 14:11:32 +0800876
877 if (write_buffer(s->fd, DISKDUMP_HEADER_BLOCKS *
878 block_size, kh, size) < 0) {
Peter Xue3517a52016-02-18 13:16:46 +0800879 error_setg(errp, "dump: failed to write kdump sub header");
qiaonuohan298f1162014-02-18 14:11:32 +0800880 goto out;
881 }
882
883 /* write note */
884 s->note_buf = g_malloc0(s->note_size);
885 s->note_buf_offset = 0;
886
887 /* use s->note_buf to store notes temporarily */
Janosch Frank86a518b2022-03-30 12:35:55 +0000888 write_elf32_notes(buf_write_note, s, errp);
889 if (*errp) {
qiaonuohan298f1162014-02-18 14:11:32 +0800890 goto out;
891 }
qiaonuohan298f1162014-02-18 14:11:32 +0800892 if (write_buffer(s->fd, offset_note, s->note_buf,
893 s->note_size) < 0) {
Peter Xue3517a52016-02-18 13:16:46 +0800894 error_setg(errp, "dump: failed to write notes");
qiaonuohan298f1162014-02-18 14:11:32 +0800895 goto out;
896 }
897
898 /* get offset of dump_bitmap */
899 s->offset_dump_bitmap = (DISKDUMP_HEADER_BLOCKS + sub_hdr_size) *
900 block_size;
901
902 /* get offset of page */
903 s->offset_page = (DISKDUMP_HEADER_BLOCKS + sub_hdr_size + bitmap_blocks) *
904 block_size;
905
906out:
907 g_free(dh);
908 g_free(kh);
909 g_free(s->note_buf);
qiaonuohan298f1162014-02-18 14:11:32 +0800910}
911
912/* write common header, sub header and elf note to vmcore */
zhanghailiang4c7e2512014-10-09 14:13:11 +0800913static void create_header64(DumpState *s, Error **errp)
qiaonuohan298f1162014-02-18 14:11:32 +0800914{
Janosch Frank86a518b2022-03-30 12:35:55 +0000915 ERRP_GUARD();
qiaonuohan298f1162014-02-18 14:11:32 +0800916 DiskDumpHeader64 *dh = NULL;
917 KdumpSubHeader64 *kh = NULL;
918 size_t size;
qiaonuohan298f1162014-02-18 14:11:32 +0800919 uint32_t block_size;
920 uint32_t sub_hdr_size;
921 uint32_t bitmap_blocks;
922 uint32_t status = 0;
923 uint64_t offset_note;
924
925 /* write common header, the version of kdump-compressed format is 6th */
926 size = sizeof(DiskDumpHeader64);
927 dh = g_malloc0(size);
928
Eric Blake84c868f2018-03-27 15:21:51 -0500929 memcpy(dh->signature, KDUMP_SIGNATURE, SIG_LEN);
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200930 dh->header_version = cpu_to_dump32(s, 6);
Andrew Jones8161bef2016-01-11 20:56:20 +0100931 block_size = s->dump_info.page_size;
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200932 dh->block_size = cpu_to_dump32(s, block_size);
qiaonuohan298f1162014-02-18 14:11:32 +0800933 sub_hdr_size = sizeof(struct KdumpSubHeader64) + s->note_size;
934 sub_hdr_size = DIV_ROUND_UP(sub_hdr_size, block_size);
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200935 dh->sub_hdr_size = cpu_to_dump32(s, sub_hdr_size);
qiaonuohan298f1162014-02-18 14:11:32 +0800936 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200937 dh->max_mapnr = cpu_to_dump32(s, MIN(s->max_mapnr, UINT_MAX));
938 dh->nr_cpus = cpu_to_dump32(s, s->nr_cpus);
qiaonuohan298f1162014-02-18 14:11:32 +0800939 bitmap_blocks = DIV_ROUND_UP(s->len_dump_bitmap, block_size) * 2;
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200940 dh->bitmap_blocks = cpu_to_dump32(s, bitmap_blocks);
qiaonuohan4ab23a92014-02-18 14:11:37 +0800941 strncpy(dh->utsname.machine, ELF_MACHINE_UNAME, sizeof(dh->utsname.machine));
qiaonuohan298f1162014-02-18 14:11:32 +0800942
943 if (s->flag_compress & DUMP_DH_COMPRESSED_ZLIB) {
944 status |= DUMP_DH_COMPRESSED_ZLIB;
945 }
946#ifdef CONFIG_LZO
947 if (s->flag_compress & DUMP_DH_COMPRESSED_LZO) {
948 status |= DUMP_DH_COMPRESSED_LZO;
949 }
950#endif
951#ifdef CONFIG_SNAPPY
952 if (s->flag_compress & DUMP_DH_COMPRESSED_SNAPPY) {
953 status |= DUMP_DH_COMPRESSED_SNAPPY;
954 }
955#endif
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200956 dh->status = cpu_to_dump32(s, status);
qiaonuohan298f1162014-02-18 14:11:32 +0800957
958 if (write_buffer(s->fd, 0, dh, size) < 0) {
Peter Xue3517a52016-02-18 13:16:46 +0800959 error_setg(errp, "dump: failed to write disk dump header");
qiaonuohan298f1162014-02-18 14:11:32 +0800960 goto out;
961 }
962
963 /* write sub header */
964 size = sizeof(KdumpSubHeader64);
965 kh = g_malloc0(size);
966
967 /* 64bit max_mapnr_64 */
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200968 kh->max_mapnr_64 = cpu_to_dump64(s, s->max_mapnr);
Andrew Jonesb6e05aa2016-01-11 20:56:21 +0100969 kh->phys_base = cpu_to_dump64(s, s->dump_info.phys_base);
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200970 kh->dump_level = cpu_to_dump32(s, DUMP_LEVEL);
qiaonuohan298f1162014-02-18 14:11:32 +0800971
972 offset_note = DISKDUMP_HEADER_BLOCKS * block_size + size;
Marc-André Lureau9ada5752017-09-11 18:59:27 +0200973 if (s->guest_note &&
974 note_name_equal(s, s->guest_note, "VMCOREINFO")) {
975 uint64_t hsize, name_size, size_vmcoreinfo_desc, offset_vmcoreinfo;
976
977 get_note_sizes(s, s->guest_note,
978 &hsize, &name_size, &size_vmcoreinfo_desc);
979 offset_vmcoreinfo = offset_note + s->note_size - s->guest_note_size +
980 (DIV_ROUND_UP(hsize, 4) + DIV_ROUND_UP(name_size, 4)) * 4;
981 kh->offset_vmcoreinfo = cpu_to_dump64(s, offset_vmcoreinfo);
982 kh->size_vmcoreinfo = cpu_to_dump64(s, size_vmcoreinfo_desc);
983 }
984
Bharata B Raoacb0ef52014-05-19 19:57:44 +0200985 kh->offset_note = cpu_to_dump64(s, offset_note);
986 kh->note_size = cpu_to_dump64(s, s->note_size);
qiaonuohan298f1162014-02-18 14:11:32 +0800987
988 if (write_buffer(s->fd, DISKDUMP_HEADER_BLOCKS *
989 block_size, kh, size) < 0) {
Peter Xue3517a52016-02-18 13:16:46 +0800990 error_setg(errp, "dump: failed to write kdump sub header");
qiaonuohan298f1162014-02-18 14:11:32 +0800991 goto out;
992 }
993
994 /* write note */
995 s->note_buf = g_malloc0(s->note_size);
996 s->note_buf_offset = 0;
997
998 /* use s->note_buf to store notes temporarily */
Janosch Frank86a518b2022-03-30 12:35:55 +0000999 write_elf64_notes(buf_write_note, s, errp);
1000 if (*errp) {
qiaonuohan298f1162014-02-18 14:11:32 +08001001 goto out;
1002 }
1003
1004 if (write_buffer(s->fd, offset_note, s->note_buf,
1005 s->note_size) < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001006 error_setg(errp, "dump: failed to write notes");
qiaonuohan298f1162014-02-18 14:11:32 +08001007 goto out;
1008 }
1009
1010 /* get offset of dump_bitmap */
1011 s->offset_dump_bitmap = (DISKDUMP_HEADER_BLOCKS + sub_hdr_size) *
1012 block_size;
1013
1014 /* get offset of page */
1015 s->offset_page = (DISKDUMP_HEADER_BLOCKS + sub_hdr_size + bitmap_blocks) *
1016 block_size;
1017
1018out:
1019 g_free(dh);
1020 g_free(kh);
1021 g_free(s->note_buf);
qiaonuohan298f1162014-02-18 14:11:32 +08001022}
1023
zhanghailiang4c7e2512014-10-09 14:13:11 +08001024static void write_dump_header(DumpState *s, Error **errp)
qiaonuohan298f1162014-02-18 14:11:32 +08001025{
Janosch Frank05bbaa502022-03-30 12:36:00 +00001026 if (dump_is_64bit(s)) {
Markus Armbruster992861f2020-07-07 18:06:04 +02001027 create_header64(s, errp);
Janosch Frank05bbaa502022-03-30 12:36:00 +00001028 } else {
1029 create_header32(s, errp);
zhanghailiang4c7e2512014-10-09 14:13:11 +08001030 }
qiaonuohan298f1162014-02-18 14:11:32 +08001031}
1032
Andrew Jones8161bef2016-01-11 20:56:20 +01001033static size_t dump_bitmap_get_bufsize(DumpState *s)
1034{
1035 return s->dump_info.page_size;
1036}
1037
qiaonuohand0686c72014-02-18 14:11:33 +08001038/*
1039 * set dump_bitmap sequencely. the bit before last_pfn is not allowed to be
1040 * rewritten, so if need to set the first bit, set last_pfn and pfn to 0.
1041 * set_dump_bitmap will always leave the recently set bit un-sync. And setting
1042 * (last bit + sizeof(buf) * 8) to 0 will do flushing the content in buf into
1043 * vmcore, ie. synchronizing un-sync bit into vmcore.
1044 */
1045static int set_dump_bitmap(uint64_t last_pfn, uint64_t pfn, bool value,
1046 uint8_t *buf, DumpState *s)
1047{
1048 off_t old_offset, new_offset;
1049 off_t offset_bitmap1, offset_bitmap2;
1050 uint32_t byte, bit;
Andrew Jones8161bef2016-01-11 20:56:20 +01001051 size_t bitmap_bufsize = dump_bitmap_get_bufsize(s);
1052 size_t bits_per_buf = bitmap_bufsize * CHAR_BIT;
qiaonuohand0686c72014-02-18 14:11:33 +08001053
1054 /* should not set the previous place */
1055 assert(last_pfn <= pfn);
1056
1057 /*
1058 * if the bit needed to be set is not cached in buf, flush the data in buf
1059 * to vmcore firstly.
1060 * making new_offset be bigger than old_offset can also sync remained data
1061 * into vmcore.
1062 */
Andrew Jones8161bef2016-01-11 20:56:20 +01001063 old_offset = bitmap_bufsize * (last_pfn / bits_per_buf);
1064 new_offset = bitmap_bufsize * (pfn / bits_per_buf);
qiaonuohand0686c72014-02-18 14:11:33 +08001065
1066 while (old_offset < new_offset) {
1067 /* calculate the offset and write dump_bitmap */
1068 offset_bitmap1 = s->offset_dump_bitmap + old_offset;
1069 if (write_buffer(s->fd, offset_bitmap1, buf,
Andrew Jones8161bef2016-01-11 20:56:20 +01001070 bitmap_bufsize) < 0) {
qiaonuohand0686c72014-02-18 14:11:33 +08001071 return -1;
1072 }
1073
1074 /* dump level 1 is chosen, so 1st and 2nd bitmap are same */
1075 offset_bitmap2 = s->offset_dump_bitmap + s->len_dump_bitmap +
1076 old_offset;
1077 if (write_buffer(s->fd, offset_bitmap2, buf,
Andrew Jones8161bef2016-01-11 20:56:20 +01001078 bitmap_bufsize) < 0) {
qiaonuohand0686c72014-02-18 14:11:33 +08001079 return -1;
1080 }
1081
Andrew Jones8161bef2016-01-11 20:56:20 +01001082 memset(buf, 0, bitmap_bufsize);
1083 old_offset += bitmap_bufsize;
qiaonuohand0686c72014-02-18 14:11:33 +08001084 }
1085
1086 /* get the exact place of the bit in the buf, and set it */
Andrew Jones8161bef2016-01-11 20:56:20 +01001087 byte = (pfn % bits_per_buf) / CHAR_BIT;
1088 bit = (pfn % bits_per_buf) % CHAR_BIT;
qiaonuohand0686c72014-02-18 14:11:33 +08001089 if (value) {
1090 buf[byte] |= 1u << bit;
1091 } else {
1092 buf[byte] &= ~(1u << bit);
1093 }
1094
1095 return 0;
1096}
1097
Andrew Jones8161bef2016-01-11 20:56:20 +01001098static uint64_t dump_paddr_to_pfn(DumpState *s, uint64_t addr)
1099{
1100 int target_page_shift = ctz32(s->dump_info.page_size);
1101
1102 return (addr >> target_page_shift) - ARCH_PFN_OFFSET;
1103}
1104
1105static uint64_t dump_pfn_to_paddr(DumpState *s, uint64_t pfn)
1106{
1107 int target_page_shift = ctz32(s->dump_info.page_size);
1108
1109 return (pfn + ARCH_PFN_OFFSET) << target_page_shift;
1110}
1111
qiaonuohand0686c72014-02-18 14:11:33 +08001112/*
1113 * exam every page and return the page frame number and the address of the page.
1114 * bufptr can be NULL. note: the blocks here is supposed to reflect guest-phys
1115 * blocks, so block->target_start and block->target_end should be interal
1116 * multiples of the target page size.
1117 */
1118static bool get_next_page(GuestPhysBlock **blockptr, uint64_t *pfnptr,
1119 uint8_t **bufptr, DumpState *s)
1120{
1121 GuestPhysBlock *block = *blockptr;
Andrew Jones8161bef2016-01-11 20:56:20 +01001122 hwaddr addr, target_page_mask = ~((hwaddr)s->dump_info.page_size - 1);
qiaonuohand0686c72014-02-18 14:11:33 +08001123 uint8_t *buf;
1124
1125 /* block == NULL means the start of the iteration */
1126 if (!block) {
1127 block = QTAILQ_FIRST(&s->guest_phys_blocks.head);
1128 *blockptr = block;
Andrew Jones8161bef2016-01-11 20:56:20 +01001129 assert((block->target_start & ~target_page_mask) == 0);
1130 assert((block->target_end & ~target_page_mask) == 0);
1131 *pfnptr = dump_paddr_to_pfn(s, block->target_start);
qiaonuohand0686c72014-02-18 14:11:33 +08001132 if (bufptr) {
1133 *bufptr = block->host_addr;
1134 }
1135 return true;
1136 }
1137
1138 *pfnptr = *pfnptr + 1;
Andrew Jones8161bef2016-01-11 20:56:20 +01001139 addr = dump_pfn_to_paddr(s, *pfnptr);
qiaonuohand0686c72014-02-18 14:11:33 +08001140
1141 if ((addr >= block->target_start) &&
Andrew Jones8161bef2016-01-11 20:56:20 +01001142 (addr + s->dump_info.page_size <= block->target_end)) {
qiaonuohand0686c72014-02-18 14:11:33 +08001143 buf = block->host_addr + (addr - block->target_start);
1144 } else {
1145 /* the next page is in the next block */
1146 block = QTAILQ_NEXT(block, next);
1147 *blockptr = block;
1148 if (!block) {
1149 return false;
1150 }
Andrew Jones8161bef2016-01-11 20:56:20 +01001151 assert((block->target_start & ~target_page_mask) == 0);
1152 assert((block->target_end & ~target_page_mask) == 0);
1153 *pfnptr = dump_paddr_to_pfn(s, block->target_start);
qiaonuohand0686c72014-02-18 14:11:33 +08001154 buf = block->host_addr;
1155 }
1156
1157 if (bufptr) {
1158 *bufptr = buf;
1159 }
1160
1161 return true;
1162}
1163
zhanghailiang4c7e2512014-10-09 14:13:11 +08001164static void write_dump_bitmap(DumpState *s, Error **errp)
qiaonuohand0686c72014-02-18 14:11:33 +08001165{
1166 int ret = 0;
1167 uint64_t last_pfn, pfn;
1168 void *dump_bitmap_buf;
1169 size_t num_dumpable;
1170 GuestPhysBlock *block_iter = NULL;
Andrew Jones8161bef2016-01-11 20:56:20 +01001171 size_t bitmap_bufsize = dump_bitmap_get_bufsize(s);
1172 size_t bits_per_buf = bitmap_bufsize * CHAR_BIT;
qiaonuohand0686c72014-02-18 14:11:33 +08001173
1174 /* dump_bitmap_buf is used to store dump_bitmap temporarily */
Andrew Jones8161bef2016-01-11 20:56:20 +01001175 dump_bitmap_buf = g_malloc0(bitmap_bufsize);
qiaonuohand0686c72014-02-18 14:11:33 +08001176
1177 num_dumpable = 0;
1178 last_pfn = 0;
1179
1180 /*
1181 * exam memory page by page, and set the bit in dump_bitmap corresponded
1182 * to the existing page.
1183 */
1184 while (get_next_page(&block_iter, &pfn, NULL, s)) {
1185 ret = set_dump_bitmap(last_pfn, pfn, true, dump_bitmap_buf, s);
1186 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001187 error_setg(errp, "dump: failed to set dump_bitmap");
qiaonuohand0686c72014-02-18 14:11:33 +08001188 goto out;
1189 }
1190
1191 last_pfn = pfn;
1192 num_dumpable++;
1193 }
1194
1195 /*
1196 * set_dump_bitmap will always leave the recently set bit un-sync. Here we
Andrew Jones8161bef2016-01-11 20:56:20 +01001197 * set the remaining bits from last_pfn to the end of the bitmap buffer to
1198 * 0. With those set, the un-sync bit will be synchronized into the vmcore.
qiaonuohand0686c72014-02-18 14:11:33 +08001199 */
1200 if (num_dumpable > 0) {
Andrew Jones8161bef2016-01-11 20:56:20 +01001201 ret = set_dump_bitmap(last_pfn, last_pfn + bits_per_buf, false,
qiaonuohand0686c72014-02-18 14:11:33 +08001202 dump_bitmap_buf, s);
1203 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001204 error_setg(errp, "dump: failed to sync dump_bitmap");
qiaonuohand0686c72014-02-18 14:11:33 +08001205 goto out;
1206 }
1207 }
1208
1209 /* number of dumpable pages that will be dumped later */
1210 s->num_dumpable = num_dumpable;
1211
1212out:
1213 g_free(dump_bitmap_buf);
qiaonuohand0686c72014-02-18 14:11:33 +08001214}
1215
qiaonuohan64cfba62014-02-18 14:11:34 +08001216static void prepare_data_cache(DataCache *data_cache, DumpState *s,
1217 off_t offset)
1218{
1219 data_cache->fd = s->fd;
1220 data_cache->data_size = 0;
Andrew Jones8161bef2016-01-11 20:56:20 +01001221 data_cache->buf_size = 4 * dump_bitmap_get_bufsize(s);
1222 data_cache->buf = g_malloc0(data_cache->buf_size);
qiaonuohan64cfba62014-02-18 14:11:34 +08001223 data_cache->offset = offset;
1224}
1225
1226static int write_cache(DataCache *dc, const void *buf, size_t size,
1227 bool flag_sync)
1228{
1229 /*
1230 * dc->buf_size should not be less than size, otherwise dc will never be
1231 * enough
1232 */
1233 assert(size <= dc->buf_size);
1234
1235 /*
1236 * if flag_sync is set, synchronize data in dc->buf into vmcore.
1237 * otherwise check if the space is enough for caching data in buf, if not,
1238 * write the data in dc->buf to dc->fd and reset dc->buf
1239 */
1240 if ((!flag_sync && dc->data_size + size > dc->buf_size) ||
1241 (flag_sync && dc->data_size > 0)) {
1242 if (write_buffer(dc->fd, dc->offset, dc->buf, dc->data_size) < 0) {
1243 return -1;
1244 }
1245
1246 dc->offset += dc->data_size;
1247 dc->data_size = 0;
1248 }
1249
1250 if (!flag_sync) {
1251 memcpy(dc->buf + dc->data_size, buf, size);
1252 dc->data_size += size;
1253 }
1254
1255 return 0;
1256}
1257
1258static void free_data_cache(DataCache *data_cache)
1259{
1260 g_free(data_cache->buf);
1261}
1262
qiaonuohand12f57e2014-02-18 14:11:35 +08001263static size_t get_len_buf_out(size_t page_size, uint32_t flag_compress)
1264{
Laszlo Ersekb87ef352014-05-20 13:42:53 +02001265 switch (flag_compress) {
1266 case DUMP_DH_COMPRESSED_ZLIB:
1267 return compressBound(page_size);
qiaonuohand12f57e2014-02-18 14:11:35 +08001268
Laszlo Ersekb87ef352014-05-20 13:42:53 +02001269 case DUMP_DH_COMPRESSED_LZO:
1270 /*
1271 * LZO will expand incompressible data by a little amount. Please check
1272 * the following URL to see the expansion calculation:
1273 * http://www.oberhumer.com/opensource/lzo/lzofaq.php
1274 */
1275 return page_size + page_size / 16 + 64 + 3;
qiaonuohand12f57e2014-02-18 14:11:35 +08001276
1277#ifdef CONFIG_SNAPPY
Laszlo Ersekb87ef352014-05-20 13:42:53 +02001278 case DUMP_DH_COMPRESSED_SNAPPY:
1279 return snappy_max_compressed_length(page_size);
qiaonuohand12f57e2014-02-18 14:11:35 +08001280#endif
Laszlo Ersekb87ef352014-05-20 13:42:53 +02001281 }
1282 return 0;
qiaonuohand12f57e2014-02-18 14:11:35 +08001283}
1284
zhanghailiang4c7e2512014-10-09 14:13:11 +08001285static void write_dump_pages(DumpState *s, Error **errp)
qiaonuohand12f57e2014-02-18 14:11:35 +08001286{
1287 int ret = 0;
1288 DataCache page_desc, page_data;
1289 size_t len_buf_out, size_out;
1290#ifdef CONFIG_LZO
1291 lzo_bytep wrkmem = NULL;
1292#endif
1293 uint8_t *buf_out = NULL;
1294 off_t offset_desc, offset_data;
1295 PageDescriptor pd, pd_zero;
1296 uint8_t *buf;
qiaonuohand12f57e2014-02-18 14:11:35 +08001297 GuestPhysBlock *block_iter = NULL;
1298 uint64_t pfn_iter;
1299
1300 /* get offset of page_desc and page_data in dump file */
1301 offset_desc = s->offset_page;
1302 offset_data = offset_desc + sizeof(PageDescriptor) * s->num_dumpable;
1303
1304 prepare_data_cache(&page_desc, s, offset_desc);
1305 prepare_data_cache(&page_data, s, offset_data);
1306
1307 /* prepare buffer to store compressed data */
Andrew Jones8161bef2016-01-11 20:56:20 +01001308 len_buf_out = get_len_buf_out(s->dump_info.page_size, s->flag_compress);
Laszlo Ersekb87ef352014-05-20 13:42:53 +02001309 assert(len_buf_out != 0);
qiaonuohand12f57e2014-02-18 14:11:35 +08001310
1311#ifdef CONFIG_LZO
1312 wrkmem = g_malloc(LZO1X_1_MEM_COMPRESS);
1313#endif
1314
1315 buf_out = g_malloc(len_buf_out);
1316
1317 /*
1318 * init zero page's page_desc and page_data, because every zero page
1319 * uses the same page_data
1320 */
Andrew Jones8161bef2016-01-11 20:56:20 +01001321 pd_zero.size = cpu_to_dump32(s, s->dump_info.page_size);
Bharata B Raoacb0ef52014-05-19 19:57:44 +02001322 pd_zero.flags = cpu_to_dump32(s, 0);
1323 pd_zero.offset = cpu_to_dump64(s, offset_data);
1324 pd_zero.page_flags = cpu_to_dump64(s, 0);
Andrew Jones8161bef2016-01-11 20:56:20 +01001325 buf = g_malloc0(s->dump_info.page_size);
1326 ret = write_cache(&page_data, buf, s->dump_info.page_size, false);
qiaonuohand12f57e2014-02-18 14:11:35 +08001327 g_free(buf);
1328 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001329 error_setg(errp, "dump: failed to write page data (zero page)");
qiaonuohand12f57e2014-02-18 14:11:35 +08001330 goto out;
1331 }
1332
Andrew Jones8161bef2016-01-11 20:56:20 +01001333 offset_data += s->dump_info.page_size;
qiaonuohand12f57e2014-02-18 14:11:35 +08001334
1335 /*
1336 * dump memory to vmcore page by page. zero page will all be resided in the
1337 * first page of page section
1338 */
1339 while (get_next_page(&block_iter, &pfn_iter, &buf, s)) {
1340 /* check zero page */
Juan Quintelaf13f22b2021-11-18 15:57:44 +01001341 if (buffer_is_zero(buf, s->dump_info.page_size)) {
qiaonuohand12f57e2014-02-18 14:11:35 +08001342 ret = write_cache(&page_desc, &pd_zero, sizeof(PageDescriptor),
1343 false);
1344 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001345 error_setg(errp, "dump: failed to write page desc");
qiaonuohand12f57e2014-02-18 14:11:35 +08001346 goto out;
1347 }
1348 } else {
1349 /*
1350 * not zero page, then:
1351 * 1. compress the page
1352 * 2. write the compressed page into the cache of page_data
1353 * 3. get page desc of the compressed page and write it into the
1354 * cache of page_desc
1355 *
1356 * only one compression format will be used here, for
1357 * s->flag_compress is set. But when compression fails to work,
1358 * we fall back to save in plaintext.
1359 */
1360 size_out = len_buf_out;
1361 if ((s->flag_compress & DUMP_DH_COMPRESSED_ZLIB) &&
Bharata B Raoacb0ef52014-05-19 19:57:44 +02001362 (compress2(buf_out, (uLongf *)&size_out, buf,
Andrew Jones8161bef2016-01-11 20:56:20 +01001363 s->dump_info.page_size, Z_BEST_SPEED) == Z_OK) &&
1364 (size_out < s->dump_info.page_size)) {
Bharata B Raoacb0ef52014-05-19 19:57:44 +02001365 pd.flags = cpu_to_dump32(s, DUMP_DH_COMPRESSED_ZLIB);
1366 pd.size = cpu_to_dump32(s, size_out);
qiaonuohand12f57e2014-02-18 14:11:35 +08001367
1368 ret = write_cache(&page_data, buf_out, size_out, false);
1369 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001370 error_setg(errp, "dump: failed to write page data");
qiaonuohand12f57e2014-02-18 14:11:35 +08001371 goto out;
1372 }
1373#ifdef CONFIG_LZO
1374 } else if ((s->flag_compress & DUMP_DH_COMPRESSED_LZO) &&
Andrew Jones8161bef2016-01-11 20:56:20 +01001375 (lzo1x_1_compress(buf, s->dump_info.page_size, buf_out,
qiaonuohand12f57e2014-02-18 14:11:35 +08001376 (lzo_uint *)&size_out, wrkmem) == LZO_E_OK) &&
Andrew Jones8161bef2016-01-11 20:56:20 +01001377 (size_out < s->dump_info.page_size)) {
Bharata B Raoacb0ef52014-05-19 19:57:44 +02001378 pd.flags = cpu_to_dump32(s, DUMP_DH_COMPRESSED_LZO);
1379 pd.size = cpu_to_dump32(s, size_out);
qiaonuohand12f57e2014-02-18 14:11:35 +08001380
1381 ret = write_cache(&page_data, buf_out, size_out, false);
1382 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001383 error_setg(errp, "dump: failed to write page data");
qiaonuohand12f57e2014-02-18 14:11:35 +08001384 goto out;
1385 }
1386#endif
1387#ifdef CONFIG_SNAPPY
1388 } else if ((s->flag_compress & DUMP_DH_COMPRESSED_SNAPPY) &&
Andrew Jones8161bef2016-01-11 20:56:20 +01001389 (snappy_compress((char *)buf, s->dump_info.page_size,
qiaonuohand12f57e2014-02-18 14:11:35 +08001390 (char *)buf_out, &size_out) == SNAPPY_OK) &&
Andrew Jones8161bef2016-01-11 20:56:20 +01001391 (size_out < s->dump_info.page_size)) {
Bharata B Raoacb0ef52014-05-19 19:57:44 +02001392 pd.flags = cpu_to_dump32(s, DUMP_DH_COMPRESSED_SNAPPY);
1393 pd.size = cpu_to_dump32(s, size_out);
qiaonuohand12f57e2014-02-18 14:11:35 +08001394
1395 ret = write_cache(&page_data, buf_out, size_out, false);
1396 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001397 error_setg(errp, "dump: failed to write page data");
qiaonuohand12f57e2014-02-18 14:11:35 +08001398 goto out;
1399 }
1400#endif
1401 } else {
1402 /*
1403 * fall back to save in plaintext, size_out should be
Andrew Jones8161bef2016-01-11 20:56:20 +01001404 * assigned the target's page size
qiaonuohand12f57e2014-02-18 14:11:35 +08001405 */
Bharata B Raoacb0ef52014-05-19 19:57:44 +02001406 pd.flags = cpu_to_dump32(s, 0);
Andrew Jones8161bef2016-01-11 20:56:20 +01001407 size_out = s->dump_info.page_size;
Bharata B Raoacb0ef52014-05-19 19:57:44 +02001408 pd.size = cpu_to_dump32(s, size_out);
qiaonuohand12f57e2014-02-18 14:11:35 +08001409
Andrew Jones8161bef2016-01-11 20:56:20 +01001410 ret = write_cache(&page_data, buf,
1411 s->dump_info.page_size, false);
qiaonuohand12f57e2014-02-18 14:11:35 +08001412 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001413 error_setg(errp, "dump: failed to write page data");
qiaonuohand12f57e2014-02-18 14:11:35 +08001414 goto out;
1415 }
1416 }
1417
1418 /* get and write page desc here */
Bharata B Raoacb0ef52014-05-19 19:57:44 +02001419 pd.page_flags = cpu_to_dump64(s, 0);
1420 pd.offset = cpu_to_dump64(s, offset_data);
qiaonuohand12f57e2014-02-18 14:11:35 +08001421 offset_data += size_out;
1422
1423 ret = write_cache(&page_desc, &pd, sizeof(PageDescriptor), false);
1424 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001425 error_setg(errp, "dump: failed to write page desc");
qiaonuohand12f57e2014-02-18 14:11:35 +08001426 goto out;
1427 }
1428 }
Peter Xu2264c2c2016-02-18 13:16:53 +08001429 s->written_size += s->dump_info.page_size;
qiaonuohand12f57e2014-02-18 14:11:35 +08001430 }
1431
1432 ret = write_cache(&page_desc, NULL, 0, true);
1433 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001434 error_setg(errp, "dump: failed to sync cache for page_desc");
qiaonuohand12f57e2014-02-18 14:11:35 +08001435 goto out;
1436 }
1437 ret = write_cache(&page_data, NULL, 0, true);
1438 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001439 error_setg(errp, "dump: failed to sync cache for page_data");
qiaonuohand12f57e2014-02-18 14:11:35 +08001440 goto out;
1441 }
1442
1443out:
1444 free_data_cache(&page_desc);
1445 free_data_cache(&page_data);
1446
1447#ifdef CONFIG_LZO
1448 g_free(wrkmem);
1449#endif
1450
1451 g_free(buf_out);
qiaonuohand12f57e2014-02-18 14:11:35 +08001452}
1453
zhanghailiang4c7e2512014-10-09 14:13:11 +08001454static void create_kdump_vmcore(DumpState *s, Error **errp)
qiaonuohanb53ccc32014-02-18 14:11:36 +08001455{
Janosch Frank86a518b2022-03-30 12:35:55 +00001456 ERRP_GUARD();
qiaonuohanb53ccc32014-02-18 14:11:36 +08001457 int ret;
1458
1459 /*
1460 * the kdump-compressed format is:
1461 * File offset
1462 * +------------------------------------------+ 0x0
1463 * | main header (struct disk_dump_header) |
1464 * |------------------------------------------+ block 1
1465 * | sub header (struct kdump_sub_header) |
1466 * |------------------------------------------+ block 2
1467 * | 1st-dump_bitmap |
1468 * |------------------------------------------+ block 2 + X blocks
1469 * | 2nd-dump_bitmap | (aligned by block)
1470 * |------------------------------------------+ block 2 + 2 * X blocks
1471 * | page desc for pfn 0 (struct page_desc) | (aligned by block)
1472 * | page desc for pfn 1 (struct page_desc) |
1473 * | : |
1474 * |------------------------------------------| (not aligned by block)
1475 * | page data (pfn 0) |
1476 * | page data (pfn 1) |
1477 * | : |
1478 * +------------------------------------------+
1479 */
1480
1481 ret = write_start_flat_header(s->fd);
1482 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001483 error_setg(errp, "dump: failed to write start flat header");
zhanghailiang4c7e2512014-10-09 14:13:11 +08001484 return;
qiaonuohanb53ccc32014-02-18 14:11:36 +08001485 }
1486
Janosch Frank86a518b2022-03-30 12:35:55 +00001487 write_dump_header(s, errp);
1488 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +08001489 return;
qiaonuohanb53ccc32014-02-18 14:11:36 +08001490 }
1491
Janosch Frank86a518b2022-03-30 12:35:55 +00001492 write_dump_bitmap(s, errp);
1493 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +08001494 return;
qiaonuohanb53ccc32014-02-18 14:11:36 +08001495 }
1496
Janosch Frank86a518b2022-03-30 12:35:55 +00001497 write_dump_pages(s, errp);
1498 if (*errp) {
zhanghailiang4c7e2512014-10-09 14:13:11 +08001499 return;
qiaonuohanb53ccc32014-02-18 14:11:36 +08001500 }
1501
1502 ret = write_end_flat_header(s->fd);
1503 if (ret < 0) {
Peter Xue3517a52016-02-18 13:16:46 +08001504 error_setg(errp, "dump: failed to write end flat header");
zhanghailiang4c7e2512014-10-09 14:13:11 +08001505 return;
qiaonuohanb53ccc32014-02-18 14:11:36 +08001506 }
qiaonuohanb53ccc32014-02-18 14:11:36 +08001507}
1508
Wen Congyang783e9b42012-05-07 12:10:47 +08001509static ram_addr_t get_start_block(DumpState *s)
1510{
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +02001511 GuestPhysBlock *block;
Wen Congyang783e9b42012-05-07 12:10:47 +08001512
1513 if (!s->has_filter) {
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +02001514 s->next_block = QTAILQ_FIRST(&s->guest_phys_blocks.head);
Wen Congyang783e9b42012-05-07 12:10:47 +08001515 return 0;
1516 }
1517
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +02001518 QTAILQ_FOREACH(block, &s->guest_phys_blocks.head, next) {
1519 if (block->target_start >= s->begin + s->length ||
1520 block->target_end <= s->begin) {
Wen Congyang783e9b42012-05-07 12:10:47 +08001521 /* This block is out of the range */
1522 continue;
1523 }
1524
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +02001525 s->next_block = block;
1526 if (s->begin > block->target_start) {
1527 s->start = s->begin - block->target_start;
Wen Congyang783e9b42012-05-07 12:10:47 +08001528 } else {
1529 s->start = 0;
1530 }
1531 return s->start;
1532 }
1533
1534 return -1;
1535}
1536
qiaonuohan7aad2482014-02-18 14:11:31 +08001537static void get_max_mapnr(DumpState *s)
1538{
1539 GuestPhysBlock *last_block;
1540
Paolo Bonzinieae3eb32018-12-06 13:10:34 +01001541 last_block = QTAILQ_LAST(&s->guest_phys_blocks.head);
Andrew Jones8161bef2016-01-11 20:56:20 +01001542 s->max_mapnr = dump_paddr_to_pfn(s, last_block->target_end);
qiaonuohan7aad2482014-02-18 14:11:31 +08001543}
1544
Peter Xubaf28f52016-02-18 13:16:48 +08001545static DumpState dump_state_global = { .status = DUMP_STATUS_NONE };
1546
1547static void dump_state_prepare(DumpState *s)
1548{
1549 /* zero the struct, setting status to active */
1550 *s = (DumpState) { .status = DUMP_STATUS_ACTIVE };
1551}
1552
Marc-André Lureau544803c2022-03-23 19:57:31 +04001553bool qemu_system_dump_in_progress(void)
Peter Xu65d64f32016-02-18 13:16:49 +08001554{
1555 DumpState *state = &dump_state_global;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001556 return (qatomic_read(&state->status) == DUMP_STATUS_ACTIVE);
Peter Xu65d64f32016-02-18 13:16:49 +08001557}
1558
Peter Xu2264c2c2016-02-18 13:16:53 +08001559/* calculate total size of memory to be dumped (taking filter into
1560 * acoount.) */
1561static int64_t dump_calculate_size(DumpState *s)
1562{
1563 GuestPhysBlock *block;
1564 int64_t size = 0, total = 0, left = 0, right = 0;
1565
1566 QTAILQ_FOREACH(block, &s->guest_phys_blocks.head, next) {
1567 if (s->has_filter) {
1568 /* calculate the overlapped region. */
1569 left = MAX(s->begin, block->target_start);
1570 right = MIN(s->begin + s->length, block->target_end);
1571 size = right - left;
1572 size = size > 0 ? size : 0;
1573 } else {
1574 /* count the whole region in */
1575 size = (block->target_end - block->target_start);
1576 }
1577 total += size;
1578 }
1579
1580 return total;
1581}
1582
Marc-André Lureaud9feb512017-09-11 18:59:26 +02001583static void vmcoreinfo_update_phys_base(DumpState *s)
1584{
1585 uint64_t size, note_head_size, name_size, phys_base;
1586 char **lines;
1587 uint8_t *vmci;
1588 size_t i;
1589
1590 if (!note_name_equal(s, s->guest_note, "VMCOREINFO")) {
1591 return;
1592 }
1593
1594 get_note_sizes(s, s->guest_note, &note_head_size, &name_size, &size);
1595 note_head_size = ROUND_UP(note_head_size, 4);
1596
1597 vmci = s->guest_note + note_head_size + ROUND_UP(name_size, 4);
1598 *(vmci + size) = '\0';
1599
1600 lines = g_strsplit((char *)vmci, "\n", -1);
1601 for (i = 0; lines[i]; i++) {
Wei Huang68cbecf2018-03-09 12:03:23 -05001602 const char *prefix = NULL;
1603
1604 if (s->dump_info.d_machine == EM_X86_64) {
1605 prefix = "NUMBER(phys_base)=";
1606 } else if (s->dump_info.d_machine == EM_AARCH64) {
1607 prefix = "NUMBER(PHYS_OFFSET)=";
1608 }
1609
1610 if (prefix && g_str_has_prefix(lines[i], prefix)) {
1611 if (qemu_strtou64(lines[i] + strlen(prefix), NULL, 16,
Marc-André Lureaud9feb512017-09-11 18:59:26 +02001612 &phys_base) < 0) {
Wei Huang68cbecf2018-03-09 12:03:23 -05001613 warn_report("Failed to read %s", prefix);
Marc-André Lureaud9feb512017-09-11 18:59:26 +02001614 } else {
1615 s->dump_info.phys_base = phys_base;
1616 }
1617 break;
1618 }
1619 }
1620
1621 g_strfreev(lines);
1622}
1623
zhanghailiang4c7e2512014-10-09 14:13:11 +08001624static void dump_init(DumpState *s, int fd, bool has_format,
1625 DumpGuestMemoryFormat format, bool paging, bool has_filter,
1626 int64_t begin, int64_t length, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +08001627{
Janosch Frank86a518b2022-03-30 12:35:55 +00001628 ERRP_GUARD();
Marc-André Lureau903ef732017-09-11 18:59:25 +02001629 VMCoreInfoState *vmci = vmcoreinfo_find();
Andreas Färber182735e2013-05-29 22:29:20 +02001630 CPUState *cpu;
Wen Congyang783e9b42012-05-07 12:10:47 +08001631 int nr_cpus;
1632 int ret;
1633
Peter Xuca1fc8c2016-02-18 13:16:50 +08001634 s->has_format = has_format;
1635 s->format = format;
Peter Xu2264c2c2016-02-18 13:16:53 +08001636 s->written_size = 0;
Peter Xuca1fc8c2016-02-18 13:16:50 +08001637
qiaonuohanb53ccc32014-02-18 14:11:36 +08001638 /* kdump-compressed is conflict with paging and filter */
1639 if (has_format && format != DUMP_GUEST_MEMORY_FORMAT_ELF) {
1640 assert(!paging && !has_filter);
1641 }
1642
Wen Congyang783e9b42012-05-07 12:10:47 +08001643 if (runstate_is_running()) {
1644 vm_stop(RUN_STATE_SAVE_VM);
1645 s->resume = true;
1646 } else {
1647 s->resume = false;
1648 }
1649
Laszlo Ersek5ee163e2013-08-06 12:37:09 +02001650 /* If we use KVM, we should synchronize the registers before we get dump
1651 * info or physmap info.
Wen Congyang783e9b42012-05-07 12:10:47 +08001652 */
Andreas Färber1b3509c2013-06-09 16:48:29 +02001653 cpu_synchronize_all_states();
Wen Congyang783e9b42012-05-07 12:10:47 +08001654 nr_cpus = 0;
Andreas Färberbdc44642013-06-24 23:50:24 +02001655 CPU_FOREACH(cpu) {
Wen Congyang783e9b42012-05-07 12:10:47 +08001656 nr_cpus++;
1657 }
1658
Laszlo Ersek5ee163e2013-08-06 12:37:09 +02001659 s->fd = fd;
1660 s->has_filter = has_filter;
1661 s->begin = begin;
1662 s->length = length;
1663
Chen Gang29282072014-08-03 23:28:56 +08001664 memory_mapping_list_init(&s->list);
1665
Laszlo Ersek5ee163e2013-08-06 12:37:09 +02001666 guest_phys_blocks_init(&s->guest_phys_blocks);
Laszlo Ersekc5d7f602013-08-06 12:37:10 +02001667 guest_phys_blocks_append(&s->guest_phys_blocks);
Peter Xu2264c2c2016-02-18 13:16:53 +08001668 s->total_size = dump_calculate_size(s);
1669#ifdef DEBUG_DUMP_GUEST_MEMORY
1670 fprintf(stderr, "DUMP: total memory to dump: %lu\n", s->total_size);
1671#endif
Laszlo Ersek5ee163e2013-08-06 12:37:09 +02001672
Cornelia Huckd1e69942017-09-13 16:20:35 +02001673 /* it does not make sense to dump non-existent memory */
1674 if (!s->total_size) {
1675 error_setg(errp, "dump: no guest memory to dump");
1676 goto cleanup;
1677 }
1678
Laszlo Ersek5ee163e2013-08-06 12:37:09 +02001679 s->start = get_start_block(s);
1680 if (s->start == -1) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001681 error_setg(errp, QERR_INVALID_PARAMETER, "begin");
Laszlo Ersek5ee163e2013-08-06 12:37:09 +02001682 goto cleanup;
1683 }
1684
1685 /* get dump info: endian, class and architecture.
1686 * If the target architecture is not supported, cpu_get_dump_info() will
1687 * return -1.
1688 */
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +02001689 ret = cpu_get_dump_info(&s->dump_info, &s->guest_phys_blocks);
Wen Congyang783e9b42012-05-07 12:10:47 +08001690 if (ret < 0) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001691 error_setg(errp, QERR_UNSUPPORTED);
Wen Congyang783e9b42012-05-07 12:10:47 +08001692 goto cleanup;
1693 }
1694
Andrew Jones8161bef2016-01-11 20:56:20 +01001695 if (!s->dump_info.page_size) {
1696 s->dump_info.page_size = TARGET_PAGE_SIZE;
1697 }
1698
Paolo Bonzini4720bd02012-06-07 08:48:09 +02001699 s->note_size = cpu_get_note_size(s->dump_info.d_class,
1700 s->dump_info.d_machine, nr_cpus);
Aneesh Kumar K.Vbb6b6842013-10-01 21:49:32 +05301701 if (s->note_size < 0) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001702 error_setg(errp, QERR_UNSUPPORTED);
Paolo Bonzini4720bd02012-06-07 08:48:09 +02001703 goto cleanup;
1704 }
1705
Marc-André Lureau903ef732017-09-11 18:59:25 +02001706 /*
Marc-André Lureaud9feb512017-09-11 18:59:26 +02001707 * The goal of this block is to (a) update the previously guessed
1708 * phys_base, (b) copy the guest note out of the guest.
1709 * Failure to do so is not fatal for dumping.
Marc-André Lureau903ef732017-09-11 18:59:25 +02001710 */
1711 if (vmci) {
1712 uint64_t addr, note_head_size, name_size, desc_size;
1713 uint32_t size;
1714 uint16_t format;
1715
Janosch Frank05bbaa502022-03-30 12:36:00 +00001716 note_head_size = dump_is_64bit(s) ?
1717 sizeof(Elf64_Nhdr) : sizeof(Elf32_Nhdr);
Marc-André Lureau903ef732017-09-11 18:59:25 +02001718
1719 format = le16_to_cpu(vmci->vmcoreinfo.guest_format);
1720 size = le32_to_cpu(vmci->vmcoreinfo.size);
1721 addr = le64_to_cpu(vmci->vmcoreinfo.paddr);
1722 if (!vmci->has_vmcoreinfo) {
1723 warn_report("guest note is not present");
1724 } else if (size < note_head_size || size > MAX_GUEST_NOTE_SIZE) {
1725 warn_report("guest note size is invalid: %" PRIu32, size);
Marc-André Lureau5be5df72018-08-17 17:59:10 +02001726 } else if (format != FW_CFG_VMCOREINFO_FORMAT_ELF) {
Marc-André Lureau903ef732017-09-11 18:59:25 +02001727 warn_report("guest note format is unsupported: %" PRIu16, format);
1728 } else {
1729 s->guest_note = g_malloc(size + 1); /* +1 for adding \0 */
1730 cpu_physical_memory_read(addr, s->guest_note, size);
1731
1732 get_note_sizes(s, s->guest_note, NULL, &name_size, &desc_size);
1733 s->guest_note_size = ELF_NOTE_SIZE(note_head_size, name_size,
1734 desc_size);
1735 if (name_size > MAX_GUEST_NOTE_SIZE ||
1736 desc_size > MAX_GUEST_NOTE_SIZE ||
1737 s->guest_note_size > size) {
1738 warn_report("Invalid guest note header");
1739 g_free(s->guest_note);
1740 s->guest_note = NULL;
1741 } else {
Marc-André Lureaud9feb512017-09-11 18:59:26 +02001742 vmcoreinfo_update_phys_base(s);
Marc-André Lureau903ef732017-09-11 18:59:25 +02001743 s->note_size += s->guest_note_size;
1744 }
1745 }
1746 }
1747
Wen Congyang783e9b42012-05-07 12:10:47 +08001748 /* get memory mapping */
Wen Congyang783e9b42012-05-07 12:10:47 +08001749 if (paging) {
Janosch Frank86a518b2022-03-30 12:35:55 +00001750 qemu_get_guest_memory_mapping(&s->list, &s->guest_phys_blocks, errp);
1751 if (*errp) {
Andreas Färber11ed09c2013-05-29 21:54:03 +02001752 goto cleanup;
1753 }
Wen Congyang783e9b42012-05-07 12:10:47 +08001754 } else {
Laszlo Ersek56c4bfb2013-08-06 12:37:11 +02001755 qemu_get_guest_simple_memory_mapping(&s->list, &s->guest_phys_blocks);
Wen Congyang783e9b42012-05-07 12:10:47 +08001756 }
1757
qiaonuohan7aad2482014-02-18 14:11:31 +08001758 s->nr_cpus = nr_cpus;
qiaonuohan7aad2482014-02-18 14:11:31 +08001759
1760 get_max_mapnr(s);
1761
1762 uint64_t tmp;
Andrew Jones8161bef2016-01-11 20:56:20 +01001763 tmp = DIV_ROUND_UP(DIV_ROUND_UP(s->max_mapnr, CHAR_BIT),
1764 s->dump_info.page_size);
1765 s->len_dump_bitmap = tmp * s->dump_info.page_size;
qiaonuohan7aad2482014-02-18 14:11:31 +08001766
qiaonuohanb53ccc32014-02-18 14:11:36 +08001767 /* init for kdump-compressed format */
1768 if (has_format && format != DUMP_GUEST_MEMORY_FORMAT_ELF) {
1769 switch (format) {
1770 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB:
1771 s->flag_compress = DUMP_DH_COMPRESSED_ZLIB;
1772 break;
1773
1774 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO:
Laszlo Ersekc998acb2014-05-20 13:42:22 +02001775#ifdef CONFIG_LZO
1776 if (lzo_init() != LZO_E_OK) {
1777 error_setg(errp, "failed to initialize the LZO library");
1778 goto cleanup;
1779 }
1780#endif
qiaonuohanb53ccc32014-02-18 14:11:36 +08001781 s->flag_compress = DUMP_DH_COMPRESSED_LZO;
1782 break;
1783
1784 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY:
1785 s->flag_compress = DUMP_DH_COMPRESSED_SNAPPY;
1786 break;
1787
1788 default:
1789 s->flag_compress = 0;
1790 }
1791
zhanghailiang4c7e2512014-10-09 14:13:11 +08001792 return;
qiaonuohanb53ccc32014-02-18 14:11:36 +08001793 }
1794
Wen Congyang783e9b42012-05-07 12:10:47 +08001795 if (s->has_filter) {
1796 memory_mapping_filter(&s->list, s->begin, s->length);
1797 }
1798
1799 /*
1800 * calculate phdr_num
1801 *
1802 * the type of ehdr->e_phnum is uint16_t, so we should avoid overflow
1803 */
1804 s->phdr_num = 1; /* PT_NOTE */
1805 if (s->list.num < UINT16_MAX - 2) {
Janosch Frank862a3952022-03-30 12:35:57 +00001806 s->shdr_num = 0;
Wen Congyang783e9b42012-05-07 12:10:47 +08001807 s->phdr_num += s->list.num;
Wen Congyang783e9b42012-05-07 12:10:47 +08001808 } else {
Janosch Frank046bc412022-04-07 09:48:24 +00001809 /* sh_info of section 0 holds the real number of phdrs */
Janosch Frank862a3952022-03-30 12:35:57 +00001810 s->shdr_num = 1;
Wen Congyang783e9b42012-05-07 12:10:47 +08001811
1812 /* the type of shdr->sh_info is uint32_t, so we should avoid overflow */
1813 if (s->list.num <= UINT32_MAX - 1) {
Janosch Frank046bc412022-04-07 09:48:24 +00001814 s->phdr_num += s->list.num;
Wen Congyang783e9b42012-05-07 12:10:47 +08001815 } else {
Janosch Frank046bc412022-04-07 09:48:24 +00001816 s->phdr_num = UINT32_MAX;
Wen Congyang783e9b42012-05-07 12:10:47 +08001817 }
1818 }
1819
Janosch Frank05bbaa502022-03-30 12:36:00 +00001820 if (dump_is_64bit(s)) {
Janosch Franke71d3532022-03-30 12:35:59 +00001821 s->phdr_offset = sizeof(Elf64_Ehdr);
1822 s->shdr_offset = s->phdr_offset + sizeof(Elf64_Phdr) * s->phdr_num;
1823 s->note_offset = s->shdr_offset + sizeof(Elf64_Shdr) * s->shdr_num;
1824 s->memory_offset = s->note_offset + s->note_size;
Wen Congyang783e9b42012-05-07 12:10:47 +08001825 } else {
Janosch Franke71d3532022-03-30 12:35:59 +00001826
1827 s->phdr_offset = sizeof(Elf32_Ehdr);
1828 s->shdr_offset = s->phdr_offset + sizeof(Elf32_Phdr) * s->phdr_num;
1829 s->note_offset = s->shdr_offset + sizeof(Elf32_Shdr) * s->shdr_num;
1830 s->memory_offset = s->note_offset + s->note_size;
Wen Congyang783e9b42012-05-07 12:10:47 +08001831 }
1832
zhanghailiang4c7e2512014-10-09 14:13:11 +08001833 return;
Wen Congyang783e9b42012-05-07 12:10:47 +08001834
1835cleanup:
Chen Gang29282072014-08-03 23:28:56 +08001836 dump_cleanup(s);
Wen Congyang783e9b42012-05-07 12:10:47 +08001837}
1838
Peter Xuca1fc8c2016-02-18 13:16:50 +08001839/* this operation might be time consuming. */
1840static void dump_process(DumpState *s, Error **errp)
1841{
Janosch Frank86a518b2022-03-30 12:35:55 +00001842 ERRP_GUARD();
Peter Xud42a0d12016-02-18 13:16:56 +08001843 DumpQueryResult *result = NULL;
Peter Xuca1fc8c2016-02-18 13:16:50 +08001844
Viktor Prutyanov2da91b52018-05-17 19:23:39 +03001845 if (s->has_format && s->format == DUMP_GUEST_MEMORY_FORMAT_WIN_DMP) {
1846#ifdef TARGET_X86_64
Janosch Frank86a518b2022-03-30 12:35:55 +00001847 create_win_dump(s, errp);
Viktor Prutyanov2da91b52018-05-17 19:23:39 +03001848#endif
1849 } else if (s->has_format && s->format != DUMP_GUEST_MEMORY_FORMAT_ELF) {
Janosch Frank86a518b2022-03-30 12:35:55 +00001850 create_kdump_vmcore(s, errp);
Peter Xuca1fc8c2016-02-18 13:16:50 +08001851 } else {
Janosch Frank86a518b2022-03-30 12:35:55 +00001852 create_vmcore(s, errp);
Peter Xuca1fc8c2016-02-18 13:16:50 +08001853 }
1854
Peter Xu39ba2ea2016-02-18 13:16:54 +08001855 /* make sure status is written after written_size updates */
1856 smp_wmb();
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001857 qatomic_set(&s->status,
Janosch Frank86a518b2022-03-30 12:35:55 +00001858 (*errp ? DUMP_STATUS_FAILED : DUMP_STATUS_COMPLETED));
Peter Xuca1fc8c2016-02-18 13:16:50 +08001859
Peter Xud42a0d12016-02-18 13:16:56 +08001860 /* send DUMP_COMPLETED message (unconditionally) */
1861 result = qmp_query_dump(NULL);
1862 /* should never fail */
1863 assert(result);
Janosch Frank86a518b2022-03-30 12:35:55 +00001864 qapi_event_send_dump_completed(result, !!*errp, (*errp ?
1865 error_get_pretty(*errp) : NULL));
Peter Xud42a0d12016-02-18 13:16:56 +08001866 qapi_free_DumpQueryResult(result);
1867
Peter Xuca1fc8c2016-02-18 13:16:50 +08001868 dump_cleanup(s);
1869}
1870
Peter Xu1fbeff72016-02-18 13:16:52 +08001871static void *dump_thread(void *data)
1872{
Peter Xu1fbeff72016-02-18 13:16:52 +08001873 DumpState *s = (DumpState *)data;
Alberto Garciac3a8fe32017-08-29 15:08:36 +03001874 dump_process(s, NULL);
Peter Xu1fbeff72016-02-18 13:16:52 +08001875 return NULL;
1876}
1877
Peter Xu39ba2ea2016-02-18 13:16:54 +08001878DumpQueryResult *qmp_query_dump(Error **errp)
1879{
1880 DumpQueryResult *result = g_new(DumpQueryResult, 1);
1881 DumpState *state = &dump_state_global;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001882 result->status = qatomic_read(&state->status);
Peter Xu39ba2ea2016-02-18 13:16:54 +08001883 /* make sure we are reading status and written_size in order */
1884 smp_rmb();
1885 result->completed = state->written_size;
1886 result->total = state->total_size;
1887 return result;
1888}
1889
Peter Xu228de9c2016-02-18 13:16:47 +08001890void qmp_dump_guest_memory(bool paging, const char *file,
1891 bool has_detach, bool detach,
1892 bool has_begin, int64_t begin, bool has_length,
qiaonuohanb53ccc32014-02-18 14:11:36 +08001893 int64_t length, bool has_format,
1894 DumpGuestMemoryFormat format, Error **errp)
Wen Congyang783e9b42012-05-07 12:10:47 +08001895{
Janosch Frank86a518b2022-03-30 12:35:55 +00001896 ERRP_GUARD();
Wen Congyang783e9b42012-05-07 12:10:47 +08001897 const char *p;
1898 int fd = -1;
1899 DumpState *s;
Peter Xu1fbeff72016-02-18 13:16:52 +08001900 bool detach_p = false;
Wen Congyang783e9b42012-05-07 12:10:47 +08001901
Peter Xu63e27f22016-02-18 13:16:51 +08001902 if (runstate_check(RUN_STATE_INMIGRATE)) {
1903 error_setg(errp, "Dump not allowed during incoming migration.");
1904 return;
1905 }
1906
Peter Xu65d64f32016-02-18 13:16:49 +08001907 /* if there is a dump in background, we should wait until the dump
1908 * finished */
Marc-André Lureau544803c2022-03-23 19:57:31 +04001909 if (qemu_system_dump_in_progress()) {
Peter Xu65d64f32016-02-18 13:16:49 +08001910 error_setg(errp, "There is a dump in process, please wait.");
1911 return;
1912 }
1913
qiaonuohanb53ccc32014-02-18 14:11:36 +08001914 /*
1915 * kdump-compressed format need the whole memory dumped, so paging or
1916 * filter is not supported here.
1917 */
1918 if ((has_format && format != DUMP_GUEST_MEMORY_FORMAT_ELF) &&
1919 (paging || has_begin || has_length)) {
1920 error_setg(errp, "kdump-compressed format doesn't support paging or "
1921 "filter");
1922 return;
1923 }
Wen Congyang783e9b42012-05-07 12:10:47 +08001924 if (has_begin && !has_length) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001925 error_setg(errp, QERR_MISSING_PARAMETER, "length");
Wen Congyang783e9b42012-05-07 12:10:47 +08001926 return;
1927 }
1928 if (!has_begin && has_length) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001929 error_setg(errp, QERR_MISSING_PARAMETER, "begin");
Wen Congyang783e9b42012-05-07 12:10:47 +08001930 return;
1931 }
Peter Xu1fbeff72016-02-18 13:16:52 +08001932 if (has_detach) {
1933 detach_p = detach;
1934 }
Wen Congyang783e9b42012-05-07 12:10:47 +08001935
qiaonuohanb53ccc32014-02-18 14:11:36 +08001936 /* check whether lzo/snappy is supported */
1937#ifndef CONFIG_LZO
1938 if (has_format && format == DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO) {
1939 error_setg(errp, "kdump-lzo is not available now");
1940 return;
1941 }
1942#endif
1943
1944#ifndef CONFIG_SNAPPY
1945 if (has_format && format == DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY) {
1946 error_setg(errp, "kdump-snappy is not available now");
1947 return;
1948 }
1949#endif
1950
Viktor Prutyanov2da91b52018-05-17 19:23:39 +03001951#ifndef TARGET_X86_64
1952 if (has_format && format == DUMP_GUEST_MEMORY_FORMAT_WIN_DMP) {
1953 error_setg(errp, "Windows dump is only available for x86-64");
1954 return;
1955 }
1956#endif
1957
Wen Congyang783e9b42012-05-07 12:10:47 +08001958#if !defined(WIN32)
1959 if (strstart(file, "fd:", &p)) {
Kevin Wolf947e4742020-10-05 17:58:44 +02001960 fd = monitor_get_fd(monitor_cur(), p, errp);
Wen Congyang783e9b42012-05-07 12:10:47 +08001961 if (fd == -1) {
Wen Congyang783e9b42012-05-07 12:10:47 +08001962 return;
1963 }
1964 }
1965#endif
1966
1967 if (strstart(file, "file:", &p)) {
Daniel P. Berrangé448058a2020-07-21 13:25:21 +01001968 fd = qemu_open_old(p, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR);
Wen Congyang783e9b42012-05-07 12:10:47 +08001969 if (fd < 0) {
Luiz Capitulino75817662013-06-07 14:36:01 -04001970 error_setg_file_open(errp, errno, p);
Wen Congyang783e9b42012-05-07 12:10:47 +08001971 return;
1972 }
1973 }
1974
1975 if (fd == -1) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01001976 error_setg(errp, QERR_INVALID_PARAMETER, "protocol");
Wen Congyang783e9b42012-05-07 12:10:47 +08001977 return;
1978 }
1979
Peter Xub7bc6b12021-09-22 12:20:09 -04001980 if (!dump_migration_blocker) {
1981 error_setg(&dump_migration_blocker,
1982 "Live migration disabled: dump-guest-memory in progress");
1983 }
1984
1985 /*
1986 * Allows even for -only-migratable, but forbid migration during the
1987 * process of dump guest memory.
1988 */
1989 if (migrate_add_blocker_internal(dump_migration_blocker, errp)) {
1990 /* Remember to release the fd before passing it over to dump state */
1991 close(fd);
1992 return;
1993 }
1994
Peter Xubaf28f52016-02-18 13:16:48 +08001995 s = &dump_state_global;
1996 dump_state_prepare(s);
Wen Congyang783e9b42012-05-07 12:10:47 +08001997
zhanghailiang4c7e2512014-10-09 14:13:11 +08001998 dump_init(s, fd, has_format, format, paging, has_begin,
Janosch Frank86a518b2022-03-30 12:35:55 +00001999 begin, length, errp);
2000 if (*errp) {
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01002001 qatomic_set(&s->status, DUMP_STATUS_FAILED);
Wen Congyang783e9b42012-05-07 12:10:47 +08002002 return;
2003 }
2004
Peter Xu1fbeff72016-02-18 13:16:52 +08002005 if (detach_p) {
2006 /* detached dump */
Fam Zheng6796b402017-05-03 15:28:19 +08002007 s->detached = true;
Peter Xu1fbeff72016-02-18 13:16:52 +08002008 qemu_thread_create(&s->dump_thread, "dump_thread", dump_thread,
2009 s, QEMU_THREAD_DETACHED);
2010 } else {
2011 /* sync dump */
2012 dump_process(s, errp);
2013 }
Wen Congyang783e9b42012-05-07 12:10:47 +08002014}
qiaonuohan7d6dc7f2014-02-18 14:11:38 +08002015
2016DumpGuestMemoryCapability *qmp_query_dump_guest_memory_capability(Error **errp)
2017{
qiaonuohan7d6dc7f2014-02-18 14:11:38 +08002018 DumpGuestMemoryCapability *cap =
Markus Armbrusterb21e2382022-03-15 15:41:56 +01002019 g_new0(DumpGuestMemoryCapability, 1);
Eric Blake95b3a8c2021-01-13 16:10:13 -06002020 DumpGuestMemoryFormatList **tail = &cap->formats;
qiaonuohan7d6dc7f2014-02-18 14:11:38 +08002021
2022 /* elf is always available */
Eric Blake95b3a8c2021-01-13 16:10:13 -06002023 QAPI_LIST_APPEND(tail, DUMP_GUEST_MEMORY_FORMAT_ELF);
qiaonuohan7d6dc7f2014-02-18 14:11:38 +08002024
2025 /* kdump-zlib is always available */
Eric Blake95b3a8c2021-01-13 16:10:13 -06002026 QAPI_LIST_APPEND(tail, DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB);
qiaonuohan7d6dc7f2014-02-18 14:11:38 +08002027
2028 /* add new item if kdump-lzo is available */
2029#ifdef CONFIG_LZO
Eric Blake95b3a8c2021-01-13 16:10:13 -06002030 QAPI_LIST_APPEND(tail, DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO);
qiaonuohan7d6dc7f2014-02-18 14:11:38 +08002031#endif
2032
2033 /* add new item if kdump-snappy is available */
2034#ifdef CONFIG_SNAPPY
Eric Blake95b3a8c2021-01-13 16:10:13 -06002035 QAPI_LIST_APPEND(tail, DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY);
qiaonuohan7d6dc7f2014-02-18 14:11:38 +08002036#endif
2037
Viktor Prutyanov2da91b52018-05-17 19:23:39 +03002038 /* Windows dump is available only if target is x86_64 */
2039#ifdef TARGET_X86_64
Eric Blake95b3a8c2021-01-13 16:10:13 -06002040 QAPI_LIST_APPEND(tail, DUMP_GUEST_MEMORY_FORMAT_WIN_DMP);
Viktor Prutyanov2da91b52018-05-17 19:23:39 +03002041#endif
2042
qiaonuohan7d6dc7f2014-02-18 14:11:38 +08002043 return cap;
2044}