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"
18 #include "exec/cpu-all.h"
19 #include "exec/hwaddr.h"
20 #include "monitor/monitor.h"
21 #include "sysemu/kvm.h"
22 #include "sysemu/dump.h"
23 #include "sysemu/sysemu.h"
24 #include "sysemu/memory_mapping.h"
25 #include "sysemu/cpus.h"
26 #include "qapi/qmp/qerror.h"
27 #include "qmp-commands.h"
28 #include "qapi-event.h"
32 #include <lzo/lzo1x.h>
37 #ifndef ELF_MACHINE_UNAME
38 #define ELF_MACHINE_UNAME "Unknown"
41 uint16_t cpu_to_dump16(DumpState
*s
, uint16_t val
)
43 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
44 val
= cpu_to_le16(val
);
46 val
= cpu_to_be16(val
);
52 uint32_t cpu_to_dump32(DumpState
*s
, uint32_t val
)
54 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
55 val
= cpu_to_le32(val
);
57 val
= cpu_to_be32(val
);
63 uint64_t cpu_to_dump64(DumpState
*s
, uint64_t val
)
65 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
66 val
= cpu_to_le64(val
);
68 val
= cpu_to_be64(val
);
74 static int dump_cleanup(DumpState
*s
)
76 guest_phys_blocks_free(&s
->guest_phys_blocks
);
77 memory_mapping_list_free(&s
->list
);
86 static int fd_write_vmcore(const void *buf
, size_t size
, void *opaque
)
88 DumpState
*s
= opaque
;
91 written_size
= qemu_write_full(s
->fd
, buf
, size
);
92 if (written_size
!= size
) {
99 static void write_elf64_header(DumpState
*s
, Error
**errp
)
101 Elf64_Ehdr elf_header
;
104 memset(&elf_header
, 0, sizeof(Elf64_Ehdr
));
105 memcpy(&elf_header
, ELFMAG
, SELFMAG
);
106 elf_header
.e_ident
[EI_CLASS
] = ELFCLASS64
;
107 elf_header
.e_ident
[EI_DATA
] = s
->dump_info
.d_endian
;
108 elf_header
.e_ident
[EI_VERSION
] = EV_CURRENT
;
109 elf_header
.e_type
= cpu_to_dump16(s
, ET_CORE
);
110 elf_header
.e_machine
= cpu_to_dump16(s
, s
->dump_info
.d_machine
);
111 elf_header
.e_version
= cpu_to_dump32(s
, EV_CURRENT
);
112 elf_header
.e_ehsize
= cpu_to_dump16(s
, sizeof(elf_header
));
113 elf_header
.e_phoff
= cpu_to_dump64(s
, sizeof(Elf64_Ehdr
));
114 elf_header
.e_phentsize
= cpu_to_dump16(s
, sizeof(Elf64_Phdr
));
115 elf_header
.e_phnum
= cpu_to_dump16(s
, s
->phdr_num
);
116 if (s
->have_section
) {
117 uint64_t shoff
= sizeof(Elf64_Ehdr
) + sizeof(Elf64_Phdr
) * s
->sh_info
;
119 elf_header
.e_shoff
= cpu_to_dump64(s
, shoff
);
120 elf_header
.e_shentsize
= cpu_to_dump16(s
, sizeof(Elf64_Shdr
));
121 elf_header
.e_shnum
= cpu_to_dump16(s
, 1);
124 ret
= fd_write_vmcore(&elf_header
, sizeof(elf_header
), s
);
126 error_setg(errp
, "dump: failed to write elf header");
130 static void write_elf32_header(DumpState
*s
, Error
**errp
)
132 Elf32_Ehdr elf_header
;
135 memset(&elf_header
, 0, sizeof(Elf32_Ehdr
));
136 memcpy(&elf_header
, ELFMAG
, SELFMAG
);
137 elf_header
.e_ident
[EI_CLASS
] = ELFCLASS32
;
138 elf_header
.e_ident
[EI_DATA
] = s
->dump_info
.d_endian
;
139 elf_header
.e_ident
[EI_VERSION
] = EV_CURRENT
;
140 elf_header
.e_type
= cpu_to_dump16(s
, ET_CORE
);
141 elf_header
.e_machine
= cpu_to_dump16(s
, s
->dump_info
.d_machine
);
142 elf_header
.e_version
= cpu_to_dump32(s
, EV_CURRENT
);
143 elf_header
.e_ehsize
= cpu_to_dump16(s
, sizeof(elf_header
));
144 elf_header
.e_phoff
= cpu_to_dump32(s
, sizeof(Elf32_Ehdr
));
145 elf_header
.e_phentsize
= cpu_to_dump16(s
, sizeof(Elf32_Phdr
));
146 elf_header
.e_phnum
= cpu_to_dump16(s
, s
->phdr_num
);
147 if (s
->have_section
) {
148 uint32_t shoff
= sizeof(Elf32_Ehdr
) + sizeof(Elf32_Phdr
) * s
->sh_info
;
150 elf_header
.e_shoff
= cpu_to_dump32(s
, shoff
);
151 elf_header
.e_shentsize
= cpu_to_dump16(s
, sizeof(Elf32_Shdr
));
152 elf_header
.e_shnum
= cpu_to_dump16(s
, 1);
155 ret
= fd_write_vmcore(&elf_header
, sizeof(elf_header
), s
);
157 error_setg(errp
, "dump: failed to write elf header");
161 static void write_elf64_load(DumpState
*s
, MemoryMapping
*memory_mapping
,
162 int phdr_index
, hwaddr offset
,
163 hwaddr filesz
, Error
**errp
)
168 memset(&phdr
, 0, sizeof(Elf64_Phdr
));
169 phdr
.p_type
= cpu_to_dump32(s
, PT_LOAD
);
170 phdr
.p_offset
= cpu_to_dump64(s
, offset
);
171 phdr
.p_paddr
= cpu_to_dump64(s
, memory_mapping
->phys_addr
);
172 phdr
.p_filesz
= cpu_to_dump64(s
, filesz
);
173 phdr
.p_memsz
= cpu_to_dump64(s
, memory_mapping
->length
);
174 phdr
.p_vaddr
= cpu_to_dump64(s
, memory_mapping
->virt_addr
);
176 assert(memory_mapping
->length
>= filesz
);
178 ret
= fd_write_vmcore(&phdr
, sizeof(Elf64_Phdr
), s
);
180 error_setg(errp
, "dump: failed to write program header table");
184 static void write_elf32_load(DumpState
*s
, MemoryMapping
*memory_mapping
,
185 int phdr_index
, hwaddr offset
,
186 hwaddr filesz
, Error
**errp
)
191 memset(&phdr
, 0, sizeof(Elf32_Phdr
));
192 phdr
.p_type
= cpu_to_dump32(s
, PT_LOAD
);
193 phdr
.p_offset
= cpu_to_dump32(s
, offset
);
194 phdr
.p_paddr
= cpu_to_dump32(s
, memory_mapping
->phys_addr
);
195 phdr
.p_filesz
= cpu_to_dump32(s
, filesz
);
196 phdr
.p_memsz
= cpu_to_dump32(s
, memory_mapping
->length
);
197 phdr
.p_vaddr
= cpu_to_dump32(s
, memory_mapping
->virt_addr
);
199 assert(memory_mapping
->length
>= filesz
);
201 ret
= fd_write_vmcore(&phdr
, sizeof(Elf32_Phdr
), s
);
203 error_setg(errp
, "dump: failed to write program header table");
207 static void write_elf64_note(DumpState
*s
, Error
**errp
)
210 hwaddr begin
= s
->memory_offset
- s
->note_size
;
213 memset(&phdr
, 0, sizeof(Elf64_Phdr
));
214 phdr
.p_type
= cpu_to_dump32(s
, PT_NOTE
);
215 phdr
.p_offset
= cpu_to_dump64(s
, begin
);
217 phdr
.p_filesz
= cpu_to_dump64(s
, s
->note_size
);
218 phdr
.p_memsz
= cpu_to_dump64(s
, s
->note_size
);
221 ret
= fd_write_vmcore(&phdr
, sizeof(Elf64_Phdr
), s
);
223 error_setg(errp
, "dump: failed to write program header table");
227 static inline int cpu_index(CPUState
*cpu
)
229 return cpu
->cpu_index
+ 1;
232 static void write_elf64_notes(WriteCoreDumpFunction f
, DumpState
*s
,
241 ret
= cpu_write_elf64_note(f
, cpu
, id
, s
);
243 error_setg(errp
, "dump: failed to write elf notes");
249 ret
= cpu_write_elf64_qemunote(f
, cpu
, s
);
251 error_setg(errp
, "dump: failed to write CPU status");
257 static void write_elf32_note(DumpState
*s
, Error
**errp
)
259 hwaddr begin
= s
->memory_offset
- s
->note_size
;
263 memset(&phdr
, 0, sizeof(Elf32_Phdr
));
264 phdr
.p_type
= cpu_to_dump32(s
, PT_NOTE
);
265 phdr
.p_offset
= cpu_to_dump32(s
, begin
);
267 phdr
.p_filesz
= cpu_to_dump32(s
, s
->note_size
);
268 phdr
.p_memsz
= cpu_to_dump32(s
, s
->note_size
);
271 ret
= fd_write_vmcore(&phdr
, sizeof(Elf32_Phdr
), s
);
273 error_setg(errp
, "dump: failed to write program header table");
277 static void write_elf32_notes(WriteCoreDumpFunction f
, DumpState
*s
,
286 ret
= cpu_write_elf32_note(f
, cpu
, id
, s
);
288 error_setg(errp
, "dump: failed to write elf notes");
294 ret
= cpu_write_elf32_qemunote(f
, cpu
, s
);
296 error_setg(errp
, "dump: failed to write CPU status");
302 static void write_elf_section(DumpState
*s
, int type
, Error
**errp
)
311 shdr_size
= sizeof(Elf32_Shdr
);
312 memset(&shdr32
, 0, shdr_size
);
313 shdr32
.sh_info
= cpu_to_dump32(s
, s
->sh_info
);
316 shdr_size
= sizeof(Elf64_Shdr
);
317 memset(&shdr64
, 0, shdr_size
);
318 shdr64
.sh_info
= cpu_to_dump32(s
, s
->sh_info
);
322 ret
= fd_write_vmcore(&shdr
, shdr_size
, s
);
324 error_setg(errp
, "dump: failed to write section header table");
328 static void write_data(DumpState
*s
, void *buf
, int length
, Error
**errp
)
332 ret
= fd_write_vmcore(buf
, length
, s
);
334 error_setg(errp
, "dump: failed to save memory");
336 s
->written_size
+= length
;
340 /* write the memory to vmcore. 1 page per I/O. */
341 static void write_memory(DumpState
*s
, GuestPhysBlock
*block
, ram_addr_t start
,
342 int64_t size
, Error
**errp
)
345 Error
*local_err
= NULL
;
347 for (i
= 0; i
< size
/ s
->dump_info
.page_size
; i
++) {
348 write_data(s
, block
->host_addr
+ start
+ i
* s
->dump_info
.page_size
,
349 s
->dump_info
.page_size
, &local_err
);
351 error_propagate(errp
, local_err
);
356 if ((size
% s
->dump_info
.page_size
) != 0) {
357 write_data(s
, block
->host_addr
+ start
+ i
* s
->dump_info
.page_size
,
358 size
% s
->dump_info
.page_size
, &local_err
);
360 error_propagate(errp
, local_err
);
366 /* get the memory's offset and size in the vmcore */
367 static void get_offset_range(hwaddr phys_addr
,
368 ram_addr_t mapping_length
,
373 GuestPhysBlock
*block
;
374 hwaddr offset
= s
->memory_offset
;
375 int64_t size_in_block
, start
;
377 /* When the memory is not stored into vmcore, offset will be -1 */
382 if (phys_addr
< s
->begin
|| phys_addr
>= s
->begin
+ s
->length
) {
387 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
389 if (block
->target_start
>= s
->begin
+ s
->length
||
390 block
->target_end
<= s
->begin
) {
391 /* This block is out of the range */
395 if (s
->begin
<= block
->target_start
) {
396 start
= block
->target_start
;
401 size_in_block
= block
->target_end
- start
;
402 if (s
->begin
+ s
->length
< block
->target_end
) {
403 size_in_block
-= block
->target_end
- (s
->begin
+ s
->length
);
406 start
= block
->target_start
;
407 size_in_block
= block
->target_end
- block
->target_start
;
410 if (phys_addr
>= start
&& phys_addr
< start
+ size_in_block
) {
411 *p_offset
= phys_addr
- start
+ offset
;
413 /* The offset range mapped from the vmcore file must not spill over
414 * the GuestPhysBlock, clamp it. The rest of the mapping will be
415 * zero-filled in memory at load time; see
416 * <http://refspecs.linuxbase.org/elf/gabi4+/ch5.pheader.html>.
418 *p_filesz
= phys_addr
+ mapping_length
<= start
+ size_in_block
?
420 size_in_block
- (phys_addr
- start
);
424 offset
+= size_in_block
;
428 static void write_elf_loads(DumpState
*s
, Error
**errp
)
430 hwaddr offset
, filesz
;
431 MemoryMapping
*memory_mapping
;
432 uint32_t phdr_index
= 1;
434 Error
*local_err
= NULL
;
436 if (s
->have_section
) {
437 max_index
= s
->sh_info
;
439 max_index
= s
->phdr_num
;
442 QTAILQ_FOREACH(memory_mapping
, &s
->list
.head
, next
) {
443 get_offset_range(memory_mapping
->phys_addr
,
444 memory_mapping
->length
,
445 s
, &offset
, &filesz
);
446 if (s
->dump_info
.d_class
== ELFCLASS64
) {
447 write_elf64_load(s
, memory_mapping
, phdr_index
++, offset
,
450 write_elf32_load(s
, memory_mapping
, phdr_index
++, offset
,
455 error_propagate(errp
, local_err
);
459 if (phdr_index
>= max_index
) {
465 /* write elf header, PT_NOTE and elf note to vmcore. */
466 static void dump_begin(DumpState
*s
, Error
**errp
)
468 Error
*local_err
= NULL
;
471 * the vmcore's format is:
490 * we only know where the memory is saved after we write elf note into
494 /* write elf header to vmcore */
495 if (s
->dump_info
.d_class
== ELFCLASS64
) {
496 write_elf64_header(s
, &local_err
);
498 write_elf32_header(s
, &local_err
);
501 error_propagate(errp
, local_err
);
505 if (s
->dump_info
.d_class
== ELFCLASS64
) {
506 /* write PT_NOTE to vmcore */
507 write_elf64_note(s
, &local_err
);
509 error_propagate(errp
, local_err
);
513 /* write all PT_LOAD to vmcore */
514 write_elf_loads(s
, &local_err
);
516 error_propagate(errp
, local_err
);
520 /* write section to vmcore */
521 if (s
->have_section
) {
522 write_elf_section(s
, 1, &local_err
);
524 error_propagate(errp
, local_err
);
529 /* write notes to vmcore */
530 write_elf64_notes(fd_write_vmcore
, s
, &local_err
);
532 error_propagate(errp
, local_err
);
536 /* write PT_NOTE to vmcore */
537 write_elf32_note(s
, &local_err
);
539 error_propagate(errp
, local_err
);
543 /* write all PT_LOAD to vmcore */
544 write_elf_loads(s
, &local_err
);
546 error_propagate(errp
, local_err
);
550 /* write section to vmcore */
551 if (s
->have_section
) {
552 write_elf_section(s
, 0, &local_err
);
554 error_propagate(errp
, local_err
);
559 /* write notes to vmcore */
560 write_elf32_notes(fd_write_vmcore
, s
, &local_err
);
562 error_propagate(errp
, local_err
);
568 static int get_next_block(DumpState
*s
, GuestPhysBlock
*block
)
571 block
= QTAILQ_NEXT(block
, next
);
578 s
->next_block
= block
;
580 if (block
->target_start
>= s
->begin
+ s
->length
||
581 block
->target_end
<= s
->begin
) {
582 /* This block is out of the range */
586 if (s
->begin
> block
->target_start
) {
587 s
->start
= s
->begin
- block
->target_start
;
595 /* write all memory to vmcore */
596 static void dump_iterate(DumpState
*s
, Error
**errp
)
598 GuestPhysBlock
*block
;
600 Error
*local_err
= NULL
;
603 block
= s
->next_block
;
605 size
= block
->target_end
- block
->target_start
;
608 if (s
->begin
+ s
->length
< block
->target_end
) {
609 size
-= block
->target_end
- (s
->begin
+ s
->length
);
612 write_memory(s
, block
, s
->start
, size
, &local_err
);
614 error_propagate(errp
, local_err
);
618 } while (!get_next_block(s
, block
));
621 static void create_vmcore(DumpState
*s
, Error
**errp
)
623 Error
*local_err
= NULL
;
625 dump_begin(s
, &local_err
);
627 error_propagate(errp
, local_err
);
631 dump_iterate(s
, errp
);
634 static int write_start_flat_header(int fd
)
636 MakedumpfileHeader
*mh
;
639 QEMU_BUILD_BUG_ON(sizeof *mh
> MAX_SIZE_MDF_HEADER
);
640 mh
= g_malloc0(MAX_SIZE_MDF_HEADER
);
642 memcpy(mh
->signature
, MAKEDUMPFILE_SIGNATURE
,
643 MIN(sizeof mh
->signature
, sizeof MAKEDUMPFILE_SIGNATURE
));
645 mh
->type
= cpu_to_be64(TYPE_FLAT_HEADER
);
646 mh
->version
= cpu_to_be64(VERSION_FLAT_HEADER
);
649 written_size
= qemu_write_full(fd
, mh
, MAX_SIZE_MDF_HEADER
);
650 if (written_size
!= MAX_SIZE_MDF_HEADER
) {
658 static int write_end_flat_header(int fd
)
660 MakedumpfileDataHeader mdh
;
662 mdh
.offset
= END_FLAG_FLAT_HEADER
;
663 mdh
.buf_size
= END_FLAG_FLAT_HEADER
;
666 written_size
= qemu_write_full(fd
, &mdh
, sizeof(mdh
));
667 if (written_size
!= sizeof(mdh
)) {
674 static int write_buffer(int fd
, off_t offset
, const void *buf
, size_t size
)
677 MakedumpfileDataHeader mdh
;
679 mdh
.offset
= cpu_to_be64(offset
);
680 mdh
.buf_size
= cpu_to_be64(size
);
682 written_size
= qemu_write_full(fd
, &mdh
, sizeof(mdh
));
683 if (written_size
!= sizeof(mdh
)) {
687 written_size
= qemu_write_full(fd
, buf
, size
);
688 if (written_size
!= size
) {
695 static int buf_write_note(const void *buf
, size_t size
, void *opaque
)
697 DumpState
*s
= opaque
;
699 /* note_buf is not enough */
700 if (s
->note_buf_offset
+ size
> s
->note_size
) {
704 memcpy(s
->note_buf
+ s
->note_buf_offset
, buf
, size
);
706 s
->note_buf_offset
+= size
;
711 /* write common header, sub header and elf note to vmcore */
712 static void create_header32(DumpState
*s
, Error
**errp
)
714 DiskDumpHeader32
*dh
= NULL
;
715 KdumpSubHeader32
*kh
= NULL
;
718 uint32_t sub_hdr_size
;
719 uint32_t bitmap_blocks
;
721 uint64_t offset_note
;
722 Error
*local_err
= NULL
;
724 /* write common header, the version of kdump-compressed format is 6th */
725 size
= sizeof(DiskDumpHeader32
);
726 dh
= g_malloc0(size
);
728 strncpy(dh
->signature
, KDUMP_SIGNATURE
, strlen(KDUMP_SIGNATURE
));
729 dh
->header_version
= cpu_to_dump32(s
, 6);
730 block_size
= s
->dump_info
.page_size
;
731 dh
->block_size
= cpu_to_dump32(s
, block_size
);
732 sub_hdr_size
= sizeof(struct KdumpSubHeader32
) + s
->note_size
;
733 sub_hdr_size
= DIV_ROUND_UP(sub_hdr_size
, block_size
);
734 dh
->sub_hdr_size
= cpu_to_dump32(s
, sub_hdr_size
);
735 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
736 dh
->max_mapnr
= cpu_to_dump32(s
, MIN(s
->max_mapnr
, UINT_MAX
));
737 dh
->nr_cpus
= cpu_to_dump32(s
, s
->nr_cpus
);
738 bitmap_blocks
= DIV_ROUND_UP(s
->len_dump_bitmap
, block_size
) * 2;
739 dh
->bitmap_blocks
= cpu_to_dump32(s
, bitmap_blocks
);
740 strncpy(dh
->utsname
.machine
, ELF_MACHINE_UNAME
, sizeof(dh
->utsname
.machine
));
742 if (s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) {
743 status
|= DUMP_DH_COMPRESSED_ZLIB
;
746 if (s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) {
747 status
|= DUMP_DH_COMPRESSED_LZO
;
751 if (s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) {
752 status
|= DUMP_DH_COMPRESSED_SNAPPY
;
755 dh
->status
= cpu_to_dump32(s
, status
);
757 if (write_buffer(s
->fd
, 0, dh
, size
) < 0) {
758 error_setg(errp
, "dump: failed to write disk dump header");
762 /* write sub header */
763 size
= sizeof(KdumpSubHeader32
);
764 kh
= g_malloc0(size
);
766 /* 64bit max_mapnr_64 */
767 kh
->max_mapnr_64
= cpu_to_dump64(s
, s
->max_mapnr
);
768 kh
->phys_base
= cpu_to_dump32(s
, s
->dump_info
.phys_base
);
769 kh
->dump_level
= cpu_to_dump32(s
, DUMP_LEVEL
);
771 offset_note
= DISKDUMP_HEADER_BLOCKS
* block_size
+ size
;
772 kh
->offset_note
= cpu_to_dump64(s
, offset_note
);
773 kh
->note_size
= cpu_to_dump32(s
, s
->note_size
);
775 if (write_buffer(s
->fd
, DISKDUMP_HEADER_BLOCKS
*
776 block_size
, kh
, size
) < 0) {
777 error_setg(errp
, "dump: failed to write kdump sub header");
782 s
->note_buf
= g_malloc0(s
->note_size
);
783 s
->note_buf_offset
= 0;
785 /* use s->note_buf to store notes temporarily */
786 write_elf32_notes(buf_write_note
, s
, &local_err
);
788 error_propagate(errp
, local_err
);
791 if (write_buffer(s
->fd
, offset_note
, s
->note_buf
,
793 error_setg(errp
, "dump: failed to write notes");
797 /* get offset of dump_bitmap */
798 s
->offset_dump_bitmap
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
) *
801 /* get offset of page */
802 s
->offset_page
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
+ bitmap_blocks
) *
811 /* write common header, sub header and elf note to vmcore */
812 static void create_header64(DumpState
*s
, Error
**errp
)
814 DiskDumpHeader64
*dh
= NULL
;
815 KdumpSubHeader64
*kh
= NULL
;
818 uint32_t sub_hdr_size
;
819 uint32_t bitmap_blocks
;
821 uint64_t offset_note
;
822 Error
*local_err
= NULL
;
824 /* write common header, the version of kdump-compressed format is 6th */
825 size
= sizeof(DiskDumpHeader64
);
826 dh
= g_malloc0(size
);
828 strncpy(dh
->signature
, KDUMP_SIGNATURE
, strlen(KDUMP_SIGNATURE
));
829 dh
->header_version
= cpu_to_dump32(s
, 6);
830 block_size
= s
->dump_info
.page_size
;
831 dh
->block_size
= cpu_to_dump32(s
, block_size
);
832 sub_hdr_size
= sizeof(struct KdumpSubHeader64
) + s
->note_size
;
833 sub_hdr_size
= DIV_ROUND_UP(sub_hdr_size
, block_size
);
834 dh
->sub_hdr_size
= cpu_to_dump32(s
, sub_hdr_size
);
835 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
836 dh
->max_mapnr
= cpu_to_dump32(s
, MIN(s
->max_mapnr
, UINT_MAX
));
837 dh
->nr_cpus
= cpu_to_dump32(s
, s
->nr_cpus
);
838 bitmap_blocks
= DIV_ROUND_UP(s
->len_dump_bitmap
, block_size
) * 2;
839 dh
->bitmap_blocks
= cpu_to_dump32(s
, bitmap_blocks
);
840 strncpy(dh
->utsname
.machine
, ELF_MACHINE_UNAME
, sizeof(dh
->utsname
.machine
));
842 if (s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) {
843 status
|= DUMP_DH_COMPRESSED_ZLIB
;
846 if (s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) {
847 status
|= DUMP_DH_COMPRESSED_LZO
;
851 if (s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) {
852 status
|= DUMP_DH_COMPRESSED_SNAPPY
;
855 dh
->status
= cpu_to_dump32(s
, status
);
857 if (write_buffer(s
->fd
, 0, dh
, size
) < 0) {
858 error_setg(errp
, "dump: failed to write disk dump header");
862 /* write sub header */
863 size
= sizeof(KdumpSubHeader64
);
864 kh
= g_malloc0(size
);
866 /* 64bit max_mapnr_64 */
867 kh
->max_mapnr_64
= cpu_to_dump64(s
, s
->max_mapnr
);
868 kh
->phys_base
= cpu_to_dump64(s
, s
->dump_info
.phys_base
);
869 kh
->dump_level
= cpu_to_dump32(s
, DUMP_LEVEL
);
871 offset_note
= DISKDUMP_HEADER_BLOCKS
* block_size
+ size
;
872 kh
->offset_note
= cpu_to_dump64(s
, offset_note
);
873 kh
->note_size
= cpu_to_dump64(s
, s
->note_size
);
875 if (write_buffer(s
->fd
, DISKDUMP_HEADER_BLOCKS
*
876 block_size
, kh
, size
) < 0) {
877 error_setg(errp
, "dump: failed to write kdump sub header");
882 s
->note_buf
= g_malloc0(s
->note_size
);
883 s
->note_buf_offset
= 0;
885 /* use s->note_buf to store notes temporarily */
886 write_elf64_notes(buf_write_note
, s
, &local_err
);
888 error_propagate(errp
, local_err
);
892 if (write_buffer(s
->fd
, offset_note
, s
->note_buf
,
894 error_setg(errp
, "dump: failed to write notes");
898 /* get offset of dump_bitmap */
899 s
->offset_dump_bitmap
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
) *
902 /* get offset of page */
903 s
->offset_page
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
+ bitmap_blocks
) *
912 static void write_dump_header(DumpState
*s
, Error
**errp
)
914 Error
*local_err
= NULL
;
916 if (s
->dump_info
.d_class
== ELFCLASS32
) {
917 create_header32(s
, &local_err
);
919 create_header64(s
, &local_err
);
922 error_propagate(errp
, local_err
);
926 static size_t dump_bitmap_get_bufsize(DumpState
*s
)
928 return s
->dump_info
.page_size
;
932 * set dump_bitmap sequencely. the bit before last_pfn is not allowed to be
933 * rewritten, so if need to set the first bit, set last_pfn and pfn to 0.
934 * set_dump_bitmap will always leave the recently set bit un-sync. And setting
935 * (last bit + sizeof(buf) * 8) to 0 will do flushing the content in buf into
936 * vmcore, ie. synchronizing un-sync bit into vmcore.
938 static int set_dump_bitmap(uint64_t last_pfn
, uint64_t pfn
, bool value
,
939 uint8_t *buf
, DumpState
*s
)
941 off_t old_offset
, new_offset
;
942 off_t offset_bitmap1
, offset_bitmap2
;
944 size_t bitmap_bufsize
= dump_bitmap_get_bufsize(s
);
945 size_t bits_per_buf
= bitmap_bufsize
* CHAR_BIT
;
947 /* should not set the previous place */
948 assert(last_pfn
<= pfn
);
951 * if the bit needed to be set is not cached in buf, flush the data in buf
953 * making new_offset be bigger than old_offset can also sync remained data
956 old_offset
= bitmap_bufsize
* (last_pfn
/ bits_per_buf
);
957 new_offset
= bitmap_bufsize
* (pfn
/ bits_per_buf
);
959 while (old_offset
< new_offset
) {
960 /* calculate the offset and write dump_bitmap */
961 offset_bitmap1
= s
->offset_dump_bitmap
+ old_offset
;
962 if (write_buffer(s
->fd
, offset_bitmap1
, buf
,
963 bitmap_bufsize
) < 0) {
967 /* dump level 1 is chosen, so 1st and 2nd bitmap are same */
968 offset_bitmap2
= s
->offset_dump_bitmap
+ s
->len_dump_bitmap
+
970 if (write_buffer(s
->fd
, offset_bitmap2
, buf
,
971 bitmap_bufsize
) < 0) {
975 memset(buf
, 0, bitmap_bufsize
);
976 old_offset
+= bitmap_bufsize
;
979 /* get the exact place of the bit in the buf, and set it */
980 byte
= (pfn
% bits_per_buf
) / CHAR_BIT
;
981 bit
= (pfn
% bits_per_buf
) % CHAR_BIT
;
983 buf
[byte
] |= 1u << bit
;
985 buf
[byte
] &= ~(1u << bit
);
991 static uint64_t dump_paddr_to_pfn(DumpState
*s
, uint64_t addr
)
993 int target_page_shift
= ctz32(s
->dump_info
.page_size
);
995 return (addr
>> target_page_shift
) - ARCH_PFN_OFFSET
;
998 static uint64_t dump_pfn_to_paddr(DumpState
*s
, uint64_t pfn
)
1000 int target_page_shift
= ctz32(s
->dump_info
.page_size
);
1002 return (pfn
+ ARCH_PFN_OFFSET
) << target_page_shift
;
1006 * exam every page and return the page frame number and the address of the page.
1007 * bufptr can be NULL. note: the blocks here is supposed to reflect guest-phys
1008 * blocks, so block->target_start and block->target_end should be interal
1009 * multiples of the target page size.
1011 static bool get_next_page(GuestPhysBlock
**blockptr
, uint64_t *pfnptr
,
1012 uint8_t **bufptr
, DumpState
*s
)
1014 GuestPhysBlock
*block
= *blockptr
;
1015 hwaddr addr
, target_page_mask
= ~((hwaddr
)s
->dump_info
.page_size
- 1);
1018 /* block == NULL means the start of the iteration */
1020 block
= QTAILQ_FIRST(&s
->guest_phys_blocks
.head
);
1022 assert((block
->target_start
& ~target_page_mask
) == 0);
1023 assert((block
->target_end
& ~target_page_mask
) == 0);
1024 *pfnptr
= dump_paddr_to_pfn(s
, block
->target_start
);
1026 *bufptr
= block
->host_addr
;
1031 *pfnptr
= *pfnptr
+ 1;
1032 addr
= dump_pfn_to_paddr(s
, *pfnptr
);
1034 if ((addr
>= block
->target_start
) &&
1035 (addr
+ s
->dump_info
.page_size
<= block
->target_end
)) {
1036 buf
= block
->host_addr
+ (addr
- block
->target_start
);
1038 /* the next page is in the next block */
1039 block
= QTAILQ_NEXT(block
, next
);
1044 assert((block
->target_start
& ~target_page_mask
) == 0);
1045 assert((block
->target_end
& ~target_page_mask
) == 0);
1046 *pfnptr
= dump_paddr_to_pfn(s
, block
->target_start
);
1047 buf
= block
->host_addr
;
1057 static void write_dump_bitmap(DumpState
*s
, Error
**errp
)
1060 uint64_t last_pfn
, pfn
;
1061 void *dump_bitmap_buf
;
1062 size_t num_dumpable
;
1063 GuestPhysBlock
*block_iter
= NULL
;
1064 size_t bitmap_bufsize
= dump_bitmap_get_bufsize(s
);
1065 size_t bits_per_buf
= bitmap_bufsize
* CHAR_BIT
;
1067 /* dump_bitmap_buf is used to store dump_bitmap temporarily */
1068 dump_bitmap_buf
= g_malloc0(bitmap_bufsize
);
1074 * exam memory page by page, and set the bit in dump_bitmap corresponded
1075 * to the existing page.
1077 while (get_next_page(&block_iter
, &pfn
, NULL
, s
)) {
1078 ret
= set_dump_bitmap(last_pfn
, pfn
, true, dump_bitmap_buf
, s
);
1080 error_setg(errp
, "dump: failed to set dump_bitmap");
1089 * set_dump_bitmap will always leave the recently set bit un-sync. Here we
1090 * set the remaining bits from last_pfn to the end of the bitmap buffer to
1091 * 0. With those set, the un-sync bit will be synchronized into the vmcore.
1093 if (num_dumpable
> 0) {
1094 ret
= set_dump_bitmap(last_pfn
, last_pfn
+ bits_per_buf
, false,
1095 dump_bitmap_buf
, s
);
1097 error_setg(errp
, "dump: failed to sync dump_bitmap");
1102 /* number of dumpable pages that will be dumped later */
1103 s
->num_dumpable
= num_dumpable
;
1106 g_free(dump_bitmap_buf
);
1109 static void prepare_data_cache(DataCache
*data_cache
, DumpState
*s
,
1112 data_cache
->fd
= s
->fd
;
1113 data_cache
->data_size
= 0;
1114 data_cache
->buf_size
= 4 * dump_bitmap_get_bufsize(s
);
1115 data_cache
->buf
= g_malloc0(data_cache
->buf_size
);
1116 data_cache
->offset
= offset
;
1119 static int write_cache(DataCache
*dc
, const void *buf
, size_t size
,
1123 * dc->buf_size should not be less than size, otherwise dc will never be
1126 assert(size
<= dc
->buf_size
);
1129 * if flag_sync is set, synchronize data in dc->buf into vmcore.
1130 * otherwise check if the space is enough for caching data in buf, if not,
1131 * write the data in dc->buf to dc->fd and reset dc->buf
1133 if ((!flag_sync
&& dc
->data_size
+ size
> dc
->buf_size
) ||
1134 (flag_sync
&& dc
->data_size
> 0)) {
1135 if (write_buffer(dc
->fd
, dc
->offset
, dc
->buf
, dc
->data_size
) < 0) {
1139 dc
->offset
+= dc
->data_size
;
1144 memcpy(dc
->buf
+ dc
->data_size
, buf
, size
);
1145 dc
->data_size
+= size
;
1151 static void free_data_cache(DataCache
*data_cache
)
1153 g_free(data_cache
->buf
);
1156 static size_t get_len_buf_out(size_t page_size
, uint32_t flag_compress
)
1158 switch (flag_compress
) {
1159 case DUMP_DH_COMPRESSED_ZLIB
:
1160 return compressBound(page_size
);
1162 case DUMP_DH_COMPRESSED_LZO
:
1164 * LZO will expand incompressible data by a little amount. Please check
1165 * the following URL to see the expansion calculation:
1166 * http://www.oberhumer.com/opensource/lzo/lzofaq.php
1168 return page_size
+ page_size
/ 16 + 64 + 3;
1170 #ifdef CONFIG_SNAPPY
1171 case DUMP_DH_COMPRESSED_SNAPPY
:
1172 return snappy_max_compressed_length(page_size
);
1179 * check if the page is all 0
1181 static inline bool is_zero_page(const uint8_t *buf
, size_t page_size
)
1183 return buffer_is_zero(buf
, page_size
);
1186 static void write_dump_pages(DumpState
*s
, Error
**errp
)
1189 DataCache page_desc
, page_data
;
1190 size_t len_buf_out
, size_out
;
1192 lzo_bytep wrkmem
= NULL
;
1194 uint8_t *buf_out
= NULL
;
1195 off_t offset_desc
, offset_data
;
1196 PageDescriptor pd
, pd_zero
;
1198 GuestPhysBlock
*block_iter
= NULL
;
1201 /* get offset of page_desc and page_data in dump file */
1202 offset_desc
= s
->offset_page
;
1203 offset_data
= offset_desc
+ sizeof(PageDescriptor
) * s
->num_dumpable
;
1205 prepare_data_cache(&page_desc
, s
, offset_desc
);
1206 prepare_data_cache(&page_data
, s
, offset_data
);
1208 /* prepare buffer to store compressed data */
1209 len_buf_out
= get_len_buf_out(s
->dump_info
.page_size
, s
->flag_compress
);
1210 assert(len_buf_out
!= 0);
1213 wrkmem
= g_malloc(LZO1X_1_MEM_COMPRESS
);
1216 buf_out
= g_malloc(len_buf_out
);
1219 * init zero page's page_desc and page_data, because every zero page
1220 * uses the same page_data
1222 pd_zero
.size
= cpu_to_dump32(s
, s
->dump_info
.page_size
);
1223 pd_zero
.flags
= cpu_to_dump32(s
, 0);
1224 pd_zero
.offset
= cpu_to_dump64(s
, offset_data
);
1225 pd_zero
.page_flags
= cpu_to_dump64(s
, 0);
1226 buf
= g_malloc0(s
->dump_info
.page_size
);
1227 ret
= write_cache(&page_data
, buf
, s
->dump_info
.page_size
, false);
1230 error_setg(errp
, "dump: failed to write page data (zero page)");
1234 offset_data
+= s
->dump_info
.page_size
;
1237 * dump memory to vmcore page by page. zero page will all be resided in the
1238 * first page of page section
1240 while (get_next_page(&block_iter
, &pfn_iter
, &buf
, s
)) {
1241 /* check zero page */
1242 if (is_zero_page(buf
, s
->dump_info
.page_size
)) {
1243 ret
= write_cache(&page_desc
, &pd_zero
, sizeof(PageDescriptor
),
1246 error_setg(errp
, "dump: failed to write page desc");
1251 * not zero page, then:
1252 * 1. compress the page
1253 * 2. write the compressed page into the cache of page_data
1254 * 3. get page desc of the compressed page and write it into the
1255 * cache of page_desc
1257 * only one compression format will be used here, for
1258 * s->flag_compress is set. But when compression fails to work,
1259 * we fall back to save in plaintext.
1261 size_out
= len_buf_out
;
1262 if ((s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) &&
1263 (compress2(buf_out
, (uLongf
*)&size_out
, buf
,
1264 s
->dump_info
.page_size
, Z_BEST_SPEED
) == Z_OK
) &&
1265 (size_out
< s
->dump_info
.page_size
)) {
1266 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_ZLIB
);
1267 pd
.size
= cpu_to_dump32(s
, size_out
);
1269 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1271 error_setg(errp
, "dump: failed to write page data");
1275 } else if ((s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) &&
1276 (lzo1x_1_compress(buf
, s
->dump_info
.page_size
, buf_out
,
1277 (lzo_uint
*)&size_out
, wrkmem
) == LZO_E_OK
) &&
1278 (size_out
< s
->dump_info
.page_size
)) {
1279 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_LZO
);
1280 pd
.size
= cpu_to_dump32(s
, size_out
);
1282 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1284 error_setg(errp
, "dump: failed to write page data");
1288 #ifdef CONFIG_SNAPPY
1289 } else if ((s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) &&
1290 (snappy_compress((char *)buf
, s
->dump_info
.page_size
,
1291 (char *)buf_out
, &size_out
) == SNAPPY_OK
) &&
1292 (size_out
< s
->dump_info
.page_size
)) {
1293 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_SNAPPY
);
1294 pd
.size
= cpu_to_dump32(s
, size_out
);
1296 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1298 error_setg(errp
, "dump: failed to write page data");
1304 * fall back to save in plaintext, size_out should be
1305 * assigned the target's page size
1307 pd
.flags
= cpu_to_dump32(s
, 0);
1308 size_out
= s
->dump_info
.page_size
;
1309 pd
.size
= cpu_to_dump32(s
, size_out
);
1311 ret
= write_cache(&page_data
, buf
,
1312 s
->dump_info
.page_size
, false);
1314 error_setg(errp
, "dump: failed to write page data");
1319 /* get and write page desc here */
1320 pd
.page_flags
= cpu_to_dump64(s
, 0);
1321 pd
.offset
= cpu_to_dump64(s
, offset_data
);
1322 offset_data
+= size_out
;
1324 ret
= write_cache(&page_desc
, &pd
, sizeof(PageDescriptor
), false);
1326 error_setg(errp
, "dump: failed to write page desc");
1330 s
->written_size
+= s
->dump_info
.page_size
;
1333 ret
= write_cache(&page_desc
, NULL
, 0, true);
1335 error_setg(errp
, "dump: failed to sync cache for page_desc");
1338 ret
= write_cache(&page_data
, NULL
, 0, true);
1340 error_setg(errp
, "dump: failed to sync cache for page_data");
1345 free_data_cache(&page_desc
);
1346 free_data_cache(&page_data
);
1355 static void create_kdump_vmcore(DumpState
*s
, Error
**errp
)
1358 Error
*local_err
= NULL
;
1361 * the kdump-compressed format is:
1363 * +------------------------------------------+ 0x0
1364 * | main header (struct disk_dump_header) |
1365 * |------------------------------------------+ block 1
1366 * | sub header (struct kdump_sub_header) |
1367 * |------------------------------------------+ block 2
1368 * | 1st-dump_bitmap |
1369 * |------------------------------------------+ block 2 + X blocks
1370 * | 2nd-dump_bitmap | (aligned by block)
1371 * |------------------------------------------+ block 2 + 2 * X blocks
1372 * | page desc for pfn 0 (struct page_desc) | (aligned by block)
1373 * | page desc for pfn 1 (struct page_desc) |
1375 * |------------------------------------------| (not aligned by block)
1376 * | page data (pfn 0) |
1377 * | page data (pfn 1) |
1379 * +------------------------------------------+
1382 ret
= write_start_flat_header(s
->fd
);
1384 error_setg(errp
, "dump: failed to write start flat header");
1388 write_dump_header(s
, &local_err
);
1390 error_propagate(errp
, local_err
);
1394 write_dump_bitmap(s
, &local_err
);
1396 error_propagate(errp
, local_err
);
1400 write_dump_pages(s
, &local_err
);
1402 error_propagate(errp
, local_err
);
1406 ret
= write_end_flat_header(s
->fd
);
1408 error_setg(errp
, "dump: failed to write end flat header");
1413 static ram_addr_t
get_start_block(DumpState
*s
)
1415 GuestPhysBlock
*block
;
1417 if (!s
->has_filter
) {
1418 s
->next_block
= QTAILQ_FIRST(&s
->guest_phys_blocks
.head
);
1422 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
1423 if (block
->target_start
>= s
->begin
+ s
->length
||
1424 block
->target_end
<= s
->begin
) {
1425 /* This block is out of the range */
1429 s
->next_block
= block
;
1430 if (s
->begin
> block
->target_start
) {
1431 s
->start
= s
->begin
- block
->target_start
;
1441 static void get_max_mapnr(DumpState
*s
)
1443 GuestPhysBlock
*last_block
;
1445 last_block
= QTAILQ_LAST(&s
->guest_phys_blocks
.head
, GuestPhysBlockHead
);
1446 s
->max_mapnr
= dump_paddr_to_pfn(s
, last_block
->target_end
);
1449 static DumpState dump_state_global
= { .status
= DUMP_STATUS_NONE
};
1451 static void dump_state_prepare(DumpState
*s
)
1453 /* zero the struct, setting status to active */
1454 *s
= (DumpState
) { .status
= DUMP_STATUS_ACTIVE
};
1457 bool dump_in_progress(void)
1459 DumpState
*state
= &dump_state_global
;
1460 return (atomic_read(&state
->status
) == DUMP_STATUS_ACTIVE
);
1463 /* calculate total size of memory to be dumped (taking filter into
1465 static int64_t dump_calculate_size(DumpState
*s
)
1467 GuestPhysBlock
*block
;
1468 int64_t size
= 0, total
= 0, left
= 0, right
= 0;
1470 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
1471 if (s
->has_filter
) {
1472 /* calculate the overlapped region. */
1473 left
= MAX(s
->begin
, block
->target_start
);
1474 right
= MIN(s
->begin
+ s
->length
, block
->target_end
);
1475 size
= right
- left
;
1476 size
= size
> 0 ? size
: 0;
1478 /* count the whole region in */
1479 size
= (block
->target_end
- block
->target_start
);
1487 static void dump_init(DumpState
*s
, int fd
, bool has_format
,
1488 DumpGuestMemoryFormat format
, bool paging
, bool has_filter
,
1489 int64_t begin
, int64_t length
, Error
**errp
)
1496 s
->has_format
= has_format
;
1498 s
->written_size
= 0;
1500 /* kdump-compressed is conflict with paging and filter */
1501 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1502 assert(!paging
&& !has_filter
);
1505 if (runstate_is_running()) {
1506 vm_stop(RUN_STATE_SAVE_VM
);
1512 /* If we use KVM, we should synchronize the registers before we get dump
1513 * info or physmap info.
1515 cpu_synchronize_all_states();
1522 s
->has_filter
= has_filter
;
1526 memory_mapping_list_init(&s
->list
);
1528 guest_phys_blocks_init(&s
->guest_phys_blocks
);
1529 guest_phys_blocks_append(&s
->guest_phys_blocks
);
1530 s
->total_size
= dump_calculate_size(s
);
1531 #ifdef DEBUG_DUMP_GUEST_MEMORY
1532 fprintf(stderr
, "DUMP: total memory to dump: %lu\n", s
->total_size
);
1535 s
->start
= get_start_block(s
);
1536 if (s
->start
== -1) {
1537 error_setg(errp
, QERR_INVALID_PARAMETER
, "begin");
1541 /* get dump info: endian, class and architecture.
1542 * If the target architecture is not supported, cpu_get_dump_info() will
1545 ret
= cpu_get_dump_info(&s
->dump_info
, &s
->guest_phys_blocks
);
1547 error_setg(errp
, QERR_UNSUPPORTED
);
1551 if (!s
->dump_info
.page_size
) {
1552 s
->dump_info
.page_size
= TARGET_PAGE_SIZE
;
1555 s
->note_size
= cpu_get_note_size(s
->dump_info
.d_class
,
1556 s
->dump_info
.d_machine
, nr_cpus
);
1557 if (s
->note_size
< 0) {
1558 error_setg(errp
, QERR_UNSUPPORTED
);
1562 /* get memory mapping */
1564 qemu_get_guest_memory_mapping(&s
->list
, &s
->guest_phys_blocks
, &err
);
1566 error_propagate(errp
, err
);
1570 qemu_get_guest_simple_memory_mapping(&s
->list
, &s
->guest_phys_blocks
);
1573 s
->nr_cpus
= nr_cpus
;
1578 tmp
= DIV_ROUND_UP(DIV_ROUND_UP(s
->max_mapnr
, CHAR_BIT
),
1579 s
->dump_info
.page_size
);
1580 s
->len_dump_bitmap
= tmp
* s
->dump_info
.page_size
;
1582 /* init for kdump-compressed format */
1583 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1585 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
:
1586 s
->flag_compress
= DUMP_DH_COMPRESSED_ZLIB
;
1589 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
:
1591 if (lzo_init() != LZO_E_OK
) {
1592 error_setg(errp
, "failed to initialize the LZO library");
1596 s
->flag_compress
= DUMP_DH_COMPRESSED_LZO
;
1599 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
:
1600 s
->flag_compress
= DUMP_DH_COMPRESSED_SNAPPY
;
1604 s
->flag_compress
= 0;
1610 if (s
->has_filter
) {
1611 memory_mapping_filter(&s
->list
, s
->begin
, s
->length
);
1615 * calculate phdr_num
1617 * the type of ehdr->e_phnum is uint16_t, so we should avoid overflow
1619 s
->phdr_num
= 1; /* PT_NOTE */
1620 if (s
->list
.num
< UINT16_MAX
- 2) {
1621 s
->phdr_num
+= s
->list
.num
;
1622 s
->have_section
= false;
1624 s
->have_section
= true;
1625 s
->phdr_num
= PN_XNUM
;
1626 s
->sh_info
= 1; /* PT_NOTE */
1628 /* the type of shdr->sh_info is uint32_t, so we should avoid overflow */
1629 if (s
->list
.num
<= UINT32_MAX
- 1) {
1630 s
->sh_info
+= s
->list
.num
;
1632 s
->sh_info
= UINT32_MAX
;
1636 if (s
->dump_info
.d_class
== ELFCLASS64
) {
1637 if (s
->have_section
) {
1638 s
->memory_offset
= sizeof(Elf64_Ehdr
) +
1639 sizeof(Elf64_Phdr
) * s
->sh_info
+
1640 sizeof(Elf64_Shdr
) + s
->note_size
;
1642 s
->memory_offset
= sizeof(Elf64_Ehdr
) +
1643 sizeof(Elf64_Phdr
) * s
->phdr_num
+ s
->note_size
;
1646 if (s
->have_section
) {
1647 s
->memory_offset
= sizeof(Elf32_Ehdr
) +
1648 sizeof(Elf32_Phdr
) * s
->sh_info
+
1649 sizeof(Elf32_Shdr
) + s
->note_size
;
1651 s
->memory_offset
= sizeof(Elf32_Ehdr
) +
1652 sizeof(Elf32_Phdr
) * s
->phdr_num
+ s
->note_size
;
1662 /* this operation might be time consuming. */
1663 static void dump_process(DumpState
*s
, Error
**errp
)
1665 Error
*local_err
= NULL
;
1666 DumpQueryResult
*result
= NULL
;
1668 if (s
->has_format
&& s
->format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1669 create_kdump_vmcore(s
, &local_err
);
1671 create_vmcore(s
, &local_err
);
1674 /* make sure status is written after written_size updates */
1676 atomic_set(&s
->status
,
1677 (local_err
? DUMP_STATUS_FAILED
: DUMP_STATUS_COMPLETED
));
1679 /* send DUMP_COMPLETED message (unconditionally) */
1680 result
= qmp_query_dump(NULL
);
1681 /* should never fail */
1683 qapi_event_send_dump_completed(result
, !!local_err
, (local_err
? \
1684 error_get_pretty(local_err
) : NULL
),
1686 qapi_free_DumpQueryResult(result
);
1688 error_propagate(errp
, local_err
);
1692 static void *dump_thread(void *data
)
1695 DumpState
*s
= (DumpState
*)data
;
1696 dump_process(s
, &err
);
1701 DumpQueryResult
*qmp_query_dump(Error
**errp
)
1703 DumpQueryResult
*result
= g_new(DumpQueryResult
, 1);
1704 DumpState
*state
= &dump_state_global
;
1705 result
->status
= atomic_read(&state
->status
);
1706 /* make sure we are reading status and written_size in order */
1708 result
->completed
= state
->written_size
;
1709 result
->total
= state
->total_size
;
1713 void qmp_dump_guest_memory(bool paging
, const char *file
,
1714 bool has_detach
, bool detach
,
1715 bool has_begin
, int64_t begin
, bool has_length
,
1716 int64_t length
, bool has_format
,
1717 DumpGuestMemoryFormat format
, Error
**errp
)
1722 Error
*local_err
= NULL
;
1723 bool detach_p
= false;
1725 if (runstate_check(RUN_STATE_INMIGRATE
)) {
1726 error_setg(errp
, "Dump not allowed during incoming migration.");
1730 /* if there is a dump in background, we should wait until the dump
1732 if (dump_in_progress()) {
1733 error_setg(errp
, "There is a dump in process, please wait.");
1738 * kdump-compressed format need the whole memory dumped, so paging or
1739 * filter is not supported here.
1741 if ((has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) &&
1742 (paging
|| has_begin
|| has_length
)) {
1743 error_setg(errp
, "kdump-compressed format doesn't support paging or "
1747 if (has_begin
&& !has_length
) {
1748 error_setg(errp
, QERR_MISSING_PARAMETER
, "length");
1751 if (!has_begin
&& has_length
) {
1752 error_setg(errp
, QERR_MISSING_PARAMETER
, "begin");
1759 /* check whether lzo/snappy is supported */
1761 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
) {
1762 error_setg(errp
, "kdump-lzo is not available now");
1767 #ifndef CONFIG_SNAPPY
1768 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
) {
1769 error_setg(errp
, "kdump-snappy is not available now");
1775 if (strstart(file
, "fd:", &p
)) {
1776 fd
= monitor_get_fd(cur_mon
, p
, errp
);
1783 if (strstart(file
, "file:", &p
)) {
1784 fd
= qemu_open(p
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
, S_IRUSR
);
1786 error_setg_file_open(errp
, errno
, p
);
1792 error_setg(errp
, QERR_INVALID_PARAMETER
, "protocol");
1796 s
= &dump_state_global
;
1797 dump_state_prepare(s
);
1799 dump_init(s
, fd
, has_format
, format
, paging
, has_begin
,
1800 begin
, length
, &local_err
);
1802 error_propagate(errp
, local_err
);
1803 atomic_set(&s
->status
, DUMP_STATUS_FAILED
);
1809 qemu_thread_create(&s
->dump_thread
, "dump_thread", dump_thread
,
1810 s
, QEMU_THREAD_DETACHED
);
1813 dump_process(s
, errp
);
1817 DumpGuestMemoryCapability
*qmp_query_dump_guest_memory_capability(Error
**errp
)
1819 DumpGuestMemoryFormatList
*item
;
1820 DumpGuestMemoryCapability
*cap
=
1821 g_malloc0(sizeof(DumpGuestMemoryCapability
));
1823 /* elf is always available */
1824 item
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1825 cap
->formats
= item
;
1826 item
->value
= DUMP_GUEST_MEMORY_FORMAT_ELF
;
1828 /* kdump-zlib is always available */
1829 item
->next
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1831 item
->value
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
;
1833 /* add new item if kdump-lzo is available */
1835 item
->next
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1837 item
->value
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
;
1840 /* add new item if kdump-snappy is available */
1841 #ifdef CONFIG_SNAPPY
1842 item
->next
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1844 item
->value
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
;