4 * Copyright Fujitsu, Corp. 2011, 2012
7 * Wen Congyang <wency@cn.fujitsu.com>
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/osdep.h"
15 #include "qemu/cutils.h"
17 #include "exec/hwaddr.h"
18 #include "monitor/monitor.h"
19 #include "sysemu/kvm.h"
20 #include "sysemu/dump.h"
21 #include "sysemu/memory_mapping.h"
22 #include "sysemu/runstate.h"
23 #include "sysemu/cpus.h"
24 #include "qapi/error.h"
25 #include "qapi/qapi-commands-dump.h"
26 #include "qapi/qapi-events-dump.h"
27 #include "qapi/qmp/qerror.h"
28 #include "qemu/error-report.h"
29 #include "qemu/main-loop.h"
30 #include "hw/misc/vmcoreinfo.h"
31 #include "migration/blocker.h"
39 #include <lzo/lzo1x.h>
44 #ifndef ELF_MACHINE_UNAME
45 #define ELF_MACHINE_UNAME "Unknown"
48 #define MAX_GUEST_NOTE_SIZE (1 << 20) /* 1MB should be enough */
50 static Error
*dump_migration_blocker
;
52 #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)
57 static inline bool dump_is_64bit(DumpState
*s
)
59 return s
->dump_info
.d_class
== ELFCLASS64
;
62 static inline bool dump_has_filter(DumpState
*s
)
64 return s
->filter_area_length
> 0;
67 uint16_t cpu_to_dump16(DumpState
*s
, uint16_t val
)
69 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
70 val
= cpu_to_le16(val
);
72 val
= cpu_to_be16(val
);
78 uint32_t cpu_to_dump32(DumpState
*s
, uint32_t val
)
80 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
81 val
= cpu_to_le32(val
);
83 val
= cpu_to_be32(val
);
89 uint64_t cpu_to_dump64(DumpState
*s
, uint64_t val
)
91 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
92 val
= cpu_to_le64(val
);
94 val
= cpu_to_be64(val
);
100 static int dump_cleanup(DumpState
*s
)
102 guest_phys_blocks_free(&s
->guest_phys_blocks
);
103 memory_mapping_list_free(&s
->list
);
105 g_free(s
->guest_note
);
106 g_array_unref(s
->string_table_buf
);
107 s
->guest_note
= NULL
;
110 qemu_mutex_lock_iothread();
114 qemu_mutex_unlock_iothread();
117 migrate_del_blocker(dump_migration_blocker
);
122 static int fd_write_vmcore(const void *buf
, size_t size
, void *opaque
)
124 DumpState
*s
= opaque
;
127 written_size
= qemu_write_full(s
->fd
, buf
, size
);
128 if (written_size
!= size
) {
135 static void prepare_elf64_header(DumpState
*s
, Elf64_Ehdr
*elf_header
)
138 * phnum in the elf header is 16 bit, if we have more segments we
139 * set phnum to PN_XNUM and write the real number of segments to a
142 uint16_t phnum
= MIN(s
->phdr_num
, PN_XNUM
);
144 memset(elf_header
, 0, sizeof(Elf64_Ehdr
));
145 memcpy(elf_header
, ELFMAG
, SELFMAG
);
146 elf_header
->e_ident
[EI_CLASS
] = ELFCLASS64
;
147 elf_header
->e_ident
[EI_DATA
] = s
->dump_info
.d_endian
;
148 elf_header
->e_ident
[EI_VERSION
] = EV_CURRENT
;
149 elf_header
->e_type
= cpu_to_dump16(s
, ET_CORE
);
150 elf_header
->e_machine
= cpu_to_dump16(s
, s
->dump_info
.d_machine
);
151 elf_header
->e_version
= cpu_to_dump32(s
, EV_CURRENT
);
152 elf_header
->e_ehsize
= cpu_to_dump16(s
, sizeof(elf_header
));
153 elf_header
->e_phoff
= cpu_to_dump64(s
, s
->phdr_offset
);
154 elf_header
->e_phentsize
= cpu_to_dump16(s
, sizeof(Elf64_Phdr
));
155 elf_header
->e_phnum
= cpu_to_dump16(s
, phnum
);
156 elf_header
->e_shoff
= cpu_to_dump64(s
, s
->shdr_offset
);
157 elf_header
->e_shentsize
= cpu_to_dump16(s
, sizeof(Elf64_Shdr
));
158 elf_header
->e_shnum
= cpu_to_dump16(s
, s
->shdr_num
);
159 elf_header
->e_shstrndx
= cpu_to_dump16(s
, s
->shdr_num
- 1);
162 static void prepare_elf32_header(DumpState
*s
, Elf32_Ehdr
*elf_header
)
165 * phnum in the elf header is 16 bit, if we have more segments we
166 * set phnum to PN_XNUM and write the real number of segments to a
169 uint16_t phnum
= MIN(s
->phdr_num
, PN_XNUM
);
171 memset(elf_header
, 0, sizeof(Elf32_Ehdr
));
172 memcpy(elf_header
, ELFMAG
, SELFMAG
);
173 elf_header
->e_ident
[EI_CLASS
] = ELFCLASS32
;
174 elf_header
->e_ident
[EI_DATA
] = s
->dump_info
.d_endian
;
175 elf_header
->e_ident
[EI_VERSION
] = EV_CURRENT
;
176 elf_header
->e_type
= cpu_to_dump16(s
, ET_CORE
);
177 elf_header
->e_machine
= cpu_to_dump16(s
, s
->dump_info
.d_machine
);
178 elf_header
->e_version
= cpu_to_dump32(s
, EV_CURRENT
);
179 elf_header
->e_ehsize
= cpu_to_dump16(s
, sizeof(elf_header
));
180 elf_header
->e_phoff
= cpu_to_dump32(s
, s
->phdr_offset
);
181 elf_header
->e_phentsize
= cpu_to_dump16(s
, sizeof(Elf32_Phdr
));
182 elf_header
->e_phnum
= cpu_to_dump16(s
, phnum
);
183 elf_header
->e_shoff
= cpu_to_dump32(s
, s
->shdr_offset
);
184 elf_header
->e_shentsize
= cpu_to_dump16(s
, sizeof(Elf32_Shdr
));
185 elf_header
->e_shnum
= cpu_to_dump16(s
, s
->shdr_num
);
186 elf_header
->e_shstrndx
= cpu_to_dump16(s
, s
->shdr_num
- 1);
189 static void write_elf_header(DumpState
*s
, Error
**errp
)
191 Elf32_Ehdr elf32_header
;
192 Elf64_Ehdr elf64_header
;
197 /* The NULL header and the shstrtab are always defined */
198 assert(s
->shdr_num
>= 2);
199 if (dump_is_64bit(s
)) {
200 prepare_elf64_header(s
, &elf64_header
);
201 header_size
= sizeof(elf64_header
);
202 header_ptr
= &elf64_header
;
204 prepare_elf32_header(s
, &elf32_header
);
205 header_size
= sizeof(elf32_header
);
206 header_ptr
= &elf32_header
;
209 ret
= fd_write_vmcore(header_ptr
, header_size
, s
);
211 error_setg_errno(errp
, -ret
, "dump: failed to write elf header");
215 static void write_elf64_load(DumpState
*s
, MemoryMapping
*memory_mapping
,
216 int phdr_index
, hwaddr offset
,
217 hwaddr filesz
, Error
**errp
)
222 memset(&phdr
, 0, sizeof(Elf64_Phdr
));
223 phdr
.p_type
= cpu_to_dump32(s
, PT_LOAD
);
224 phdr
.p_offset
= cpu_to_dump64(s
, offset
);
225 phdr
.p_paddr
= cpu_to_dump64(s
, memory_mapping
->phys_addr
);
226 phdr
.p_filesz
= cpu_to_dump64(s
, filesz
);
227 phdr
.p_memsz
= cpu_to_dump64(s
, memory_mapping
->length
);
228 phdr
.p_vaddr
= cpu_to_dump64(s
, memory_mapping
->virt_addr
) ?: phdr
.p_paddr
;
230 assert(memory_mapping
->length
>= filesz
);
232 ret
= fd_write_vmcore(&phdr
, sizeof(Elf64_Phdr
), s
);
234 error_setg_errno(errp
, -ret
,
235 "dump: failed to write program header table");
239 static void write_elf32_load(DumpState
*s
, MemoryMapping
*memory_mapping
,
240 int phdr_index
, hwaddr offset
,
241 hwaddr filesz
, Error
**errp
)
246 memset(&phdr
, 0, sizeof(Elf32_Phdr
));
247 phdr
.p_type
= cpu_to_dump32(s
, PT_LOAD
);
248 phdr
.p_offset
= cpu_to_dump32(s
, offset
);
249 phdr
.p_paddr
= cpu_to_dump32(s
, memory_mapping
->phys_addr
);
250 phdr
.p_filesz
= cpu_to_dump32(s
, filesz
);
251 phdr
.p_memsz
= cpu_to_dump32(s
, memory_mapping
->length
);
253 cpu_to_dump32(s
, memory_mapping
->virt_addr
) ?: phdr
.p_paddr
;
255 assert(memory_mapping
->length
>= filesz
);
257 ret
= fd_write_vmcore(&phdr
, sizeof(Elf32_Phdr
), s
);
259 error_setg_errno(errp
, -ret
,
260 "dump: failed to write program header table");
264 static void prepare_elf64_phdr_note(DumpState
*s
, Elf64_Phdr
*phdr
)
266 memset(phdr
, 0, sizeof(*phdr
));
267 phdr
->p_type
= cpu_to_dump32(s
, PT_NOTE
);
268 phdr
->p_offset
= cpu_to_dump64(s
, s
->note_offset
);
270 phdr
->p_filesz
= cpu_to_dump64(s
, s
->note_size
);
271 phdr
->p_memsz
= cpu_to_dump64(s
, s
->note_size
);
275 static inline int cpu_index(CPUState
*cpu
)
277 return cpu
->cpu_index
+ 1;
280 static void write_guest_note(WriteCoreDumpFunction f
, DumpState
*s
,
286 ret
= f(s
->guest_note
, s
->guest_note_size
, s
);
288 error_setg(errp
, "dump: failed to write guest note");
293 static void write_elf64_notes(WriteCoreDumpFunction f
, DumpState
*s
,
302 ret
= cpu_write_elf64_note(f
, cpu
, id
, s
);
304 error_setg(errp
, "dump: failed to write elf notes");
310 ret
= cpu_write_elf64_qemunote(f
, cpu
, s
);
312 error_setg(errp
, "dump: failed to write CPU status");
317 write_guest_note(f
, s
, errp
);
320 static void prepare_elf32_phdr_note(DumpState
*s
, Elf32_Phdr
*phdr
)
322 memset(phdr
, 0, sizeof(*phdr
));
323 phdr
->p_type
= cpu_to_dump32(s
, PT_NOTE
);
324 phdr
->p_offset
= cpu_to_dump32(s
, s
->note_offset
);
326 phdr
->p_filesz
= cpu_to_dump32(s
, s
->note_size
);
327 phdr
->p_memsz
= cpu_to_dump32(s
, s
->note_size
);
331 static void write_elf32_notes(WriteCoreDumpFunction f
, DumpState
*s
,
340 ret
= cpu_write_elf32_note(f
, cpu
, id
, s
);
342 error_setg(errp
, "dump: failed to write elf notes");
348 ret
= cpu_write_elf32_qemunote(f
, cpu
, s
);
350 error_setg(errp
, "dump: failed to write CPU status");
355 write_guest_note(f
, s
, errp
);
358 static void write_elf_phdr_note(DumpState
*s
, Error
**errp
)
366 if (dump_is_64bit(s
)) {
367 prepare_elf64_phdr_note(s
, &phdr64
);
368 size
= sizeof(phdr64
);
371 prepare_elf32_phdr_note(s
, &phdr32
);
372 size
= sizeof(phdr32
);
376 ret
= fd_write_vmcore(phdr
, size
, s
);
378 error_setg_errno(errp
, -ret
,
379 "dump: failed to write program header table");
383 static void prepare_elf_section_hdr_zero(DumpState
*s
)
385 if (dump_is_64bit(s
)) {
386 Elf64_Shdr
*shdr64
= s
->elf_section_hdrs
;
388 shdr64
->sh_info
= cpu_to_dump32(s
, s
->phdr_num
);
390 Elf32_Shdr
*shdr32
= s
->elf_section_hdrs
;
392 shdr32
->sh_info
= cpu_to_dump32(s
, s
->phdr_num
);
396 static void prepare_elf_section_hdr_string(DumpState
*s
, void *buff
)
398 uint64_t index
= s
->string_table_buf
->len
;
399 const char strtab
[] = ".shstrtab";
400 Elf32_Shdr shdr32
= {};
401 Elf64_Shdr shdr64
= {};
405 g_array_append_vals(s
->string_table_buf
, strtab
, sizeof(strtab
));
406 if (dump_is_64bit(s
)) {
407 shdr_size
= sizeof(Elf64_Shdr
);
408 shdr64
.sh_type
= SHT_STRTAB
;
409 shdr64
.sh_offset
= s
->section_offset
+ s
->elf_section_data_size
;
410 shdr64
.sh_name
= index
;
411 shdr64
.sh_size
= s
->string_table_buf
->len
;
414 shdr_size
= sizeof(Elf32_Shdr
);
415 shdr32
.sh_type
= SHT_STRTAB
;
416 shdr32
.sh_offset
= s
->section_offset
+ s
->elf_section_data_size
;
417 shdr32
.sh_name
= index
;
418 shdr32
.sh_size
= s
->string_table_buf
->len
;
421 memcpy(buff
, shdr
, shdr_size
);
424 static bool prepare_elf_section_hdrs(DumpState
*s
, Error
**errp
)
426 size_t len
, sizeof_shdr
;
432 * - Arch section hdrs
435 sizeof_shdr
= dump_is_64bit(s
) ? sizeof(Elf64_Shdr
) : sizeof(Elf32_Shdr
);
436 len
= sizeof_shdr
* s
->shdr_num
;
437 s
->elf_section_hdrs
= g_malloc0(len
);
438 buff_hdr
= s
->elf_section_hdrs
;
441 * The first section header is ALWAYS a special initial section
444 * The header should be 0 with one exception being that if
445 * phdr_num is PN_XNUM then the sh_info field contains the real
446 * number of segment entries.
448 * As we zero allocate the buffer we will only need to modify
449 * sh_info for the PN_XNUM case.
451 if (s
->phdr_num
>= PN_XNUM
) {
452 prepare_elf_section_hdr_zero(s
);
454 buff_hdr
+= sizeof_shdr
;
456 /* Add architecture defined section headers */
457 if (s
->dump_info
.arch_sections_write_hdr_fn
458 && s
->shdr_num
> 2) {
459 buff_hdr
+= s
->dump_info
.arch_sections_write_hdr_fn(s
, buff_hdr
);
461 if (s
->shdr_num
>= SHN_LORESERVE
) {
462 error_setg_errno(errp
, EINVAL
,
463 "dump: too many architecture defined sections");
469 * String table is the last section since strings are added via
470 * arch_sections_write_hdr().
472 prepare_elf_section_hdr_string(s
, buff_hdr
);
476 static void write_elf_section_headers(DumpState
*s
, Error
**errp
)
478 size_t sizeof_shdr
= dump_is_64bit(s
) ? sizeof(Elf64_Shdr
) : sizeof(Elf32_Shdr
);
481 if (!prepare_elf_section_hdrs(s
, errp
)) {
485 ret
= fd_write_vmcore(s
->elf_section_hdrs
, s
->shdr_num
* sizeof_shdr
, s
);
487 error_setg_errno(errp
, -ret
, "dump: failed to write section headers");
490 g_free(s
->elf_section_hdrs
);
493 static void write_elf_sections(DumpState
*s
, Error
**errp
)
497 if (s
->elf_section_data_size
) {
498 /* Write architecture section data */
499 ret
= fd_write_vmcore(s
->elf_section_data
,
500 s
->elf_section_data_size
, s
);
502 error_setg_errno(errp
, -ret
,
503 "dump: failed to write architecture section data");
508 /* Write string table */
509 ret
= fd_write_vmcore(s
->string_table_buf
->data
,
510 s
->string_table_buf
->len
, s
);
512 error_setg_errno(errp
, -ret
, "dump: failed to write string table data");
516 static void write_data(DumpState
*s
, void *buf
, int length
, Error
**errp
)
520 ret
= fd_write_vmcore(buf
, length
, s
);
522 error_setg_errno(errp
, -ret
, "dump: failed to save memory");
524 s
->written_size
+= length
;
528 /* write the memory to vmcore. 1 page per I/O. */
529 static void write_memory(DumpState
*s
, GuestPhysBlock
*block
, ram_addr_t start
,
530 int64_t size
, Error
**errp
)
535 for (i
= 0; i
< size
/ s
->dump_info
.page_size
; i
++) {
536 write_data(s
, block
->host_addr
+ start
+ i
* s
->dump_info
.page_size
,
537 s
->dump_info
.page_size
, errp
);
543 if ((size
% s
->dump_info
.page_size
) != 0) {
544 write_data(s
, block
->host_addr
+ start
+ i
* s
->dump_info
.page_size
,
545 size
% s
->dump_info
.page_size
, errp
);
552 /* get the memory's offset and size in the vmcore */
553 static void get_offset_range(hwaddr phys_addr
,
554 ram_addr_t mapping_length
,
559 GuestPhysBlock
*block
;
560 hwaddr offset
= s
->memory_offset
;
561 int64_t size_in_block
, start
;
563 /* When the memory is not stored into vmcore, offset will be -1 */
567 if (dump_has_filter(s
)) {
568 if (phys_addr
< s
->filter_area_begin
||
569 phys_addr
>= s
->filter_area_begin
+ s
->filter_area_length
) {
574 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
575 if (dump_has_filter(s
)) {
576 if (block
->target_start
>= s
->filter_area_begin
+ s
->filter_area_length
||
577 block
->target_end
<= s
->filter_area_begin
) {
578 /* This block is out of the range */
582 if (s
->filter_area_begin
<= block
->target_start
) {
583 start
= block
->target_start
;
585 start
= s
->filter_area_begin
;
588 size_in_block
= block
->target_end
- start
;
589 if (s
->filter_area_begin
+ s
->filter_area_length
< block
->target_end
) {
590 size_in_block
-= block
->target_end
- (s
->filter_area_begin
+ s
->filter_area_length
);
593 start
= block
->target_start
;
594 size_in_block
= block
->target_end
- block
->target_start
;
597 if (phys_addr
>= start
&& phys_addr
< start
+ size_in_block
) {
598 *p_offset
= phys_addr
- start
+ offset
;
600 /* The offset range mapped from the vmcore file must not spill over
601 * the GuestPhysBlock, clamp it. The rest of the mapping will be
602 * zero-filled in memory at load time; see
603 * <http://refspecs.linuxbase.org/elf/gabi4+/ch5.pheader.html>.
605 *p_filesz
= phys_addr
+ mapping_length
<= start
+ size_in_block
?
607 size_in_block
- (phys_addr
- start
);
611 offset
+= size_in_block
;
615 static void write_elf_phdr_loads(DumpState
*s
, Error
**errp
)
618 hwaddr offset
, filesz
;
619 MemoryMapping
*memory_mapping
;
620 uint32_t phdr_index
= 1;
622 QTAILQ_FOREACH(memory_mapping
, &s
->list
.head
, next
) {
623 get_offset_range(memory_mapping
->phys_addr
,
624 memory_mapping
->length
,
625 s
, &offset
, &filesz
);
626 if (dump_is_64bit(s
)) {
627 write_elf64_load(s
, memory_mapping
, phdr_index
++, offset
,
630 write_elf32_load(s
, memory_mapping
, phdr_index
++, offset
,
638 if (phdr_index
>= s
->phdr_num
) {
644 static void write_elf_notes(DumpState
*s
, Error
**errp
)
646 if (dump_is_64bit(s
)) {
647 write_elf64_notes(fd_write_vmcore
, s
, errp
);
649 write_elf32_notes(fd_write_vmcore
, s
, errp
);
653 /* write elf header, PT_NOTE and elf note to vmcore. */
654 static void dump_begin(DumpState
*s
, Error
**errp
)
659 * the vmcore's format is:
678 * we only know where the memory is saved after we write elf note into
682 /* write elf header to vmcore */
683 write_elf_header(s
, errp
);
688 /* write section headers to vmcore */
689 write_elf_section_headers(s
, errp
);
694 /* write PT_NOTE to vmcore */
695 write_elf_phdr_note(s
, errp
);
700 /* write all PT_LOADs to vmcore */
701 write_elf_phdr_loads(s
, errp
);
706 /* write notes to vmcore */
707 write_elf_notes(s
, errp
);
710 int64_t dump_filtered_memblock_size(GuestPhysBlock
*block
,
711 int64_t filter_area_start
,
712 int64_t filter_area_length
)
714 int64_t size
, left
, right
;
716 /* No filter, return full size */
717 if (!filter_area_length
) {
718 return block
->target_end
- block
->target_start
;
721 /* calculate the overlapped region. */
722 left
= MAX(filter_area_start
, block
->target_start
);
723 right
= MIN(filter_area_start
+ filter_area_length
, block
->target_end
);
725 size
= size
> 0 ? size
: 0;
730 int64_t dump_filtered_memblock_start(GuestPhysBlock
*block
,
731 int64_t filter_area_start
,
732 int64_t filter_area_length
)
734 if (filter_area_length
) {
735 /* return -1 if the block is not within filter area */
736 if (block
->target_start
>= filter_area_start
+ filter_area_length
||
737 block
->target_end
<= filter_area_start
) {
741 if (filter_area_start
> block
->target_start
) {
742 return filter_area_start
- block
->target_start
;
749 /* write all memory to vmcore */
750 static void dump_iterate(DumpState
*s
, Error
**errp
)
753 GuestPhysBlock
*block
;
754 int64_t memblock_size
, memblock_start
;
756 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
757 memblock_start
= dump_filtered_memblock_start(block
, s
->filter_area_begin
, s
->filter_area_length
);
758 if (memblock_start
== -1) {
762 memblock_size
= dump_filtered_memblock_size(block
, s
->filter_area_begin
, s
->filter_area_length
);
764 /* Write the memory to file */
765 write_memory(s
, block
, memblock_start
, memblock_size
, errp
);
772 static void dump_end(DumpState
*s
, Error
**errp
)
776 if (s
->elf_section_data_size
) {
777 s
->elf_section_data
= g_malloc0(s
->elf_section_data_size
);
780 /* Adds the architecture defined section data to s->elf_section_data */
781 if (s
->dump_info
.arch_sections_write_fn
&&
782 s
->elf_section_data_size
) {
783 rc
= s
->dump_info
.arch_sections_write_fn(s
, s
->elf_section_data
);
785 error_setg_errno(errp
, rc
,
786 "dump: failed to get arch section data");
787 g_free(s
->elf_section_data
);
792 /* write sections to vmcore */
793 write_elf_sections(s
, errp
);
796 static void create_vmcore(DumpState
*s
, Error
**errp
)
805 /* Iterate over memory and dump it to file */
806 dump_iterate(s
, errp
);
811 /* Write the section data */
815 static int write_start_flat_header(int fd
)
817 MakedumpfileHeader
*mh
;
820 QEMU_BUILD_BUG_ON(sizeof *mh
> MAX_SIZE_MDF_HEADER
);
821 mh
= g_malloc0(MAX_SIZE_MDF_HEADER
);
823 memcpy(mh
->signature
, MAKEDUMPFILE_SIGNATURE
,
824 MIN(sizeof mh
->signature
, sizeof MAKEDUMPFILE_SIGNATURE
));
826 mh
->type
= cpu_to_be64(TYPE_FLAT_HEADER
);
827 mh
->version
= cpu_to_be64(VERSION_FLAT_HEADER
);
830 written_size
= qemu_write_full(fd
, mh
, MAX_SIZE_MDF_HEADER
);
831 if (written_size
!= MAX_SIZE_MDF_HEADER
) {
839 static int write_end_flat_header(int fd
)
841 MakedumpfileDataHeader mdh
;
843 mdh
.offset
= END_FLAG_FLAT_HEADER
;
844 mdh
.buf_size
= END_FLAG_FLAT_HEADER
;
847 written_size
= qemu_write_full(fd
, &mdh
, sizeof(mdh
));
848 if (written_size
!= sizeof(mdh
)) {
855 static int write_buffer(int fd
, off_t offset
, const void *buf
, size_t size
)
858 MakedumpfileDataHeader mdh
;
860 mdh
.offset
= cpu_to_be64(offset
);
861 mdh
.buf_size
= cpu_to_be64(size
);
863 written_size
= qemu_write_full(fd
, &mdh
, sizeof(mdh
));
864 if (written_size
!= sizeof(mdh
)) {
868 written_size
= qemu_write_full(fd
, buf
, size
);
869 if (written_size
!= size
) {
876 static int buf_write_note(const void *buf
, size_t size
, void *opaque
)
878 DumpState
*s
= opaque
;
880 /* note_buf is not enough */
881 if (s
->note_buf_offset
+ size
> s
->note_size
) {
885 memcpy(s
->note_buf
+ s
->note_buf_offset
, buf
, size
);
887 s
->note_buf_offset
+= size
;
893 * This function retrieves various sizes from an elf header.
895 * @note has to be a valid ELF note. The return sizes are unmodified
896 * (not padded or rounded up to be multiple of 4).
898 static void get_note_sizes(DumpState
*s
, const void *note
,
899 uint64_t *note_head_size
,
903 uint64_t note_head_sz
;
907 if (dump_is_64bit(s
)) {
908 const Elf64_Nhdr
*hdr
= note
;
909 note_head_sz
= sizeof(Elf64_Nhdr
);
910 name_sz
= tswap64(hdr
->n_namesz
);
911 desc_sz
= tswap64(hdr
->n_descsz
);
913 const Elf32_Nhdr
*hdr
= note
;
914 note_head_sz
= sizeof(Elf32_Nhdr
);
915 name_sz
= tswap32(hdr
->n_namesz
);
916 desc_sz
= tswap32(hdr
->n_descsz
);
919 if (note_head_size
) {
920 *note_head_size
= note_head_sz
;
923 *name_size
= name_sz
;
926 *desc_size
= desc_sz
;
930 static bool note_name_equal(DumpState
*s
,
931 const uint8_t *note
, const char *name
)
933 int len
= strlen(name
) + 1;
934 uint64_t head_size
, name_size
;
936 get_note_sizes(s
, note
, &head_size
, &name_size
, NULL
);
937 head_size
= ROUND_UP(head_size
, 4);
939 return name_size
== len
&& memcmp(note
+ head_size
, name
, len
) == 0;
942 /* write common header, sub header and elf note to vmcore */
943 static void create_header32(DumpState
*s
, Error
**errp
)
946 DiskDumpHeader32
*dh
= NULL
;
947 KdumpSubHeader32
*kh
= NULL
;
950 uint32_t sub_hdr_size
;
951 uint32_t bitmap_blocks
;
953 uint64_t offset_note
;
955 /* write common header, the version of kdump-compressed format is 6th */
956 size
= sizeof(DiskDumpHeader32
);
957 dh
= g_malloc0(size
);
959 memcpy(dh
->signature
, KDUMP_SIGNATURE
, SIG_LEN
);
960 dh
->header_version
= cpu_to_dump32(s
, 6);
961 block_size
= s
->dump_info
.page_size
;
962 dh
->block_size
= cpu_to_dump32(s
, block_size
);
963 sub_hdr_size
= sizeof(struct KdumpSubHeader32
) + s
->note_size
;
964 sub_hdr_size
= DIV_ROUND_UP(sub_hdr_size
, block_size
);
965 dh
->sub_hdr_size
= cpu_to_dump32(s
, sub_hdr_size
);
966 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
967 dh
->max_mapnr
= cpu_to_dump32(s
, MIN(s
->max_mapnr
, UINT_MAX
));
968 dh
->nr_cpus
= cpu_to_dump32(s
, s
->nr_cpus
);
969 bitmap_blocks
= DIV_ROUND_UP(s
->len_dump_bitmap
, block_size
) * 2;
970 dh
->bitmap_blocks
= cpu_to_dump32(s
, bitmap_blocks
);
971 strncpy(dh
->utsname
.machine
, ELF_MACHINE_UNAME
, sizeof(dh
->utsname
.machine
));
973 if (s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) {
974 status
|= DUMP_DH_COMPRESSED_ZLIB
;
977 if (s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) {
978 status
|= DUMP_DH_COMPRESSED_LZO
;
982 if (s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) {
983 status
|= DUMP_DH_COMPRESSED_SNAPPY
;
986 dh
->status
= cpu_to_dump32(s
, status
);
988 if (write_buffer(s
->fd
, 0, dh
, size
) < 0) {
989 error_setg(errp
, "dump: failed to write disk dump header");
993 /* write sub header */
994 size
= sizeof(KdumpSubHeader32
);
995 kh
= g_malloc0(size
);
997 /* 64bit max_mapnr_64 */
998 kh
->max_mapnr_64
= cpu_to_dump64(s
, s
->max_mapnr
);
999 kh
->phys_base
= cpu_to_dump32(s
, s
->dump_info
.phys_base
);
1000 kh
->dump_level
= cpu_to_dump32(s
, DUMP_LEVEL
);
1002 offset_note
= DISKDUMP_HEADER_BLOCKS
* block_size
+ size
;
1003 if (s
->guest_note
&&
1004 note_name_equal(s
, s
->guest_note
, "VMCOREINFO")) {
1005 uint64_t hsize
, name_size
, size_vmcoreinfo_desc
, offset_vmcoreinfo
;
1007 get_note_sizes(s
, s
->guest_note
,
1008 &hsize
, &name_size
, &size_vmcoreinfo_desc
);
1009 offset_vmcoreinfo
= offset_note
+ s
->note_size
- s
->guest_note_size
+
1010 (DIV_ROUND_UP(hsize
, 4) + DIV_ROUND_UP(name_size
, 4)) * 4;
1011 kh
->offset_vmcoreinfo
= cpu_to_dump64(s
, offset_vmcoreinfo
);
1012 kh
->size_vmcoreinfo
= cpu_to_dump32(s
, size_vmcoreinfo_desc
);
1015 kh
->offset_note
= cpu_to_dump64(s
, offset_note
);
1016 kh
->note_size
= cpu_to_dump32(s
, s
->note_size
);
1018 if (write_buffer(s
->fd
, DISKDUMP_HEADER_BLOCKS
*
1019 block_size
, kh
, size
) < 0) {
1020 error_setg(errp
, "dump: failed to write kdump sub header");
1025 s
->note_buf
= g_malloc0(s
->note_size
);
1026 s
->note_buf_offset
= 0;
1028 /* use s->note_buf to store notes temporarily */
1029 write_elf32_notes(buf_write_note
, s
, errp
);
1033 if (write_buffer(s
->fd
, offset_note
, s
->note_buf
,
1034 s
->note_size
) < 0) {
1035 error_setg(errp
, "dump: failed to write notes");
1039 /* get offset of dump_bitmap */
1040 s
->offset_dump_bitmap
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
) *
1043 /* get offset of page */
1044 s
->offset_page
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
+ bitmap_blocks
) *
1050 g_free(s
->note_buf
);
1053 /* write common header, sub header and elf note to vmcore */
1054 static void create_header64(DumpState
*s
, Error
**errp
)
1057 DiskDumpHeader64
*dh
= NULL
;
1058 KdumpSubHeader64
*kh
= NULL
;
1060 uint32_t block_size
;
1061 uint32_t sub_hdr_size
;
1062 uint32_t bitmap_blocks
;
1063 uint32_t status
= 0;
1064 uint64_t offset_note
;
1066 /* write common header, the version of kdump-compressed format is 6th */
1067 size
= sizeof(DiskDumpHeader64
);
1068 dh
= g_malloc0(size
);
1070 memcpy(dh
->signature
, KDUMP_SIGNATURE
, SIG_LEN
);
1071 dh
->header_version
= cpu_to_dump32(s
, 6);
1072 block_size
= s
->dump_info
.page_size
;
1073 dh
->block_size
= cpu_to_dump32(s
, block_size
);
1074 sub_hdr_size
= sizeof(struct KdumpSubHeader64
) + s
->note_size
;
1075 sub_hdr_size
= DIV_ROUND_UP(sub_hdr_size
, block_size
);
1076 dh
->sub_hdr_size
= cpu_to_dump32(s
, sub_hdr_size
);
1077 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
1078 dh
->max_mapnr
= cpu_to_dump32(s
, MIN(s
->max_mapnr
, UINT_MAX
));
1079 dh
->nr_cpus
= cpu_to_dump32(s
, s
->nr_cpus
);
1080 bitmap_blocks
= DIV_ROUND_UP(s
->len_dump_bitmap
, block_size
) * 2;
1081 dh
->bitmap_blocks
= cpu_to_dump32(s
, bitmap_blocks
);
1082 strncpy(dh
->utsname
.machine
, ELF_MACHINE_UNAME
, sizeof(dh
->utsname
.machine
));
1084 if (s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) {
1085 status
|= DUMP_DH_COMPRESSED_ZLIB
;
1088 if (s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) {
1089 status
|= DUMP_DH_COMPRESSED_LZO
;
1092 #ifdef CONFIG_SNAPPY
1093 if (s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) {
1094 status
|= DUMP_DH_COMPRESSED_SNAPPY
;
1097 dh
->status
= cpu_to_dump32(s
, status
);
1099 if (write_buffer(s
->fd
, 0, dh
, size
) < 0) {
1100 error_setg(errp
, "dump: failed to write disk dump header");
1104 /* write sub header */
1105 size
= sizeof(KdumpSubHeader64
);
1106 kh
= g_malloc0(size
);
1108 /* 64bit max_mapnr_64 */
1109 kh
->max_mapnr_64
= cpu_to_dump64(s
, s
->max_mapnr
);
1110 kh
->phys_base
= cpu_to_dump64(s
, s
->dump_info
.phys_base
);
1111 kh
->dump_level
= cpu_to_dump32(s
, DUMP_LEVEL
);
1113 offset_note
= DISKDUMP_HEADER_BLOCKS
* block_size
+ size
;
1114 if (s
->guest_note
&&
1115 note_name_equal(s
, s
->guest_note
, "VMCOREINFO")) {
1116 uint64_t hsize
, name_size
, size_vmcoreinfo_desc
, offset_vmcoreinfo
;
1118 get_note_sizes(s
, s
->guest_note
,
1119 &hsize
, &name_size
, &size_vmcoreinfo_desc
);
1120 offset_vmcoreinfo
= offset_note
+ s
->note_size
- s
->guest_note_size
+
1121 (DIV_ROUND_UP(hsize
, 4) + DIV_ROUND_UP(name_size
, 4)) * 4;
1122 kh
->offset_vmcoreinfo
= cpu_to_dump64(s
, offset_vmcoreinfo
);
1123 kh
->size_vmcoreinfo
= cpu_to_dump64(s
, size_vmcoreinfo_desc
);
1126 kh
->offset_note
= cpu_to_dump64(s
, offset_note
);
1127 kh
->note_size
= cpu_to_dump64(s
, s
->note_size
);
1129 if (write_buffer(s
->fd
, DISKDUMP_HEADER_BLOCKS
*
1130 block_size
, kh
, size
) < 0) {
1131 error_setg(errp
, "dump: failed to write kdump sub header");
1136 s
->note_buf
= g_malloc0(s
->note_size
);
1137 s
->note_buf_offset
= 0;
1139 /* use s->note_buf to store notes temporarily */
1140 write_elf64_notes(buf_write_note
, s
, errp
);
1145 if (write_buffer(s
->fd
, offset_note
, s
->note_buf
,
1146 s
->note_size
) < 0) {
1147 error_setg(errp
, "dump: failed to write notes");
1151 /* get offset of dump_bitmap */
1152 s
->offset_dump_bitmap
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
) *
1155 /* get offset of page */
1156 s
->offset_page
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
+ bitmap_blocks
) *
1162 g_free(s
->note_buf
);
1165 static void write_dump_header(DumpState
*s
, Error
**errp
)
1167 if (dump_is_64bit(s
)) {
1168 create_header64(s
, errp
);
1170 create_header32(s
, errp
);
1174 static size_t dump_bitmap_get_bufsize(DumpState
*s
)
1176 return s
->dump_info
.page_size
;
1180 * set dump_bitmap sequencely. the bit before last_pfn is not allowed to be
1181 * rewritten, so if need to set the first bit, set last_pfn and pfn to 0.
1182 * set_dump_bitmap will always leave the recently set bit un-sync. And setting
1183 * (last bit + sizeof(buf) * 8) to 0 will do flushing the content in buf into
1184 * vmcore, ie. synchronizing un-sync bit into vmcore.
1186 static int set_dump_bitmap(uint64_t last_pfn
, uint64_t pfn
, bool value
,
1187 uint8_t *buf
, DumpState
*s
)
1189 off_t old_offset
, new_offset
;
1190 off_t offset_bitmap1
, offset_bitmap2
;
1192 size_t bitmap_bufsize
= dump_bitmap_get_bufsize(s
);
1193 size_t bits_per_buf
= bitmap_bufsize
* CHAR_BIT
;
1195 /* should not set the previous place */
1196 assert(last_pfn
<= pfn
);
1199 * if the bit needed to be set is not cached in buf, flush the data in buf
1200 * to vmcore firstly.
1201 * making new_offset be bigger than old_offset can also sync remained data
1204 old_offset
= bitmap_bufsize
* (last_pfn
/ bits_per_buf
);
1205 new_offset
= bitmap_bufsize
* (pfn
/ bits_per_buf
);
1207 while (old_offset
< new_offset
) {
1208 /* calculate the offset and write dump_bitmap */
1209 offset_bitmap1
= s
->offset_dump_bitmap
+ old_offset
;
1210 if (write_buffer(s
->fd
, offset_bitmap1
, buf
,
1211 bitmap_bufsize
) < 0) {
1215 /* dump level 1 is chosen, so 1st and 2nd bitmap are same */
1216 offset_bitmap2
= s
->offset_dump_bitmap
+ s
->len_dump_bitmap
+
1218 if (write_buffer(s
->fd
, offset_bitmap2
, buf
,
1219 bitmap_bufsize
) < 0) {
1223 memset(buf
, 0, bitmap_bufsize
);
1224 old_offset
+= bitmap_bufsize
;
1227 /* get the exact place of the bit in the buf, and set it */
1228 byte
= (pfn
% bits_per_buf
) / CHAR_BIT
;
1229 bit
= (pfn
% bits_per_buf
) % CHAR_BIT
;
1231 buf
[byte
] |= 1u << bit
;
1233 buf
[byte
] &= ~(1u << bit
);
1239 static uint64_t dump_paddr_to_pfn(DumpState
*s
, uint64_t addr
)
1241 int target_page_shift
= ctz32(s
->dump_info
.page_size
);
1243 return (addr
>> target_page_shift
) - ARCH_PFN_OFFSET
;
1246 static uint64_t dump_pfn_to_paddr(DumpState
*s
, uint64_t pfn
)
1248 int target_page_shift
= ctz32(s
->dump_info
.page_size
);
1250 return (pfn
+ ARCH_PFN_OFFSET
) << target_page_shift
;
1254 * Return the page frame number and the page content in *bufptr. bufptr can be
1255 * NULL. If not NULL, *bufptr must contains a target page size of pre-allocated
1256 * memory. This is not necessarily the memory returned.
1258 static bool get_next_page(GuestPhysBlock
**blockptr
, uint64_t *pfnptr
,
1259 uint8_t **bufptr
, DumpState
*s
)
1261 GuestPhysBlock
*block
= *blockptr
;
1262 uint32_t page_size
= s
->dump_info
.page_size
;
1263 uint8_t *buf
= NULL
, *hbuf
;
1266 /* block == NULL means the start of the iteration */
1268 block
= QTAILQ_FIRST(&s
->guest_phys_blocks
.head
);
1270 addr
= block
->target_start
;
1271 *pfnptr
= dump_paddr_to_pfn(s
, addr
);
1274 addr
= dump_pfn_to_paddr(s
, *pfnptr
);
1276 assert(block
!= NULL
);
1279 if (addr
>= block
->target_start
&& addr
< block
->target_end
) {
1280 size_t n
= MIN(block
->target_end
- addr
, page_size
- addr
% page_size
);
1281 hbuf
= block
->host_addr
+ (addr
- block
->target_start
);
1283 if (n
== page_size
) {
1284 /* this is a whole target page, go for it */
1285 assert(addr
% page_size
== 0);
1288 } else if (bufptr
) {
1291 memset(buf
, 0, page_size
);
1297 memcpy(buf
+ addr
% page_size
, hbuf
, n
);
1299 if (addr
% page_size
== 0) {
1300 /* we filled up the page */
1304 /* the next page is in the next block */
1305 *blockptr
= block
= QTAILQ_NEXT(block
, next
);
1310 addr
= block
->target_start
;
1311 /* are we still in the same page? */
1312 if (dump_paddr_to_pfn(s
, addr
) != *pfnptr
) {
1314 /* no, but we already filled something earlier, return it */
1317 /* else continue from there */
1318 *pfnptr
= dump_paddr_to_pfn(s
, addr
);
1331 static void write_dump_bitmap(DumpState
*s
, Error
**errp
)
1334 uint64_t last_pfn
, pfn
;
1335 void *dump_bitmap_buf
;
1336 size_t num_dumpable
;
1337 GuestPhysBlock
*block_iter
= NULL
;
1338 size_t bitmap_bufsize
= dump_bitmap_get_bufsize(s
);
1339 size_t bits_per_buf
= bitmap_bufsize
* CHAR_BIT
;
1341 /* dump_bitmap_buf is used to store dump_bitmap temporarily */
1342 dump_bitmap_buf
= g_malloc0(bitmap_bufsize
);
1348 * exam memory page by page, and set the bit in dump_bitmap corresponded
1349 * to the existing page.
1351 while (get_next_page(&block_iter
, &pfn
, NULL
, s
)) {
1352 ret
= set_dump_bitmap(last_pfn
, pfn
, true, dump_bitmap_buf
, s
);
1354 error_setg(errp
, "dump: failed to set dump_bitmap");
1363 * set_dump_bitmap will always leave the recently set bit un-sync. Here we
1364 * set the remaining bits from last_pfn to the end of the bitmap buffer to
1365 * 0. With those set, the un-sync bit will be synchronized into the vmcore.
1367 if (num_dumpable
> 0) {
1368 ret
= set_dump_bitmap(last_pfn
, last_pfn
+ bits_per_buf
, false,
1369 dump_bitmap_buf
, s
);
1371 error_setg(errp
, "dump: failed to sync dump_bitmap");
1376 /* number of dumpable pages that will be dumped later */
1377 s
->num_dumpable
= num_dumpable
;
1380 g_free(dump_bitmap_buf
);
1383 static void prepare_data_cache(DataCache
*data_cache
, DumpState
*s
,
1386 data_cache
->fd
= s
->fd
;
1387 data_cache
->data_size
= 0;
1388 data_cache
->buf_size
= 4 * dump_bitmap_get_bufsize(s
);
1389 data_cache
->buf
= g_malloc0(data_cache
->buf_size
);
1390 data_cache
->offset
= offset
;
1393 static int write_cache(DataCache
*dc
, const void *buf
, size_t size
,
1397 * dc->buf_size should not be less than size, otherwise dc will never be
1400 assert(size
<= dc
->buf_size
);
1403 * if flag_sync is set, synchronize data in dc->buf into vmcore.
1404 * otherwise check if the space is enough for caching data in buf, if not,
1405 * write the data in dc->buf to dc->fd and reset dc->buf
1407 if ((!flag_sync
&& dc
->data_size
+ size
> dc
->buf_size
) ||
1408 (flag_sync
&& dc
->data_size
> 0)) {
1409 if (write_buffer(dc
->fd
, dc
->offset
, dc
->buf
, dc
->data_size
) < 0) {
1413 dc
->offset
+= dc
->data_size
;
1418 memcpy(dc
->buf
+ dc
->data_size
, buf
, size
);
1419 dc
->data_size
+= size
;
1425 static void free_data_cache(DataCache
*data_cache
)
1427 g_free(data_cache
->buf
);
1430 static size_t get_len_buf_out(size_t page_size
, uint32_t flag_compress
)
1432 switch (flag_compress
) {
1433 case DUMP_DH_COMPRESSED_ZLIB
:
1434 return compressBound(page_size
);
1436 case DUMP_DH_COMPRESSED_LZO
:
1438 * LZO will expand incompressible data by a little amount. Please check
1439 * the following URL to see the expansion calculation:
1440 * http://www.oberhumer.com/opensource/lzo/lzofaq.php
1442 return page_size
+ page_size
/ 16 + 64 + 3;
1444 #ifdef CONFIG_SNAPPY
1445 case DUMP_DH_COMPRESSED_SNAPPY
:
1446 return snappy_max_compressed_length(page_size
);
1452 static void write_dump_pages(DumpState
*s
, Error
**errp
)
1455 DataCache page_desc
, page_data
;
1456 size_t len_buf_out
, size_out
;
1458 lzo_bytep wrkmem
= NULL
;
1460 uint8_t *buf_out
= NULL
;
1461 off_t offset_desc
, offset_data
;
1462 PageDescriptor pd
, pd_zero
;
1464 GuestPhysBlock
*block_iter
= NULL
;
1466 g_autofree
uint8_t *page
= NULL
;
1468 /* get offset of page_desc and page_data in dump file */
1469 offset_desc
= s
->offset_page
;
1470 offset_data
= offset_desc
+ sizeof(PageDescriptor
) * s
->num_dumpable
;
1472 prepare_data_cache(&page_desc
, s
, offset_desc
);
1473 prepare_data_cache(&page_data
, s
, offset_data
);
1475 /* prepare buffer to store compressed data */
1476 len_buf_out
= get_len_buf_out(s
->dump_info
.page_size
, s
->flag_compress
);
1477 assert(len_buf_out
!= 0);
1480 wrkmem
= g_malloc(LZO1X_1_MEM_COMPRESS
);
1483 buf_out
= g_malloc(len_buf_out
);
1486 * init zero page's page_desc and page_data, because every zero page
1487 * uses the same page_data
1489 pd_zero
.size
= cpu_to_dump32(s
, s
->dump_info
.page_size
);
1490 pd_zero
.flags
= cpu_to_dump32(s
, 0);
1491 pd_zero
.offset
= cpu_to_dump64(s
, offset_data
);
1492 pd_zero
.page_flags
= cpu_to_dump64(s
, 0);
1493 buf
= g_malloc0(s
->dump_info
.page_size
);
1494 ret
= write_cache(&page_data
, buf
, s
->dump_info
.page_size
, false);
1497 error_setg(errp
, "dump: failed to write page data (zero page)");
1501 offset_data
+= s
->dump_info
.page_size
;
1502 page
= g_malloc(s
->dump_info
.page_size
);
1505 * dump memory to vmcore page by page. zero page will all be resided in the
1506 * first page of page section
1508 for (buf
= page
; get_next_page(&block_iter
, &pfn_iter
, &buf
, s
); buf
= page
) {
1509 /* check zero page */
1510 if (buffer_is_zero(buf
, s
->dump_info
.page_size
)) {
1511 ret
= write_cache(&page_desc
, &pd_zero
, sizeof(PageDescriptor
),
1514 error_setg(errp
, "dump: failed to write page desc");
1519 * not zero page, then:
1520 * 1. compress the page
1521 * 2. write the compressed page into the cache of page_data
1522 * 3. get page desc of the compressed page and write it into the
1523 * cache of page_desc
1525 * only one compression format will be used here, for
1526 * s->flag_compress is set. But when compression fails to work,
1527 * we fall back to save in plaintext.
1529 size_out
= len_buf_out
;
1530 if ((s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) &&
1531 (compress2(buf_out
, (uLongf
*)&size_out
, buf
,
1532 s
->dump_info
.page_size
, Z_BEST_SPEED
) == Z_OK
) &&
1533 (size_out
< s
->dump_info
.page_size
)) {
1534 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_ZLIB
);
1535 pd
.size
= cpu_to_dump32(s
, size_out
);
1537 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1539 error_setg(errp
, "dump: failed to write page data");
1543 } else if ((s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) &&
1544 (lzo1x_1_compress(buf
, s
->dump_info
.page_size
, buf_out
,
1545 (lzo_uint
*)&size_out
, wrkmem
) == LZO_E_OK
) &&
1546 (size_out
< s
->dump_info
.page_size
)) {
1547 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_LZO
);
1548 pd
.size
= cpu_to_dump32(s
, size_out
);
1550 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1552 error_setg(errp
, "dump: failed to write page data");
1556 #ifdef CONFIG_SNAPPY
1557 } else if ((s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) &&
1558 (snappy_compress((char *)buf
, s
->dump_info
.page_size
,
1559 (char *)buf_out
, &size_out
) == SNAPPY_OK
) &&
1560 (size_out
< s
->dump_info
.page_size
)) {
1561 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_SNAPPY
);
1562 pd
.size
= cpu_to_dump32(s
, size_out
);
1564 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1566 error_setg(errp
, "dump: failed to write page data");
1572 * fall back to save in plaintext, size_out should be
1573 * assigned the target's page size
1575 pd
.flags
= cpu_to_dump32(s
, 0);
1576 size_out
= s
->dump_info
.page_size
;
1577 pd
.size
= cpu_to_dump32(s
, size_out
);
1579 ret
= write_cache(&page_data
, buf
,
1580 s
->dump_info
.page_size
, false);
1582 error_setg(errp
, "dump: failed to write page data");
1587 /* get and write page desc here */
1588 pd
.page_flags
= cpu_to_dump64(s
, 0);
1589 pd
.offset
= cpu_to_dump64(s
, offset_data
);
1590 offset_data
+= size_out
;
1592 ret
= write_cache(&page_desc
, &pd
, sizeof(PageDescriptor
), false);
1594 error_setg(errp
, "dump: failed to write page desc");
1598 s
->written_size
+= s
->dump_info
.page_size
;
1601 ret
= write_cache(&page_desc
, NULL
, 0, true);
1603 error_setg(errp
, "dump: failed to sync cache for page_desc");
1606 ret
= write_cache(&page_data
, NULL
, 0, true);
1608 error_setg(errp
, "dump: failed to sync cache for page_data");
1613 free_data_cache(&page_desc
);
1614 free_data_cache(&page_data
);
1623 static void create_kdump_vmcore(DumpState
*s
, Error
**errp
)
1629 * the kdump-compressed format is:
1631 * +------------------------------------------+ 0x0
1632 * | main header (struct disk_dump_header) |
1633 * |------------------------------------------+ block 1
1634 * | sub header (struct kdump_sub_header) |
1635 * |------------------------------------------+ block 2
1636 * | 1st-dump_bitmap |
1637 * |------------------------------------------+ block 2 + X blocks
1638 * | 2nd-dump_bitmap | (aligned by block)
1639 * |------------------------------------------+ block 2 + 2 * X blocks
1640 * | page desc for pfn 0 (struct page_desc) | (aligned by block)
1641 * | page desc for pfn 1 (struct page_desc) |
1643 * |------------------------------------------| (not aligned by block)
1644 * | page data (pfn 0) |
1645 * | page data (pfn 1) |
1647 * +------------------------------------------+
1650 ret
= write_start_flat_header(s
->fd
);
1652 error_setg(errp
, "dump: failed to write start flat header");
1656 write_dump_header(s
, errp
);
1661 write_dump_bitmap(s
, errp
);
1666 write_dump_pages(s
, errp
);
1671 ret
= write_end_flat_header(s
->fd
);
1673 error_setg(errp
, "dump: failed to write end flat header");
1678 static int validate_start_block(DumpState
*s
)
1680 GuestPhysBlock
*block
;
1682 if (!dump_has_filter(s
)) {
1686 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
1687 /* This block is out of the range */
1688 if (block
->target_start
>= s
->filter_area_begin
+ s
->filter_area_length
||
1689 block
->target_end
<= s
->filter_area_begin
) {
1698 static void get_max_mapnr(DumpState
*s
)
1700 GuestPhysBlock
*last_block
;
1702 last_block
= QTAILQ_LAST(&s
->guest_phys_blocks
.head
);
1703 s
->max_mapnr
= dump_paddr_to_pfn(s
, last_block
->target_end
);
1706 static DumpState dump_state_global
= { .status
= DUMP_STATUS_NONE
};
1708 static void dump_state_prepare(DumpState
*s
)
1710 /* zero the struct, setting status to active */
1711 *s
= (DumpState
) { .status
= DUMP_STATUS_ACTIVE
};
1714 bool qemu_system_dump_in_progress(void)
1716 DumpState
*state
= &dump_state_global
;
1717 return (qatomic_read(&state
->status
) == DUMP_STATUS_ACTIVE
);
1721 * calculate total size of memory to be dumped (taking filter into
1724 static int64_t dump_calculate_size(DumpState
*s
)
1726 GuestPhysBlock
*block
;
1729 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
1730 total
+= dump_filtered_memblock_size(block
,
1731 s
->filter_area_begin
,
1732 s
->filter_area_length
);
1738 static void vmcoreinfo_update_phys_base(DumpState
*s
)
1740 uint64_t size
, note_head_size
, name_size
, phys_base
;
1745 if (!note_name_equal(s
, s
->guest_note
, "VMCOREINFO")) {
1749 get_note_sizes(s
, s
->guest_note
, ¬e_head_size
, &name_size
, &size
);
1750 note_head_size
= ROUND_UP(note_head_size
, 4);
1752 vmci
= s
->guest_note
+ note_head_size
+ ROUND_UP(name_size
, 4);
1753 *(vmci
+ size
) = '\0';
1755 lines
= g_strsplit((char *)vmci
, "\n", -1);
1756 for (i
= 0; lines
[i
]; i
++) {
1757 const char *prefix
= NULL
;
1759 if (s
->dump_info
.d_machine
== EM_X86_64
) {
1760 prefix
= "NUMBER(phys_base)=";
1761 } else if (s
->dump_info
.d_machine
== EM_AARCH64
) {
1762 prefix
= "NUMBER(PHYS_OFFSET)=";
1765 if (prefix
&& g_str_has_prefix(lines
[i
], prefix
)) {
1766 if (qemu_strtou64(lines
[i
] + strlen(prefix
), NULL
, 16,
1768 warn_report("Failed to read %s", prefix
);
1770 s
->dump_info
.phys_base
= phys_base
;
1779 static void dump_init(DumpState
*s
, int fd
, bool has_format
,
1780 DumpGuestMemoryFormat format
, bool paging
, bool has_filter
,
1781 int64_t begin
, int64_t length
, Error
**errp
)
1784 VMCoreInfoState
*vmci
= vmcoreinfo_find();
1789 s
->has_format
= has_format
;
1791 s
->written_size
= 0;
1793 /* kdump-compressed is conflict with paging and filter */
1794 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1795 assert(!paging
&& !has_filter
);
1798 if (runstate_is_running()) {
1799 vm_stop(RUN_STATE_SAVE_VM
);
1805 /* If we use KVM, we should synchronize the registers before we get dump
1806 * info or physmap info.
1808 cpu_synchronize_all_states();
1815 if (has_filter
&& !length
) {
1816 error_setg(errp
, QERR_INVALID_PARAMETER
, "length");
1819 s
->filter_area_begin
= begin
;
1820 s
->filter_area_length
= length
;
1822 /* First index is 0, it's the special null name */
1823 s
->string_table_buf
= g_array_new(FALSE
, TRUE
, 1);
1825 * Allocate the null name, due to the clearing option set to true
1828 g_array_set_size(s
->string_table_buf
, 1);
1830 memory_mapping_list_init(&s
->list
);
1832 guest_phys_blocks_init(&s
->guest_phys_blocks
);
1833 guest_phys_blocks_append(&s
->guest_phys_blocks
);
1834 s
->total_size
= dump_calculate_size(s
);
1835 #ifdef DEBUG_DUMP_GUEST_MEMORY
1836 fprintf(stderr
, "DUMP: total memory to dump: %lu\n", s
->total_size
);
1839 /* it does not make sense to dump non-existent memory */
1840 if (!s
->total_size
) {
1841 error_setg(errp
, "dump: no guest memory to dump");
1845 /* Is the filter filtering everything? */
1846 if (validate_start_block(s
) == -1) {
1847 error_setg(errp
, QERR_INVALID_PARAMETER
, "begin");
1851 /* get dump info: endian, class and architecture.
1852 * If the target architecture is not supported, cpu_get_dump_info() will
1855 ret
= cpu_get_dump_info(&s
->dump_info
, &s
->guest_phys_blocks
);
1857 error_setg(errp
, QERR_UNSUPPORTED
);
1861 if (!s
->dump_info
.page_size
) {
1862 s
->dump_info
.page_size
= TARGET_PAGE_SIZE
;
1865 s
->note_size
= cpu_get_note_size(s
->dump_info
.d_class
,
1866 s
->dump_info
.d_machine
, nr_cpus
);
1867 if (s
->note_size
< 0) {
1868 error_setg(errp
, QERR_UNSUPPORTED
);
1873 * The goal of this block is to (a) update the previously guessed
1874 * phys_base, (b) copy the guest note out of the guest.
1875 * Failure to do so is not fatal for dumping.
1878 uint64_t addr
, note_head_size
, name_size
, desc_size
;
1882 note_head_size
= dump_is_64bit(s
) ?
1883 sizeof(Elf64_Nhdr
) : sizeof(Elf32_Nhdr
);
1885 format
= le16_to_cpu(vmci
->vmcoreinfo
.guest_format
);
1886 size
= le32_to_cpu(vmci
->vmcoreinfo
.size
);
1887 addr
= le64_to_cpu(vmci
->vmcoreinfo
.paddr
);
1888 if (!vmci
->has_vmcoreinfo
) {
1889 warn_report("guest note is not present");
1890 } else if (size
< note_head_size
|| size
> MAX_GUEST_NOTE_SIZE
) {
1891 warn_report("guest note size is invalid: %" PRIu32
, size
);
1892 } else if (format
!= FW_CFG_VMCOREINFO_FORMAT_ELF
) {
1893 warn_report("guest note format is unsupported: %" PRIu16
, format
);
1895 s
->guest_note
= g_malloc(size
+ 1); /* +1 for adding \0 */
1896 cpu_physical_memory_read(addr
, s
->guest_note
, size
);
1898 get_note_sizes(s
, s
->guest_note
, NULL
, &name_size
, &desc_size
);
1899 s
->guest_note_size
= ELF_NOTE_SIZE(note_head_size
, name_size
,
1901 if (name_size
> MAX_GUEST_NOTE_SIZE
||
1902 desc_size
> MAX_GUEST_NOTE_SIZE
||
1903 s
->guest_note_size
> size
) {
1904 warn_report("Invalid guest note header");
1905 g_free(s
->guest_note
);
1906 s
->guest_note
= NULL
;
1908 vmcoreinfo_update_phys_base(s
);
1909 s
->note_size
+= s
->guest_note_size
;
1914 /* get memory mapping */
1916 qemu_get_guest_memory_mapping(&s
->list
, &s
->guest_phys_blocks
, errp
);
1921 qemu_get_guest_simple_memory_mapping(&s
->list
, &s
->guest_phys_blocks
);
1924 s
->nr_cpus
= nr_cpus
;
1929 tmp
= DIV_ROUND_UP(DIV_ROUND_UP(s
->max_mapnr
, CHAR_BIT
),
1930 s
->dump_info
.page_size
);
1931 s
->len_dump_bitmap
= tmp
* s
->dump_info
.page_size
;
1933 /* init for kdump-compressed format */
1934 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1936 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
:
1937 s
->flag_compress
= DUMP_DH_COMPRESSED_ZLIB
;
1940 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
:
1942 if (lzo_init() != LZO_E_OK
) {
1943 error_setg(errp
, "failed to initialize the LZO library");
1947 s
->flag_compress
= DUMP_DH_COMPRESSED_LZO
;
1950 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
:
1951 s
->flag_compress
= DUMP_DH_COMPRESSED_SNAPPY
;
1955 s
->flag_compress
= 0;
1961 if (dump_has_filter(s
)) {
1962 memory_mapping_filter(&s
->list
, s
->filter_area_begin
, s
->filter_area_length
);
1966 * The first section header is always a special one in which most
1967 * fields are 0. The section header string table is also always
1973 * Adds the number of architecture sections to shdr_num and sets
1974 * elf_section_data_size so we know the offsets and sizes of all
1977 if (s
->dump_info
.arch_sections_add_fn
) {
1978 s
->dump_info
.arch_sections_add_fn(s
);
1982 * calculate shdr_num so we know the offsets and sizes of all
1984 * Calculate phdr_num
1986 * The absolute maximum amount of phdrs is UINT32_MAX - 1 as
1987 * sh_info is 32 bit. There's special handling once we go over
1988 * UINT16_MAX - 1 but that is handled in the ehdr and section
1991 s
->phdr_num
= 1; /* Reserve PT_NOTE */
1992 if (s
->list
.num
<= UINT32_MAX
- 1) {
1993 s
->phdr_num
+= s
->list
.num
;
1995 s
->phdr_num
= UINT32_MAX
;
1999 * Now that the number of section and program headers is known we
2000 * can calculate the offsets of the headers and data.
2002 if (dump_is_64bit(s
)) {
2003 s
->shdr_offset
= sizeof(Elf64_Ehdr
);
2004 s
->phdr_offset
= s
->shdr_offset
+ sizeof(Elf64_Shdr
) * s
->shdr_num
;
2005 s
->note_offset
= s
->phdr_offset
+ sizeof(Elf64_Phdr
) * s
->phdr_num
;
2007 s
->shdr_offset
= sizeof(Elf32_Ehdr
);
2008 s
->phdr_offset
= s
->shdr_offset
+ sizeof(Elf32_Shdr
) * s
->shdr_num
;
2009 s
->note_offset
= s
->phdr_offset
+ sizeof(Elf32_Phdr
) * s
->phdr_num
;
2011 s
->memory_offset
= s
->note_offset
+ s
->note_size
;
2012 s
->section_offset
= s
->memory_offset
+ s
->total_size
;
2020 /* this operation might be time consuming. */
2021 static void dump_process(DumpState
*s
, Error
**errp
)
2024 DumpQueryResult
*result
= NULL
;
2026 if (s
->has_format
&& s
->format
== DUMP_GUEST_MEMORY_FORMAT_WIN_DMP
) {
2027 #ifdef TARGET_X86_64
2028 create_win_dump(s
, errp
);
2030 } else if (s
->has_format
&& s
->format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
2031 create_kdump_vmcore(s
, errp
);
2033 create_vmcore(s
, errp
);
2036 /* make sure status is written after written_size updates */
2038 qatomic_set(&s
->status
,
2039 (*errp
? DUMP_STATUS_FAILED
: DUMP_STATUS_COMPLETED
));
2041 /* send DUMP_COMPLETED message (unconditionally) */
2042 result
= qmp_query_dump(NULL
);
2043 /* should never fail */
2045 qapi_event_send_dump_completed(result
,
2046 *errp
? error_get_pretty(*errp
) : NULL
);
2047 qapi_free_DumpQueryResult(result
);
2052 static void *dump_thread(void *data
)
2054 DumpState
*s
= (DumpState
*)data
;
2055 dump_process(s
, NULL
);
2059 DumpQueryResult
*qmp_query_dump(Error
**errp
)
2061 DumpQueryResult
*result
= g_new(DumpQueryResult
, 1);
2062 DumpState
*state
= &dump_state_global
;
2063 result
->status
= qatomic_read(&state
->status
);
2064 /* make sure we are reading status and written_size in order */
2066 result
->completed
= state
->written_size
;
2067 result
->total
= state
->total_size
;
2071 void qmp_dump_guest_memory(bool paging
, const char *file
,
2072 bool has_detach
, bool detach
,
2073 bool has_begin
, int64_t begin
, bool has_length
,
2074 int64_t length
, bool has_format
,
2075 DumpGuestMemoryFormat format
, Error
**errp
)
2081 bool detach_p
= false;
2083 if (runstate_check(RUN_STATE_INMIGRATE
)) {
2084 error_setg(errp
, "Dump not allowed during incoming migration.");
2088 /* if there is a dump in background, we should wait until the dump
2090 if (qemu_system_dump_in_progress()) {
2091 error_setg(errp
, "There is a dump in process, please wait.");
2096 * kdump-compressed format need the whole memory dumped, so paging or
2097 * filter is not supported here.
2099 if ((has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) &&
2100 (paging
|| has_begin
|| has_length
)) {
2101 error_setg(errp
, "kdump-compressed format doesn't support paging or "
2105 if (has_begin
&& !has_length
) {
2106 error_setg(errp
, QERR_MISSING_PARAMETER
, "length");
2109 if (!has_begin
&& has_length
) {
2110 error_setg(errp
, QERR_MISSING_PARAMETER
, "begin");
2117 /* check whether lzo/snappy is supported */
2119 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
) {
2120 error_setg(errp
, "kdump-lzo is not available now");
2125 #ifndef CONFIG_SNAPPY
2126 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
) {
2127 error_setg(errp
, "kdump-snappy is not available now");
2132 #ifndef TARGET_X86_64
2133 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_WIN_DMP
) {
2134 error_setg(errp
, "Windows dump is only available for x86-64");
2140 if (strstart(file
, "fd:", &p
)) {
2141 fd
= monitor_get_fd(monitor_cur(), p
, errp
);
2148 if (strstart(file
, "file:", &p
)) {
2149 fd
= qemu_open_old(p
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
, S_IRUSR
);
2151 error_setg_file_open(errp
, errno
, p
);
2157 error_setg(errp
, QERR_INVALID_PARAMETER
, "protocol");
2161 if (!dump_migration_blocker
) {
2162 error_setg(&dump_migration_blocker
,
2163 "Live migration disabled: dump-guest-memory in progress");
2167 * Allows even for -only-migratable, but forbid migration during the
2168 * process of dump guest memory.
2170 if (migrate_add_blocker_internal(dump_migration_blocker
, errp
)) {
2171 /* Remember to release the fd before passing it over to dump state */
2176 s
= &dump_state_global
;
2177 dump_state_prepare(s
);
2179 dump_init(s
, fd
, has_format
, format
, paging
, has_begin
,
2180 begin
, length
, errp
);
2182 qatomic_set(&s
->status
, DUMP_STATUS_FAILED
);
2189 qemu_thread_create(&s
->dump_thread
, "dump_thread", dump_thread
,
2190 s
, QEMU_THREAD_DETACHED
);
2193 dump_process(s
, errp
);
2197 DumpGuestMemoryCapability
*qmp_query_dump_guest_memory_capability(Error
**errp
)
2199 DumpGuestMemoryCapability
*cap
=
2200 g_new0(DumpGuestMemoryCapability
, 1);
2201 DumpGuestMemoryFormatList
**tail
= &cap
->formats
;
2203 /* elf is always available */
2204 QAPI_LIST_APPEND(tail
, DUMP_GUEST_MEMORY_FORMAT_ELF
);
2206 /* kdump-zlib is always available */
2207 QAPI_LIST_APPEND(tail
, DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
);
2209 /* add new item if kdump-lzo is available */
2211 QAPI_LIST_APPEND(tail
, DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
);
2214 /* add new item if kdump-snappy is available */
2215 #ifdef CONFIG_SNAPPY
2216 QAPI_LIST_APPEND(tail
, DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
);
2219 /* Windows dump is available only if target is x86_64 */
2220 #ifdef TARGET_X86_64
2221 QAPI_LIST_APPEND(tail
, DUMP_GUEST_MEMORY_FORMAT_WIN_DMP
);