1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
/* LKCD format definitions.
Copyright (C) 2016 Petr Tesarik <ptesarik@suse.cz>
This file is free software; you can redistribute it and/or modify
it under the terms of either
* the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at
your option) any later version
or
* the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at
your option) any later version
or both in parallel, as here.
libkdumpfile is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received copies of the GNU General Public License and
the GNU Lesser General Public License along with this program. If
not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _LKCD_H
#define _LKCD_H 1
#include <stdint.h>
#define DUMP_MAGIC_NUMBER 0xa8190173618f23edULL
#define DUMP_PANIC_LEN 0x100
#define DUMP_LEVEL_NONE 0x0
#define DUMP_LEVEL_HEADER 0x1
#define DUMP_LEVEL_KERN 0x2
#define DUMP_LEVEL_USED 0x4
#define DUMP_LEVEL_ALL 0x8
#define DUMP_COMPRESS_NONE 0x0
#define DUMP_COMPRESS_RLE 0x1
#define DUMP_COMPRESS_GZIP 0x2
#define DUMP_DH_FLAGS_NONE 0x0
#define DUMP_DH_RAW 0x1
#define DUMP_DH_COMPRESSED 0x2
#define DUMP_DH_END 0x4
struct dump_header {
uint64_t dh_magic_number;
uint32_t dh_version;
uint32_t dh_header_size;
uint32_t dh_dump_level;
uint32_t dh_page_size;
uint64_t dh_memory_size;
uint64_t dh_memory_start;
uint64_t dh_memory_end;
uint32_t dh_num_dump_pages;
char dh_panic_string[DUMP_PANIC_LEN];
struct {
uint64_t tv_sec;
uint64_t tv_usec;
} dh_time;
char dh_utsname_sysname[65];
char dh_utsname_nodename[65];
char dh_utsname_release[65];
char dh_utsname_version[65];
char dh_utsname_machine[65];
char dh_utsname_domainname[65];
uint64_t dh_current_task;
uint32_t dh_dump_compress;
uint32_t dh_dump_flags;
uint32_t dh_dump_device;
uint64_t dh_dump_buffer_size;
} __attribute__((packed));
/* x86_64 stuff */
struct pt_regs_x86_64 {
uint64_t r15;
uint64_t r14;
uint64_t r13;
uint64_t r12;
uint64_t rbp;
uint64_t rbx;
uint64_t r11;
uint64_t r10;
uint64_t r9;
uint64_t r8;
uint64_t rax;
uint64_t rcx;
uint64_t rdx;
uint64_t rsi;
uint64_t rdi;
uint64_t orig_rax;
uint64_t rip;
uint64_t cs;
uint64_t eflags;
uint64_t rsp;
uint64_t ss;
} __attribute__((packed));
#define DUMP_ASM_MAGIC_NUMBER_X86_64 0xdeaddeadULL
#define DUMP_ASM_VERSION_NUMBER_X86_64 2
struct dump_header_asm_x86_64 {
uint64_t dha_magic_number;
uint32_t dha_version;
uint32_t dha_header_size;
struct pt_regs_x86_64 dha_regs;
uint32_t dha_smp_num_cpus;
uint32_t dha_dumping_cpu;
/* struct pt_regs_x86_64 dha_smp_regs[NR_CPUS]; */
/* uint64_t dha_smp_current_task[NR_CPUS]; */
/* uint64_t dha_stack[NR_CPUS]; */
/* uint64_t dha_stack_ptr[NR_CPUS]; */
} __attribute__((packed));
/* ia32 stuff */
struct pt_regs_ia32 {
uint32_t ebx;
uint32_t ecx;
uint32_t edx;
uint32_t esi;
uint32_t edi;
uint32_t ebp;
uint32_t eax;
uint32_t xds;
uint32_t xes;
uint32_t orig_eax;
uint32_t eip;
uint32_t xcs;
uint32_t eflags;
uint32_t esp;
uint32_t xss;
} __attribute__((packed));
#define DUMP_ASM_MAGIC_NUMBER_IA32 0xdeaddeadULL
#define DUMP_ASM_VERSION_NUMBER_IA32 3
struct dump_header_asm_ia32 {
uint64_t dha_magic_number;
uint32_t dha_version;
uint32_t dha_header_size;
uint32_t dha_esp;
uint32_t dha_eip;
struct pt_regs_ia32 dha_regs;
uint32_t dha_smp_num_cpus;
uint32_t dha_dumping_cpu;
/* struct pt_regs_ia32 dha_smp_regs[NR_CPUS]; */
/* uint32_t dha_smp_current_task[NR_CPUS]; */
/* uint32_t dha_stack[NR_CPUS]; */
/* uint32_t dha_stack_ptr[NR_CPUS]; */
} __attribute__((packed));
/* ppc64 stuff */
struct pt_regs_ppc64 {
uint64_t gpr[32];
uint64_t nip;
uint64_t msr;
uint64_t orig_gpr3;
uint64_t ctr;
uint64_t link;
uint64_t xer;
uint64_t ccr;
uint64_t softe;
uint64_t trap;
uint64_t dar;
uint64_t dsisr;
uint64_t result;
};
#define DUMP_ASM_MAGIC_NUMBER_PPC64 0xdeaddeadULL
#define DUMP_ASM_VERSION_NUMBER_PPC64 0x5
struct dump_header_asm_ppc64 {
uint64_t dha_magic_number;
uint32_t dha_version;
uint32_t dha_header_size;
struct pt_regs_ppc64 dha_regs;
uint32_t dha_smp_num_cpus;
uint32_t dha_dumping_cpu;
/* struct pt_regs_ppc64 dha_smp_regs[NR_CPUS]; */
/* uint64_t dha_smp_current_task[NR_CPUS]; */
/* uint64_t dha_stack[NR_CPUS]; */
/* uint64_t dha_stack_ptr[NR_CPUS]; */
} __attribute__((packed));
#define DUMP_DH_FLAGS_NONE 0x0
#define DUMP_DH_RAW 0x1
#define DUMP_DH_COMPRESSED 0x2
#define DUMP_DH_END 0x4
struct dump_page {
uint64_t dp_address;
uint32_t dp_size;
uint32_t dp_flags;
} __attribute__((packed));
#endif /* lkcd.h */
|