[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [RFC][PATCT 0/8 v3] dump memory when host pci device is use
From: |
Wen Congyang |
Subject: |
[Qemu-devel] [RFC][PATCT 0/8 v3] dump memory when host pci device is used by guest |
Date: |
Tue, 20 Dec 2011 16:54:48 +0800 |
User-agent: |
Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.9) Gecko/20100413 Fedora/3.0.4-2.fc13 Thunderbird/3.0.4 |
Hi, all
'virsh dump' can not work when host pci device is used by guest. We have
discussed this issue here:
http://lists.nongnu.org/archive/html/qemu-devel/2011-10/msg00736.html
We have determined to introduce a new command dump to dump memory. The core
file's format can be elf.
Note:
1. The guest should be x86 or x86_64. The other arch is not supported.
2. If you use old gdb, gdb may crash. I use gdb-7.3.1, and it does not crash.
3. If the OS is in the second kernel, gdb may not work well, and crash can
work by specifying '--machdep phys_addr=xxx' in the command line. The
reason is that the second kernel will update the page table, and we can
not get the page table for the first kernel.
4. If the guest OS is 32 bit and the memory size is larger than 4G, the vmcore
is elf64 format. You should use the gdb which is built with
--enable-64-bit-bfd.
Change from v2 to v3:
1. address Jan Kiszka's comment
Changes from v1 to v2:
1. fix virt addr in the vmcore.
Wen Congyang (8):
Add API to create memory mapping list
Add API to check whether a physical address is I/O address
target-i386: implement cpu_get_memory_mapping()
Add API to get memory mapping
target-i386: Add API to write elf notes to core file
target-i386: Add API to add extra memory mapping
target-i386: add API to get dump info
introduce a new monitor command 'dump' to dump guest's memory
Makefile.target | 11 +-
cpu-all.h | 18 ++
cpu-common.h | 1 +
dump.c | 452 ++++++++++++++++++++++++++++++++++++
dump.h | 14 ++
exec.c | 20 ++
hmp-commands.hx | 16 ++
memory_mapping.c | 185 +++++++++++++++
memory_mapping.h | 39 ++++
monitor.c | 3 +
qmp-commands.hx | 24 ++
target-i386/arch-dump.c | 578 +++++++++++++++++++++++++++++++++++++++++++++++
12 files changed, 1356 insertions(+), 5 deletions(-)
create mode 100644 dump.c
create mode 100644 dump.h
create mode 100644 memory_mapping.c
create mode 100644 memory_mapping.h
create mode 100644 target-i386/arch-dump.c
- [Qemu-devel] [RFC][PATCT 0/8 v3] dump memory when host pci device is used by guest,
Wen Congyang <=
- [Qemu-devel] [RFC][PATCH 1/8 v3] Add API to create memory mapping list, Wen Congyang, 2011/12/20
- [Qemu-devel] [RFC][PATCH 2/8 v3] Add API to check whether a physical address is I/O address, Wen Congyang, 2011/12/20
- [Qemu-devel] [RFC][PATCH 3/8 v3] target-i386: implement cpu_get_memory_mapping(), Wen Congyang, 2011/12/20
- [Qemu-devel] [RFC][PATCH 4/8 v3] Add API to get memory mapping, Wen Congyang, 2011/12/20
- [Qemu-devel] [RFC][PATCH 5/8 v3] target-i386: Add API to write elf notes to core file, Wen Congyang, 2011/12/20
- [Qemu-devel] [RFC][PATCH 6/8 v3] target-i386: Add API to add extra memory mapping, Wen Congyang, 2011/12/20
- [Qemu-devel] [RFC][PATCH 7/8 v3] target-i386: add API to get dump info, Wen Congyang, 2011/12/20
- [Qemu-devel] [RFC][PATCH 8/8 v3] introduce a new monitor command 'dump' to dump guest's memory, Wen Congyang, 2011/12/20