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-common.h"
17 #include "exec/cpu-all.h"
18 #include "exec/hwaddr.h"
19 #include "monitor/monitor.h"
20 #include "sysemu/kvm.h"
21 #include "sysemu/dump.h"
22 #include "sysemu/sysemu.h"
23 #include "sysemu/memory_mapping.h"
24 #include "sysemu/cpus.h"
25 #include "qapi/error.h"
26 #include "qmp-commands.h"
30 #include <lzo/lzo1x.h>
35 #ifndef ELF_MACHINE_UNAME
36 #define ELF_MACHINE_UNAME "Unknown"
39 static uint16_t cpu_convert_to_target16(uint16_t val
, int endian
)
41 if (endian
== ELFDATA2LSB
) {
42 val
= cpu_to_le16(val
);
44 val
= cpu_to_be16(val
);
50 static uint32_t cpu_convert_to_target32(uint32_t val
, int endian
)
52 if (endian
== ELFDATA2LSB
) {
53 val
= cpu_to_le32(val
);
55 val
= cpu_to_be32(val
);
61 static uint64_t cpu_convert_to_target64(uint64_t val
, int endian
)
63 if (endian
== ELFDATA2LSB
) {
64 val
= cpu_to_le64(val
);
66 val
= cpu_to_be64(val
);
72 typedef struct DumpState
{
73 GuestPhysBlockList guest_phys_blocks
;
74 ArchDumpInfo dump_info
;
75 MemoryMappingList list
;
84 GuestPhysBlock
*next_block
;
90 uint8_t *note_buf
; /* buffer for notes */
91 size_t note_buf_offset
; /* the writing place in note_buf */
92 uint32_t nr_cpus
; /* number of guest's cpu */
93 uint64_t max_mapnr
; /* the biggest guest's phys-mem's number */
94 size_t len_dump_bitmap
; /* the size of the place used to store
95 dump_bitmap in vmcore */
96 off_t offset_dump_bitmap
; /* offset of dump_bitmap part in vmcore */
97 off_t offset_page
; /* offset of page part in vmcore */
98 size_t num_dumpable
; /* number of page that can be dumped */
99 uint32_t flag_compress
; /* indicate the compression format */
102 static int dump_cleanup(DumpState
*s
)
106 guest_phys_blocks_free(&s
->guest_phys_blocks
);
107 memory_mapping_list_free(&s
->list
);
118 static void dump_error(DumpState
*s
, const char *reason
)
123 static int fd_write_vmcore(const void *buf
, size_t size
, void *opaque
)
125 DumpState
*s
= opaque
;
128 written_size
= qemu_write_full(s
->fd
, buf
, size
);
129 if (written_size
!= size
) {
136 static int write_elf64_header(DumpState
*s
)
138 Elf64_Ehdr elf_header
;
140 int endian
= s
->dump_info
.d_endian
;
142 memset(&elf_header
, 0, sizeof(Elf64_Ehdr
));
143 memcpy(&elf_header
, ELFMAG
, SELFMAG
);
144 elf_header
.e_ident
[EI_CLASS
] = ELFCLASS64
;
145 elf_header
.e_ident
[EI_DATA
] = s
->dump_info
.d_endian
;
146 elf_header
.e_ident
[EI_VERSION
] = EV_CURRENT
;
147 elf_header
.e_type
= cpu_convert_to_target16(ET_CORE
, endian
);
148 elf_header
.e_machine
= cpu_convert_to_target16(s
->dump_info
.d_machine
,
150 elf_header
.e_version
= cpu_convert_to_target32(EV_CURRENT
, endian
);
151 elf_header
.e_ehsize
= cpu_convert_to_target16(sizeof(elf_header
), endian
);
152 elf_header
.e_phoff
= cpu_convert_to_target64(sizeof(Elf64_Ehdr
), endian
);
153 elf_header
.e_phentsize
= cpu_convert_to_target16(sizeof(Elf64_Phdr
),
155 elf_header
.e_phnum
= cpu_convert_to_target16(s
->phdr_num
, endian
);
156 if (s
->have_section
) {
157 uint64_t shoff
= sizeof(Elf64_Ehdr
) + sizeof(Elf64_Phdr
) * s
->sh_info
;
159 elf_header
.e_shoff
= cpu_convert_to_target64(shoff
, endian
);
160 elf_header
.e_shentsize
= cpu_convert_to_target16(sizeof(Elf64_Shdr
),
162 elf_header
.e_shnum
= cpu_convert_to_target16(1, endian
);
165 ret
= fd_write_vmcore(&elf_header
, sizeof(elf_header
), s
);
167 dump_error(s
, "dump: failed to write elf header.\n");
174 static int write_elf32_header(DumpState
*s
)
176 Elf32_Ehdr elf_header
;
178 int endian
= s
->dump_info
.d_endian
;
180 memset(&elf_header
, 0, sizeof(Elf32_Ehdr
));
181 memcpy(&elf_header
, ELFMAG
, SELFMAG
);
182 elf_header
.e_ident
[EI_CLASS
] = ELFCLASS32
;
183 elf_header
.e_ident
[EI_DATA
] = endian
;
184 elf_header
.e_ident
[EI_VERSION
] = EV_CURRENT
;
185 elf_header
.e_type
= cpu_convert_to_target16(ET_CORE
, endian
);
186 elf_header
.e_machine
= cpu_convert_to_target16(s
->dump_info
.d_machine
,
188 elf_header
.e_version
= cpu_convert_to_target32(EV_CURRENT
, endian
);
189 elf_header
.e_ehsize
= cpu_convert_to_target16(sizeof(elf_header
), endian
);
190 elf_header
.e_phoff
= cpu_convert_to_target32(sizeof(Elf32_Ehdr
), endian
);
191 elf_header
.e_phentsize
= cpu_convert_to_target16(sizeof(Elf32_Phdr
),
193 elf_header
.e_phnum
= cpu_convert_to_target16(s
->phdr_num
, endian
);
194 if (s
->have_section
) {
195 uint32_t shoff
= sizeof(Elf32_Ehdr
) + sizeof(Elf32_Phdr
) * s
->sh_info
;
197 elf_header
.e_shoff
= cpu_convert_to_target32(shoff
, endian
);
198 elf_header
.e_shentsize
= cpu_convert_to_target16(sizeof(Elf32_Shdr
),
200 elf_header
.e_shnum
= cpu_convert_to_target16(1, endian
);
203 ret
= fd_write_vmcore(&elf_header
, sizeof(elf_header
), s
);
205 dump_error(s
, "dump: failed to write elf header.\n");
212 static int write_elf64_load(DumpState
*s
, MemoryMapping
*memory_mapping
,
213 int phdr_index
, hwaddr offset
,
218 int endian
= s
->dump_info
.d_endian
;
220 memset(&phdr
, 0, sizeof(Elf64_Phdr
));
221 phdr
.p_type
= cpu_convert_to_target32(PT_LOAD
, endian
);
222 phdr
.p_offset
= cpu_convert_to_target64(offset
, endian
);
223 phdr
.p_paddr
= cpu_convert_to_target64(memory_mapping
->phys_addr
, endian
);
224 phdr
.p_filesz
= cpu_convert_to_target64(filesz
, endian
);
225 phdr
.p_memsz
= cpu_convert_to_target64(memory_mapping
->length
, endian
);
226 phdr
.p_vaddr
= cpu_convert_to_target64(memory_mapping
->virt_addr
, endian
);
228 assert(memory_mapping
->length
>= filesz
);
230 ret
= fd_write_vmcore(&phdr
, sizeof(Elf64_Phdr
), s
);
232 dump_error(s
, "dump: failed to write program header table.\n");
239 static int write_elf32_load(DumpState
*s
, MemoryMapping
*memory_mapping
,
240 int phdr_index
, hwaddr offset
,
245 int endian
= s
->dump_info
.d_endian
;
247 memset(&phdr
, 0, sizeof(Elf32_Phdr
));
248 phdr
.p_type
= cpu_convert_to_target32(PT_LOAD
, endian
);
249 phdr
.p_offset
= cpu_convert_to_target32(offset
, endian
);
250 phdr
.p_paddr
= cpu_convert_to_target32(memory_mapping
->phys_addr
, endian
);
251 phdr
.p_filesz
= cpu_convert_to_target32(filesz
, endian
);
252 phdr
.p_memsz
= cpu_convert_to_target32(memory_mapping
->length
, endian
);
253 phdr
.p_vaddr
= cpu_convert_to_target32(memory_mapping
->virt_addr
, endian
);
255 assert(memory_mapping
->length
>= filesz
);
257 ret
= fd_write_vmcore(&phdr
, sizeof(Elf32_Phdr
), s
);
259 dump_error(s
, "dump: failed to write program header table.\n");
266 static int write_elf64_note(DumpState
*s
)
269 int endian
= s
->dump_info
.d_endian
;
270 hwaddr begin
= s
->memory_offset
- s
->note_size
;
273 memset(&phdr
, 0, sizeof(Elf64_Phdr
));
274 phdr
.p_type
= cpu_convert_to_target32(PT_NOTE
, endian
);
275 phdr
.p_offset
= cpu_convert_to_target64(begin
, endian
);
277 phdr
.p_filesz
= cpu_convert_to_target64(s
->note_size
, endian
);
278 phdr
.p_memsz
= cpu_convert_to_target64(s
->note_size
, endian
);
281 ret
= fd_write_vmcore(&phdr
, sizeof(Elf64_Phdr
), s
);
283 dump_error(s
, "dump: failed to write program header table.\n");
290 static inline int cpu_index(CPUState
*cpu
)
292 return cpu
->cpu_index
+ 1;
295 static int write_elf64_notes(WriteCoreDumpFunction f
, DumpState
*s
)
303 ret
= cpu_write_elf64_note(f
, cpu
, id
, s
);
305 dump_error(s
, "dump: failed to write elf notes.\n");
311 ret
= cpu_write_elf64_qemunote(f
, cpu
, s
);
313 dump_error(s
, "dump: failed to write CPU status.\n");
321 static int write_elf32_note(DumpState
*s
)
323 hwaddr begin
= s
->memory_offset
- s
->note_size
;
325 int endian
= s
->dump_info
.d_endian
;
328 memset(&phdr
, 0, sizeof(Elf32_Phdr
));
329 phdr
.p_type
= cpu_convert_to_target32(PT_NOTE
, endian
);
330 phdr
.p_offset
= cpu_convert_to_target32(begin
, endian
);
332 phdr
.p_filesz
= cpu_convert_to_target32(s
->note_size
, endian
);
333 phdr
.p_memsz
= cpu_convert_to_target32(s
->note_size
, endian
);
336 ret
= fd_write_vmcore(&phdr
, sizeof(Elf32_Phdr
), s
);
338 dump_error(s
, "dump: failed to write program header table.\n");
345 static int write_elf32_notes(WriteCoreDumpFunction f
, DumpState
*s
)
353 ret
= cpu_write_elf32_note(f
, cpu
, id
, s
);
355 dump_error(s
, "dump: failed to write elf notes.\n");
361 ret
= cpu_write_elf32_qemunote(f
, cpu
, s
);
363 dump_error(s
, "dump: failed to write CPU status.\n");
371 static int write_elf_section(DumpState
*s
, int type
)
375 int endian
= s
->dump_info
.d_endian
;
381 shdr_size
= sizeof(Elf32_Shdr
);
382 memset(&shdr32
, 0, shdr_size
);
383 shdr32
.sh_info
= cpu_convert_to_target32(s
->sh_info
, endian
);
386 shdr_size
= sizeof(Elf64_Shdr
);
387 memset(&shdr64
, 0, shdr_size
);
388 shdr64
.sh_info
= cpu_convert_to_target32(s
->sh_info
, endian
);
392 ret
= fd_write_vmcore(&shdr
, shdr_size
, s
);
394 dump_error(s
, "dump: failed to write section header table.\n");
401 static int write_data(DumpState
*s
, void *buf
, int length
)
405 ret
= fd_write_vmcore(buf
, length
, s
);
407 dump_error(s
, "dump: failed to save memory.\n");
414 /* write the memroy to vmcore. 1 page per I/O. */
415 static int write_memory(DumpState
*s
, GuestPhysBlock
*block
, ram_addr_t start
,
421 for (i
= 0; i
< size
/ TARGET_PAGE_SIZE
; i
++) {
422 ret
= write_data(s
, block
->host_addr
+ start
+ i
* TARGET_PAGE_SIZE
,
429 if ((size
% TARGET_PAGE_SIZE
) != 0) {
430 ret
= write_data(s
, block
->host_addr
+ start
+ i
* TARGET_PAGE_SIZE
,
431 size
% TARGET_PAGE_SIZE
);
440 /* get the memory's offset and size in the vmcore */
441 static void get_offset_range(hwaddr phys_addr
,
442 ram_addr_t mapping_length
,
447 GuestPhysBlock
*block
;
448 hwaddr offset
= s
->memory_offset
;
449 int64_t size_in_block
, start
;
451 /* When the memory is not stored into vmcore, offset will be -1 */
456 if (phys_addr
< s
->begin
|| phys_addr
>= s
->begin
+ s
->length
) {
461 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
463 if (block
->target_start
>= s
->begin
+ s
->length
||
464 block
->target_end
<= s
->begin
) {
465 /* This block is out of the range */
469 if (s
->begin
<= block
->target_start
) {
470 start
= block
->target_start
;
475 size_in_block
= block
->target_end
- start
;
476 if (s
->begin
+ s
->length
< block
->target_end
) {
477 size_in_block
-= block
->target_end
- (s
->begin
+ s
->length
);
480 start
= block
->target_start
;
481 size_in_block
= block
->target_end
- block
->target_start
;
484 if (phys_addr
>= start
&& phys_addr
< start
+ size_in_block
) {
485 *p_offset
= phys_addr
- start
+ offset
;
487 /* The offset range mapped from the vmcore file must not spill over
488 * the GuestPhysBlock, clamp it. The rest of the mapping will be
489 * zero-filled in memory at load time; see
490 * <http://refspecs.linuxbase.org/elf/gabi4+/ch5.pheader.html>.
492 *p_filesz
= phys_addr
+ mapping_length
<= start
+ size_in_block
?
494 size_in_block
- (phys_addr
- start
);
498 offset
+= size_in_block
;
502 static int write_elf_loads(DumpState
*s
)
504 hwaddr offset
, filesz
;
505 MemoryMapping
*memory_mapping
;
506 uint32_t phdr_index
= 1;
510 if (s
->have_section
) {
511 max_index
= s
->sh_info
;
513 max_index
= s
->phdr_num
;
516 QTAILQ_FOREACH(memory_mapping
, &s
->list
.head
, next
) {
517 get_offset_range(memory_mapping
->phys_addr
,
518 memory_mapping
->length
,
519 s
, &offset
, &filesz
);
520 if (s
->dump_info
.d_class
== ELFCLASS64
) {
521 ret
= write_elf64_load(s
, memory_mapping
, phdr_index
++, offset
,
524 ret
= write_elf32_load(s
, memory_mapping
, phdr_index
++, offset
,
532 if (phdr_index
>= max_index
) {
540 /* write elf header, PT_NOTE and elf note to vmcore. */
541 static int dump_begin(DumpState
*s
)
546 * the vmcore's format is:
565 * we only know where the memory is saved after we write elf note into
569 /* write elf header to vmcore */
570 if (s
->dump_info
.d_class
== ELFCLASS64
) {
571 ret
= write_elf64_header(s
);
573 ret
= write_elf32_header(s
);
579 if (s
->dump_info
.d_class
== ELFCLASS64
) {
580 /* write PT_NOTE to vmcore */
581 if (write_elf64_note(s
) < 0) {
585 /* write all PT_LOAD to vmcore */
586 if (write_elf_loads(s
) < 0) {
590 /* write section to vmcore */
591 if (s
->have_section
) {
592 if (write_elf_section(s
, 1) < 0) {
597 /* write notes to vmcore */
598 if (write_elf64_notes(fd_write_vmcore
, s
) < 0) {
603 /* write PT_NOTE to vmcore */
604 if (write_elf32_note(s
) < 0) {
608 /* write all PT_LOAD to vmcore */
609 if (write_elf_loads(s
) < 0) {
613 /* write section to vmcore */
614 if (s
->have_section
) {
615 if (write_elf_section(s
, 0) < 0) {
620 /* write notes to vmcore */
621 if (write_elf32_notes(fd_write_vmcore
, s
) < 0) {
629 /* write PT_LOAD to vmcore */
630 static int dump_completed(DumpState
*s
)
636 static int get_next_block(DumpState
*s
, GuestPhysBlock
*block
)
639 block
= QTAILQ_NEXT(block
, next
);
646 s
->next_block
= block
;
648 if (block
->target_start
>= s
->begin
+ s
->length
||
649 block
->target_end
<= s
->begin
) {
650 /* This block is out of the range */
654 if (s
->begin
> block
->target_start
) {
655 s
->start
= s
->begin
- block
->target_start
;
663 /* write all memory to vmcore */
664 static int dump_iterate(DumpState
*s
)
666 GuestPhysBlock
*block
;
671 block
= s
->next_block
;
673 size
= block
->target_end
- block
->target_start
;
676 if (s
->begin
+ s
->length
< block
->target_end
) {
677 size
-= block
->target_end
- (s
->begin
+ s
->length
);
680 ret
= write_memory(s
, block
, s
->start
, size
);
685 ret
= get_next_block(s
, block
);
693 static int create_vmcore(DumpState
*s
)
702 ret
= dump_iterate(s
);
710 static int write_start_flat_header(int fd
)
712 MakedumpfileHeader
*mh
;
715 QEMU_BUILD_BUG_ON(sizeof *mh
> MAX_SIZE_MDF_HEADER
);
716 mh
= g_malloc0(MAX_SIZE_MDF_HEADER
);
718 memcpy(mh
->signature
, MAKEDUMPFILE_SIGNATURE
,
719 MIN(sizeof mh
->signature
, sizeof MAKEDUMPFILE_SIGNATURE
));
721 mh
->type
= cpu_to_be64(TYPE_FLAT_HEADER
);
722 mh
->version
= cpu_to_be64(VERSION_FLAT_HEADER
);
725 written_size
= qemu_write_full(fd
, mh
, MAX_SIZE_MDF_HEADER
);
726 if (written_size
!= MAX_SIZE_MDF_HEADER
) {
734 static int write_end_flat_header(int fd
)
736 MakedumpfileDataHeader mdh
;
738 mdh
.offset
= END_FLAG_FLAT_HEADER
;
739 mdh
.buf_size
= END_FLAG_FLAT_HEADER
;
742 written_size
= qemu_write_full(fd
, &mdh
, sizeof(mdh
));
743 if (written_size
!= sizeof(mdh
)) {
750 static int write_buffer(int fd
, off_t offset
, const void *buf
, size_t size
)
753 MakedumpfileDataHeader mdh
;
755 mdh
.offset
= cpu_to_be64(offset
);
756 mdh
.buf_size
= cpu_to_be64(size
);
758 written_size
= qemu_write_full(fd
, &mdh
, sizeof(mdh
));
759 if (written_size
!= sizeof(mdh
)) {
763 written_size
= qemu_write_full(fd
, buf
, size
);
764 if (written_size
!= size
) {
771 static int buf_write_note(const void *buf
, size_t size
, void *opaque
)
773 DumpState
*s
= opaque
;
775 /* note_buf is not enough */
776 if (s
->note_buf_offset
+ size
> s
->note_size
) {
780 memcpy(s
->note_buf
+ s
->note_buf_offset
, buf
, size
);
782 s
->note_buf_offset
+= size
;
787 /* write common header, sub header and elf note to vmcore */
788 static int create_header32(DumpState
*s
)
791 DiskDumpHeader32
*dh
= NULL
;
792 KdumpSubHeader32
*kh
= NULL
;
794 int endian
= s
->dump_info
.d_endian
;
796 uint32_t sub_hdr_size
;
797 uint32_t bitmap_blocks
;
799 uint64_t offset_note
;
801 /* write common header, the version of kdump-compressed format is 6th */
802 size
= sizeof(DiskDumpHeader32
);
803 dh
= g_malloc0(size
);
805 strncpy(dh
->signature
, KDUMP_SIGNATURE
, strlen(KDUMP_SIGNATURE
));
806 dh
->header_version
= cpu_convert_to_target32(6, endian
);
807 block_size
= TARGET_PAGE_SIZE
;
808 dh
->block_size
= cpu_convert_to_target32(block_size
, endian
);
809 sub_hdr_size
= sizeof(struct KdumpSubHeader32
) + s
->note_size
;
810 sub_hdr_size
= DIV_ROUND_UP(sub_hdr_size
, block_size
);
811 dh
->sub_hdr_size
= cpu_convert_to_target32(sub_hdr_size
, endian
);
812 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
813 dh
->max_mapnr
= cpu_convert_to_target32(MIN(s
->max_mapnr
, UINT_MAX
),
815 dh
->nr_cpus
= cpu_convert_to_target32(s
->nr_cpus
, endian
);
816 bitmap_blocks
= DIV_ROUND_UP(s
->len_dump_bitmap
, block_size
) * 2;
817 dh
->bitmap_blocks
= cpu_convert_to_target32(bitmap_blocks
, endian
);
818 strncpy(dh
->utsname
.machine
, ELF_MACHINE_UNAME
, sizeof(dh
->utsname
.machine
));
820 if (s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) {
821 status
|= DUMP_DH_COMPRESSED_ZLIB
;
824 if (s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) {
825 status
|= DUMP_DH_COMPRESSED_LZO
;
829 if (s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) {
830 status
|= DUMP_DH_COMPRESSED_SNAPPY
;
833 dh
->status
= cpu_convert_to_target32(status
, endian
);
835 if (write_buffer(s
->fd
, 0, dh
, size
) < 0) {
836 dump_error(s
, "dump: failed to write disk dump header.\n");
841 /* write sub header */
842 size
= sizeof(KdumpSubHeader32
);
843 kh
= g_malloc0(size
);
845 /* 64bit max_mapnr_64 */
846 kh
->max_mapnr_64
= cpu_convert_to_target64(s
->max_mapnr
, endian
);
847 kh
->phys_base
= cpu_convert_to_target32(PHYS_BASE
, endian
);
848 kh
->dump_level
= cpu_convert_to_target32(DUMP_LEVEL
, endian
);
850 offset_note
= DISKDUMP_HEADER_BLOCKS
* block_size
+ size
;
851 kh
->offset_note
= cpu_convert_to_target64(offset_note
, endian
);
852 kh
->note_size
= cpu_convert_to_target32(s
->note_size
, endian
);
854 if (write_buffer(s
->fd
, DISKDUMP_HEADER_BLOCKS
*
855 block_size
, kh
, size
) < 0) {
856 dump_error(s
, "dump: failed to write kdump sub header.\n");
862 s
->note_buf
= g_malloc0(s
->note_size
);
863 s
->note_buf_offset
= 0;
865 /* use s->note_buf to store notes temporarily */
866 if (write_elf32_notes(buf_write_note
, s
) < 0) {
871 if (write_buffer(s
->fd
, offset_note
, s
->note_buf
,
873 dump_error(s
, "dump: failed to write notes");
878 /* get offset of dump_bitmap */
879 s
->offset_dump_bitmap
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
) *
882 /* get offset of page */
883 s
->offset_page
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
+ bitmap_blocks
) *
894 /* write common header, sub header and elf note to vmcore */
895 static int create_header64(DumpState
*s
)
898 DiskDumpHeader64
*dh
= NULL
;
899 KdumpSubHeader64
*kh
= NULL
;
901 int endian
= s
->dump_info
.d_endian
;
903 uint32_t sub_hdr_size
;
904 uint32_t bitmap_blocks
;
906 uint64_t offset_note
;
908 /* write common header, the version of kdump-compressed format is 6th */
909 size
= sizeof(DiskDumpHeader64
);
910 dh
= g_malloc0(size
);
912 strncpy(dh
->signature
, KDUMP_SIGNATURE
, strlen(KDUMP_SIGNATURE
));
913 dh
->header_version
= cpu_convert_to_target32(6, endian
);
914 block_size
= TARGET_PAGE_SIZE
;
915 dh
->block_size
= cpu_convert_to_target32(block_size
, endian
);
916 sub_hdr_size
= sizeof(struct KdumpSubHeader64
) + s
->note_size
;
917 sub_hdr_size
= DIV_ROUND_UP(sub_hdr_size
, block_size
);
918 dh
->sub_hdr_size
= cpu_convert_to_target32(sub_hdr_size
, endian
);
919 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
920 dh
->max_mapnr
= cpu_convert_to_target32(MIN(s
->max_mapnr
, UINT_MAX
),
922 dh
->nr_cpus
= cpu_convert_to_target32(s
->nr_cpus
, endian
);
923 bitmap_blocks
= DIV_ROUND_UP(s
->len_dump_bitmap
, block_size
) * 2;
924 dh
->bitmap_blocks
= cpu_convert_to_target32(bitmap_blocks
, endian
);
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_convert_to_target32(status
, endian
);
942 if (write_buffer(s
->fd
, 0, dh
, size
) < 0) {
943 dump_error(s
, "dump: failed to write disk dump header.\n");
948 /* write sub header */
949 size
= sizeof(KdumpSubHeader64
);
950 kh
= g_malloc0(size
);
952 /* 64bit max_mapnr_64 */
953 kh
->max_mapnr_64
= cpu_convert_to_target64(s
->max_mapnr
, endian
);
954 kh
->phys_base
= cpu_convert_to_target64(PHYS_BASE
, endian
);
955 kh
->dump_level
= cpu_convert_to_target32(DUMP_LEVEL
, endian
);
957 offset_note
= DISKDUMP_HEADER_BLOCKS
* block_size
+ size
;
958 kh
->offset_note
= cpu_convert_to_target64(offset_note
, endian
);
959 kh
->note_size
= cpu_convert_to_target64(s
->note_size
, endian
);
961 if (write_buffer(s
->fd
, DISKDUMP_HEADER_BLOCKS
*
962 block_size
, kh
, size
) < 0) {
963 dump_error(s
, "dump: failed to write kdump sub header.\n");
969 s
->note_buf
= g_malloc0(s
->note_size
);
970 s
->note_buf_offset
= 0;
972 /* use s->note_buf to store notes temporarily */
973 if (write_elf64_notes(buf_write_note
, s
) < 0) {
978 if (write_buffer(s
->fd
, offset_note
, s
->note_buf
,
980 dump_error(s
, "dump: failed to write notes");
985 /* get offset of dump_bitmap */
986 s
->offset_dump_bitmap
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
) *
989 /* get offset of page */
990 s
->offset_page
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
+ bitmap_blocks
) *
1001 static int write_dump_header(DumpState
*s
)
1003 if (s
->dump_info
.d_class
== ELFCLASS32
) {
1004 return create_header32(s
);
1006 return create_header64(s
);
1011 * set dump_bitmap sequencely. the bit before last_pfn is not allowed to be
1012 * rewritten, so if need to set the first bit, set last_pfn and pfn to 0.
1013 * set_dump_bitmap will always leave the recently set bit un-sync. And setting
1014 * (last bit + sizeof(buf) * 8) to 0 will do flushing the content in buf into
1015 * vmcore, ie. synchronizing un-sync bit into vmcore.
1017 static int set_dump_bitmap(uint64_t last_pfn
, uint64_t pfn
, bool value
,
1018 uint8_t *buf
, DumpState
*s
)
1020 off_t old_offset
, new_offset
;
1021 off_t offset_bitmap1
, offset_bitmap2
;
1024 /* should not set the previous place */
1025 assert(last_pfn
<= pfn
);
1028 * if the bit needed to be set is not cached in buf, flush the data in buf
1029 * to vmcore firstly.
1030 * making new_offset be bigger than old_offset can also sync remained data
1033 old_offset
= BUFSIZE_BITMAP
* (last_pfn
/ PFN_BUFBITMAP
);
1034 new_offset
= BUFSIZE_BITMAP
* (pfn
/ PFN_BUFBITMAP
);
1036 while (old_offset
< new_offset
) {
1037 /* calculate the offset and write dump_bitmap */
1038 offset_bitmap1
= s
->offset_dump_bitmap
+ old_offset
;
1039 if (write_buffer(s
->fd
, offset_bitmap1
, buf
,
1040 BUFSIZE_BITMAP
) < 0) {
1044 /* dump level 1 is chosen, so 1st and 2nd bitmap are same */
1045 offset_bitmap2
= s
->offset_dump_bitmap
+ s
->len_dump_bitmap
+
1047 if (write_buffer(s
->fd
, offset_bitmap2
, buf
,
1048 BUFSIZE_BITMAP
) < 0) {
1052 memset(buf
, 0, BUFSIZE_BITMAP
);
1053 old_offset
+= BUFSIZE_BITMAP
;
1056 /* get the exact place of the bit in the buf, and set it */
1057 byte
= (pfn
% PFN_BUFBITMAP
) / CHAR_BIT
;
1058 bit
= (pfn
% PFN_BUFBITMAP
) % CHAR_BIT
;
1060 buf
[byte
] |= 1u << bit
;
1062 buf
[byte
] &= ~(1u << bit
);
1069 * exam every page and return the page frame number and the address of the page.
1070 * bufptr can be NULL. note: the blocks here is supposed to reflect guest-phys
1071 * blocks, so block->target_start and block->target_end should be interal
1072 * multiples of the target page size.
1074 static bool get_next_page(GuestPhysBlock
**blockptr
, uint64_t *pfnptr
,
1075 uint8_t **bufptr
, DumpState
*s
)
1077 GuestPhysBlock
*block
= *blockptr
;
1081 /* block == NULL means the start of the iteration */
1083 block
= QTAILQ_FIRST(&s
->guest_phys_blocks
.head
);
1085 assert((block
->target_start
& ~TARGET_PAGE_MASK
) == 0);
1086 assert((block
->target_end
& ~TARGET_PAGE_MASK
) == 0);
1087 *pfnptr
= paddr_to_pfn(block
->target_start
);
1089 *bufptr
= block
->host_addr
;
1094 *pfnptr
= *pfnptr
+ 1;
1095 addr
= pfn_to_paddr(*pfnptr
);
1097 if ((addr
>= block
->target_start
) &&
1098 (addr
+ TARGET_PAGE_SIZE
<= block
->target_end
)) {
1099 buf
= block
->host_addr
+ (addr
- block
->target_start
);
1101 /* the next page is in the next block */
1102 block
= QTAILQ_NEXT(block
, next
);
1107 assert((block
->target_start
& ~TARGET_PAGE_MASK
) == 0);
1108 assert((block
->target_end
& ~TARGET_PAGE_MASK
) == 0);
1109 *pfnptr
= paddr_to_pfn(block
->target_start
);
1110 buf
= block
->host_addr
;
1120 static int write_dump_bitmap(DumpState
*s
)
1123 uint64_t last_pfn
, pfn
;
1124 void *dump_bitmap_buf
;
1125 size_t num_dumpable
;
1126 GuestPhysBlock
*block_iter
= NULL
;
1128 /* dump_bitmap_buf is used to store dump_bitmap temporarily */
1129 dump_bitmap_buf
= g_malloc0(BUFSIZE_BITMAP
);
1135 * exam memory page by page, and set the bit in dump_bitmap corresponded
1136 * to the existing page.
1138 while (get_next_page(&block_iter
, &pfn
, NULL
, s
)) {
1139 ret
= set_dump_bitmap(last_pfn
, pfn
, true, dump_bitmap_buf
, s
);
1141 dump_error(s
, "dump: failed to set dump_bitmap.\n");
1151 * set_dump_bitmap will always leave the recently set bit un-sync. Here we
1152 * set last_pfn + PFN_BUFBITMAP to 0 and those set but un-sync bit will be
1153 * synchronized into vmcore.
1155 if (num_dumpable
> 0) {
1156 ret
= set_dump_bitmap(last_pfn
, last_pfn
+ PFN_BUFBITMAP
, false,
1157 dump_bitmap_buf
, s
);
1159 dump_error(s
, "dump: failed to sync dump_bitmap.\n");
1165 /* number of dumpable pages that will be dumped later */
1166 s
->num_dumpable
= num_dumpable
;
1169 g_free(dump_bitmap_buf
);
1174 static void prepare_data_cache(DataCache
*data_cache
, DumpState
*s
,
1177 data_cache
->fd
= s
->fd
;
1178 data_cache
->data_size
= 0;
1179 data_cache
->buf_size
= BUFSIZE_DATA_CACHE
;
1180 data_cache
->buf
= g_malloc0(BUFSIZE_DATA_CACHE
);
1181 data_cache
->offset
= offset
;
1184 static int write_cache(DataCache
*dc
, const void *buf
, size_t size
,
1188 * dc->buf_size should not be less than size, otherwise dc will never be
1191 assert(size
<= dc
->buf_size
);
1194 * if flag_sync is set, synchronize data in dc->buf into vmcore.
1195 * otherwise check if the space is enough for caching data in buf, if not,
1196 * write the data in dc->buf to dc->fd and reset dc->buf
1198 if ((!flag_sync
&& dc
->data_size
+ size
> dc
->buf_size
) ||
1199 (flag_sync
&& dc
->data_size
> 0)) {
1200 if (write_buffer(dc
->fd
, dc
->offset
, dc
->buf
, dc
->data_size
) < 0) {
1204 dc
->offset
+= dc
->data_size
;
1209 memcpy(dc
->buf
+ dc
->data_size
, buf
, size
);
1210 dc
->data_size
+= size
;
1216 static void free_data_cache(DataCache
*data_cache
)
1218 g_free(data_cache
->buf
);
1221 static size_t get_len_buf_out(size_t page_size
, uint32_t flag_compress
)
1223 switch (flag_compress
) {
1224 case DUMP_DH_COMPRESSED_ZLIB
:
1225 return compressBound(page_size
);
1227 case DUMP_DH_COMPRESSED_LZO
:
1229 * LZO will expand incompressible data by a little amount. Please check
1230 * the following URL to see the expansion calculation:
1231 * http://www.oberhumer.com/opensource/lzo/lzofaq.php
1233 return page_size
+ page_size
/ 16 + 64 + 3;
1235 #ifdef CONFIG_SNAPPY
1236 case DUMP_DH_COMPRESSED_SNAPPY
:
1237 return snappy_max_compressed_length(page_size
);
1244 * check if the page is all 0
1246 static inline bool is_zero_page(const uint8_t *buf
, size_t page_size
)
1248 return buffer_is_zero(buf
, page_size
);
1251 static int write_dump_pages(DumpState
*s
)
1254 DataCache page_desc
, page_data
;
1255 size_t len_buf_out
, size_out
;
1257 lzo_bytep wrkmem
= NULL
;
1259 uint8_t *buf_out
= NULL
;
1260 off_t offset_desc
, offset_data
;
1261 PageDescriptor pd
, pd_zero
;
1263 int endian
= s
->dump_info
.d_endian
;
1264 GuestPhysBlock
*block_iter
= NULL
;
1267 /* get offset of page_desc and page_data in dump file */
1268 offset_desc
= s
->offset_page
;
1269 offset_data
= offset_desc
+ sizeof(PageDescriptor
) * s
->num_dumpable
;
1271 prepare_data_cache(&page_desc
, s
, offset_desc
);
1272 prepare_data_cache(&page_data
, s
, offset_data
);
1274 /* prepare buffer to store compressed data */
1275 len_buf_out
= get_len_buf_out(TARGET_PAGE_SIZE
, s
->flag_compress
);
1276 assert(len_buf_out
!= 0);
1279 wrkmem
= g_malloc(LZO1X_1_MEM_COMPRESS
);
1282 buf_out
= g_malloc(len_buf_out
);
1285 * init zero page's page_desc and page_data, because every zero page
1286 * uses the same page_data
1288 pd_zero
.size
= cpu_convert_to_target32(TARGET_PAGE_SIZE
, endian
);
1289 pd_zero
.flags
= cpu_convert_to_target32(0, endian
);
1290 pd_zero
.offset
= cpu_convert_to_target64(offset_data
, endian
);
1291 pd_zero
.page_flags
= cpu_convert_to_target64(0, endian
);
1292 buf
= g_malloc0(TARGET_PAGE_SIZE
);
1293 ret
= write_cache(&page_data
, buf
, TARGET_PAGE_SIZE
, false);
1296 dump_error(s
, "dump: failed to write page data(zero page).\n");
1300 offset_data
+= TARGET_PAGE_SIZE
;
1303 * dump memory to vmcore page by page. zero page will all be resided in the
1304 * first page of page section
1306 while (get_next_page(&block_iter
, &pfn_iter
, &buf
, s
)) {
1307 /* check zero page */
1308 if (is_zero_page(buf
, TARGET_PAGE_SIZE
)) {
1309 ret
= write_cache(&page_desc
, &pd_zero
, sizeof(PageDescriptor
),
1312 dump_error(s
, "dump: failed to write page desc.\n");
1317 * not zero page, then:
1318 * 1. compress the page
1319 * 2. write the compressed page into the cache of page_data
1320 * 3. get page desc of the compressed page and write it into the
1321 * cache of page_desc
1323 * only one compression format will be used here, for
1324 * s->flag_compress is set. But when compression fails to work,
1325 * we fall back to save in plaintext.
1327 size_out
= len_buf_out
;
1328 if ((s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) &&
1329 (compress2(buf_out
, (uLongf
*)&size_out
, buf
,
1330 TARGET_PAGE_SIZE
, Z_BEST_SPEED
) == Z_OK
) &&
1331 (size_out
< TARGET_PAGE_SIZE
)) {
1332 pd
.flags
= cpu_convert_to_target32(DUMP_DH_COMPRESSED_ZLIB
,
1334 pd
.size
= cpu_convert_to_target32(size_out
, endian
);
1336 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1338 dump_error(s
, "dump: failed to write page data.\n");
1342 } else if ((s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) &&
1343 (lzo1x_1_compress(buf
, TARGET_PAGE_SIZE
, buf_out
,
1344 (lzo_uint
*)&size_out
, wrkmem
) == LZO_E_OK
) &&
1345 (size_out
< TARGET_PAGE_SIZE
)) {
1346 pd
.flags
= cpu_convert_to_target32(DUMP_DH_COMPRESSED_LZO
,
1348 pd
.size
= cpu_convert_to_target32(size_out
, endian
);
1350 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1352 dump_error(s
, "dump: failed to write page data.\n");
1356 #ifdef CONFIG_SNAPPY
1357 } else if ((s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) &&
1358 (snappy_compress((char *)buf
, TARGET_PAGE_SIZE
,
1359 (char *)buf_out
, &size_out
) == SNAPPY_OK
) &&
1360 (size_out
< TARGET_PAGE_SIZE
)) {
1361 pd
.flags
= cpu_convert_to_target32(
1362 DUMP_DH_COMPRESSED_SNAPPY
, endian
);
1363 pd
.size
= cpu_convert_to_target32(size_out
, endian
);
1365 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1367 dump_error(s
, "dump: failed to write page data.\n");
1373 * fall back to save in plaintext, size_out should be
1374 * assigned TARGET_PAGE_SIZE
1376 pd
.flags
= cpu_convert_to_target32(0, endian
);
1377 size_out
= TARGET_PAGE_SIZE
;
1378 pd
.size
= cpu_convert_to_target32(size_out
, endian
);
1380 ret
= write_cache(&page_data
, buf
, TARGET_PAGE_SIZE
, false);
1382 dump_error(s
, "dump: failed to write page data.\n");
1387 /* get and write page desc here */
1388 pd
.page_flags
= cpu_convert_to_target64(0, endian
);
1389 pd
.offset
= cpu_convert_to_target64(offset_data
, endian
);
1390 offset_data
+= size_out
;
1392 ret
= write_cache(&page_desc
, &pd
, sizeof(PageDescriptor
), false);
1394 dump_error(s
, "dump: failed to write page desc.\n");
1400 ret
= write_cache(&page_desc
, NULL
, 0, true);
1402 dump_error(s
, "dump: failed to sync cache for page_desc.\n");
1405 ret
= write_cache(&page_data
, NULL
, 0, true);
1407 dump_error(s
, "dump: failed to sync cache for page_data.\n");
1412 free_data_cache(&page_desc
);
1413 free_data_cache(&page_data
);
1424 static int create_kdump_vmcore(DumpState
*s
)
1429 * the kdump-compressed format is:
1431 * +------------------------------------------+ 0x0
1432 * | main header (struct disk_dump_header) |
1433 * |------------------------------------------+ block 1
1434 * | sub header (struct kdump_sub_header) |
1435 * |------------------------------------------+ block 2
1436 * | 1st-dump_bitmap |
1437 * |------------------------------------------+ block 2 + X blocks
1438 * | 2nd-dump_bitmap | (aligned by block)
1439 * |------------------------------------------+ block 2 + 2 * X blocks
1440 * | page desc for pfn 0 (struct page_desc) | (aligned by block)
1441 * | page desc for pfn 1 (struct page_desc) |
1443 * |------------------------------------------| (not aligned by block)
1444 * | page data (pfn 0) |
1445 * | page data (pfn 1) |
1447 * +------------------------------------------+
1450 ret
= write_start_flat_header(s
->fd
);
1452 dump_error(s
, "dump: failed to write start flat header.\n");
1456 ret
= write_dump_header(s
);
1461 ret
= write_dump_bitmap(s
);
1466 ret
= write_dump_pages(s
);
1471 ret
= write_end_flat_header(s
->fd
);
1473 dump_error(s
, "dump: failed to write end flat header.\n");
1482 static ram_addr_t
get_start_block(DumpState
*s
)
1484 GuestPhysBlock
*block
;
1486 if (!s
->has_filter
) {
1487 s
->next_block
= QTAILQ_FIRST(&s
->guest_phys_blocks
.head
);
1491 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
1492 if (block
->target_start
>= s
->begin
+ s
->length
||
1493 block
->target_end
<= s
->begin
) {
1494 /* This block is out of the range */
1498 s
->next_block
= block
;
1499 if (s
->begin
> block
->target_start
) {
1500 s
->start
= s
->begin
- block
->target_start
;
1510 static void get_max_mapnr(DumpState
*s
)
1512 GuestPhysBlock
*last_block
;
1514 last_block
= QTAILQ_LAST(&s
->guest_phys_blocks
.head
, GuestPhysBlockHead
);
1515 s
->max_mapnr
= paddr_to_pfn(last_block
->target_end
);
1518 static int dump_init(DumpState
*s
, int fd
, bool has_format
,
1519 DumpGuestMemoryFormat format
, bool paging
, bool has_filter
,
1520 int64_t begin
, int64_t length
, Error
**errp
)
1527 /* kdump-compressed is conflict with paging and filter */
1528 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1529 assert(!paging
&& !has_filter
);
1532 if (runstate_is_running()) {
1533 vm_stop(RUN_STATE_SAVE_VM
);
1539 /* If we use KVM, we should synchronize the registers before we get dump
1540 * info or physmap info.
1542 cpu_synchronize_all_states();
1549 s
->has_filter
= has_filter
;
1553 guest_phys_blocks_init(&s
->guest_phys_blocks
);
1554 guest_phys_blocks_append(&s
->guest_phys_blocks
);
1556 s
->start
= get_start_block(s
);
1557 if (s
->start
== -1) {
1558 error_set(errp
, QERR_INVALID_PARAMETER
, "begin");
1562 /* get dump info: endian, class and architecture.
1563 * If the target architecture is not supported, cpu_get_dump_info() will
1566 ret
= cpu_get_dump_info(&s
->dump_info
, &s
->guest_phys_blocks
);
1568 error_set(errp
, QERR_UNSUPPORTED
);
1572 s
->note_size
= cpu_get_note_size(s
->dump_info
.d_class
,
1573 s
->dump_info
.d_machine
, nr_cpus
);
1574 if (s
->note_size
< 0) {
1575 error_set(errp
, QERR_UNSUPPORTED
);
1579 /* get memory mapping */
1580 memory_mapping_list_init(&s
->list
);
1582 qemu_get_guest_memory_mapping(&s
->list
, &s
->guest_phys_blocks
, &err
);
1584 error_propagate(errp
, err
);
1588 qemu_get_guest_simple_memory_mapping(&s
->list
, &s
->guest_phys_blocks
);
1591 s
->nr_cpus
= nr_cpus
;
1596 tmp
= DIV_ROUND_UP(DIV_ROUND_UP(s
->max_mapnr
, CHAR_BIT
), TARGET_PAGE_SIZE
);
1597 s
->len_dump_bitmap
= tmp
* TARGET_PAGE_SIZE
;
1599 /* init for kdump-compressed format */
1600 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1602 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
:
1603 s
->flag_compress
= DUMP_DH_COMPRESSED_ZLIB
;
1606 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
:
1608 if (lzo_init() != LZO_E_OK
) {
1609 error_setg(errp
, "failed to initialize the LZO library");
1613 s
->flag_compress
= DUMP_DH_COMPRESSED_LZO
;
1616 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
:
1617 s
->flag_compress
= DUMP_DH_COMPRESSED_SNAPPY
;
1621 s
->flag_compress
= 0;
1627 if (s
->has_filter
) {
1628 memory_mapping_filter(&s
->list
, s
->begin
, s
->length
);
1632 * calculate phdr_num
1634 * the type of ehdr->e_phnum is uint16_t, so we should avoid overflow
1636 s
->phdr_num
= 1; /* PT_NOTE */
1637 if (s
->list
.num
< UINT16_MAX
- 2) {
1638 s
->phdr_num
+= s
->list
.num
;
1639 s
->have_section
= false;
1641 s
->have_section
= true;
1642 s
->phdr_num
= PN_XNUM
;
1643 s
->sh_info
= 1; /* PT_NOTE */
1645 /* the type of shdr->sh_info is uint32_t, so we should avoid overflow */
1646 if (s
->list
.num
<= UINT32_MAX
- 1) {
1647 s
->sh_info
+= s
->list
.num
;
1649 s
->sh_info
= UINT32_MAX
;
1653 if (s
->dump_info
.d_class
== ELFCLASS64
) {
1654 if (s
->have_section
) {
1655 s
->memory_offset
= sizeof(Elf64_Ehdr
) +
1656 sizeof(Elf64_Phdr
) * s
->sh_info
+
1657 sizeof(Elf64_Shdr
) + s
->note_size
;
1659 s
->memory_offset
= sizeof(Elf64_Ehdr
) +
1660 sizeof(Elf64_Phdr
) * s
->phdr_num
+ s
->note_size
;
1663 if (s
->have_section
) {
1664 s
->memory_offset
= sizeof(Elf32_Ehdr
) +
1665 sizeof(Elf32_Phdr
) * s
->sh_info
+
1666 sizeof(Elf32_Shdr
) + s
->note_size
;
1668 s
->memory_offset
= sizeof(Elf32_Ehdr
) +
1669 sizeof(Elf32_Phdr
) * s
->phdr_num
+ s
->note_size
;
1676 guest_phys_blocks_free(&s
->guest_phys_blocks
);
1685 void qmp_dump_guest_memory(bool paging
, const char *file
, bool has_begin
,
1686 int64_t begin
, bool has_length
,
1687 int64_t length
, bool has_format
,
1688 DumpGuestMemoryFormat format
, Error
**errp
)
1696 * kdump-compressed format need the whole memory dumped, so paging or
1697 * filter is not supported here.
1699 if ((has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) &&
1700 (paging
|| has_begin
|| has_length
)) {
1701 error_setg(errp
, "kdump-compressed format doesn't support paging or "
1705 if (has_begin
&& !has_length
) {
1706 error_set(errp
, QERR_MISSING_PARAMETER
, "length");
1709 if (!has_begin
&& has_length
) {
1710 error_set(errp
, QERR_MISSING_PARAMETER
, "begin");
1714 /* check whether lzo/snappy is supported */
1716 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
) {
1717 error_setg(errp
, "kdump-lzo is not available now");
1722 #ifndef CONFIG_SNAPPY
1723 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
) {
1724 error_setg(errp
, "kdump-snappy is not available now");
1730 if (strstart(file
, "fd:", &p
)) {
1731 fd
= monitor_get_fd(cur_mon
, p
, errp
);
1738 if (strstart(file
, "file:", &p
)) {
1739 fd
= qemu_open(p
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
, S_IRUSR
);
1741 error_setg_file_open(errp
, errno
, p
);
1747 error_set(errp
, QERR_INVALID_PARAMETER
, "protocol");
1751 s
= g_malloc0(sizeof(DumpState
));
1753 ret
= dump_init(s
, fd
, has_format
, format
, paging
, has_begin
,
1754 begin
, length
, errp
);
1760 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1761 if (create_kdump_vmcore(s
) < 0) {
1762 error_set(errp
, QERR_IO_ERROR
);
1765 if (create_vmcore(s
) < 0) {
1766 error_set(errp
, QERR_IO_ERROR
);
1773 DumpGuestMemoryCapability
*qmp_query_dump_guest_memory_capability(Error
**errp
)
1775 DumpGuestMemoryFormatList
*item
;
1776 DumpGuestMemoryCapability
*cap
=
1777 g_malloc0(sizeof(DumpGuestMemoryCapability
));
1779 /* elf is always available */
1780 item
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1781 cap
->formats
= item
;
1782 item
->value
= DUMP_GUEST_MEMORY_FORMAT_ELF
;
1784 /* kdump-zlib is always available */
1785 item
->next
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1787 item
->value
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
;
1789 /* add new item if kdump-lzo is available */
1791 item
->next
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1793 item
->value
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
;
1796 /* add new item if kdump-snappy is available */
1797 #ifdef CONFIG_SNAPPY
1798 item
->next
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1800 item
->value
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
;