blob: 5af6676a88f05ed3e8a3bc6bef8a885ac29f30e1 [file] [log] [blame]
David Wilderdc851a02006-06-25 05:47:55 -07001================================================================
2Documentation for Kdump - The kexec-based Crash Dumping Solution
Vivek Goyalb089f4a2005-06-25 14:58:15 -07003================================================================
4
David Wilderdc851a02006-06-25 05:47:55 -07005This document includes overview, setup and installation, and analysis
6information.
Vivek Goyalb089f4a2005-06-25 14:58:15 -07007
David Wilderdc851a02006-06-25 05:47:55 -07008Overview
9========
Vivek Goyalb089f4a2005-06-25 14:58:15 -070010
David Wilderdc851a02006-06-25 05:47:55 -070011Kdump uses kexec to quickly boot to a dump-capture kernel whenever a
12dump of the system kernel's memory needs to be taken (for example, when
13the system panics). The system kernel's memory image is preserved across
14the reboot and is accessible to the dump-capture kernel.
Vivek Goyalb089f4a2005-06-25 14:58:15 -070015
David Wilderdc851a02006-06-25 05:47:55 -070016You can use common Linux commands, such as cp and scp, to copy the
17memory image to a dump file on the local disk, or across the network to
18a remote system.
Vivek Goyalb089f4a2005-06-25 14:58:15 -070019
Vivek Goyal9c61a442007-01-10 23:15:35 -080020Kdump and kexec are currently supported on the x86, x86_64, ppc64 and IA64
David Wilderdc851a02006-06-25 05:47:55 -070021architectures.
Vivek Goyalb089f4a2005-06-25 14:58:15 -070022
David Wilderdc851a02006-06-25 05:47:55 -070023When the system kernel boots, it reserves a small section of memory for
24the dump-capture kernel. This ensures that ongoing Direct Memory Access
25(DMA) from the system kernel does not corrupt the dump-capture kernel.
26The kexec -p command loads the dump-capture kernel into this reserved
27memory.
Vivek Goyalb089f4a2005-06-25 14:58:15 -070028
David Wilderdc851a02006-06-25 05:47:55 -070029On x86 machines, the first 640 KB of physical memory is needed to boot,
30regardless of where the kernel loads. Therefore, kexec backs up this
31region just before rebooting into the dump-capture kernel.
Vivek Goyalb089f4a2005-06-25 14:58:15 -070032
David Wilderdc851a02006-06-25 05:47:55 -070033All of the necessary information about the system kernel's core image is
34encoded in the ELF format, and stored in a reserved area of memory
35before a crash. The physical address of the start of the ELF header is
36passed to the dump-capture kernel through the elfcorehdr= boot
37parameter.
Vivek Goyalb089f4a2005-06-25 14:58:15 -070038
David Wilderdc851a02006-06-25 05:47:55 -070039With the dump-capture kernel, you can access the memory image, or "old
40memory," in two ways:
Vivek Goyalb089f4a2005-06-25 14:58:15 -070041
David Wilderdc851a02006-06-25 05:47:55 -070042- Through a /dev/oldmem device interface. A capture utility can read the
43 device file and write out the memory in raw format. This is a raw dump
44 of memory. Analysis and capture tools must be intelligent enough to
45 determine where to look for the right information.
Vivek Goyalb089f4a2005-06-25 14:58:15 -070046
David Wilderdc851a02006-06-25 05:47:55 -070047- Through /proc/vmcore. This exports the dump as an ELF-format file that
48 you can write out using file copy commands such as cp or scp. Further,
49 you can use analysis tools such as the GNU Debugger (GDB) and the Crash
50 tool to debug the dump file. This method ensures that the dump pages are
51 correctly ordered.
Vivek Goyalb089f4a2005-06-25 14:58:15 -070052
Vivek Goyalb089f4a2005-06-25 14:58:15 -070053
David Wilderdc851a02006-06-25 05:47:55 -070054Setup and Installation
55======================
Vivek Goyalb089f4a2005-06-25 14:58:15 -070056
Vivek Goyal9c61a442007-01-10 23:15:35 -080057Install kexec-tools
58-------------------
Vivek Goyalb089f4a2005-06-25 14:58:15 -070059
David Wilderdc851a02006-06-25 05:47:55 -0700601) Login as the root user.
Vivek Goyalb089f4a2005-06-25 14:58:15 -070061
David Wilderdc851a02006-06-25 05:47:55 -0700622) Download the kexec-tools user-space package from the following URL:
Vivek Goyalb089f4a2005-06-25 14:58:15 -070063
Vivek Goyal9c61a442007-01-10 23:15:35 -080064http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-testing-20061214.tar.gz
65
66Note: Latest kexec-tools-testing git tree is available at
67
68git://git.kernel.org/pub/scm/linux/kernel/git/horms/kexec-tools-testing.git
69or
70http://www.kernel.org/git/?p=linux/kernel/git/horms/kexec-tools-testing.git;a=summary
Vivek Goyalb089f4a2005-06-25 14:58:15 -070071
David Wilderdc851a02006-06-25 05:47:55 -0700723) Unpack the tarball with the tar command, as follows:
73
Vivek Goyal9c61a442007-01-10 23:15:35 -080074 tar xvpzf kexec-tools-testing-20061214.tar.gz
David Wilderdc851a02006-06-25 05:47:55 -070075
Vivek Goyal9c61a442007-01-10 23:15:35 -0800764) Change to the kexec-tools-1.101 directory, as follows:
David Wilderdc851a02006-06-25 05:47:55 -070077
Vivek Goyal9c61a442007-01-10 23:15:35 -080078 cd kexec-tools-testing-20061214
David Wilderdc851a02006-06-25 05:47:55 -070079
Vivek Goyal9c61a442007-01-10 23:15:35 -0800805) Configure the package, as follows:
David Wilderdc851a02006-06-25 05:47:55 -070081
82 ./configure
83
Vivek Goyal9c61a442007-01-10 23:15:35 -0800846) Compile the package, as follows:
David Wilderdc851a02006-06-25 05:47:55 -070085
86 make
87
Vivek Goyal9c61a442007-01-10 23:15:35 -0800887) Install the package, as follows:
David Wilderdc851a02006-06-25 05:47:55 -070089
90 make install
91
92
Vivek Goyal9c61a442007-01-10 23:15:35 -080093Build the system and dump-capture kernels
94-----------------------------------------
95There are two possible methods of using Kdump.
David Wilderdc851a02006-06-25 05:47:55 -070096
Vivek Goyal9c61a442007-01-10 23:15:35 -0800971) Build a separate custom dump-capture kernel for capturing the
98 kernel core dump.
David Wilderdc851a02006-06-25 05:47:55 -070099
Vivek Goyal9c61a442007-01-10 23:15:35 -08001002) Or use the system kernel binary itself as dump-capture kernel and there is
101 no need to build a separate dump-capture kernel. This is possible
102 only with the architecutres which support a relocatable kernel. As
103 of today i386 and ia64 architectures support relocatable kernel.
104
105Building a relocatable kernel is advantageous from the point of view that
106one does not have to build a second kernel for capturing the dump. But
107at the same time one might want to build a custom dump capture kernel
108suitable to his needs.
109
110Following are the configuration setting required for system and
111dump-capture kernels for enabling kdump support.
112
113System kernel config options
114----------------------------
David Wilderdc851a02006-06-25 05:47:55 -0700115
1161) Enable "kexec system call" in "Processor type and features."
117
118 CONFIG_KEXEC=y
119
1202) Enable "sysfs file system support" in "Filesystem" -> "Pseudo
121 filesystems." This is usually enabled by default.
122
123 CONFIG_SYSFS=y
124
125 Note that "sysfs file system support" might not appear in the "Pseudo
126 filesystems" menu if "Configure standard kernel features (for small
127 systems)" is not enabled in "General Setup." In this case, check the
128 .config file itself to ensure that sysfs is turned on, as follows:
129
130 grep 'CONFIG_SYSFS' .config
131
1323) Enable "Compile the kernel with debug info" in "Kernel hacking."
133
134 CONFIG_DEBUG_INFO=Y
135
136 This causes the kernel to be built with debug symbols. The dump
137 analysis tools require a vmlinux with debug symbols in order to read
138 and analyze a dump file.
139
Vivek Goyal9c61a442007-01-10 23:15:35 -0800140Dump-capture kernel config options (Arch Independent)
141-----------------------------------------------------
David Wilderdc851a02006-06-25 05:47:55 -0700142
Vivek Goyal9c61a442007-01-10 23:15:35 -08001431) Enable "kernel crash dumps" support under "Processor type and
144 features":
David Wilderdc851a02006-06-25 05:47:55 -0700145
Vivek Goyal9c61a442007-01-10 23:15:35 -0800146 CONFIG_CRASH_DUMP=y
David Wilderdc851a02006-06-25 05:47:55 -0700147
Vivek Goyal9c61a442007-01-10 23:15:35 -08001482) Enable "/proc/vmcore support" under "Filesystems" -> "Pseudo filesystems".
David Wilderdc851a02006-06-25 05:47:55 -0700149
Vivek Goyal9c61a442007-01-10 23:15:35 -0800150 CONFIG_PROC_VMCORE=y
151 (CONFIG_PROC_VMCORE is set by default when CONFIG_CRASH_DUMP is selected.)
David Wilderdc851a02006-06-25 05:47:55 -0700152
Vivek Goyal9c61a442007-01-10 23:15:35 -0800153Dump-capture kernel config options (Arch Dependent, i386)
154--------------------------------------------------------
1551) On x86, enable high memory support under "Processor type and
David Wilderdc851a02006-06-25 05:47:55 -0700156 features":
157
158 CONFIG_HIGHMEM64G=y
159 or
160 CONFIG_HIGHMEM4G
161
Vivek Goyal9c61a442007-01-10 23:15:35 -08001622) On x86 and x86_64, disable symmetric multi-processing support
David Wilderdc851a02006-06-25 05:47:55 -0700163 under "Processor type and features":
164
165 CONFIG_SMP=n
Vivek Goyal9c61a442007-01-10 23:15:35 -0800166
David Wilderdc851a02006-06-25 05:47:55 -0700167 (If CONFIG_SMP=y, then specify maxcpus=1 on the kernel command line
168 when loading the dump-capture kernel, see section "Load the Dump-capture
169 Kernel".)
170
Vivek Goyal9c61a442007-01-10 23:15:35 -08001713) If one wants to build and use a relocatable kernel,
172 Enable "Build a relocatable kernel" support under "Processor type and
173 features"
David Wilderdc851a02006-06-25 05:47:55 -0700174
Vivek Goyal9c61a442007-01-10 23:15:35 -0800175 CONFIG_RELOCATABLE=y
David Wilderdc851a02006-06-25 05:47:55 -0700176
Vivek Goyal9c61a442007-01-10 23:15:35 -08001774) Use a suitable value for "Physical address where the kernel is
178 loaded" (under "Processor type and features"). This only appears when
179 "kernel crash dumps" is enabled. A suitable value depends upon
180 whether kernel is relocatable or not.
David Wilderdc851a02006-06-25 05:47:55 -0700181
Vivek Goyal9c61a442007-01-10 23:15:35 -0800182 If you are using a relocatable kernel use CONFIG_PHYSICAL_START=0x100000
183 This will compile the kernel for physical address 1MB, but given the fact
184 kernel is relocatable, it can be run from any physical address hence
185 kexec boot loader will load it in memory region reserved for dump-capture
186 kernel.
David Wilderdc851a02006-06-25 05:47:55 -0700187
Vivek Goyal9c61a442007-01-10 23:15:35 -0800188 Otherwise it should be the start of memory region reserved for
189 second kernel using boot parameter "crashkernel=Y@X". Here X is
190 start of memory region reserved for dump-capture kernel.
191 Generally X is 16MB (0x1000000). So you can set
192 CONFIG_PHYSICAL_START=0x1000000
193
1945) Make and install the kernel and its modules. DO NOT add this kernel
195 to the boot loader configuration files.
196
197Dump-capture kernel config options (Arch Dependent, x86_64)
198----------------------------------------------------------
1991) On x86 and x86_64, disable symmetric multi-processing support
200 under "Processor type and features":
201
202 CONFIG_SMP=n
203
204 (If CONFIG_SMP=y, then specify maxcpus=1 on the kernel command line
205 when loading the dump-capture kernel, see section "Load the Dump-capture
206 Kernel".)
207
2082) Use a suitable value for "Physical address where the kernel is
David Wilderdc851a02006-06-25 05:47:55 -0700209 loaded" (under "Processor type and features"). This only appears when
210 "kernel crash dumps" is enabled. By default this value is 0x1000000
211 (16MB). It should be the same as X in the "crashkernel=Y@X" boot
Vivek Goyal9c61a442007-01-10 23:15:35 -0800212 parameter.
David Wilderdc851a02006-06-25 05:47:55 -0700213
Vivek Goyal9c61a442007-01-10 23:15:35 -0800214 For x86_64, normally "CONFIG_PHYSICAL_START=0x1000000".
David Wilderdc851a02006-06-25 05:47:55 -0700215
Vivek Goyal9c61a442007-01-10 23:15:35 -08002163) Make and install the kernel and its modules. DO NOT add this kernel
David Wilderdc851a02006-06-25 05:47:55 -0700217 to the boot loader configuration files.
218
Vivek Goyal9c61a442007-01-10 23:15:35 -0800219Dump-capture kernel config options (Arch Dependent, ppc64)
220----------------------------------------------------------
221
222- Make and install the kernel and its modules. DO NOT add this kernel
223 to the boot loader configuration files.
224
225Dump-capture kernel config options (Arch Dependent, ia64)
226----------------------------------------------------------
227(To be filled)
228
229
230Boot into System Kernel
231=======================
232
2331) Make and install the kernel and its modules. Update the boot loader
234 (such as grub, yaboot, or lilo) configuration files as necessary.
235
2362) Boot the system kernel with the boot parameter "crashkernel=Y@X",
237 where Y specifies how much memory to reserve for the dump-capture kernel
238 and X specifies the beginning of this reserved memory. For example,
239 "crashkernel=64M@16M" tells the system kernel to reserve 64 MB of memory
240 starting at physical address 0x01000000 (16MB) for the dump-capture kernel.
241
242 On x86 and x86_64, use "crashkernel=64M@16M".
243
244 On ppc64, use "crashkernel=128M@32M".
David Wilderdc851a02006-06-25 05:47:55 -0700245
246Load the Dump-capture Kernel
247============================
248
Vivek Goyal9c61a442007-01-10 23:15:35 -0800249After booting to the system kernel, dump-capture kernel needs to be
250loaded.
David Wilderdc851a02006-06-25 05:47:55 -0700251
Vivek Goyal9c61a442007-01-10 23:15:35 -0800252Based on the architecture and type of image (relocatable or not), one
253can choose to load the uncompressed vmlinux or compressed bzImage/vmlinuz
254of dump-capture kernel. Following is the summary.
255
256For i386:
257 - Use vmlinux if kernel is not relocatable.
258 - Use bzImage/vmlinuz if kernel is relocatable.
259For x86_64:
260 - Use vmlinux
261For ppc64:
262 - Use vmlinux
263For ia64:
264 (To be filled)
265
266If you are using a uncompressed vmlinux image then use following command
267to load dump-capture kernel.
268
269 kexec -p <dump-capture-kernel-vmlinux-image> \
David Wilderdc851a02006-06-25 05:47:55 -0700270 --initrd=<initrd-for-dump-capture-kernel> --args-linux \
Vivek Goyal9c61a442007-01-10 23:15:35 -0800271 --append="root=<root-dev> <arch-specific-options>"
272
273If you are using a compressed bzImage/vmlinuz, then use following command
274to load dump-capture kernel.
275
276 kexec -p <dump-capture-kernel-bzImage> \
277 --initrd=<initrd-for-dump-capture-kernel> \
278 --append="root=<root-dev> <arch-specific-options>"
279
280Following are the arch specific command line options to be used while
281loading dump-capture kernel.
282
283For i386 and x86_64:
284 "init 1 irqpoll maxcpus=1"
285
286For ppc64:
287 "init 1 maxcpus=1 noirqdistrib"
288
289For IA64
290 (To be filled)
David Wilderdc851a02006-06-25 05:47:55 -0700291
292
293Notes on loading the dump-capture kernel:
294
David Wilderdc851a02006-06-25 05:47:55 -0700295* By default, the ELF headers are stored in ELF64 format to support
296 systems with more than 4GB memory. The --elf32-core-headers option can
297 be used to force the generation of ELF32 headers. This is necessary
298 because GDB currently cannot open vmcore files with ELF64 headers on
299 32-bit systems. ELF32 headers can be used on non-PAE systems (that is,
300 less than 4GB of memory).
301
302* The "irqpoll" boot parameter reduces driver initialization failures
303 due to shared interrupts in the dump-capture kernel.
304
305* You must specify <root-dev> in the format corresponding to the root
306 device name in the output of mount command.
307
308* "init 1" boots the dump-capture kernel into single-user mode without
309 networking. If you want networking, use "init 3."
310
Vivek Goyal9c61a442007-01-10 23:15:35 -0800311* We generally don' have to bring up a SMP kernel just to capture the
312 dump. Hence generally it is useful either to build a UP dump-capture
313 kernel or specify maxcpus=1 option while loading dump-capture kernel.
David Wilderdc851a02006-06-25 05:47:55 -0700314
315Kernel Panic
316============
317
318After successfully loading the dump-capture kernel as previously
319described, the system will reboot into the dump-capture kernel if a
320system crash is triggered. Trigger points are located in panic(),
321die(), die_nmi() and in the sysrq handler (ALT-SysRq-c).
322
323The following conditions will execute a crash trigger point:
324
325If a hard lockup is detected and "NMI watchdog" is configured, the system
326will boot into the dump-capture kernel ( die_nmi() ).
327
328If die() is called, and it happens to be a thread with pid 0 or 1, or die()
329is called inside interrupt context or die() is called and panic_on_oops is set,
330the system will boot into the dump-capture kernel.
331
Paolo Ornati670e9f32006-10-03 22:57:56 +0200332On powererpc systems when a soft-reset is generated, die() is called by all cpus and the system will boot into the dump-capture kernel.
David Wilderdc851a02006-06-25 05:47:55 -0700333
334For testing purposes, you can trigger a crash by using "ALT-SysRq-c",
335"echo c > /proc/sysrq-trigger or write a module to force the panic.
336
337Write Out the Dump File
338=======================
339
340After the dump-capture kernel is booted, write out the dump file with
341the following command:
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700342
343 cp /proc/vmcore <dump-file>
344
David Wilderdc851a02006-06-25 05:47:55 -0700345You can also access dumped memory as a /dev/oldmem device for a linear
346and raw view. To create the device, use the following command:
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700347
David Wilderdc851a02006-06-25 05:47:55 -0700348 mknod /dev/oldmem c 1 12
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700349
David Wilderdc851a02006-06-25 05:47:55 -0700350Use the dd command with suitable options for count, bs, and skip to
351access specific portions of the dump.
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700352
David Wilderdc851a02006-06-25 05:47:55 -0700353To see the entire memory, use the following command:
354
355 dd if=/dev/oldmem of=oldmem.001
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700356
Maneesh Sonia7e670d2006-01-09 20:51:53 -0800357
David Wilderdc851a02006-06-25 05:47:55 -0700358Analysis
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700359========
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700360
David Wilderdc851a02006-06-25 05:47:55 -0700361Before analyzing the dump image, you should reboot into a stable kernel.
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700362
David Wilderdc851a02006-06-25 05:47:55 -0700363You can do limited analysis using GDB on the dump file copied out of
364/proc/vmcore. Use the debug vmlinux built with -g and run the following
365command:
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700366
David Wilderdc851a02006-06-25 05:47:55 -0700367 gdb vmlinux <dump-file>
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700368
David Wilderdc851a02006-06-25 05:47:55 -0700369Stack trace for the task on processor 0, register display, and memory
370display work fine.
371
372Note: GDB cannot analyze core files generated in ELF64 format for x86.
373On systems with a maximum of 4GB of memory, you can generate
374ELF32-format headers using the --elf32-core-headers kernel option on the
375dump kernel.
376
377You can also use the Crash utility to analyze dump files in Kdump
378format. Crash is available on Dave Anderson's site at the following URL:
379
380 http://people.redhat.com/~anderson/
Maneesh Sonia7e670d2006-01-09 20:51:53 -0800381
382
David Wilderdc851a02006-06-25 05:47:55 -0700383To Do
384=====
385
3861) Provide a kernel pages filtering mechanism, so core file size is not
387 extreme on systems with huge memory banks.
388
3892) Relocatable kernel can help in maintaining multiple kernels for
390 crash_dump, and the same kernel as the system kernel can be used to
391 capture the dump.
Maneesh Sonia7e670d2006-01-09 20:51:53 -0800392
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700393
David Wilderdc851a02006-06-25 05:47:55 -0700394Contact
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700395=======
David Wilderdc851a02006-06-25 05:47:55 -0700396
Vivek Goyalb089f4a2005-06-25 14:58:15 -0700397Vivek Goyal (vgoyal@in.ibm.com)
Vivek Goyald58831e2005-06-25 14:58:17 -0700398Maneesh Soni (maneesh@in.ibm.com)
David Wilderdc851a02006-06-25 05:47:55 -0700399
400
401Trademark
402=========
403
404Linux is a trademark of Linus Torvalds in the United States, other
405countries, or both.