4 * Copyright Fujitsu, Corp. 2011, 2012
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"
16 #include "sysemu/dump.h"
18 #include "sysemu/memory_mapping.h"
20 #define ELF_NOTE_SIZE(hdr_size, name_size, desc_size) \
21 ((DIV_ROUND_UP((hdr_size), 4) \
22 + DIV_ROUND_UP((name_size), 4) \
23 + DIV_ROUND_UP((desc_size), 4)) * 4)
27 target_ulong r15, r14, r13, r12, rbp, rbx, r11, r10;
28 target_ulong r9, r8, rax, rcx, rdx, rsi, rdi, orig_rax;
29 target_ulong rip, cs, eflags;
31 target_ulong fs_base, gs_base;
32 target_ulong ds, es, fs, gs;
33 } x86_64_user_regs_struct;
39 x86_64_user_regs_struct regs;
41 } x86_64_elf_prstatus;
43 static int x86_64_write_elf64_note(WriteCoreDumpFunction f,
44 CPUX86State *env, int id,
47 x86_64_user_regs_struct regs;
50 int descsz, note_size, name_size = 5;
51 const char *name = "CORE";
54 regs.r15 = env->regs[15];
55 regs.r14 = env->regs[14];
56 regs.r13 = env->regs[13];
57 regs.r12 = env->regs[12];
58 regs.r11 = env->regs[11];
59 regs.r10 = env->regs[10];
60 regs.r9 = env->regs[9];
61 regs.r8 = env->regs[8];
62 regs.rbp = env->regs[R_EBP];
63 regs.rsp = env->regs[R_ESP];
64 regs.rdi = env->regs[R_EDI];
65 regs.rsi = env->regs[R_ESI];
66 regs.rdx = env->regs[R_EDX];
67 regs.rcx = env->regs[R_ECX];
68 regs.rbx = env->regs[R_EBX];
69 regs.rax = env->regs[R_EAX];
71 regs.eflags = env->eflags;
73 regs.orig_rax = 0; /* FIXME */
74 regs.cs = env->segs[R_CS].selector;
75 regs.ss = env->segs[R_SS].selector;
76 regs.fs_base = env->segs[R_FS].base;
77 regs.gs_base = env->segs[R_GS].base;
78 regs.ds = env->segs[R_DS].selector;
79 regs.es = env->segs[R_ES].selector;
80 regs.fs = env->segs[R_FS].selector;
81 regs.gs = env->segs[R_GS].selector;
83 descsz = sizeof(x86_64_elf_prstatus);
84 note_size = ELF_NOTE_SIZE(sizeof(Elf64_Nhdr), name_size, descsz);
85 note = g_malloc0(note_size);
86 note->n_namesz = cpu_to_le32(name_size);
87 note->n_descsz = cpu_to_le32(descsz);
88 note->n_type = cpu_to_le32(NT_PRSTATUS);
90 buf += ROUND_UP(sizeof(Elf64_Nhdr), 4);
91 memcpy(buf, name, name_size);
92 buf += ROUND_UP(name_size, 4);
93 memcpy(buf + 32, &id, 4); /* pr_pid */
94 buf += descsz - sizeof(x86_64_user_regs_struct)-sizeof(target_ulong);
95 memcpy(buf, ®s, sizeof(x86_64_user_regs_struct));
97 ret = f(note, note_size, opaque);
108 uint32_t ebx, ecx, edx, esi, edi, ebp, eax;
109 unsigned short ds, __ds, es, __es;
110 unsigned short fs, __fs, gs, __gs;
111 uint32_t orig_eax, eip;
112 unsigned short cs, __cs;
113 uint32_t eflags, esp;
114 unsigned short ss, __ss;
115 } x86_user_regs_struct;
121 x86_user_regs_struct regs;
125 static void x86_fill_elf_prstatus(x86_elf_prstatus *prstatus, CPUX86State *env,
128 memset(prstatus, 0, sizeof(x86_elf_prstatus));
129 prstatus->regs.ebp = env->regs[R_EBP] & 0xffffffff;
130 prstatus->regs.esp = env->regs[R_ESP] & 0xffffffff;
131 prstatus->regs.edi = env->regs[R_EDI] & 0xffffffff;
132 prstatus->regs.esi = env->regs[R_ESI] & 0xffffffff;
133 prstatus->regs.edx = env->regs[R_EDX] & 0xffffffff;
134 prstatus->regs.ecx = env->regs[R_ECX] & 0xffffffff;
135 prstatus->regs.ebx = env->regs[R_EBX] & 0xffffffff;
136 prstatus->regs.eax = env->regs[R_EAX] & 0xffffffff;
137 prstatus->regs.eip = env->eip & 0xffffffff;
138 prstatus->regs.eflags = env->eflags & 0xffffffff;
140 prstatus->regs.cs = env->segs[R_CS].selector;
141 prstatus->regs.ss = env->segs[R_SS].selector;
142 prstatus->regs.ds = env->segs[R_DS].selector;
143 prstatus->regs.es = env->segs[R_ES].selector;
144 prstatus->regs.fs = env->segs[R_FS].selector;
145 prstatus->regs.gs = env->segs[R_GS].selector;
150 static int x86_write_elf64_note(WriteCoreDumpFunction f, CPUX86State *env,
151 int id, void *opaque)
153 x86_elf_prstatus prstatus;
156 int descsz, note_size, name_size = 5;
157 const char *name = "CORE";
160 x86_fill_elf_prstatus(&prstatus, env, id);
161 descsz = sizeof(x86_elf_prstatus);
162 note_size = ELF_NOTE_SIZE(sizeof(Elf64_Nhdr), name_size, descsz);
163 note = g_malloc0(note_size);
164 note->n_namesz = cpu_to_le32(name_size);
165 note->n_descsz = cpu_to_le32(descsz);
166 note->n_type = cpu_to_le32(NT_PRSTATUS);
168 buf += ROUND_UP(sizeof(Elf64_Nhdr), 4);
169 memcpy(buf, name, name_size);
170 buf += ROUND_UP(name_size, 4);
171 memcpy(buf, &prstatus, sizeof(prstatus));
173 ret = f(note, note_size, opaque);
182 int x86_cpu_write_elf64_note(WriteCoreDumpFunction f, CPUState *cs,
183 int cpuid, void *opaque)
185 X86CPU *cpu = X86_CPU(cs);
188 X86CPU *first_x86_cpu = X86_CPU(first_cpu);
189 bool lma = !!(first_x86_cpu->env.hflags & HF_LMA_MASK);
192 ret = x86_64_write_elf64_note(f, &cpu->env, cpuid, opaque);
195 ret = x86_write_elf64_note(f, &cpu->env, cpuid, opaque);
203 int x86_cpu_write_elf32_note(WriteCoreDumpFunction f, CPUState *cs,
204 int cpuid, void *opaque)
206 X86CPU *cpu = X86_CPU(cs);
207 x86_elf_prstatus prstatus;
210 int descsz, note_size, name_size = 5;
211 const char *name = "CORE";
214 x86_fill_elf_prstatus(&prstatus, &cpu->env, cpuid);
215 descsz = sizeof(x86_elf_prstatus);
216 note_size = ELF_NOTE_SIZE(sizeof(Elf32_Nhdr), name_size, descsz);
217 note = g_malloc0(note_size);
218 note->n_namesz = cpu_to_le32(name_size);
219 note->n_descsz = cpu_to_le32(descsz);
220 note->n_type = cpu_to_le32(NT_PRSTATUS);
222 buf += ROUND_UP(sizeof(Elf32_Nhdr), 4);
223 memcpy(buf, name, name_size);
224 buf += ROUND_UP(name_size, 4);
225 memcpy(buf, &prstatus, sizeof(prstatus));
227 ret = f(note, note_size, opaque);
237 * please count up QEMUCPUSTATE_VERSION if you have changed definition of
238 * QEMUCPUState, and modify the tools using this information accordingly.
240 #define QEMUCPUSTATE_VERSION (1)
242 struct QEMUCPUSegment {
250 typedef struct QEMUCPUSegment QEMUCPUSegment;
252 struct QEMUCPUState {
255 uint64_t rax, rbx, rcx, rdx, rsi, rdi, rsp, rbp;
256 uint64_t r8, r9, r10, r11, r12, r13, r14, r15;
257 uint64_t rip, rflags;
258 QEMUCPUSegment cs, ds, es, fs, gs, ss;
259 QEMUCPUSegment ldt, tr, gdt, idt;
262 * Fields below are optional and are being added at the end without
263 * changing the version. External tools may identify their presence
264 * by checking 'size' field.
266 uint64_t kernel_gs_base;
269 typedef struct QEMUCPUState QEMUCPUState;
271 static void copy_segment(QEMUCPUSegment *d, SegmentCache *s)
274 d->selector = s->selector;
280 static void qemu_get_cpustate(QEMUCPUState *s, CPUX86State *env)
282 memset(s, 0, sizeof(QEMUCPUState));
284 s->version = QEMUCPUSTATE_VERSION;
285 s->size = sizeof(QEMUCPUState);
287 s->rax = env->regs[R_EAX];
288 s->rbx = env->regs[R_EBX];
289 s->rcx = env->regs[R_ECX];
290 s->rdx = env->regs[R_EDX];
291 s->rsi = env->regs[R_ESI];
292 s->rdi = env->regs[R_EDI];
293 s->rsp = env->regs[R_ESP];
294 s->rbp = env->regs[R_EBP];
296 s->r8 = env->regs[8];
297 s->r9 = env->regs[9];
298 s->r10 = env->regs[10];
299 s->r11 = env->regs[11];
300 s->r12 = env->regs[12];
301 s->r13 = env->regs[13];
302 s->r14 = env->regs[14];
303 s->r15 = env->regs[15];
306 s->rflags = env->eflags;
308 copy_segment(&s->cs, &env->segs[R_CS]);
309 copy_segment(&s->ds, &env->segs[R_DS]);
310 copy_segment(&s->es, &env->segs[R_ES]);
311 copy_segment(&s->fs, &env->segs[R_FS]);
312 copy_segment(&s->gs, &env->segs[R_GS]);
313 copy_segment(&s->ss, &env->segs[R_SS]);
314 copy_segment(&s->ldt, &env->ldt);
315 copy_segment(&s->tr, &env->tr);
316 copy_segment(&s->gdt, &env->gdt);
317 copy_segment(&s->idt, &env->idt);
319 s->cr[0] = env->cr[0];
320 s->cr[1] = env->cr[1];
321 s->cr[2] = env->cr[2];
322 s->cr[3] = env->cr[3];
323 s->cr[4] = env->cr[4];
326 s->kernel_gs_base = env->kernelgsbase;
330 static inline int cpu_write_qemu_note(WriteCoreDumpFunction f,
340 int descsz, note_size, name_size = 5, note_head_size;
341 const char *name = "QEMU";
344 qemu_get_cpustate(&state, env);
346 descsz = sizeof(state);
348 note_head_size = sizeof(Elf32_Nhdr);
350 note_head_size = sizeof(Elf64_Nhdr);
352 note_size = (DIV_ROUND_UP(note_head_size, 4) + DIV_ROUND_UP(name_size, 4) +
353 DIV_ROUND_UP(descsz, 4)) * 4;
354 note = g_malloc0(note_size);
357 note32->n_namesz = cpu_to_le32(name_size);
358 note32->n_descsz = cpu_to_le32(descsz);
362 note64->n_namesz = cpu_to_le32(name_size);
363 note64->n_descsz = cpu_to_le32(descsz);
367 buf += ROUND_UP(note_head_size, 4);
368 memcpy(buf, name, name_size);
369 buf += ROUND_UP(name_size, 4);
370 memcpy(buf, &state, sizeof(state));
372 ret = f(note, note_size, opaque);
381 int x86_cpu_write_elf64_qemunote(WriteCoreDumpFunction f, CPUState *cs,
384 X86CPU *cpu = X86_CPU(cs);
386 return cpu_write_qemu_note(f, &cpu->env, opaque, 1);
389 int x86_cpu_write_elf32_qemunote(WriteCoreDumpFunction f, CPUState *cs,
392 X86CPU *cpu = X86_CPU(cs);
394 return cpu_write_qemu_note(f, &cpu->env, opaque, 0);
397 int cpu_get_dump_info(ArchDumpInfo *info,
398 const GuestPhysBlockList *guest_phys_blocks)
401 GuestPhysBlock *block;
404 X86CPU *first_x86_cpu = X86_CPU(first_cpu);
405 lma = first_cpu && (first_x86_cpu->env.hflags & HF_LMA_MASK);
409 info->d_machine = EM_X86_64;
411 info->d_machine = EM_386;
413 info->d_endian = ELFDATA2LSB;
416 info->d_class = ELFCLASS64;
418 info->d_class = ELFCLASS32;
420 QTAILQ_FOREACH(block, &guest_phys_blocks->head, next) {
421 if (block->target_end > UINT_MAX) {
422 /* The memory size is greater than 4G */
423 info->d_class = ELFCLASS64;
432 ssize_t cpu_get_note_size(int class, int machine, int nr_cpus)
434 int name_size = 5; /* "CORE" or "QEMU" */
435 size_t elf_note_size = 0;
436 size_t qemu_note_size = 0;
437 int elf_desc_size = 0;
438 int qemu_desc_size = 0;
441 if (class == ELFCLASS32) {
442 note_head_size = sizeof(Elf32_Nhdr);
444 note_head_size = sizeof(Elf64_Nhdr);
447 if (machine == EM_386) {
448 elf_desc_size = sizeof(x86_elf_prstatus);
452 elf_desc_size = sizeof(x86_64_elf_prstatus);
455 qemu_desc_size = sizeof(QEMUCPUState);
457 elf_note_size = ELF_NOTE_SIZE(note_head_size, name_size, elf_desc_size);
458 qemu_note_size = ELF_NOTE_SIZE(note_head_size, name_size, qemu_desc_size);
460 return (elf_note_size + qemu_note_size) * nr_cpus;