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 uint16_t cpu_to_dump16(DumpState
*s
, uint16_t val
)
64 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
65 val
= cpu_to_le16(val
);
67 val
= cpu_to_be16(val
);
73 uint32_t cpu_to_dump32(DumpState
*s
, uint32_t val
)
75 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
76 val
= cpu_to_le32(val
);
78 val
= cpu_to_be32(val
);
84 uint64_t cpu_to_dump64(DumpState
*s
, uint64_t val
)
86 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
87 val
= cpu_to_le64(val
);
89 val
= cpu_to_be64(val
);
95 static int dump_cleanup(DumpState
*s
)
97 guest_phys_blocks_free(&s
->guest_phys_blocks
);
98 memory_mapping_list_free(&s
->list
);
100 g_free(s
->guest_note
);
101 s
->guest_note
= NULL
;
104 qemu_mutex_lock_iothread();
108 qemu_mutex_unlock_iothread();
111 migrate_del_blocker(dump_migration_blocker
);
116 static int fd_write_vmcore(const void *buf
, size_t size
, void *opaque
)
118 DumpState
*s
= opaque
;
121 written_size
= qemu_write_full(s
->fd
, buf
, size
);
122 if (written_size
!= size
) {
129 static void write_elf64_header(DumpState
*s
, Error
**errp
)
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
136 uint16_t phnum
= MIN(s
->phdr_num
, PN_XNUM
);
137 Elf64_Ehdr elf_header
;
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
;
145 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
));
149 elf_header
.e_phoff
= cpu_to_dump64(s
, s
->phdr_offset
);
150 elf_header
.e_phentsize
= cpu_to_dump16(s
, sizeof(Elf64_Phdr
));
151 elf_header
.e_phnum
= cpu_to_dump16(s
, phnum
);
153 elf_header
.e_shoff
= cpu_to_dump64(s
, s
->shdr_offset
);
154 elf_header
.e_shentsize
= cpu_to_dump16(s
, sizeof(Elf64_Shdr
));
155 elf_header
.e_shnum
= cpu_to_dump16(s
, s
->shdr_num
);
158 ret
= fd_write_vmcore(&elf_header
, sizeof(elf_header
), s
);
160 error_setg_errno(errp
, -ret
, "dump: failed to write elf header");
164 static void write_elf32_header(DumpState
*s
, Error
**errp
)
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
171 uint16_t phnum
= MIN(s
->phdr_num
, PN_XNUM
);
172 Elf32_Ehdr elf_header
;
175 memset(&elf_header
, 0, sizeof(Elf32_Ehdr
));
176 memcpy(&elf_header
, ELFMAG
, SELFMAG
);
177 elf_header
.e_ident
[EI_CLASS
] = ELFCLASS32
;
178 elf_header
.e_ident
[EI_DATA
] = s
->dump_info
.d_endian
;
179 elf_header
.e_ident
[EI_VERSION
] = EV_CURRENT
;
180 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
));
184 elf_header
.e_phoff
= cpu_to_dump32(s
, s
->phdr_offset
);
185 elf_header
.e_phentsize
= cpu_to_dump16(s
, sizeof(Elf32_Phdr
));
186 elf_header
.e_phnum
= cpu_to_dump16(s
, phnum
);
188 elf_header
.e_shoff
= cpu_to_dump32(s
, s
->shdr_offset
);
189 elf_header
.e_shentsize
= cpu_to_dump16(s
, sizeof(Elf32_Shdr
));
190 elf_header
.e_shnum
= cpu_to_dump16(s
, s
->shdr_num
);
193 ret
= fd_write_vmcore(&elf_header
, sizeof(elf_header
), s
);
195 error_setg_errno(errp
, -ret
, "dump: failed to write elf header");
199 static void write_elf64_load(DumpState
*s
, MemoryMapping
*memory_mapping
,
200 int phdr_index
, hwaddr offset
,
201 hwaddr filesz
, Error
**errp
)
206 memset(&phdr
, 0, sizeof(Elf64_Phdr
));
207 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
);
212 phdr
.p_vaddr
= cpu_to_dump64(s
, memory_mapping
->virt_addr
) ?: phdr
.p_paddr
;
214 assert(memory_mapping
->length
>= filesz
);
216 ret
= fd_write_vmcore(&phdr
, sizeof(Elf64_Phdr
), s
);
218 error_setg_errno(errp
, -ret
,
219 "dump: failed to write program header table");
223 static void write_elf32_load(DumpState
*s
, MemoryMapping
*memory_mapping
,
224 int phdr_index
, hwaddr offset
,
225 hwaddr filesz
, Error
**errp
)
230 memset(&phdr
, 0, sizeof(Elf32_Phdr
));
231 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
);
237 cpu_to_dump32(s
, memory_mapping
->virt_addr
) ?: phdr
.p_paddr
;
239 assert(memory_mapping
->length
>= filesz
);
241 ret
= fd_write_vmcore(&phdr
, sizeof(Elf32_Phdr
), s
);
243 error_setg_errno(errp
, -ret
,
244 "dump: failed to write program header table");
248 static void write_elf64_phdr_note(DumpState
*s
, Elf64_Phdr
*phdr
)
250 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
);
254 phdr
->p_filesz
= cpu_to_dump64(s
, s
->note_size
);
255 phdr
->p_memsz
= cpu_to_dump64(s
, s
->note_size
);
259 static inline int cpu_index(CPUState
*cpu
)
261 return cpu
->cpu_index
+ 1;
264 static void write_guest_note(WriteCoreDumpFunction f
, DumpState
*s
,
270 ret
= f(s
->guest_note
, s
->guest_note_size
, s
);
272 error_setg(errp
, "dump: failed to write guest note");
277 static void write_elf64_notes(WriteCoreDumpFunction f
, DumpState
*s
,
286 ret
= cpu_write_elf64_note(f
, cpu
, id
, s
);
288 error_setg(errp
, "dump: failed to write elf notes");
294 ret
= cpu_write_elf64_qemunote(f
, cpu
, s
);
296 error_setg(errp
, "dump: failed to write CPU status");
301 write_guest_note(f
, s
, errp
);
304 static void write_elf32_phdr_note(DumpState
*s
, Elf32_Phdr
*phdr
)
306 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
);
310 phdr
->p_filesz
= cpu_to_dump32(s
, s
->note_size
);
311 phdr
->p_memsz
= cpu_to_dump32(s
, s
->note_size
);
315 static void write_elf32_notes(WriteCoreDumpFunction f
, DumpState
*s
,
324 ret
= cpu_write_elf32_note(f
, cpu
, id
, s
);
326 error_setg(errp
, "dump: failed to write elf notes");
332 ret
= cpu_write_elf32_qemunote(f
, cpu
, s
);
334 error_setg(errp
, "dump: failed to write CPU status");
339 write_guest_note(f
, s
, errp
);
342 static void write_elf_phdr_note(DumpState
*s
, Error
**errp
)
351 if (dump_is_64bit(s
)) {
352 write_elf64_phdr_note(s
, &phdr64
);
353 size
= sizeof(phdr64
);
356 write_elf32_phdr_note(s
, &phdr32
);
357 size
= sizeof(phdr32
);
361 ret
= fd_write_vmcore(phdr
, size
, s
);
363 error_setg_errno(errp
, -ret
,
364 "dump: failed to write program header table");
368 static void write_elf_section(DumpState
*s
, int type
, Error
**errp
)
377 shdr_size
= sizeof(Elf32_Shdr
);
378 memset(&shdr32
, 0, shdr_size
);
379 shdr32
.sh_info
= cpu_to_dump32(s
, s
->phdr_num
);
382 shdr_size
= sizeof(Elf64_Shdr
);
383 memset(&shdr64
, 0, shdr_size
);
384 shdr64
.sh_info
= cpu_to_dump32(s
, s
->phdr_num
);
388 ret
= fd_write_vmcore(shdr
, shdr_size
, s
);
390 error_setg_errno(errp
, -ret
,
391 "dump: failed to write section header table");
395 static void write_data(DumpState
*s
, void *buf
, int length
, Error
**errp
)
399 ret
= fd_write_vmcore(buf
, length
, s
);
401 error_setg_errno(errp
, -ret
, "dump: failed to save memory");
403 s
->written_size
+= length
;
407 /* write the memory to vmcore. 1 page per I/O. */
408 static void write_memory(DumpState
*s
, GuestPhysBlock
*block
, ram_addr_t start
,
409 int64_t size
, Error
**errp
)
414 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
,
416 s
->dump_info
.page_size
, errp
);
422 if ((size
% s
->dump_info
.page_size
) != 0) {
423 write_data(s
, block
->host_addr
+ start
+ i
* s
->dump_info
.page_size
,
424 size
% s
->dump_info
.page_size
, errp
);
431 /* get the memory's offset and size in the vmcore */
432 static void get_offset_range(hwaddr phys_addr
,
433 ram_addr_t mapping_length
,
438 GuestPhysBlock
*block
;
439 hwaddr offset
= s
->memory_offset
;
440 int64_t size_in_block
, start
;
442 /* When the memory is not stored into vmcore, offset will be -1 */
447 if (phys_addr
< s
->begin
|| phys_addr
>= s
->begin
+ s
->length
) {
452 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
454 if (block
->target_start
>= s
->begin
+ s
->length
||
455 block
->target_end
<= s
->begin
) {
456 /* This block is out of the range */
460 if (s
->begin
<= block
->target_start
) {
461 start
= block
->target_start
;
466 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
);
471 start
= block
->target_start
;
472 size_in_block
= block
->target_end
- block
->target_start
;
475 if (phys_addr
>= start
&& phys_addr
< start
+ size_in_block
) {
476 *p_offset
= phys_addr
- start
+ offset
;
478 /* The offset range mapped from the vmcore file must not spill over
479 * the GuestPhysBlock, clamp it. The rest of the mapping will be
480 * zero-filled in memory at load time; see
481 * <http://refspecs.linuxbase.org/elf/gabi4+/ch5.pheader.html>.
483 *p_filesz
= phys_addr
+ mapping_length
<= start
+ size_in_block
?
485 size_in_block
- (phys_addr
- start
);
489 offset
+= size_in_block
;
493 static void write_elf_loads(DumpState
*s
, Error
**errp
)
496 hwaddr offset
, filesz
;
497 MemoryMapping
*memory_mapping
;
498 uint32_t phdr_index
= 1;
500 QTAILQ_FOREACH(memory_mapping
, &s
->list
.head
, next
) {
501 get_offset_range(memory_mapping
->phys_addr
,
502 memory_mapping
->length
,
503 s
, &offset
, &filesz
);
504 if (dump_is_64bit(s
)) {
505 write_elf64_load(s
, memory_mapping
, phdr_index
++, offset
,
508 write_elf32_load(s
, memory_mapping
, phdr_index
++, offset
,
516 if (phdr_index
>= s
->phdr_num
) {
522 static void write_elf_notes(DumpState
*s
, Error
**errp
)
524 if (dump_is_64bit(s
)) {
525 write_elf64_notes(fd_write_vmcore
, s
, errp
);
527 write_elf32_notes(fd_write_vmcore
, s
, errp
);
531 /* write elf header, PT_NOTE and elf note to vmcore. */
532 static void dump_begin(DumpState
*s
, Error
**errp
)
537 * the vmcore's format is:
556 * we only know where the memory is saved after we write elf note into
560 /* write elf header to vmcore */
561 if (dump_is_64bit(s
)) {
562 write_elf64_header(s
, errp
);
564 write_elf32_header(s
, errp
);
570 /* write PT_NOTE to vmcore */
571 write_elf_phdr_note(s
, errp
);
576 /* write all PT_LOAD to vmcore */
577 write_elf_loads(s
, errp
);
582 /* write section to vmcore */
584 write_elf_section(s
, 1, errp
);
590 /* write notes to vmcore */
591 write_elf_notes(s
, errp
);
594 static int get_next_block(DumpState
*s
, GuestPhysBlock
*block
)
597 block
= QTAILQ_NEXT(block
, next
);
604 s
->next_block
= block
;
606 if (block
->target_start
>= s
->begin
+ s
->length
||
607 block
->target_end
<= s
->begin
) {
608 /* This block is out of the range */
612 if (s
->begin
> block
->target_start
) {
613 s
->start
= s
->begin
- block
->target_start
;
621 /* write all memory to vmcore */
622 static void dump_iterate(DumpState
*s
, Error
**errp
)
625 GuestPhysBlock
*block
;
629 block
= s
->next_block
;
631 size
= block
->target_end
- block
->target_start
;
634 if (s
->begin
+ s
->length
< block
->target_end
) {
635 size
-= block
->target_end
- (s
->begin
+ s
->length
);
638 write_memory(s
, block
, s
->start
, size
, errp
);
643 } while (!get_next_block(s
, block
));
646 static void create_vmcore(DumpState
*s
, Error
**errp
)
655 dump_iterate(s
, errp
);
658 static int write_start_flat_header(int fd
)
660 MakedumpfileHeader
*mh
;
663 QEMU_BUILD_BUG_ON(sizeof *mh
> MAX_SIZE_MDF_HEADER
);
664 mh
= g_malloc0(MAX_SIZE_MDF_HEADER
);
666 memcpy(mh
->signature
, MAKEDUMPFILE_SIGNATURE
,
667 MIN(sizeof mh
->signature
, sizeof MAKEDUMPFILE_SIGNATURE
));
669 mh
->type
= cpu_to_be64(TYPE_FLAT_HEADER
);
670 mh
->version
= cpu_to_be64(VERSION_FLAT_HEADER
);
673 written_size
= qemu_write_full(fd
, mh
, MAX_SIZE_MDF_HEADER
);
674 if (written_size
!= MAX_SIZE_MDF_HEADER
) {
682 static int write_end_flat_header(int fd
)
684 MakedumpfileDataHeader mdh
;
686 mdh
.offset
= END_FLAG_FLAT_HEADER
;
687 mdh
.buf_size
= END_FLAG_FLAT_HEADER
;
690 written_size
= qemu_write_full(fd
, &mdh
, sizeof(mdh
));
691 if (written_size
!= sizeof(mdh
)) {
698 static int write_buffer(int fd
, off_t offset
, const void *buf
, size_t size
)
701 MakedumpfileDataHeader mdh
;
703 mdh
.offset
= cpu_to_be64(offset
);
704 mdh
.buf_size
= cpu_to_be64(size
);
706 written_size
= qemu_write_full(fd
, &mdh
, sizeof(mdh
));
707 if (written_size
!= sizeof(mdh
)) {
711 written_size
= qemu_write_full(fd
, buf
, size
);
712 if (written_size
!= size
) {
719 static int buf_write_note(const void *buf
, size_t size
, void *opaque
)
721 DumpState
*s
= opaque
;
723 /* note_buf is not enough */
724 if (s
->note_buf_offset
+ size
> s
->note_size
) {
728 memcpy(s
->note_buf
+ s
->note_buf_offset
, buf
, size
);
730 s
->note_buf_offset
+= size
;
736 * This function retrieves various sizes from an elf header.
738 * @note has to be a valid ELF note. The return sizes are unmodified
739 * (not padded or rounded up to be multiple of 4).
741 static void get_note_sizes(DumpState
*s
, const void *note
,
742 uint64_t *note_head_size
,
746 uint64_t note_head_sz
;
750 if (dump_is_64bit(s
)) {
751 const Elf64_Nhdr
*hdr
= note
;
752 note_head_sz
= sizeof(Elf64_Nhdr
);
753 name_sz
= tswap64(hdr
->n_namesz
);
754 desc_sz
= tswap64(hdr
->n_descsz
);
756 const Elf32_Nhdr
*hdr
= note
;
757 note_head_sz
= sizeof(Elf32_Nhdr
);
758 name_sz
= tswap32(hdr
->n_namesz
);
759 desc_sz
= tswap32(hdr
->n_descsz
);
762 if (note_head_size
) {
763 *note_head_size
= note_head_sz
;
766 *name_size
= name_sz
;
769 *desc_size
= desc_sz
;
773 static bool note_name_equal(DumpState
*s
,
774 const uint8_t *note
, const char *name
)
776 int len
= strlen(name
) + 1;
777 uint64_t head_size
, name_size
;
779 get_note_sizes(s
, note
, &head_size
, &name_size
, NULL
);
780 head_size
= ROUND_UP(head_size
, 4);
782 return name_size
== len
&& memcmp(note
+ head_size
, name
, len
) == 0;
785 /* write common header, sub header and elf note to vmcore */
786 static void create_header32(DumpState
*s
, Error
**errp
)
789 DiskDumpHeader32
*dh
= NULL
;
790 KdumpSubHeader32
*kh
= NULL
;
793 uint32_t sub_hdr_size
;
794 uint32_t bitmap_blocks
;
796 uint64_t offset_note
;
798 /* write common header, the version of kdump-compressed format is 6th */
799 size
= sizeof(DiskDumpHeader32
);
800 dh
= g_malloc0(size
);
802 memcpy(dh
->signature
, KDUMP_SIGNATURE
, SIG_LEN
);
803 dh
->header_version
= cpu_to_dump32(s
, 6);
804 block_size
= s
->dump_info
.page_size
;
805 dh
->block_size
= cpu_to_dump32(s
, block_size
);
806 sub_hdr_size
= sizeof(struct KdumpSubHeader32
) + s
->note_size
;
807 sub_hdr_size
= DIV_ROUND_UP(sub_hdr_size
, block_size
);
808 dh
->sub_hdr_size
= cpu_to_dump32(s
, sub_hdr_size
);
809 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
810 dh
->max_mapnr
= cpu_to_dump32(s
, MIN(s
->max_mapnr
, UINT_MAX
));
811 dh
->nr_cpus
= cpu_to_dump32(s
, s
->nr_cpus
);
812 bitmap_blocks
= DIV_ROUND_UP(s
->len_dump_bitmap
, block_size
) * 2;
813 dh
->bitmap_blocks
= cpu_to_dump32(s
, bitmap_blocks
);
814 strncpy(dh
->utsname
.machine
, ELF_MACHINE_UNAME
, sizeof(dh
->utsname
.machine
));
816 if (s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) {
817 status
|= DUMP_DH_COMPRESSED_ZLIB
;
820 if (s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) {
821 status
|= DUMP_DH_COMPRESSED_LZO
;
825 if (s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) {
826 status
|= DUMP_DH_COMPRESSED_SNAPPY
;
829 dh
->status
= cpu_to_dump32(s
, status
);
831 if (write_buffer(s
->fd
, 0, dh
, size
) < 0) {
832 error_setg(errp
, "dump: failed to write disk dump header");
836 /* write sub header */
837 size
= sizeof(KdumpSubHeader32
);
838 kh
= g_malloc0(size
);
840 /* 64bit max_mapnr_64 */
841 kh
->max_mapnr_64
= cpu_to_dump64(s
, s
->max_mapnr
);
842 kh
->phys_base
= cpu_to_dump32(s
, s
->dump_info
.phys_base
);
843 kh
->dump_level
= cpu_to_dump32(s
, DUMP_LEVEL
);
845 offset_note
= DISKDUMP_HEADER_BLOCKS
* block_size
+ size
;
847 note_name_equal(s
, s
->guest_note
, "VMCOREINFO")) {
848 uint64_t hsize
, name_size
, size_vmcoreinfo_desc
, offset_vmcoreinfo
;
850 get_note_sizes(s
, s
->guest_note
,
851 &hsize
, &name_size
, &size_vmcoreinfo_desc
);
852 offset_vmcoreinfo
= offset_note
+ s
->note_size
- s
->guest_note_size
+
853 (DIV_ROUND_UP(hsize
, 4) + DIV_ROUND_UP(name_size
, 4)) * 4;
854 kh
->offset_vmcoreinfo
= cpu_to_dump64(s
, offset_vmcoreinfo
);
855 kh
->size_vmcoreinfo
= cpu_to_dump32(s
, size_vmcoreinfo_desc
);
858 kh
->offset_note
= cpu_to_dump64(s
, offset_note
);
859 kh
->note_size
= cpu_to_dump32(s
, s
->note_size
);
861 if (write_buffer(s
->fd
, DISKDUMP_HEADER_BLOCKS
*
862 block_size
, kh
, size
) < 0) {
863 error_setg(errp
, "dump: failed to write kdump sub header");
868 s
->note_buf
= g_malloc0(s
->note_size
);
869 s
->note_buf_offset
= 0;
871 /* use s->note_buf to store notes temporarily */
872 write_elf32_notes(buf_write_note
, s
, errp
);
876 if (write_buffer(s
->fd
, offset_note
, s
->note_buf
,
878 error_setg(errp
, "dump: failed to write notes");
882 /* get offset of dump_bitmap */
883 s
->offset_dump_bitmap
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
) *
886 /* get offset of page */
887 s
->offset_page
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
+ bitmap_blocks
) *
896 /* write common header, sub header and elf note to vmcore */
897 static void create_header64(DumpState
*s
, Error
**errp
)
900 DiskDumpHeader64
*dh
= NULL
;
901 KdumpSubHeader64
*kh
= NULL
;
904 uint32_t sub_hdr_size
;
905 uint32_t bitmap_blocks
;
907 uint64_t offset_note
;
909 /* write common header, the version of kdump-compressed format is 6th */
910 size
= sizeof(DiskDumpHeader64
);
911 dh
= g_malloc0(size
);
913 memcpy(dh
->signature
, KDUMP_SIGNATURE
, SIG_LEN
);
914 dh
->header_version
= cpu_to_dump32(s
, 6);
915 block_size
= s
->dump_info
.page_size
;
916 dh
->block_size
= cpu_to_dump32(s
, block_size
);
917 sub_hdr_size
= sizeof(struct KdumpSubHeader64
) + s
->note_size
;
918 sub_hdr_size
= DIV_ROUND_UP(sub_hdr_size
, block_size
);
919 dh
->sub_hdr_size
= cpu_to_dump32(s
, sub_hdr_size
);
920 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
921 dh
->max_mapnr
= cpu_to_dump32(s
, MIN(s
->max_mapnr
, UINT_MAX
));
922 dh
->nr_cpus
= cpu_to_dump32(s
, s
->nr_cpus
);
923 bitmap_blocks
= DIV_ROUND_UP(s
->len_dump_bitmap
, block_size
) * 2;
924 dh
->bitmap_blocks
= cpu_to_dump32(s
, bitmap_blocks
);
925 strncpy(dh
->utsname
.machine
, ELF_MACHINE_UNAME
, sizeof(dh
->utsname
.machine
));
927 if (s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) {
928 status
|= DUMP_DH_COMPRESSED_ZLIB
;
931 if (s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) {
932 status
|= DUMP_DH_COMPRESSED_LZO
;
936 if (s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) {
937 status
|= DUMP_DH_COMPRESSED_SNAPPY
;
940 dh
->status
= cpu_to_dump32(s
, status
);
942 if (write_buffer(s
->fd
, 0, dh
, size
) < 0) {
943 error_setg(errp
, "dump: failed to write disk dump header");
947 /* write sub header */
948 size
= sizeof(KdumpSubHeader64
);
949 kh
= g_malloc0(size
);
951 /* 64bit max_mapnr_64 */
952 kh
->max_mapnr_64
= cpu_to_dump64(s
, s
->max_mapnr
);
953 kh
->phys_base
= cpu_to_dump64(s
, s
->dump_info
.phys_base
);
954 kh
->dump_level
= cpu_to_dump32(s
, DUMP_LEVEL
);
956 offset_note
= DISKDUMP_HEADER_BLOCKS
* block_size
+ size
;
958 note_name_equal(s
, s
->guest_note
, "VMCOREINFO")) {
959 uint64_t hsize
, name_size
, size_vmcoreinfo_desc
, offset_vmcoreinfo
;
961 get_note_sizes(s
, s
->guest_note
,
962 &hsize
, &name_size
, &size_vmcoreinfo_desc
);
963 offset_vmcoreinfo
= offset_note
+ s
->note_size
- s
->guest_note_size
+
964 (DIV_ROUND_UP(hsize
, 4) + DIV_ROUND_UP(name_size
, 4)) * 4;
965 kh
->offset_vmcoreinfo
= cpu_to_dump64(s
, offset_vmcoreinfo
);
966 kh
->size_vmcoreinfo
= cpu_to_dump64(s
, size_vmcoreinfo_desc
);
969 kh
->offset_note
= cpu_to_dump64(s
, offset_note
);
970 kh
->note_size
= cpu_to_dump64(s
, s
->note_size
);
972 if (write_buffer(s
->fd
, DISKDUMP_HEADER_BLOCKS
*
973 block_size
, kh
, size
) < 0) {
974 error_setg(errp
, "dump: failed to write kdump sub header");
979 s
->note_buf
= g_malloc0(s
->note_size
);
980 s
->note_buf_offset
= 0;
982 /* use s->note_buf to store notes temporarily */
983 write_elf64_notes(buf_write_note
, s
, errp
);
988 if (write_buffer(s
->fd
, offset_note
, s
->note_buf
,
990 error_setg(errp
, "dump: failed to write notes");
994 /* get offset of dump_bitmap */
995 s
->offset_dump_bitmap
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
) *
998 /* get offset of page */
999 s
->offset_page
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
+ bitmap_blocks
) *
1005 g_free(s
->note_buf
);
1008 static void write_dump_header(DumpState
*s
, Error
**errp
)
1010 if (dump_is_64bit(s
)) {
1011 create_header64(s
, errp
);
1013 create_header32(s
, errp
);
1017 static size_t dump_bitmap_get_bufsize(DumpState
*s
)
1019 return s
->dump_info
.page_size
;
1023 * set dump_bitmap sequencely. the bit before last_pfn is not allowed to be
1024 * rewritten, so if need to set the first bit, set last_pfn and pfn to 0.
1025 * set_dump_bitmap will always leave the recently set bit un-sync. And setting
1026 * (last bit + sizeof(buf) * 8) to 0 will do flushing the content in buf into
1027 * vmcore, ie. synchronizing un-sync bit into vmcore.
1029 static int set_dump_bitmap(uint64_t last_pfn
, uint64_t pfn
, bool value
,
1030 uint8_t *buf
, DumpState
*s
)
1032 off_t old_offset
, new_offset
;
1033 off_t offset_bitmap1
, offset_bitmap2
;
1035 size_t bitmap_bufsize
= dump_bitmap_get_bufsize(s
);
1036 size_t bits_per_buf
= bitmap_bufsize
* CHAR_BIT
;
1038 /* should not set the previous place */
1039 assert(last_pfn
<= pfn
);
1042 * if the bit needed to be set is not cached in buf, flush the data in buf
1043 * to vmcore firstly.
1044 * making new_offset be bigger than old_offset can also sync remained data
1047 old_offset
= bitmap_bufsize
* (last_pfn
/ bits_per_buf
);
1048 new_offset
= bitmap_bufsize
* (pfn
/ bits_per_buf
);
1050 while (old_offset
< new_offset
) {
1051 /* calculate the offset and write dump_bitmap */
1052 offset_bitmap1
= s
->offset_dump_bitmap
+ old_offset
;
1053 if (write_buffer(s
->fd
, offset_bitmap1
, buf
,
1054 bitmap_bufsize
) < 0) {
1058 /* dump level 1 is chosen, so 1st and 2nd bitmap are same */
1059 offset_bitmap2
= s
->offset_dump_bitmap
+ s
->len_dump_bitmap
+
1061 if (write_buffer(s
->fd
, offset_bitmap2
, buf
,
1062 bitmap_bufsize
) < 0) {
1066 memset(buf
, 0, bitmap_bufsize
);
1067 old_offset
+= bitmap_bufsize
;
1070 /* get the exact place of the bit in the buf, and set it */
1071 byte
= (pfn
% bits_per_buf
) / CHAR_BIT
;
1072 bit
= (pfn
% bits_per_buf
) % CHAR_BIT
;
1074 buf
[byte
] |= 1u << bit
;
1076 buf
[byte
] &= ~(1u << bit
);
1082 static uint64_t dump_paddr_to_pfn(DumpState
*s
, uint64_t addr
)
1084 int target_page_shift
= ctz32(s
->dump_info
.page_size
);
1086 return (addr
>> target_page_shift
) - ARCH_PFN_OFFSET
;
1089 static uint64_t dump_pfn_to_paddr(DumpState
*s
, uint64_t pfn
)
1091 int target_page_shift
= ctz32(s
->dump_info
.page_size
);
1093 return (pfn
+ ARCH_PFN_OFFSET
) << target_page_shift
;
1097 * exam every page and return the page frame number and the address of the page.
1098 * bufptr can be NULL. note: the blocks here is supposed to reflect guest-phys
1099 * blocks, so block->target_start and block->target_end should be interal
1100 * multiples of the target page size.
1102 static bool get_next_page(GuestPhysBlock
**blockptr
, uint64_t *pfnptr
,
1103 uint8_t **bufptr
, DumpState
*s
)
1105 GuestPhysBlock
*block
= *blockptr
;
1106 hwaddr addr
, target_page_mask
= ~((hwaddr
)s
->dump_info
.page_size
- 1);
1109 /* block == NULL means the start of the iteration */
1111 block
= QTAILQ_FIRST(&s
->guest_phys_blocks
.head
);
1113 assert((block
->target_start
& ~target_page_mask
) == 0);
1114 assert((block
->target_end
& ~target_page_mask
) == 0);
1115 *pfnptr
= dump_paddr_to_pfn(s
, block
->target_start
);
1117 *bufptr
= block
->host_addr
;
1122 *pfnptr
= *pfnptr
+ 1;
1123 addr
= dump_pfn_to_paddr(s
, *pfnptr
);
1125 if ((addr
>= block
->target_start
) &&
1126 (addr
+ s
->dump_info
.page_size
<= block
->target_end
)) {
1127 buf
= block
->host_addr
+ (addr
- block
->target_start
);
1129 /* the next page is in the next block */
1130 block
= QTAILQ_NEXT(block
, next
);
1135 assert((block
->target_start
& ~target_page_mask
) == 0);
1136 assert((block
->target_end
& ~target_page_mask
) == 0);
1137 *pfnptr
= dump_paddr_to_pfn(s
, block
->target_start
);
1138 buf
= block
->host_addr
;
1148 static void write_dump_bitmap(DumpState
*s
, Error
**errp
)
1151 uint64_t last_pfn
, pfn
;
1152 void *dump_bitmap_buf
;
1153 size_t num_dumpable
;
1154 GuestPhysBlock
*block_iter
= NULL
;
1155 size_t bitmap_bufsize
= dump_bitmap_get_bufsize(s
);
1156 size_t bits_per_buf
= bitmap_bufsize
* CHAR_BIT
;
1158 /* dump_bitmap_buf is used to store dump_bitmap temporarily */
1159 dump_bitmap_buf
= g_malloc0(bitmap_bufsize
);
1165 * exam memory page by page, and set the bit in dump_bitmap corresponded
1166 * to the existing page.
1168 while (get_next_page(&block_iter
, &pfn
, NULL
, s
)) {
1169 ret
= set_dump_bitmap(last_pfn
, pfn
, true, dump_bitmap_buf
, s
);
1171 error_setg(errp
, "dump: failed to set dump_bitmap");
1180 * set_dump_bitmap will always leave the recently set bit un-sync. Here we
1181 * set the remaining bits from last_pfn to the end of the bitmap buffer to
1182 * 0. With those set, the un-sync bit will be synchronized into the vmcore.
1184 if (num_dumpable
> 0) {
1185 ret
= set_dump_bitmap(last_pfn
, last_pfn
+ bits_per_buf
, false,
1186 dump_bitmap_buf
, s
);
1188 error_setg(errp
, "dump: failed to sync dump_bitmap");
1193 /* number of dumpable pages that will be dumped later */
1194 s
->num_dumpable
= num_dumpable
;
1197 g_free(dump_bitmap_buf
);
1200 static void prepare_data_cache(DataCache
*data_cache
, DumpState
*s
,
1203 data_cache
->fd
= s
->fd
;
1204 data_cache
->data_size
= 0;
1205 data_cache
->buf_size
= 4 * dump_bitmap_get_bufsize(s
);
1206 data_cache
->buf
= g_malloc0(data_cache
->buf_size
);
1207 data_cache
->offset
= offset
;
1210 static int write_cache(DataCache
*dc
, const void *buf
, size_t size
,
1214 * dc->buf_size should not be less than size, otherwise dc will never be
1217 assert(size
<= dc
->buf_size
);
1220 * if flag_sync is set, synchronize data in dc->buf into vmcore.
1221 * otherwise check if the space is enough for caching data in buf, if not,
1222 * write the data in dc->buf to dc->fd and reset dc->buf
1224 if ((!flag_sync
&& dc
->data_size
+ size
> dc
->buf_size
) ||
1225 (flag_sync
&& dc
->data_size
> 0)) {
1226 if (write_buffer(dc
->fd
, dc
->offset
, dc
->buf
, dc
->data_size
) < 0) {
1230 dc
->offset
+= dc
->data_size
;
1235 memcpy(dc
->buf
+ dc
->data_size
, buf
, size
);
1236 dc
->data_size
+= size
;
1242 static void free_data_cache(DataCache
*data_cache
)
1244 g_free(data_cache
->buf
);
1247 static size_t get_len_buf_out(size_t page_size
, uint32_t flag_compress
)
1249 switch (flag_compress
) {
1250 case DUMP_DH_COMPRESSED_ZLIB
:
1251 return compressBound(page_size
);
1253 case DUMP_DH_COMPRESSED_LZO
:
1255 * LZO will expand incompressible data by a little amount. Please check
1256 * the following URL to see the expansion calculation:
1257 * http://www.oberhumer.com/opensource/lzo/lzofaq.php
1259 return page_size
+ page_size
/ 16 + 64 + 3;
1261 #ifdef CONFIG_SNAPPY
1262 case DUMP_DH_COMPRESSED_SNAPPY
:
1263 return snappy_max_compressed_length(page_size
);
1269 static void write_dump_pages(DumpState
*s
, Error
**errp
)
1272 DataCache page_desc
, page_data
;
1273 size_t len_buf_out
, size_out
;
1275 lzo_bytep wrkmem
= NULL
;
1277 uint8_t *buf_out
= NULL
;
1278 off_t offset_desc
, offset_data
;
1279 PageDescriptor pd
, pd_zero
;
1281 GuestPhysBlock
*block_iter
= NULL
;
1284 /* get offset of page_desc and page_data in dump file */
1285 offset_desc
= s
->offset_page
;
1286 offset_data
= offset_desc
+ sizeof(PageDescriptor
) * s
->num_dumpable
;
1288 prepare_data_cache(&page_desc
, s
, offset_desc
);
1289 prepare_data_cache(&page_data
, s
, offset_data
);
1291 /* prepare buffer to store compressed data */
1292 len_buf_out
= get_len_buf_out(s
->dump_info
.page_size
, s
->flag_compress
);
1293 assert(len_buf_out
!= 0);
1296 wrkmem
= g_malloc(LZO1X_1_MEM_COMPRESS
);
1299 buf_out
= g_malloc(len_buf_out
);
1302 * init zero page's page_desc and page_data, because every zero page
1303 * uses the same page_data
1305 pd_zero
.size
= cpu_to_dump32(s
, s
->dump_info
.page_size
);
1306 pd_zero
.flags
= cpu_to_dump32(s
, 0);
1307 pd_zero
.offset
= cpu_to_dump64(s
, offset_data
);
1308 pd_zero
.page_flags
= cpu_to_dump64(s
, 0);
1309 buf
= g_malloc0(s
->dump_info
.page_size
);
1310 ret
= write_cache(&page_data
, buf
, s
->dump_info
.page_size
, false);
1313 error_setg(errp
, "dump: failed to write page data (zero page)");
1317 offset_data
+= s
->dump_info
.page_size
;
1320 * dump memory to vmcore page by page. zero page will all be resided in the
1321 * first page of page section
1323 while (get_next_page(&block_iter
, &pfn_iter
, &buf
, s
)) {
1324 /* check zero page */
1325 if (buffer_is_zero(buf
, s
->dump_info
.page_size
)) {
1326 ret
= write_cache(&page_desc
, &pd_zero
, sizeof(PageDescriptor
),
1329 error_setg(errp
, "dump: failed to write page desc");
1334 * not zero page, then:
1335 * 1. compress the page
1336 * 2. write the compressed page into the cache of page_data
1337 * 3. get page desc of the compressed page and write it into the
1338 * cache of page_desc
1340 * only one compression format will be used here, for
1341 * s->flag_compress is set. But when compression fails to work,
1342 * we fall back to save in plaintext.
1344 size_out
= len_buf_out
;
1345 if ((s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) &&
1346 (compress2(buf_out
, (uLongf
*)&size_out
, buf
,
1347 s
->dump_info
.page_size
, Z_BEST_SPEED
) == Z_OK
) &&
1348 (size_out
< s
->dump_info
.page_size
)) {
1349 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_ZLIB
);
1350 pd
.size
= cpu_to_dump32(s
, size_out
);
1352 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1354 error_setg(errp
, "dump: failed to write page data");
1358 } else if ((s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) &&
1359 (lzo1x_1_compress(buf
, s
->dump_info
.page_size
, buf_out
,
1360 (lzo_uint
*)&size_out
, wrkmem
) == LZO_E_OK
) &&
1361 (size_out
< s
->dump_info
.page_size
)) {
1362 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_LZO
);
1363 pd
.size
= cpu_to_dump32(s
, size_out
);
1365 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1367 error_setg(errp
, "dump: failed to write page data");
1371 #ifdef CONFIG_SNAPPY
1372 } else if ((s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) &&
1373 (snappy_compress((char *)buf
, s
->dump_info
.page_size
,
1374 (char *)buf_out
, &size_out
) == SNAPPY_OK
) &&
1375 (size_out
< s
->dump_info
.page_size
)) {
1376 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_SNAPPY
);
1377 pd
.size
= cpu_to_dump32(s
, size_out
);
1379 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1381 error_setg(errp
, "dump: failed to write page data");
1387 * fall back to save in plaintext, size_out should be
1388 * assigned the target's page size
1390 pd
.flags
= cpu_to_dump32(s
, 0);
1391 size_out
= s
->dump_info
.page_size
;
1392 pd
.size
= cpu_to_dump32(s
, size_out
);
1394 ret
= write_cache(&page_data
, buf
,
1395 s
->dump_info
.page_size
, false);
1397 error_setg(errp
, "dump: failed to write page data");
1402 /* get and write page desc here */
1403 pd
.page_flags
= cpu_to_dump64(s
, 0);
1404 pd
.offset
= cpu_to_dump64(s
, offset_data
);
1405 offset_data
+= size_out
;
1407 ret
= write_cache(&page_desc
, &pd
, sizeof(PageDescriptor
), false);
1409 error_setg(errp
, "dump: failed to write page desc");
1413 s
->written_size
+= s
->dump_info
.page_size
;
1416 ret
= write_cache(&page_desc
, NULL
, 0, true);
1418 error_setg(errp
, "dump: failed to sync cache for page_desc");
1421 ret
= write_cache(&page_data
, NULL
, 0, true);
1423 error_setg(errp
, "dump: failed to sync cache for page_data");
1428 free_data_cache(&page_desc
);
1429 free_data_cache(&page_data
);
1438 static void create_kdump_vmcore(DumpState
*s
, Error
**errp
)
1444 * the kdump-compressed format is:
1446 * +------------------------------------------+ 0x0
1447 * | main header (struct disk_dump_header) |
1448 * |------------------------------------------+ block 1
1449 * | sub header (struct kdump_sub_header) |
1450 * |------------------------------------------+ block 2
1451 * | 1st-dump_bitmap |
1452 * |------------------------------------------+ block 2 + X blocks
1453 * | 2nd-dump_bitmap | (aligned by block)
1454 * |------------------------------------------+ block 2 + 2 * X blocks
1455 * | page desc for pfn 0 (struct page_desc) | (aligned by block)
1456 * | page desc for pfn 1 (struct page_desc) |
1458 * |------------------------------------------| (not aligned by block)
1459 * | page data (pfn 0) |
1460 * | page data (pfn 1) |
1462 * +------------------------------------------+
1465 ret
= write_start_flat_header(s
->fd
);
1467 error_setg(errp
, "dump: failed to write start flat header");
1471 write_dump_header(s
, errp
);
1476 write_dump_bitmap(s
, errp
);
1481 write_dump_pages(s
, errp
);
1486 ret
= write_end_flat_header(s
->fd
);
1488 error_setg(errp
, "dump: failed to write end flat header");
1493 static ram_addr_t
get_start_block(DumpState
*s
)
1495 GuestPhysBlock
*block
;
1497 if (!s
->has_filter
) {
1498 s
->next_block
= QTAILQ_FIRST(&s
->guest_phys_blocks
.head
);
1502 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
1503 if (block
->target_start
>= s
->begin
+ s
->length
||
1504 block
->target_end
<= s
->begin
) {
1505 /* This block is out of the range */
1509 s
->next_block
= block
;
1510 if (s
->begin
> block
->target_start
) {
1511 s
->start
= s
->begin
- block
->target_start
;
1521 static void get_max_mapnr(DumpState
*s
)
1523 GuestPhysBlock
*last_block
;
1525 last_block
= QTAILQ_LAST(&s
->guest_phys_blocks
.head
);
1526 s
->max_mapnr
= dump_paddr_to_pfn(s
, last_block
->target_end
);
1529 static DumpState dump_state_global
= { .status
= DUMP_STATUS_NONE
};
1531 static void dump_state_prepare(DumpState
*s
)
1533 /* zero the struct, setting status to active */
1534 *s
= (DumpState
) { .status
= DUMP_STATUS_ACTIVE
};
1537 bool qemu_system_dump_in_progress(void)
1539 DumpState
*state
= &dump_state_global
;
1540 return (qatomic_read(&state
->status
) == DUMP_STATUS_ACTIVE
);
1543 /* calculate total size of memory to be dumped (taking filter into
1545 static int64_t dump_calculate_size(DumpState
*s
)
1547 GuestPhysBlock
*block
;
1548 int64_t size
= 0, total
= 0, left
= 0, right
= 0;
1550 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
1551 if (s
->has_filter
) {
1552 /* calculate the overlapped region. */
1553 left
= MAX(s
->begin
, block
->target_start
);
1554 right
= MIN(s
->begin
+ s
->length
, block
->target_end
);
1555 size
= right
- left
;
1556 size
= size
> 0 ? size
: 0;
1558 /* count the whole region in */
1559 size
= (block
->target_end
- block
->target_start
);
1567 static void vmcoreinfo_update_phys_base(DumpState
*s
)
1569 uint64_t size
, note_head_size
, name_size
, phys_base
;
1574 if (!note_name_equal(s
, s
->guest_note
, "VMCOREINFO")) {
1578 get_note_sizes(s
, s
->guest_note
, ¬e_head_size
, &name_size
, &size
);
1579 note_head_size
= ROUND_UP(note_head_size
, 4);
1581 vmci
= s
->guest_note
+ note_head_size
+ ROUND_UP(name_size
, 4);
1582 *(vmci
+ size
) = '\0';
1584 lines
= g_strsplit((char *)vmci
, "\n", -1);
1585 for (i
= 0; lines
[i
]; i
++) {
1586 const char *prefix
= NULL
;
1588 if (s
->dump_info
.d_machine
== EM_X86_64
) {
1589 prefix
= "NUMBER(phys_base)=";
1590 } else if (s
->dump_info
.d_machine
== EM_AARCH64
) {
1591 prefix
= "NUMBER(PHYS_OFFSET)=";
1594 if (prefix
&& g_str_has_prefix(lines
[i
], prefix
)) {
1595 if (qemu_strtou64(lines
[i
] + strlen(prefix
), NULL
, 16,
1597 warn_report("Failed to read %s", prefix
);
1599 s
->dump_info
.phys_base
= phys_base
;
1608 static void dump_init(DumpState
*s
, int fd
, bool has_format
,
1609 DumpGuestMemoryFormat format
, bool paging
, bool has_filter
,
1610 int64_t begin
, int64_t length
, Error
**errp
)
1613 VMCoreInfoState
*vmci
= vmcoreinfo_find();
1618 s
->has_format
= has_format
;
1620 s
->written_size
= 0;
1622 /* kdump-compressed is conflict with paging and filter */
1623 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1624 assert(!paging
&& !has_filter
);
1627 if (runstate_is_running()) {
1628 vm_stop(RUN_STATE_SAVE_VM
);
1634 /* If we use KVM, we should synchronize the registers before we get dump
1635 * info or physmap info.
1637 cpu_synchronize_all_states();
1644 s
->has_filter
= has_filter
;
1648 memory_mapping_list_init(&s
->list
);
1650 guest_phys_blocks_init(&s
->guest_phys_blocks
);
1651 guest_phys_blocks_append(&s
->guest_phys_blocks
);
1652 s
->total_size
= dump_calculate_size(s
);
1653 #ifdef DEBUG_DUMP_GUEST_MEMORY
1654 fprintf(stderr
, "DUMP: total memory to dump: %lu\n", s
->total_size
);
1657 /* it does not make sense to dump non-existent memory */
1658 if (!s
->total_size
) {
1659 error_setg(errp
, "dump: no guest memory to dump");
1663 s
->start
= get_start_block(s
);
1664 if (s
->start
== -1) {
1665 error_setg(errp
, QERR_INVALID_PARAMETER
, "begin");
1669 /* get dump info: endian, class and architecture.
1670 * If the target architecture is not supported, cpu_get_dump_info() will
1673 ret
= cpu_get_dump_info(&s
->dump_info
, &s
->guest_phys_blocks
);
1675 error_setg(errp
, QERR_UNSUPPORTED
);
1679 if (!s
->dump_info
.page_size
) {
1680 s
->dump_info
.page_size
= TARGET_PAGE_SIZE
;
1683 s
->note_size
= cpu_get_note_size(s
->dump_info
.d_class
,
1684 s
->dump_info
.d_machine
, nr_cpus
);
1685 if (s
->note_size
< 0) {
1686 error_setg(errp
, QERR_UNSUPPORTED
);
1691 * The goal of this block is to (a) update the previously guessed
1692 * phys_base, (b) copy the guest note out of the guest.
1693 * Failure to do so is not fatal for dumping.
1696 uint64_t addr
, note_head_size
, name_size
, desc_size
;
1700 note_head_size
= dump_is_64bit(s
) ?
1701 sizeof(Elf64_Nhdr
) : sizeof(Elf32_Nhdr
);
1703 format
= le16_to_cpu(vmci
->vmcoreinfo
.guest_format
);
1704 size
= le32_to_cpu(vmci
->vmcoreinfo
.size
);
1705 addr
= le64_to_cpu(vmci
->vmcoreinfo
.paddr
);
1706 if (!vmci
->has_vmcoreinfo
) {
1707 warn_report("guest note is not present");
1708 } else if (size
< note_head_size
|| size
> MAX_GUEST_NOTE_SIZE
) {
1709 warn_report("guest note size is invalid: %" PRIu32
, size
);
1710 } else if (format
!= FW_CFG_VMCOREINFO_FORMAT_ELF
) {
1711 warn_report("guest note format is unsupported: %" PRIu16
, format
);
1713 s
->guest_note
= g_malloc(size
+ 1); /* +1 for adding \0 */
1714 cpu_physical_memory_read(addr
, s
->guest_note
, size
);
1716 get_note_sizes(s
, s
->guest_note
, NULL
, &name_size
, &desc_size
);
1717 s
->guest_note_size
= ELF_NOTE_SIZE(note_head_size
, name_size
,
1719 if (name_size
> MAX_GUEST_NOTE_SIZE
||
1720 desc_size
> MAX_GUEST_NOTE_SIZE
||
1721 s
->guest_note_size
> size
) {
1722 warn_report("Invalid guest note header");
1723 g_free(s
->guest_note
);
1724 s
->guest_note
= NULL
;
1726 vmcoreinfo_update_phys_base(s
);
1727 s
->note_size
+= s
->guest_note_size
;
1732 /* get memory mapping */
1734 qemu_get_guest_memory_mapping(&s
->list
, &s
->guest_phys_blocks
, errp
);
1739 qemu_get_guest_simple_memory_mapping(&s
->list
, &s
->guest_phys_blocks
);
1742 s
->nr_cpus
= nr_cpus
;
1747 tmp
= DIV_ROUND_UP(DIV_ROUND_UP(s
->max_mapnr
, CHAR_BIT
),
1748 s
->dump_info
.page_size
);
1749 s
->len_dump_bitmap
= tmp
* s
->dump_info
.page_size
;
1751 /* init for kdump-compressed format */
1752 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1754 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
:
1755 s
->flag_compress
= DUMP_DH_COMPRESSED_ZLIB
;
1758 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
:
1760 if (lzo_init() != LZO_E_OK
) {
1761 error_setg(errp
, "failed to initialize the LZO library");
1765 s
->flag_compress
= DUMP_DH_COMPRESSED_LZO
;
1768 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
:
1769 s
->flag_compress
= DUMP_DH_COMPRESSED_SNAPPY
;
1773 s
->flag_compress
= 0;
1779 if (s
->has_filter
) {
1780 memory_mapping_filter(&s
->list
, s
->begin
, s
->length
);
1784 * calculate phdr_num
1786 * the type of ehdr->e_phnum is uint16_t, so we should avoid overflow
1788 s
->phdr_num
= 1; /* PT_NOTE */
1789 if (s
->list
.num
< UINT16_MAX
- 2) {
1791 s
->phdr_num
+= s
->list
.num
;
1793 /* sh_info of section 0 holds the real number of phdrs */
1796 /* the type of shdr->sh_info is uint32_t, so we should avoid overflow */
1797 if (s
->list
.num
<= UINT32_MAX
- 1) {
1798 s
->phdr_num
+= s
->list
.num
;
1800 s
->phdr_num
= UINT32_MAX
;
1804 if (dump_is_64bit(s
)) {
1805 s
->phdr_offset
= sizeof(Elf64_Ehdr
);
1806 s
->shdr_offset
= s
->phdr_offset
+ sizeof(Elf64_Phdr
) * s
->phdr_num
;
1807 s
->note_offset
= s
->shdr_offset
+ sizeof(Elf64_Shdr
) * s
->shdr_num
;
1808 s
->memory_offset
= s
->note_offset
+ s
->note_size
;
1811 s
->phdr_offset
= sizeof(Elf32_Ehdr
);
1812 s
->shdr_offset
= s
->phdr_offset
+ sizeof(Elf32_Phdr
) * s
->phdr_num
;
1813 s
->note_offset
= s
->shdr_offset
+ sizeof(Elf32_Shdr
) * s
->shdr_num
;
1814 s
->memory_offset
= s
->note_offset
+ s
->note_size
;
1823 /* this operation might be time consuming. */
1824 static void dump_process(DumpState
*s
, Error
**errp
)
1827 DumpQueryResult
*result
= NULL
;
1829 if (s
->has_format
&& s
->format
== DUMP_GUEST_MEMORY_FORMAT_WIN_DMP
) {
1830 #ifdef TARGET_X86_64
1831 create_win_dump(s
, errp
);
1833 } else if (s
->has_format
&& s
->format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1834 create_kdump_vmcore(s
, errp
);
1836 create_vmcore(s
, errp
);
1839 /* make sure status is written after written_size updates */
1841 qatomic_set(&s
->status
,
1842 (*errp
? DUMP_STATUS_FAILED
: DUMP_STATUS_COMPLETED
));
1844 /* send DUMP_COMPLETED message (unconditionally) */
1845 result
= qmp_query_dump(NULL
);
1846 /* should never fail */
1848 qapi_event_send_dump_completed(result
, !!*errp
, (*errp
?
1849 error_get_pretty(*errp
) : NULL
));
1850 qapi_free_DumpQueryResult(result
);
1855 static void *dump_thread(void *data
)
1857 DumpState
*s
= (DumpState
*)data
;
1858 dump_process(s
, NULL
);
1862 DumpQueryResult
*qmp_query_dump(Error
**errp
)
1864 DumpQueryResult
*result
= g_new(DumpQueryResult
, 1);
1865 DumpState
*state
= &dump_state_global
;
1866 result
->status
= qatomic_read(&state
->status
);
1867 /* make sure we are reading status and written_size in order */
1869 result
->completed
= state
->written_size
;
1870 result
->total
= state
->total_size
;
1874 void qmp_dump_guest_memory(bool paging
, const char *file
,
1875 bool has_detach
, bool detach
,
1876 bool has_begin
, int64_t begin
, bool has_length
,
1877 int64_t length
, bool has_format
,
1878 DumpGuestMemoryFormat format
, Error
**errp
)
1884 bool detach_p
= false;
1886 if (runstate_check(RUN_STATE_INMIGRATE
)) {
1887 error_setg(errp
, "Dump not allowed during incoming migration.");
1891 /* if there is a dump in background, we should wait until the dump
1893 if (qemu_system_dump_in_progress()) {
1894 error_setg(errp
, "There is a dump in process, please wait.");
1899 * kdump-compressed format need the whole memory dumped, so paging or
1900 * filter is not supported here.
1902 if ((has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) &&
1903 (paging
|| has_begin
|| has_length
)) {
1904 error_setg(errp
, "kdump-compressed format doesn't support paging or "
1908 if (has_begin
&& !has_length
) {
1909 error_setg(errp
, QERR_MISSING_PARAMETER
, "length");
1912 if (!has_begin
&& has_length
) {
1913 error_setg(errp
, QERR_MISSING_PARAMETER
, "begin");
1920 /* check whether lzo/snappy is supported */
1922 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
) {
1923 error_setg(errp
, "kdump-lzo is not available now");
1928 #ifndef CONFIG_SNAPPY
1929 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
) {
1930 error_setg(errp
, "kdump-snappy is not available now");
1935 #ifndef TARGET_X86_64
1936 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_WIN_DMP
) {
1937 error_setg(errp
, "Windows dump is only available for x86-64");
1943 if (strstart(file
, "fd:", &p
)) {
1944 fd
= monitor_get_fd(monitor_cur(), p
, errp
);
1951 if (strstart(file
, "file:", &p
)) {
1952 fd
= qemu_open_old(p
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
, S_IRUSR
);
1954 error_setg_file_open(errp
, errno
, p
);
1960 error_setg(errp
, QERR_INVALID_PARAMETER
, "protocol");
1964 if (!dump_migration_blocker
) {
1965 error_setg(&dump_migration_blocker
,
1966 "Live migration disabled: dump-guest-memory in progress");
1970 * Allows even for -only-migratable, but forbid migration during the
1971 * process of dump guest memory.
1973 if (migrate_add_blocker_internal(dump_migration_blocker
, errp
)) {
1974 /* Remember to release the fd before passing it over to dump state */
1979 s
= &dump_state_global
;
1980 dump_state_prepare(s
);
1982 dump_init(s
, fd
, has_format
, format
, paging
, has_begin
,
1983 begin
, length
, errp
);
1985 qatomic_set(&s
->status
, DUMP_STATUS_FAILED
);
1992 qemu_thread_create(&s
->dump_thread
, "dump_thread", dump_thread
,
1993 s
, QEMU_THREAD_DETACHED
);
1996 dump_process(s
, errp
);
2000 DumpGuestMemoryCapability
*qmp_query_dump_guest_memory_capability(Error
**errp
)
2002 DumpGuestMemoryCapability
*cap
=
2003 g_new0(DumpGuestMemoryCapability
, 1);
2004 DumpGuestMemoryFormatList
**tail
= &cap
->formats
;
2006 /* elf is always available */
2007 QAPI_LIST_APPEND(tail
, DUMP_GUEST_MEMORY_FORMAT_ELF
);
2009 /* kdump-zlib is always available */
2010 QAPI_LIST_APPEND(tail
, DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
);
2012 /* add new item if kdump-lzo is available */
2014 QAPI_LIST_APPEND(tail
, DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
);
2017 /* add new item if kdump-snappy is available */
2018 #ifdef CONFIG_SNAPPY
2019 QAPI_LIST_APPEND(tail
, DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
);
2022 /* Windows dump is available only if target is x86_64 */
2023 #ifdef TARGET_X86_64
2024 QAPI_LIST_APPEND(tail
, DUMP_GUEST_MEMORY_FORMAT_WIN_DMP
);