4 * Copyright Fujitsu, Corp. 2011, 2012
9 * 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.
14 #include "qemu-common.h"
17 #include "exec/cpu-all.h"
18 #include "exec/hwaddr.h"
19 #include "monitor/monitor.h"
20 #include "sysemu/kvm.h"
21 #include "sysemu/dump.h"
22 #include "sysemu/sysemu.h"
23 #include "sysemu/memory_mapping.h"
24 #include "sysemu/cpus.h"
25 #include "qapi/error.h"
26 #include "qmp-commands.h"
28 static uint16_t cpu_convert_to_target16(uint16_t val, int endian)
30 if (endian == ELFDATA2LSB) {
31 val = cpu_to_le16(val);
33 val = cpu_to_be16(val);
39 static uint32_t cpu_convert_to_target32(uint32_t val, int endian)
41 if (endian == ELFDATA2LSB) {
42 val = cpu_to_le32(val);
44 val = cpu_to_be32(val);
50 static uint64_t cpu_convert_to_target64(uint64_t val, int endian)
52 if (endian == ELFDATA2LSB) {
53 val = cpu_to_le64(val);
55 val = cpu_to_be64(val);
61 typedef struct DumpState {
62 ArchDumpInfo dump_info;
63 MemoryMappingList list;
80 static int dump_cleanup(DumpState *s)
84 memory_mapping_list_free(&s->list);
95 static void dump_error(DumpState *s, const char *reason)
100 static int fd_write_vmcore(void *buf, size_t size, void *opaque)
102 DumpState *s = opaque;
105 written_size = qemu_write_full(s->fd, buf, size);
106 if (written_size != size) {
113 static int write_elf64_header(DumpState *s)
115 Elf64_Ehdr elf_header;
117 int endian = s->dump_info.d_endian;
119 memset(&elf_header, 0, sizeof(Elf64_Ehdr));
120 memcpy(&elf_header, ELFMAG, SELFMAG);
121 elf_header.e_ident[EI_CLASS] = ELFCLASS64;
122 elf_header.e_ident[EI_DATA] = s->dump_info.d_endian;
123 elf_header.e_ident[EI_VERSION] = EV_CURRENT;
124 elf_header.e_type = cpu_convert_to_target16(ET_CORE, endian);
125 elf_header.e_machine = cpu_convert_to_target16(s->dump_info.d_machine,
127 elf_header.e_version = cpu_convert_to_target32(EV_CURRENT, endian);
128 elf_header.e_ehsize = cpu_convert_to_target16(sizeof(elf_header), endian);
129 elf_header.e_phoff = cpu_convert_to_target64(sizeof(Elf64_Ehdr), endian);
130 elf_header.e_phentsize = cpu_convert_to_target16(sizeof(Elf64_Phdr),
132 elf_header.e_phnum = cpu_convert_to_target16(s->phdr_num, endian);
133 if (s->have_section) {
134 uint64_t shoff = sizeof(Elf64_Ehdr) + sizeof(Elf64_Phdr) * s->sh_info;
136 elf_header.e_shoff = cpu_convert_to_target64(shoff, endian);
137 elf_header.e_shentsize = cpu_convert_to_target16(sizeof(Elf64_Shdr),
139 elf_header.e_shnum = cpu_convert_to_target16(1, endian);
142 ret = fd_write_vmcore(&elf_header, sizeof(elf_header), s);
144 dump_error(s, "dump: failed to write elf header.\n");
151 static int write_elf32_header(DumpState *s)
153 Elf32_Ehdr elf_header;
155 int endian = s->dump_info.d_endian;
157 memset(&elf_header, 0, sizeof(Elf32_Ehdr));
158 memcpy(&elf_header, ELFMAG, SELFMAG);
159 elf_header.e_ident[EI_CLASS] = ELFCLASS32;
160 elf_header.e_ident[EI_DATA] = endian;
161 elf_header.e_ident[EI_VERSION] = EV_CURRENT;
162 elf_header.e_type = cpu_convert_to_target16(ET_CORE, endian);
163 elf_header.e_machine = cpu_convert_to_target16(s->dump_info.d_machine,
165 elf_header.e_version = cpu_convert_to_target32(EV_CURRENT, endian);
166 elf_header.e_ehsize = cpu_convert_to_target16(sizeof(elf_header), endian);
167 elf_header.e_phoff = cpu_convert_to_target32(sizeof(Elf32_Ehdr), endian);
168 elf_header.e_phentsize = cpu_convert_to_target16(sizeof(Elf32_Phdr),
170 elf_header.e_phnum = cpu_convert_to_target16(s->phdr_num, endian);
171 if (s->have_section) {
172 uint32_t shoff = sizeof(Elf32_Ehdr) + sizeof(Elf32_Phdr) * s->sh_info;
174 elf_header.e_shoff = cpu_convert_to_target32(shoff, endian);
175 elf_header.e_shentsize = cpu_convert_to_target16(sizeof(Elf32_Shdr),
177 elf_header.e_shnum = cpu_convert_to_target16(1, endian);
180 ret = fd_write_vmcore(&elf_header, sizeof(elf_header), s);
182 dump_error(s, "dump: failed to write elf header.\n");
189 static int write_elf64_load(DumpState *s, MemoryMapping *memory_mapping,
190 int phdr_index, hwaddr offset)
194 int endian = s->dump_info.d_endian;
196 memset(&phdr, 0, sizeof(Elf64_Phdr));
197 phdr.p_type = cpu_convert_to_target32(PT_LOAD, endian);
198 phdr.p_offset = cpu_convert_to_target64(offset, endian);
199 phdr.p_paddr = cpu_convert_to_target64(memory_mapping->phys_addr, endian);
201 /* When the memory is not stored into vmcore, offset will be -1 */
204 phdr.p_filesz = cpu_convert_to_target64(memory_mapping->length, endian);
206 phdr.p_memsz = cpu_convert_to_target64(memory_mapping->length, endian);
207 phdr.p_vaddr = cpu_convert_to_target64(memory_mapping->virt_addr, endian);
209 ret = fd_write_vmcore(&phdr, sizeof(Elf64_Phdr), s);
211 dump_error(s, "dump: failed to write program header table.\n");
218 static int write_elf32_load(DumpState *s, MemoryMapping *memory_mapping,
219 int phdr_index, hwaddr offset)
223 int endian = s->dump_info.d_endian;
225 memset(&phdr, 0, sizeof(Elf32_Phdr));
226 phdr.p_type = cpu_convert_to_target32(PT_LOAD, endian);
227 phdr.p_offset = cpu_convert_to_target32(offset, endian);
228 phdr.p_paddr = cpu_convert_to_target32(memory_mapping->phys_addr, endian);
230 /* When the memory is not stored into vmcore, offset will be -1 */
233 phdr.p_filesz = cpu_convert_to_target32(memory_mapping->length, endian);
235 phdr.p_memsz = cpu_convert_to_target32(memory_mapping->length, endian);
236 phdr.p_vaddr = cpu_convert_to_target32(memory_mapping->virt_addr, endian);
238 ret = fd_write_vmcore(&phdr, sizeof(Elf32_Phdr), s);
240 dump_error(s, "dump: failed to write program header table.\n");
247 static int write_elf64_note(DumpState *s)
250 int endian = s->dump_info.d_endian;
251 hwaddr begin = s->memory_offset - s->note_size;
254 memset(&phdr, 0, sizeof(Elf64_Phdr));
255 phdr.p_type = cpu_convert_to_target32(PT_NOTE, endian);
256 phdr.p_offset = cpu_convert_to_target64(begin, endian);
258 phdr.p_filesz = cpu_convert_to_target64(s->note_size, endian);
259 phdr.p_memsz = cpu_convert_to_target64(s->note_size, endian);
262 ret = fd_write_vmcore(&phdr, sizeof(Elf64_Phdr), s);
264 dump_error(s, "dump: failed to write program header table.\n");
271 static inline int cpu_index(CPUState *cpu)
273 return cpu->cpu_index + 1;
276 static int write_elf64_notes(DumpState *s)
283 for (env = first_cpu; env != NULL; env = env->next_cpu) {
284 cpu = ENV_GET_CPU(env);
286 ret = cpu_write_elf64_note(fd_write_vmcore, cpu, id, s);
288 dump_error(s, "dump: failed to write elf notes.\n");
293 for (env = first_cpu; env != NULL; env = env->next_cpu) {
294 ret = cpu_write_elf64_qemunote(fd_write_vmcore, cpu, s);
296 dump_error(s, "dump: failed to write CPU status.\n");
304 static int write_elf32_note(DumpState *s)
306 hwaddr begin = s->memory_offset - s->note_size;
308 int endian = s->dump_info.d_endian;
311 memset(&phdr, 0, sizeof(Elf32_Phdr));
312 phdr.p_type = cpu_convert_to_target32(PT_NOTE, endian);
313 phdr.p_offset = cpu_convert_to_target32(begin, endian);
315 phdr.p_filesz = cpu_convert_to_target32(s->note_size, endian);
316 phdr.p_memsz = cpu_convert_to_target32(s->note_size, endian);
319 ret = fd_write_vmcore(&phdr, sizeof(Elf32_Phdr), s);
321 dump_error(s, "dump: failed to write program header table.\n");
328 static int write_elf32_notes(DumpState *s)
335 for (env = first_cpu; env != NULL; env = env->next_cpu) {
336 cpu = ENV_GET_CPU(env);
338 ret = cpu_write_elf32_note(fd_write_vmcore, cpu, id, s);
340 dump_error(s, "dump: failed to write elf notes.\n");
345 for (env = first_cpu; env != NULL; env = env->next_cpu) {
346 ret = cpu_write_elf32_qemunote(fd_write_vmcore, cpu, s);
348 dump_error(s, "dump: failed to write CPU status.\n");
356 static int write_elf_section(DumpState *s, int type)
360 int endian = s->dump_info.d_endian;
366 shdr_size = sizeof(Elf32_Shdr);
367 memset(&shdr32, 0, shdr_size);
368 shdr32.sh_info = cpu_convert_to_target32(s->sh_info, endian);
371 shdr_size = sizeof(Elf64_Shdr);
372 memset(&shdr64, 0, shdr_size);
373 shdr64.sh_info = cpu_convert_to_target32(s->sh_info, endian);
377 ret = fd_write_vmcore(&shdr, shdr_size, s);
379 dump_error(s, "dump: failed to write section header table.\n");
386 static int write_data(DumpState *s, void *buf, int length)
390 ret = fd_write_vmcore(buf, length, s);
392 dump_error(s, "dump: failed to save memory.\n");
399 /* write the memroy to vmcore. 1 page per I/O. */
400 static int write_memory(DumpState *s, RAMBlock *block, ram_addr_t start,
406 for (i = 0; i < size / TARGET_PAGE_SIZE; i++) {
407 ret = write_data(s, block->host + start + i * TARGET_PAGE_SIZE,
414 if ((size % TARGET_PAGE_SIZE) != 0) {
415 ret = write_data(s, block->host + start + i * TARGET_PAGE_SIZE,
416 size % TARGET_PAGE_SIZE);
425 /* get the memory's offset in the vmcore */
426 static hwaddr get_offset(hwaddr phys_addr,
430 hwaddr offset = s->memory_offset;
431 int64_t size_in_block, start;
434 if (phys_addr < s->begin || phys_addr >= s->begin + s->length) {
439 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
441 if (block->offset >= s->begin + s->length ||
442 block->offset + block->length <= s->begin) {
443 /* This block is out of the range */
447 if (s->begin <= block->offset) {
448 start = block->offset;
453 size_in_block = block->length - (start - block->offset);
454 if (s->begin + s->length < block->offset + block->length) {
455 size_in_block -= block->offset + block->length -
456 (s->begin + s->length);
459 start = block->offset;
460 size_in_block = block->length;
463 if (phys_addr >= start && phys_addr < start + size_in_block) {
464 return phys_addr - start + offset;
467 offset += size_in_block;
473 static int write_elf_loads(DumpState *s)
476 MemoryMapping *memory_mapping;
477 uint32_t phdr_index = 1;
481 if (s->have_section) {
482 max_index = s->sh_info;
484 max_index = s->phdr_num;
487 QTAILQ_FOREACH(memory_mapping, &s->list.head, next) {
488 offset = get_offset(memory_mapping->phys_addr, s);
489 if (s->dump_info.d_class == ELFCLASS64) {
490 ret = write_elf64_load(s, memory_mapping, phdr_index++, offset);
492 ret = write_elf32_load(s, memory_mapping, phdr_index++, offset);
499 if (phdr_index >= max_index) {
507 /* write elf header, PT_NOTE and elf note to vmcore. */
508 static int dump_begin(DumpState *s)
513 * the vmcore's format is:
532 * we only know where the memory is saved after we write elf note into
536 /* write elf header to vmcore */
537 if (s->dump_info.d_class == ELFCLASS64) {
538 ret = write_elf64_header(s);
540 ret = write_elf32_header(s);
546 if (s->dump_info.d_class == ELFCLASS64) {
547 /* write PT_NOTE to vmcore */
548 if (write_elf64_note(s) < 0) {
552 /* write all PT_LOAD to vmcore */
553 if (write_elf_loads(s) < 0) {
557 /* write section to vmcore */
558 if (s->have_section) {
559 if (write_elf_section(s, 1) < 0) {
564 /* write notes to vmcore */
565 if (write_elf64_notes(s) < 0) {
570 /* write PT_NOTE to vmcore */
571 if (write_elf32_note(s) < 0) {
575 /* write all PT_LOAD to vmcore */
576 if (write_elf_loads(s) < 0) {
580 /* write section to vmcore */
581 if (s->have_section) {
582 if (write_elf_section(s, 0) < 0) {
587 /* write notes to vmcore */
588 if (write_elf32_notes(s) < 0) {
596 /* write PT_LOAD to vmcore */
597 static int dump_completed(DumpState *s)
603 static int get_next_block(DumpState *s, RAMBlock *block)
606 block = QTAILQ_NEXT(block, next);
615 if (block->offset >= s->begin + s->length ||
616 block->offset + block->length <= s->begin) {
617 /* This block is out of the range */
621 if (s->begin > block->offset) {
622 s->start = s->begin - block->offset;
630 /* write all memory to vmcore */
631 static int dump_iterate(DumpState *s)
640 size = block->length;
643 if (s->begin + s->length < block->offset + block->length) {
644 size -= block->offset + block->length - (s->begin + s->length);
647 ret = write_memory(s, block, s->start, size);
652 ret = get_next_block(s, block);
660 static int create_vmcore(DumpState *s)
669 ret = dump_iterate(s);
677 static ram_addr_t get_start_block(DumpState *s)
681 if (!s->has_filter) {
682 s->block = QTAILQ_FIRST(&ram_list.blocks);
686 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
687 if (block->offset >= s->begin + s->length ||
688 block->offset + block->length <= s->begin) {
689 /* This block is out of the range */
694 if (s->begin > block->offset) {
695 s->start = s->begin - block->offset;
705 static int dump_init(DumpState *s, int fd, bool paging, bool has_filter,
706 int64_t begin, int64_t length, Error **errp)
713 if (runstate_is_running()) {
714 vm_stop(RUN_STATE_SAVE_VM);
722 s->has_filter = has_filter;
725 s->start = get_start_block(s);
726 if (s->start == -1) {
727 error_set(errp, QERR_INVALID_PARAMETER, "begin");
732 * get dump info: endian, class and architecture.
733 * If the target architecture is not supported, cpu_get_dump_info() will
736 * If we use KVM, we should synchronize the registers before we get dump
739 cpu_synchronize_all_states();
741 for (env = first_cpu; env != NULL; env = env->next_cpu) {
745 ret = cpu_get_dump_info(&s->dump_info);
747 error_set(errp, QERR_UNSUPPORTED);
751 s->note_size = cpu_get_note_size(s->dump_info.d_class,
752 s->dump_info.d_machine, nr_cpus);
754 error_set(errp, QERR_UNSUPPORTED);
758 /* get memory mapping */
759 memory_mapping_list_init(&s->list);
761 qemu_get_guest_memory_mapping(&s->list, &err);
763 error_propagate(errp, err);
767 qemu_get_guest_simple_memory_mapping(&s->list);
771 memory_mapping_filter(&s->list, s->begin, s->length);
777 * the type of ehdr->e_phnum is uint16_t, so we should avoid overflow
779 s->phdr_num = 1; /* PT_NOTE */
780 if (s->list.num < UINT16_MAX - 2) {
781 s->phdr_num += s->list.num;
782 s->have_section = false;
784 s->have_section = true;
785 s->phdr_num = PN_XNUM;
786 s->sh_info = 1; /* PT_NOTE */
788 /* the type of shdr->sh_info is uint32_t, so we should avoid overflow */
789 if (s->list.num <= UINT32_MAX - 1) {
790 s->sh_info += s->list.num;
792 s->sh_info = UINT32_MAX;
796 if (s->dump_info.d_class == ELFCLASS64) {
797 if (s->have_section) {
798 s->memory_offset = sizeof(Elf64_Ehdr) +
799 sizeof(Elf64_Phdr) * s->sh_info +
800 sizeof(Elf64_Shdr) + s->note_size;
802 s->memory_offset = sizeof(Elf64_Ehdr) +
803 sizeof(Elf64_Phdr) * s->phdr_num + s->note_size;
806 if (s->have_section) {
807 s->memory_offset = sizeof(Elf32_Ehdr) +
808 sizeof(Elf32_Phdr) * s->sh_info +
809 sizeof(Elf32_Shdr) + s->note_size;
811 s->memory_offset = sizeof(Elf32_Ehdr) +
812 sizeof(Elf32_Phdr) * s->phdr_num + s->note_size;
826 void qmp_dump_guest_memory(bool paging, const char *file, bool has_begin,
827 int64_t begin, bool has_length, int64_t length,
835 if (has_begin && !has_length) {
836 error_set(errp, QERR_MISSING_PARAMETER, "length");
839 if (!has_begin && has_length) {
840 error_set(errp, QERR_MISSING_PARAMETER, "begin");
845 if (strstart(file, "fd:", &p)) {
846 fd = monitor_get_fd(cur_mon, p, errp);
853 if (strstart(file, "file:", &p)) {
854 fd = qemu_open(p, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR);
856 error_setg_file_open(errp, errno, p);
862 error_set(errp, QERR_INVALID_PARAMETER, "protocol");
866 s = g_malloc(sizeof(DumpState));
868 ret = dump_init(s, fd, paging, has_begin, begin, length, errp);
874 if (create_vmcore(s) < 0 && !error_is_set(s->errp)) {
875 error_set(errp, QERR_IO_ERROR);