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 "qapi/qmp/qerror.h"
27 #include "qmp-commands.h"
31 #include <lzo/lzo1x.h>
36 #ifndef ELF_MACHINE_UNAME
37 #define ELF_MACHINE_UNAME "Unknown"
40 uint16_t cpu_to_dump16(DumpState
*s
, uint16_t val
)
42 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
43 val
= cpu_to_le16(val
);
45 val
= cpu_to_be16(val
);
51 uint32_t cpu_to_dump32(DumpState
*s
, uint32_t val
)
53 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
54 val
= cpu_to_le32(val
);
56 val
= cpu_to_be32(val
);
62 uint64_t cpu_to_dump64(DumpState
*s
, uint64_t val
)
64 if (s
->dump_info
.d_endian
== ELFDATA2LSB
) {
65 val
= cpu_to_le64(val
);
67 val
= cpu_to_be64(val
);
73 static int dump_cleanup(DumpState
*s
)
75 guest_phys_blocks_free(&s
->guest_phys_blocks
);
76 memory_mapping_list_free(&s
->list
);
85 static void dump_error(DumpState
*s
, const char *reason
, Error
**errp
)
88 error_setg(errp
, "%s", reason
);
91 static int fd_write_vmcore(const void *buf
, size_t size
, void *opaque
)
93 DumpState
*s
= opaque
;
96 written_size
= qemu_write_full(s
->fd
, buf
, size
);
97 if (written_size
!= size
) {
104 static void write_elf64_header(DumpState
*s
, Error
**errp
)
106 Elf64_Ehdr elf_header
;
109 memset(&elf_header
, 0, sizeof(Elf64_Ehdr
));
110 memcpy(&elf_header
, ELFMAG
, SELFMAG
);
111 elf_header
.e_ident
[EI_CLASS
] = ELFCLASS64
;
112 elf_header
.e_ident
[EI_DATA
] = s
->dump_info
.d_endian
;
113 elf_header
.e_ident
[EI_VERSION
] = EV_CURRENT
;
114 elf_header
.e_type
= cpu_to_dump16(s
, ET_CORE
);
115 elf_header
.e_machine
= cpu_to_dump16(s
, s
->dump_info
.d_machine
);
116 elf_header
.e_version
= cpu_to_dump32(s
, EV_CURRENT
);
117 elf_header
.e_ehsize
= cpu_to_dump16(s
, sizeof(elf_header
));
118 elf_header
.e_phoff
= cpu_to_dump64(s
, sizeof(Elf64_Ehdr
));
119 elf_header
.e_phentsize
= cpu_to_dump16(s
, sizeof(Elf64_Phdr
));
120 elf_header
.e_phnum
= cpu_to_dump16(s
, s
->phdr_num
);
121 if (s
->have_section
) {
122 uint64_t shoff
= sizeof(Elf64_Ehdr
) + sizeof(Elf64_Phdr
) * s
->sh_info
;
124 elf_header
.e_shoff
= cpu_to_dump64(s
, shoff
);
125 elf_header
.e_shentsize
= cpu_to_dump16(s
, sizeof(Elf64_Shdr
));
126 elf_header
.e_shnum
= cpu_to_dump16(s
, 1);
129 ret
= fd_write_vmcore(&elf_header
, sizeof(elf_header
), s
);
131 dump_error(s
, "dump: failed to write elf header", errp
);
135 static void write_elf32_header(DumpState
*s
, Error
**errp
)
137 Elf32_Ehdr elf_header
;
140 memset(&elf_header
, 0, sizeof(Elf32_Ehdr
));
141 memcpy(&elf_header
, ELFMAG
, SELFMAG
);
142 elf_header
.e_ident
[EI_CLASS
] = ELFCLASS32
;
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_dump32(s
, sizeof(Elf32_Ehdr
));
150 elf_header
.e_phentsize
= cpu_to_dump16(s
, sizeof(Elf32_Phdr
));
151 elf_header
.e_phnum
= cpu_to_dump16(s
, s
->phdr_num
);
152 if (s
->have_section
) {
153 uint32_t shoff
= sizeof(Elf32_Ehdr
) + sizeof(Elf32_Phdr
) * s
->sh_info
;
155 elf_header
.e_shoff
= cpu_to_dump32(s
, shoff
);
156 elf_header
.e_shentsize
= cpu_to_dump16(s
, sizeof(Elf32_Shdr
));
157 elf_header
.e_shnum
= cpu_to_dump16(s
, 1);
160 ret
= fd_write_vmcore(&elf_header
, sizeof(elf_header
), s
);
162 dump_error(s
, "dump: failed to write elf header", errp
);
166 static void write_elf64_load(DumpState
*s
, MemoryMapping
*memory_mapping
,
167 int phdr_index
, hwaddr offset
,
168 hwaddr filesz
, Error
**errp
)
173 memset(&phdr
, 0, sizeof(Elf64_Phdr
));
174 phdr
.p_type
= cpu_to_dump32(s
, PT_LOAD
);
175 phdr
.p_offset
= cpu_to_dump64(s
, offset
);
176 phdr
.p_paddr
= cpu_to_dump64(s
, memory_mapping
->phys_addr
);
177 phdr
.p_filesz
= cpu_to_dump64(s
, filesz
);
178 phdr
.p_memsz
= cpu_to_dump64(s
, memory_mapping
->length
);
179 phdr
.p_vaddr
= cpu_to_dump64(s
, memory_mapping
->virt_addr
);
181 assert(memory_mapping
->length
>= filesz
);
183 ret
= fd_write_vmcore(&phdr
, sizeof(Elf64_Phdr
), s
);
185 dump_error(s
, "dump: failed to write program header table", errp
);
189 static void write_elf32_load(DumpState
*s
, MemoryMapping
*memory_mapping
,
190 int phdr_index
, hwaddr offset
,
191 hwaddr filesz
, Error
**errp
)
196 memset(&phdr
, 0, sizeof(Elf32_Phdr
));
197 phdr
.p_type
= cpu_to_dump32(s
, PT_LOAD
);
198 phdr
.p_offset
= cpu_to_dump32(s
, offset
);
199 phdr
.p_paddr
= cpu_to_dump32(s
, memory_mapping
->phys_addr
);
200 phdr
.p_filesz
= cpu_to_dump32(s
, filesz
);
201 phdr
.p_memsz
= cpu_to_dump32(s
, memory_mapping
->length
);
202 phdr
.p_vaddr
= cpu_to_dump32(s
, memory_mapping
->virt_addr
);
204 assert(memory_mapping
->length
>= filesz
);
206 ret
= fd_write_vmcore(&phdr
, sizeof(Elf32_Phdr
), s
);
208 dump_error(s
, "dump: failed to write program header table", errp
);
212 static void write_elf64_note(DumpState
*s
, Error
**errp
)
215 hwaddr begin
= s
->memory_offset
- s
->note_size
;
218 memset(&phdr
, 0, sizeof(Elf64_Phdr
));
219 phdr
.p_type
= cpu_to_dump32(s
, PT_NOTE
);
220 phdr
.p_offset
= cpu_to_dump64(s
, begin
);
222 phdr
.p_filesz
= cpu_to_dump64(s
, s
->note_size
);
223 phdr
.p_memsz
= cpu_to_dump64(s
, s
->note_size
);
226 ret
= fd_write_vmcore(&phdr
, sizeof(Elf64_Phdr
), s
);
228 dump_error(s
, "dump: failed to write program header table", errp
);
232 static inline int cpu_index(CPUState
*cpu
)
234 return cpu
->cpu_index
+ 1;
237 static void write_elf64_notes(WriteCoreDumpFunction f
, DumpState
*s
,
246 ret
= cpu_write_elf64_note(f
, cpu
, id
, s
);
248 dump_error(s
, "dump: failed to write elf notes", errp
);
254 ret
= cpu_write_elf64_qemunote(f
, cpu
, s
);
256 dump_error(s
, "dump: failed to write CPU status", errp
);
262 static void write_elf32_note(DumpState
*s
, Error
**errp
)
264 hwaddr begin
= s
->memory_offset
- s
->note_size
;
268 memset(&phdr
, 0, sizeof(Elf32_Phdr
));
269 phdr
.p_type
= cpu_to_dump32(s
, PT_NOTE
);
270 phdr
.p_offset
= cpu_to_dump32(s
, begin
);
272 phdr
.p_filesz
= cpu_to_dump32(s
, s
->note_size
);
273 phdr
.p_memsz
= cpu_to_dump32(s
, s
->note_size
);
276 ret
= fd_write_vmcore(&phdr
, sizeof(Elf32_Phdr
), s
);
278 dump_error(s
, "dump: failed to write program header table", errp
);
282 static void write_elf32_notes(WriteCoreDumpFunction f
, DumpState
*s
,
291 ret
= cpu_write_elf32_note(f
, cpu
, id
, s
);
293 dump_error(s
, "dump: failed to write elf notes", errp
);
299 ret
= cpu_write_elf32_qemunote(f
, cpu
, s
);
301 dump_error(s
, "dump: failed to write CPU status", errp
);
307 static void write_elf_section(DumpState
*s
, int type
, Error
**errp
)
316 shdr_size
= sizeof(Elf32_Shdr
);
317 memset(&shdr32
, 0, shdr_size
);
318 shdr32
.sh_info
= cpu_to_dump32(s
, s
->sh_info
);
321 shdr_size
= sizeof(Elf64_Shdr
);
322 memset(&shdr64
, 0, shdr_size
);
323 shdr64
.sh_info
= cpu_to_dump32(s
, s
->sh_info
);
327 ret
= fd_write_vmcore(&shdr
, shdr_size
, s
);
329 dump_error(s
, "dump: failed to write section header table", errp
);
333 static void write_data(DumpState
*s
, void *buf
, int length
, Error
**errp
)
337 ret
= fd_write_vmcore(buf
, length
, s
);
339 dump_error(s
, "dump: failed to save memory", errp
);
343 /* write the memory to vmcore. 1 page per I/O. */
344 static void write_memory(DumpState
*s
, GuestPhysBlock
*block
, ram_addr_t start
,
345 int64_t size
, Error
**errp
)
348 Error
*local_err
= NULL
;
350 for (i
= 0; i
< size
/ s
->dump_info
.page_size
; i
++) {
351 write_data(s
, block
->host_addr
+ start
+ i
* s
->dump_info
.page_size
,
352 s
->dump_info
.page_size
, &local_err
);
354 error_propagate(errp
, local_err
);
359 if ((size
% s
->dump_info
.page_size
) != 0) {
360 write_data(s
, block
->host_addr
+ start
+ i
* s
->dump_info
.page_size
,
361 size
% s
->dump_info
.page_size
, &local_err
);
363 error_propagate(errp
, local_err
);
369 /* get the memory's offset and size in the vmcore */
370 static void get_offset_range(hwaddr phys_addr
,
371 ram_addr_t mapping_length
,
376 GuestPhysBlock
*block
;
377 hwaddr offset
= s
->memory_offset
;
378 int64_t size_in_block
, start
;
380 /* When the memory is not stored into vmcore, offset will be -1 */
385 if (phys_addr
< s
->begin
|| phys_addr
>= s
->begin
+ s
->length
) {
390 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
392 if (block
->target_start
>= s
->begin
+ s
->length
||
393 block
->target_end
<= s
->begin
) {
394 /* This block is out of the range */
398 if (s
->begin
<= block
->target_start
) {
399 start
= block
->target_start
;
404 size_in_block
= block
->target_end
- start
;
405 if (s
->begin
+ s
->length
< block
->target_end
) {
406 size_in_block
-= block
->target_end
- (s
->begin
+ s
->length
);
409 start
= block
->target_start
;
410 size_in_block
= block
->target_end
- block
->target_start
;
413 if (phys_addr
>= start
&& phys_addr
< start
+ size_in_block
) {
414 *p_offset
= phys_addr
- start
+ offset
;
416 /* The offset range mapped from the vmcore file must not spill over
417 * the GuestPhysBlock, clamp it. The rest of the mapping will be
418 * zero-filled in memory at load time; see
419 * <http://refspecs.linuxbase.org/elf/gabi4+/ch5.pheader.html>.
421 *p_filesz
= phys_addr
+ mapping_length
<= start
+ size_in_block
?
423 size_in_block
- (phys_addr
- start
);
427 offset
+= size_in_block
;
431 static void write_elf_loads(DumpState
*s
, Error
**errp
)
433 hwaddr offset
, filesz
;
434 MemoryMapping
*memory_mapping
;
435 uint32_t phdr_index
= 1;
437 Error
*local_err
= NULL
;
439 if (s
->have_section
) {
440 max_index
= s
->sh_info
;
442 max_index
= s
->phdr_num
;
445 QTAILQ_FOREACH(memory_mapping
, &s
->list
.head
, next
) {
446 get_offset_range(memory_mapping
->phys_addr
,
447 memory_mapping
->length
,
448 s
, &offset
, &filesz
);
449 if (s
->dump_info
.d_class
== ELFCLASS64
) {
450 write_elf64_load(s
, memory_mapping
, phdr_index
++, offset
,
453 write_elf32_load(s
, memory_mapping
, phdr_index
++, offset
,
458 error_propagate(errp
, local_err
);
462 if (phdr_index
>= max_index
) {
468 /* write elf header, PT_NOTE and elf note to vmcore. */
469 static void dump_begin(DumpState
*s
, Error
**errp
)
471 Error
*local_err
= NULL
;
474 * the vmcore's format is:
493 * we only know where the memory is saved after we write elf note into
497 /* write elf header to vmcore */
498 if (s
->dump_info
.d_class
== ELFCLASS64
) {
499 write_elf64_header(s
, &local_err
);
501 write_elf32_header(s
, &local_err
);
504 error_propagate(errp
, local_err
);
508 if (s
->dump_info
.d_class
== ELFCLASS64
) {
509 /* write PT_NOTE to vmcore */
510 write_elf64_note(s
, &local_err
);
512 error_propagate(errp
, local_err
);
516 /* write all PT_LOAD to vmcore */
517 write_elf_loads(s
, &local_err
);
519 error_propagate(errp
, local_err
);
523 /* write section to vmcore */
524 if (s
->have_section
) {
525 write_elf_section(s
, 1, &local_err
);
527 error_propagate(errp
, local_err
);
532 /* write notes to vmcore */
533 write_elf64_notes(fd_write_vmcore
, s
, &local_err
);
535 error_propagate(errp
, local_err
);
539 /* write PT_NOTE to vmcore */
540 write_elf32_note(s
, &local_err
);
542 error_propagate(errp
, local_err
);
546 /* write all PT_LOAD to vmcore */
547 write_elf_loads(s
, &local_err
);
549 error_propagate(errp
, local_err
);
553 /* write section to vmcore */
554 if (s
->have_section
) {
555 write_elf_section(s
, 0, &local_err
);
557 error_propagate(errp
, local_err
);
562 /* write notes to vmcore */
563 write_elf32_notes(fd_write_vmcore
, s
, &local_err
);
565 error_propagate(errp
, local_err
);
571 static void dump_completed(DumpState
*s
)
576 static int get_next_block(DumpState
*s
, GuestPhysBlock
*block
)
579 block
= QTAILQ_NEXT(block
, next
);
586 s
->next_block
= block
;
588 if (block
->target_start
>= s
->begin
+ s
->length
||
589 block
->target_end
<= s
->begin
) {
590 /* This block is out of the range */
594 if (s
->begin
> block
->target_start
) {
595 s
->start
= s
->begin
- block
->target_start
;
603 /* write all memory to vmcore */
604 static void dump_iterate(DumpState
*s
, Error
**errp
)
606 GuestPhysBlock
*block
;
608 Error
*local_err
= NULL
;
611 block
= s
->next_block
;
613 size
= block
->target_end
- block
->target_start
;
616 if (s
->begin
+ s
->length
< block
->target_end
) {
617 size
-= block
->target_end
- (s
->begin
+ s
->length
);
620 write_memory(s
, block
, s
->start
, size
, &local_err
);
622 error_propagate(errp
, local_err
);
626 } while (!get_next_block(s
, block
));
631 static void create_vmcore(DumpState
*s
, Error
**errp
)
633 Error
*local_err
= NULL
;
635 dump_begin(s
, &local_err
);
637 error_propagate(errp
, local_err
);
641 dump_iterate(s
, errp
);
644 static int write_start_flat_header(int fd
)
646 MakedumpfileHeader
*mh
;
649 QEMU_BUILD_BUG_ON(sizeof *mh
> MAX_SIZE_MDF_HEADER
);
650 mh
= g_malloc0(MAX_SIZE_MDF_HEADER
);
652 memcpy(mh
->signature
, MAKEDUMPFILE_SIGNATURE
,
653 MIN(sizeof mh
->signature
, sizeof MAKEDUMPFILE_SIGNATURE
));
655 mh
->type
= cpu_to_be64(TYPE_FLAT_HEADER
);
656 mh
->version
= cpu_to_be64(VERSION_FLAT_HEADER
);
659 written_size
= qemu_write_full(fd
, mh
, MAX_SIZE_MDF_HEADER
);
660 if (written_size
!= MAX_SIZE_MDF_HEADER
) {
668 static int write_end_flat_header(int fd
)
670 MakedumpfileDataHeader mdh
;
672 mdh
.offset
= END_FLAG_FLAT_HEADER
;
673 mdh
.buf_size
= END_FLAG_FLAT_HEADER
;
676 written_size
= qemu_write_full(fd
, &mdh
, sizeof(mdh
));
677 if (written_size
!= sizeof(mdh
)) {
684 static int write_buffer(int fd
, off_t offset
, const void *buf
, size_t size
)
687 MakedumpfileDataHeader mdh
;
689 mdh
.offset
= cpu_to_be64(offset
);
690 mdh
.buf_size
= cpu_to_be64(size
);
692 written_size
= qemu_write_full(fd
, &mdh
, sizeof(mdh
));
693 if (written_size
!= sizeof(mdh
)) {
697 written_size
= qemu_write_full(fd
, buf
, size
);
698 if (written_size
!= size
) {
705 static int buf_write_note(const void *buf
, size_t size
, void *opaque
)
707 DumpState
*s
= opaque
;
709 /* note_buf is not enough */
710 if (s
->note_buf_offset
+ size
> s
->note_size
) {
714 memcpy(s
->note_buf
+ s
->note_buf_offset
, buf
, size
);
716 s
->note_buf_offset
+= size
;
721 /* write common header, sub header and elf note to vmcore */
722 static void create_header32(DumpState
*s
, Error
**errp
)
724 DiskDumpHeader32
*dh
= NULL
;
725 KdumpSubHeader32
*kh
= NULL
;
728 uint32_t sub_hdr_size
;
729 uint32_t bitmap_blocks
;
731 uint64_t offset_note
;
732 Error
*local_err
= NULL
;
734 /* write common header, the version of kdump-compressed format is 6th */
735 size
= sizeof(DiskDumpHeader32
);
736 dh
= g_malloc0(size
);
738 strncpy(dh
->signature
, KDUMP_SIGNATURE
, strlen(KDUMP_SIGNATURE
));
739 dh
->header_version
= cpu_to_dump32(s
, 6);
740 block_size
= s
->dump_info
.page_size
;
741 dh
->block_size
= cpu_to_dump32(s
, block_size
);
742 sub_hdr_size
= sizeof(struct KdumpSubHeader32
) + s
->note_size
;
743 sub_hdr_size
= DIV_ROUND_UP(sub_hdr_size
, block_size
);
744 dh
->sub_hdr_size
= cpu_to_dump32(s
, sub_hdr_size
);
745 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
746 dh
->max_mapnr
= cpu_to_dump32(s
, MIN(s
->max_mapnr
, UINT_MAX
));
747 dh
->nr_cpus
= cpu_to_dump32(s
, s
->nr_cpus
);
748 bitmap_blocks
= DIV_ROUND_UP(s
->len_dump_bitmap
, block_size
) * 2;
749 dh
->bitmap_blocks
= cpu_to_dump32(s
, bitmap_blocks
);
750 strncpy(dh
->utsname
.machine
, ELF_MACHINE_UNAME
, sizeof(dh
->utsname
.machine
));
752 if (s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) {
753 status
|= DUMP_DH_COMPRESSED_ZLIB
;
756 if (s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) {
757 status
|= DUMP_DH_COMPRESSED_LZO
;
761 if (s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) {
762 status
|= DUMP_DH_COMPRESSED_SNAPPY
;
765 dh
->status
= cpu_to_dump32(s
, status
);
767 if (write_buffer(s
->fd
, 0, dh
, size
) < 0) {
768 dump_error(s
, "dump: failed to write disk dump header", errp
);
772 /* write sub header */
773 size
= sizeof(KdumpSubHeader32
);
774 kh
= g_malloc0(size
);
776 /* 64bit max_mapnr_64 */
777 kh
->max_mapnr_64
= cpu_to_dump64(s
, s
->max_mapnr
);
778 kh
->phys_base
= cpu_to_dump32(s
, s
->dump_info
.phys_base
);
779 kh
->dump_level
= cpu_to_dump32(s
, DUMP_LEVEL
);
781 offset_note
= DISKDUMP_HEADER_BLOCKS
* block_size
+ size
;
782 kh
->offset_note
= cpu_to_dump64(s
, offset_note
);
783 kh
->note_size
= cpu_to_dump32(s
, s
->note_size
);
785 if (write_buffer(s
->fd
, DISKDUMP_HEADER_BLOCKS
*
786 block_size
, kh
, size
) < 0) {
787 dump_error(s
, "dump: failed to write kdump sub header", errp
);
792 s
->note_buf
= g_malloc0(s
->note_size
);
793 s
->note_buf_offset
= 0;
795 /* use s->note_buf to store notes temporarily */
796 write_elf32_notes(buf_write_note
, s
, &local_err
);
798 error_propagate(errp
, local_err
);
801 if (write_buffer(s
->fd
, offset_note
, s
->note_buf
,
803 dump_error(s
, "dump: failed to write notes", errp
);
807 /* get offset of dump_bitmap */
808 s
->offset_dump_bitmap
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
) *
811 /* get offset of page */
812 s
->offset_page
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
+ bitmap_blocks
) *
821 /* write common header, sub header and elf note to vmcore */
822 static void create_header64(DumpState
*s
, Error
**errp
)
824 DiskDumpHeader64
*dh
= NULL
;
825 KdumpSubHeader64
*kh
= NULL
;
828 uint32_t sub_hdr_size
;
829 uint32_t bitmap_blocks
;
831 uint64_t offset_note
;
832 Error
*local_err
= NULL
;
834 /* write common header, the version of kdump-compressed format is 6th */
835 size
= sizeof(DiskDumpHeader64
);
836 dh
= g_malloc0(size
);
838 strncpy(dh
->signature
, KDUMP_SIGNATURE
, strlen(KDUMP_SIGNATURE
));
839 dh
->header_version
= cpu_to_dump32(s
, 6);
840 block_size
= s
->dump_info
.page_size
;
841 dh
->block_size
= cpu_to_dump32(s
, block_size
);
842 sub_hdr_size
= sizeof(struct KdumpSubHeader64
) + s
->note_size
;
843 sub_hdr_size
= DIV_ROUND_UP(sub_hdr_size
, block_size
);
844 dh
->sub_hdr_size
= cpu_to_dump32(s
, sub_hdr_size
);
845 /* dh->max_mapnr may be truncated, full 64bit is in kh.max_mapnr_64 */
846 dh
->max_mapnr
= cpu_to_dump32(s
, MIN(s
->max_mapnr
, UINT_MAX
));
847 dh
->nr_cpus
= cpu_to_dump32(s
, s
->nr_cpus
);
848 bitmap_blocks
= DIV_ROUND_UP(s
->len_dump_bitmap
, block_size
) * 2;
849 dh
->bitmap_blocks
= cpu_to_dump32(s
, bitmap_blocks
);
850 strncpy(dh
->utsname
.machine
, ELF_MACHINE_UNAME
, sizeof(dh
->utsname
.machine
));
852 if (s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) {
853 status
|= DUMP_DH_COMPRESSED_ZLIB
;
856 if (s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) {
857 status
|= DUMP_DH_COMPRESSED_LZO
;
861 if (s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) {
862 status
|= DUMP_DH_COMPRESSED_SNAPPY
;
865 dh
->status
= cpu_to_dump32(s
, status
);
867 if (write_buffer(s
->fd
, 0, dh
, size
) < 0) {
868 dump_error(s
, "dump: failed to write disk dump header", errp
);
872 /* write sub header */
873 size
= sizeof(KdumpSubHeader64
);
874 kh
= g_malloc0(size
);
876 /* 64bit max_mapnr_64 */
877 kh
->max_mapnr_64
= cpu_to_dump64(s
, s
->max_mapnr
);
878 kh
->phys_base
= cpu_to_dump64(s
, s
->dump_info
.phys_base
);
879 kh
->dump_level
= cpu_to_dump32(s
, DUMP_LEVEL
);
881 offset_note
= DISKDUMP_HEADER_BLOCKS
* block_size
+ size
;
882 kh
->offset_note
= cpu_to_dump64(s
, offset_note
);
883 kh
->note_size
= cpu_to_dump64(s
, s
->note_size
);
885 if (write_buffer(s
->fd
, DISKDUMP_HEADER_BLOCKS
*
886 block_size
, kh
, size
) < 0) {
887 dump_error(s
, "dump: failed to write kdump sub header", errp
);
892 s
->note_buf
= g_malloc0(s
->note_size
);
893 s
->note_buf_offset
= 0;
895 /* use s->note_buf to store notes temporarily */
896 write_elf64_notes(buf_write_note
, s
, &local_err
);
898 error_propagate(errp
, local_err
);
902 if (write_buffer(s
->fd
, offset_note
, s
->note_buf
,
904 dump_error(s
, "dump: failed to write notes", errp
);
908 /* get offset of dump_bitmap */
909 s
->offset_dump_bitmap
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
) *
912 /* get offset of page */
913 s
->offset_page
= (DISKDUMP_HEADER_BLOCKS
+ sub_hdr_size
+ bitmap_blocks
) *
922 static void write_dump_header(DumpState
*s
, Error
**errp
)
924 Error
*local_err
= NULL
;
926 if (s
->dump_info
.d_class
== ELFCLASS32
) {
927 create_header32(s
, &local_err
);
929 create_header64(s
, &local_err
);
932 error_propagate(errp
, local_err
);
936 static size_t dump_bitmap_get_bufsize(DumpState
*s
)
938 return s
->dump_info
.page_size
;
942 * set dump_bitmap sequencely. the bit before last_pfn is not allowed to be
943 * rewritten, so if need to set the first bit, set last_pfn and pfn to 0.
944 * set_dump_bitmap will always leave the recently set bit un-sync. And setting
945 * (last bit + sizeof(buf) * 8) to 0 will do flushing the content in buf into
946 * vmcore, ie. synchronizing un-sync bit into vmcore.
948 static int set_dump_bitmap(uint64_t last_pfn
, uint64_t pfn
, bool value
,
949 uint8_t *buf
, DumpState
*s
)
951 off_t old_offset
, new_offset
;
952 off_t offset_bitmap1
, offset_bitmap2
;
954 size_t bitmap_bufsize
= dump_bitmap_get_bufsize(s
);
955 size_t bits_per_buf
= bitmap_bufsize
* CHAR_BIT
;
957 /* should not set the previous place */
958 assert(last_pfn
<= pfn
);
961 * if the bit needed to be set is not cached in buf, flush the data in buf
963 * making new_offset be bigger than old_offset can also sync remained data
966 old_offset
= bitmap_bufsize
* (last_pfn
/ bits_per_buf
);
967 new_offset
= bitmap_bufsize
* (pfn
/ bits_per_buf
);
969 while (old_offset
< new_offset
) {
970 /* calculate the offset and write dump_bitmap */
971 offset_bitmap1
= s
->offset_dump_bitmap
+ old_offset
;
972 if (write_buffer(s
->fd
, offset_bitmap1
, buf
,
973 bitmap_bufsize
) < 0) {
977 /* dump level 1 is chosen, so 1st and 2nd bitmap are same */
978 offset_bitmap2
= s
->offset_dump_bitmap
+ s
->len_dump_bitmap
+
980 if (write_buffer(s
->fd
, offset_bitmap2
, buf
,
981 bitmap_bufsize
) < 0) {
985 memset(buf
, 0, bitmap_bufsize
);
986 old_offset
+= bitmap_bufsize
;
989 /* get the exact place of the bit in the buf, and set it */
990 byte
= (pfn
% bits_per_buf
) / CHAR_BIT
;
991 bit
= (pfn
% bits_per_buf
) % CHAR_BIT
;
993 buf
[byte
] |= 1u << bit
;
995 buf
[byte
] &= ~(1u << bit
);
1001 static uint64_t dump_paddr_to_pfn(DumpState
*s
, uint64_t addr
)
1003 int target_page_shift
= ctz32(s
->dump_info
.page_size
);
1005 return (addr
>> target_page_shift
) - ARCH_PFN_OFFSET
;
1008 static uint64_t dump_pfn_to_paddr(DumpState
*s
, uint64_t pfn
)
1010 int target_page_shift
= ctz32(s
->dump_info
.page_size
);
1012 return (pfn
+ ARCH_PFN_OFFSET
) << target_page_shift
;
1016 * exam every page and return the page frame number and the address of the page.
1017 * bufptr can be NULL. note: the blocks here is supposed to reflect guest-phys
1018 * blocks, so block->target_start and block->target_end should be interal
1019 * multiples of the target page size.
1021 static bool get_next_page(GuestPhysBlock
**blockptr
, uint64_t *pfnptr
,
1022 uint8_t **bufptr
, DumpState
*s
)
1024 GuestPhysBlock
*block
= *blockptr
;
1025 hwaddr addr
, target_page_mask
= ~((hwaddr
)s
->dump_info
.page_size
- 1);
1028 /* block == NULL means the start of the iteration */
1030 block
= QTAILQ_FIRST(&s
->guest_phys_blocks
.head
);
1032 assert((block
->target_start
& ~target_page_mask
) == 0);
1033 assert((block
->target_end
& ~target_page_mask
) == 0);
1034 *pfnptr
= dump_paddr_to_pfn(s
, block
->target_start
);
1036 *bufptr
= block
->host_addr
;
1041 *pfnptr
= *pfnptr
+ 1;
1042 addr
= dump_pfn_to_paddr(s
, *pfnptr
);
1044 if ((addr
>= block
->target_start
) &&
1045 (addr
+ s
->dump_info
.page_size
<= block
->target_end
)) {
1046 buf
= block
->host_addr
+ (addr
- block
->target_start
);
1048 /* the next page is in the next block */
1049 block
= QTAILQ_NEXT(block
, next
);
1054 assert((block
->target_start
& ~target_page_mask
) == 0);
1055 assert((block
->target_end
& ~target_page_mask
) == 0);
1056 *pfnptr
= dump_paddr_to_pfn(s
, block
->target_start
);
1057 buf
= block
->host_addr
;
1067 static void write_dump_bitmap(DumpState
*s
, Error
**errp
)
1070 uint64_t last_pfn
, pfn
;
1071 void *dump_bitmap_buf
;
1072 size_t num_dumpable
;
1073 GuestPhysBlock
*block_iter
= NULL
;
1074 size_t bitmap_bufsize
= dump_bitmap_get_bufsize(s
);
1075 size_t bits_per_buf
= bitmap_bufsize
* CHAR_BIT
;
1077 /* dump_bitmap_buf is used to store dump_bitmap temporarily */
1078 dump_bitmap_buf
= g_malloc0(bitmap_bufsize
);
1084 * exam memory page by page, and set the bit in dump_bitmap corresponded
1085 * to the existing page.
1087 while (get_next_page(&block_iter
, &pfn
, NULL
, s
)) {
1088 ret
= set_dump_bitmap(last_pfn
, pfn
, true, dump_bitmap_buf
, s
);
1090 dump_error(s
, "dump: failed to set dump_bitmap", errp
);
1099 * set_dump_bitmap will always leave the recently set bit un-sync. Here we
1100 * set the remaining bits from last_pfn to the end of the bitmap buffer to
1101 * 0. With those set, the un-sync bit will be synchronized into the vmcore.
1103 if (num_dumpable
> 0) {
1104 ret
= set_dump_bitmap(last_pfn
, last_pfn
+ bits_per_buf
, false,
1105 dump_bitmap_buf
, s
);
1107 dump_error(s
, "dump: failed to sync dump_bitmap", errp
);
1112 /* number of dumpable pages that will be dumped later */
1113 s
->num_dumpable
= num_dumpable
;
1116 g_free(dump_bitmap_buf
);
1119 static void prepare_data_cache(DataCache
*data_cache
, DumpState
*s
,
1122 data_cache
->fd
= s
->fd
;
1123 data_cache
->data_size
= 0;
1124 data_cache
->buf_size
= 4 * dump_bitmap_get_bufsize(s
);
1125 data_cache
->buf
= g_malloc0(data_cache
->buf_size
);
1126 data_cache
->offset
= offset
;
1129 static int write_cache(DataCache
*dc
, const void *buf
, size_t size
,
1133 * dc->buf_size should not be less than size, otherwise dc will never be
1136 assert(size
<= dc
->buf_size
);
1139 * if flag_sync is set, synchronize data in dc->buf into vmcore.
1140 * otherwise check if the space is enough for caching data in buf, if not,
1141 * write the data in dc->buf to dc->fd and reset dc->buf
1143 if ((!flag_sync
&& dc
->data_size
+ size
> dc
->buf_size
) ||
1144 (flag_sync
&& dc
->data_size
> 0)) {
1145 if (write_buffer(dc
->fd
, dc
->offset
, dc
->buf
, dc
->data_size
) < 0) {
1149 dc
->offset
+= dc
->data_size
;
1154 memcpy(dc
->buf
+ dc
->data_size
, buf
, size
);
1155 dc
->data_size
+= size
;
1161 static void free_data_cache(DataCache
*data_cache
)
1163 g_free(data_cache
->buf
);
1166 static size_t get_len_buf_out(size_t page_size
, uint32_t flag_compress
)
1168 switch (flag_compress
) {
1169 case DUMP_DH_COMPRESSED_ZLIB
:
1170 return compressBound(page_size
);
1172 case DUMP_DH_COMPRESSED_LZO
:
1174 * LZO will expand incompressible data by a little amount. Please check
1175 * the following URL to see the expansion calculation:
1176 * http://www.oberhumer.com/opensource/lzo/lzofaq.php
1178 return page_size
+ page_size
/ 16 + 64 + 3;
1180 #ifdef CONFIG_SNAPPY
1181 case DUMP_DH_COMPRESSED_SNAPPY
:
1182 return snappy_max_compressed_length(page_size
);
1189 * check if the page is all 0
1191 static inline bool is_zero_page(const uint8_t *buf
, size_t page_size
)
1193 return buffer_is_zero(buf
, page_size
);
1196 static void write_dump_pages(DumpState
*s
, Error
**errp
)
1199 DataCache page_desc
, page_data
;
1200 size_t len_buf_out
, size_out
;
1202 lzo_bytep wrkmem
= NULL
;
1204 uint8_t *buf_out
= NULL
;
1205 off_t offset_desc
, offset_data
;
1206 PageDescriptor pd
, pd_zero
;
1208 GuestPhysBlock
*block_iter
= NULL
;
1211 /* get offset of page_desc and page_data in dump file */
1212 offset_desc
= s
->offset_page
;
1213 offset_data
= offset_desc
+ sizeof(PageDescriptor
) * s
->num_dumpable
;
1215 prepare_data_cache(&page_desc
, s
, offset_desc
);
1216 prepare_data_cache(&page_data
, s
, offset_data
);
1218 /* prepare buffer to store compressed data */
1219 len_buf_out
= get_len_buf_out(s
->dump_info
.page_size
, s
->flag_compress
);
1220 assert(len_buf_out
!= 0);
1223 wrkmem
= g_malloc(LZO1X_1_MEM_COMPRESS
);
1226 buf_out
= g_malloc(len_buf_out
);
1229 * init zero page's page_desc and page_data, because every zero page
1230 * uses the same page_data
1232 pd_zero
.size
= cpu_to_dump32(s
, s
->dump_info
.page_size
);
1233 pd_zero
.flags
= cpu_to_dump32(s
, 0);
1234 pd_zero
.offset
= cpu_to_dump64(s
, offset_data
);
1235 pd_zero
.page_flags
= cpu_to_dump64(s
, 0);
1236 buf
= g_malloc0(s
->dump_info
.page_size
);
1237 ret
= write_cache(&page_data
, buf
, s
->dump_info
.page_size
, false);
1240 dump_error(s
, "dump: failed to write page data (zero page)", errp
);
1244 offset_data
+= s
->dump_info
.page_size
;
1247 * dump memory to vmcore page by page. zero page will all be resided in the
1248 * first page of page section
1250 while (get_next_page(&block_iter
, &pfn_iter
, &buf
, s
)) {
1251 /* check zero page */
1252 if (is_zero_page(buf
, s
->dump_info
.page_size
)) {
1253 ret
= write_cache(&page_desc
, &pd_zero
, sizeof(PageDescriptor
),
1256 dump_error(s
, "dump: failed to write page desc", errp
);
1261 * not zero page, then:
1262 * 1. compress the page
1263 * 2. write the compressed page into the cache of page_data
1264 * 3. get page desc of the compressed page and write it into the
1265 * cache of page_desc
1267 * only one compression format will be used here, for
1268 * s->flag_compress is set. But when compression fails to work,
1269 * we fall back to save in plaintext.
1271 size_out
= len_buf_out
;
1272 if ((s
->flag_compress
& DUMP_DH_COMPRESSED_ZLIB
) &&
1273 (compress2(buf_out
, (uLongf
*)&size_out
, buf
,
1274 s
->dump_info
.page_size
, Z_BEST_SPEED
) == Z_OK
) &&
1275 (size_out
< s
->dump_info
.page_size
)) {
1276 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_ZLIB
);
1277 pd
.size
= cpu_to_dump32(s
, size_out
);
1279 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1281 dump_error(s
, "dump: failed to write page data", errp
);
1285 } else if ((s
->flag_compress
& DUMP_DH_COMPRESSED_LZO
) &&
1286 (lzo1x_1_compress(buf
, s
->dump_info
.page_size
, buf_out
,
1287 (lzo_uint
*)&size_out
, wrkmem
) == LZO_E_OK
) &&
1288 (size_out
< s
->dump_info
.page_size
)) {
1289 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_LZO
);
1290 pd
.size
= cpu_to_dump32(s
, size_out
);
1292 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1294 dump_error(s
, "dump: failed to write page data", errp
);
1298 #ifdef CONFIG_SNAPPY
1299 } else if ((s
->flag_compress
& DUMP_DH_COMPRESSED_SNAPPY
) &&
1300 (snappy_compress((char *)buf
, s
->dump_info
.page_size
,
1301 (char *)buf_out
, &size_out
) == SNAPPY_OK
) &&
1302 (size_out
< s
->dump_info
.page_size
)) {
1303 pd
.flags
= cpu_to_dump32(s
, DUMP_DH_COMPRESSED_SNAPPY
);
1304 pd
.size
= cpu_to_dump32(s
, size_out
);
1306 ret
= write_cache(&page_data
, buf_out
, size_out
, false);
1308 dump_error(s
, "dump: failed to write page data", errp
);
1314 * fall back to save in plaintext, size_out should be
1315 * assigned the target's page size
1317 pd
.flags
= cpu_to_dump32(s
, 0);
1318 size_out
= s
->dump_info
.page_size
;
1319 pd
.size
= cpu_to_dump32(s
, size_out
);
1321 ret
= write_cache(&page_data
, buf
,
1322 s
->dump_info
.page_size
, false);
1324 dump_error(s
, "dump: failed to write page data", errp
);
1329 /* get and write page desc here */
1330 pd
.page_flags
= cpu_to_dump64(s
, 0);
1331 pd
.offset
= cpu_to_dump64(s
, offset_data
);
1332 offset_data
+= size_out
;
1334 ret
= write_cache(&page_desc
, &pd
, sizeof(PageDescriptor
), false);
1336 dump_error(s
, "dump: failed to write page desc", errp
);
1342 ret
= write_cache(&page_desc
, NULL
, 0, true);
1344 dump_error(s
, "dump: failed to sync cache for page_desc", errp
);
1347 ret
= write_cache(&page_data
, NULL
, 0, true);
1349 dump_error(s
, "dump: failed to sync cache for page_data", errp
);
1354 free_data_cache(&page_desc
);
1355 free_data_cache(&page_data
);
1364 static void create_kdump_vmcore(DumpState
*s
, Error
**errp
)
1367 Error
*local_err
= NULL
;
1370 * the kdump-compressed format is:
1372 * +------------------------------------------+ 0x0
1373 * | main header (struct disk_dump_header) |
1374 * |------------------------------------------+ block 1
1375 * | sub header (struct kdump_sub_header) |
1376 * |------------------------------------------+ block 2
1377 * | 1st-dump_bitmap |
1378 * |------------------------------------------+ block 2 + X blocks
1379 * | 2nd-dump_bitmap | (aligned by block)
1380 * |------------------------------------------+ block 2 + 2 * X blocks
1381 * | page desc for pfn 0 (struct page_desc) | (aligned by block)
1382 * | page desc for pfn 1 (struct page_desc) |
1384 * |------------------------------------------| (not aligned by block)
1385 * | page data (pfn 0) |
1386 * | page data (pfn 1) |
1388 * +------------------------------------------+
1391 ret
= write_start_flat_header(s
->fd
);
1393 dump_error(s
, "dump: failed to write start flat header", errp
);
1397 write_dump_header(s
, &local_err
);
1399 error_propagate(errp
, local_err
);
1403 write_dump_bitmap(s
, &local_err
);
1405 error_propagate(errp
, local_err
);
1409 write_dump_pages(s
, &local_err
);
1411 error_propagate(errp
, local_err
);
1415 ret
= write_end_flat_header(s
->fd
);
1417 dump_error(s
, "dump: failed to write end flat header", errp
);
1424 static ram_addr_t
get_start_block(DumpState
*s
)
1426 GuestPhysBlock
*block
;
1428 if (!s
->has_filter
) {
1429 s
->next_block
= QTAILQ_FIRST(&s
->guest_phys_blocks
.head
);
1433 QTAILQ_FOREACH(block
, &s
->guest_phys_blocks
.head
, next
) {
1434 if (block
->target_start
>= s
->begin
+ s
->length
||
1435 block
->target_end
<= s
->begin
) {
1436 /* This block is out of the range */
1440 s
->next_block
= block
;
1441 if (s
->begin
> block
->target_start
) {
1442 s
->start
= s
->begin
- block
->target_start
;
1452 static void get_max_mapnr(DumpState
*s
)
1454 GuestPhysBlock
*last_block
;
1456 last_block
= QTAILQ_LAST(&s
->guest_phys_blocks
.head
, GuestPhysBlockHead
);
1457 s
->max_mapnr
= dump_paddr_to_pfn(s
, last_block
->target_end
);
1460 static void dump_init(DumpState
*s
, int fd
, bool has_format
,
1461 DumpGuestMemoryFormat format
, bool paging
, bool has_filter
,
1462 int64_t begin
, int64_t length
, Error
**errp
)
1469 /* kdump-compressed is conflict with paging and filter */
1470 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1471 assert(!paging
&& !has_filter
);
1474 if (runstate_is_running()) {
1475 vm_stop(RUN_STATE_SAVE_VM
);
1481 /* If we use KVM, we should synchronize the registers before we get dump
1482 * info or physmap info.
1484 cpu_synchronize_all_states();
1491 s
->has_filter
= has_filter
;
1495 memory_mapping_list_init(&s
->list
);
1497 guest_phys_blocks_init(&s
->guest_phys_blocks
);
1498 guest_phys_blocks_append(&s
->guest_phys_blocks
);
1500 s
->start
= get_start_block(s
);
1501 if (s
->start
== -1) {
1502 error_setg(errp
, QERR_INVALID_PARAMETER
, "begin");
1506 /* get dump info: endian, class and architecture.
1507 * If the target architecture is not supported, cpu_get_dump_info() will
1510 ret
= cpu_get_dump_info(&s
->dump_info
, &s
->guest_phys_blocks
);
1512 error_setg(errp
, QERR_UNSUPPORTED
);
1516 if (!s
->dump_info
.page_size
) {
1517 s
->dump_info
.page_size
= TARGET_PAGE_SIZE
;
1520 s
->note_size
= cpu_get_note_size(s
->dump_info
.d_class
,
1521 s
->dump_info
.d_machine
, nr_cpus
);
1522 if (s
->note_size
< 0) {
1523 error_setg(errp
, QERR_UNSUPPORTED
);
1527 /* get memory mapping */
1529 qemu_get_guest_memory_mapping(&s
->list
, &s
->guest_phys_blocks
, &err
);
1531 error_propagate(errp
, err
);
1535 qemu_get_guest_simple_memory_mapping(&s
->list
, &s
->guest_phys_blocks
);
1538 s
->nr_cpus
= nr_cpus
;
1543 tmp
= DIV_ROUND_UP(DIV_ROUND_UP(s
->max_mapnr
, CHAR_BIT
),
1544 s
->dump_info
.page_size
);
1545 s
->len_dump_bitmap
= tmp
* s
->dump_info
.page_size
;
1547 /* init for kdump-compressed format */
1548 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1550 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
:
1551 s
->flag_compress
= DUMP_DH_COMPRESSED_ZLIB
;
1554 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
:
1556 if (lzo_init() != LZO_E_OK
) {
1557 error_setg(errp
, "failed to initialize the LZO library");
1561 s
->flag_compress
= DUMP_DH_COMPRESSED_LZO
;
1564 case DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
:
1565 s
->flag_compress
= DUMP_DH_COMPRESSED_SNAPPY
;
1569 s
->flag_compress
= 0;
1575 if (s
->has_filter
) {
1576 memory_mapping_filter(&s
->list
, s
->begin
, s
->length
);
1580 * calculate phdr_num
1582 * the type of ehdr->e_phnum is uint16_t, so we should avoid overflow
1584 s
->phdr_num
= 1; /* PT_NOTE */
1585 if (s
->list
.num
< UINT16_MAX
- 2) {
1586 s
->phdr_num
+= s
->list
.num
;
1587 s
->have_section
= false;
1589 s
->have_section
= true;
1590 s
->phdr_num
= PN_XNUM
;
1591 s
->sh_info
= 1; /* PT_NOTE */
1593 /* the type of shdr->sh_info is uint32_t, so we should avoid overflow */
1594 if (s
->list
.num
<= UINT32_MAX
- 1) {
1595 s
->sh_info
+= s
->list
.num
;
1597 s
->sh_info
= UINT32_MAX
;
1601 if (s
->dump_info
.d_class
== ELFCLASS64
) {
1602 if (s
->have_section
) {
1603 s
->memory_offset
= sizeof(Elf64_Ehdr
) +
1604 sizeof(Elf64_Phdr
) * s
->sh_info
+
1605 sizeof(Elf64_Shdr
) + s
->note_size
;
1607 s
->memory_offset
= sizeof(Elf64_Ehdr
) +
1608 sizeof(Elf64_Phdr
) * s
->phdr_num
+ s
->note_size
;
1611 if (s
->have_section
) {
1612 s
->memory_offset
= sizeof(Elf32_Ehdr
) +
1613 sizeof(Elf32_Phdr
) * s
->sh_info
+
1614 sizeof(Elf32_Shdr
) + s
->note_size
;
1616 s
->memory_offset
= sizeof(Elf32_Ehdr
) +
1617 sizeof(Elf32_Phdr
) * s
->phdr_num
+ s
->note_size
;
1627 void qmp_dump_guest_memory(bool paging
, const char *file
, bool has_begin
,
1628 int64_t begin
, bool has_length
,
1629 int64_t length
, bool has_format
,
1630 DumpGuestMemoryFormat format
, Error
**errp
)
1635 Error
*local_err
= NULL
;
1638 * kdump-compressed format need the whole memory dumped, so paging or
1639 * filter is not supported here.
1641 if ((has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) &&
1642 (paging
|| has_begin
|| has_length
)) {
1643 error_setg(errp
, "kdump-compressed format doesn't support paging or "
1647 if (has_begin
&& !has_length
) {
1648 error_setg(errp
, QERR_MISSING_PARAMETER
, "length");
1651 if (!has_begin
&& has_length
) {
1652 error_setg(errp
, QERR_MISSING_PARAMETER
, "begin");
1656 /* check whether lzo/snappy is supported */
1658 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
) {
1659 error_setg(errp
, "kdump-lzo is not available now");
1664 #ifndef CONFIG_SNAPPY
1665 if (has_format
&& format
== DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
) {
1666 error_setg(errp
, "kdump-snappy is not available now");
1672 if (strstart(file
, "fd:", &p
)) {
1673 fd
= monitor_get_fd(cur_mon
, p
, errp
);
1680 if (strstart(file
, "file:", &p
)) {
1681 fd
= qemu_open(p
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
, S_IRUSR
);
1683 error_setg_file_open(errp
, errno
, p
);
1689 error_setg(errp
, QERR_INVALID_PARAMETER
, "protocol");
1693 s
= g_malloc0(sizeof(DumpState
));
1695 dump_init(s
, fd
, has_format
, format
, paging
, has_begin
,
1696 begin
, length
, &local_err
);
1699 error_propagate(errp
, local_err
);
1703 if (has_format
&& format
!= DUMP_GUEST_MEMORY_FORMAT_ELF
) {
1704 create_kdump_vmcore(s
, errp
);
1706 create_vmcore(s
, errp
);
1712 DumpGuestMemoryCapability
*qmp_query_dump_guest_memory_capability(Error
**errp
)
1714 DumpGuestMemoryFormatList
*item
;
1715 DumpGuestMemoryCapability
*cap
=
1716 g_malloc0(sizeof(DumpGuestMemoryCapability
));
1718 /* elf is always available */
1719 item
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1720 cap
->formats
= item
;
1721 item
->value
= DUMP_GUEST_MEMORY_FORMAT_ELF
;
1723 /* kdump-zlib is always available */
1724 item
->next
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1726 item
->value
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
;
1728 /* add new item if kdump-lzo is available */
1730 item
->next
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1732 item
->value
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
;
1735 /* add new item if kdump-snappy is available */
1736 #ifdef CONFIG_SNAPPY
1737 item
->next
= g_malloc0(sizeof(DumpGuestMemoryFormatList
));
1739 item
->value
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
;