OSDN Git Service

fb30af0ddb8e79f361bebef027d8690646d2d62c
[linuxjm/LDP_man-pages.git] / original / man5 / core.5
1 .\" Copyright (c) 2006, 2008 by Michael Kerrisk <mtk.manpages@gmail.com>
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .TH CORE 5 2014-03-14 "Linux" "Linux Programmer's Manual"
26 .SH NAME
27 core \- core dump file
28 .SH DESCRIPTION
29 The default action of certain signals is to cause a process to terminate
30 and produce a
31 .IR "core dump file" ,
32 a disk file containing an image of the process's memory at
33 the time of termination.
34 This image can be used in a debugger (e.g.,
35 .BR gdb (1))
36 to inspect the state of the program at the time that it terminated.
37 A list of the signals which cause a process to dump core can be found in
38 .BR signal (7).
39
40 A process can set its soft
41 .B RLIMIT_CORE
42 resource limit to place an upper limit on the size of the core dump file
43 that will be produced if it receives a "core dump" signal; see
44 .BR getrlimit (2)
45 for details.
46
47 There are various circumstances in which a core dump file is
48 not produced:
49 .IP * 3
50 The process does not have permission to write the core file.
51 (By default the core file is called
52 .IR core ,
53 and is created in the current working directory.
54 See below for details on naming.)
55 Writing the core file will fail if the directory in which
56 it is to be created is nonwritable,
57 or if a file with the same name exists and
58 is not writable
59 or is not a regular file
60 (e.g., it is a directory or a symbolic link).
61 .IP *
62 A (writable, regular) file with the same name as would be used for the
63 core dump already exists, but there is more than one hard link to that
64 file.
65 .IP *
66 The filesystem where the core dump file would be created is full;
67 or has run out of inodes; or is mounted read-only;
68 or the user has reached their quota for the filesystem.
69 .IP *
70 The directory in which the core dump file is to be created does
71 not exist.
72 .IP *
73 The
74 .B RLIMIT_CORE
75 (core file size) or
76 .B RLIMIT_FSIZE
77 (file size) resource limits for the process are set to zero; see
78 .BR getrlimit (2)
79 and the documentation of the shell's
80 .I ulimit
81 command
82 .RI ( limit
83 in
84 .BR csh (1)).
85 .IP *
86 The binary being executed by the process does not have read
87 permission enabled.
88 .IP *
89 The process is executing a set-user-ID (set-group-ID) program
90 that is owned by a user (group) other than the real user (group)
91 ID of the process.
92 (However, see the description of the
93 .BR prctl (2)
94 .B PR_SET_DUMPABLE
95 operation, and the description of the
96 .I /proc/sys/fs/suid_dumpable
97 .\" FIXME . Perhaps relocate discussion of /proc/sys/fs/suid_dumpable
98 .\" and PR_SET_DUMPABLE to this page?
99 file in
100 .BR proc (5).)
101 .IP *
102 (Since Linux 3.7)
103 .\" commit 046d662f481830e652ac34cd112249adde16452a
104 The kernel was configured without the
105 .BR CONFIG_COREDUMP
106 option.
107 .PP
108 In addition,
109 a core dump may exclude part of the address space of the process if the
110 .BR madvise (2)
111 .B MADV_DONTDUMP
112 flag was employed.
113 .SS Naming of core dump files
114 By default, a core dump file is named
115 .IR core ,
116 but the
117 .I /proc/sys/kernel/core_pattern
118 file (since Linux 2.6 and 2.4.21)
119 can be set to define a template that is used to name core dump files.
120 The template can contain % specifiers which are substituted
121 by the following values when a core file is created:
122 .PP
123 .RS 4
124 .PD 0
125 .TP 4
126 %%
127 a single % character
128 .TP
129 %c
130 core file size soft resource limit of crashing process (since Linux 2.6.24)
131 .TP
132 %d
133 .\" Added in git commit 12a2b4b2241e318b4f6df31228e4272d2c2968a1
134 dump mode\(emsame as value returned by
135 .BR prctl (2)
136 .B PR_GET_DUMPABLE
137 (since Linux 3.7)
138 .TP
139 %e
140 executable filename (without path prefix)
141 .TP
142 %E
143 pathname of executable,
144 with slashes (\(aq/\(aq) replaced by exclamation marks (\(aq!\(aq)
145 (since Linux 3.0).
146 .TP
147 %g
148 (numeric) real GID of dumped process
149 .TP
150 %h
151 hostname (same as \fInodename\fP returned by \fBuname\fP(2))
152 .TP
153 %p
154 PID of dumped process,
155 as seen in the PID namespace in which the process resides
156 .TP
157 %P
158 .\" Added in git commit 65aafb1e7484b7434a0c1d4c593191ebe5776a2f
159 PID of dumped process, as seen in the initial PID namespace
160 (since Linux 3.12)
161 .TP
162 %s
163 number of signal causing dump
164 .TP
165 %t
166 time of dump, expressed as seconds since the
167 Epoch, 1970-01-01 00:00:00 +0000 (UTC)
168 .TP
169 %u
170 (numeric) real UID of dumped process
171 .PD
172 .RE
173 .PP
174 A single % at the end of the template is dropped from the
175 core filename, as is the combination of a % followed by any
176 character other than those listed above.
177 All other characters in the template become a literal
178 part of the core filename.
179 The template may include \(aq/\(aq characters, which are interpreted
180 as delimiters for directory names.
181 The maximum size of the resulting core filename is 128 bytes (64 bytes
182 in kernels before 2.6.19).
183 The default value in this file is "core".
184 For backward compatibility, if
185 .I /proc/sys/kernel/core_pattern
186 does not include "%p" and
187 .I /proc/sys/kernel/core_uses_pid
188 (see below)
189 is nonzero, then .PID will be appended to the core filename.
190
191 Since version 2.4, Linux has also provided
192 a more primitive method of controlling
193 the name of the core dump file.
194 If the
195 .I /proc/sys/kernel/core_uses_pid
196 file contains the value 0, then a core dump file is simply named
197 .IR core .
198 If this file contains a nonzero value, then the core dump file includes
199 the process ID in a name of the form
200 .IR core.PID .
201
202 Since Linux 3.6,
203 .\" 9520628e8ceb69fa9a4aee6b57f22675d9e1b709
204 if
205 .I /proc/sys/fs/suid_dumpable
206 is set to 2 ("suidsafe"), the pattern must be either an absolute pathname
207 (starting with a leading \(aq/\(aq character) or a pipe, as defined below.
208 .SS Piping core dumps to a program
209 Since kernel 2.6.19, Linux supports an alternate syntax for the
210 .I /proc/sys/kernel/core_pattern
211 file.
212 If the first character of this file is a pipe symbol (\fB|\fP),
213 then the remainder of the line is interpreted as a program to be
214 executed.
215 Instead of being written to a disk file, the core dump is given as
216 standard input to the program.
217 Note the following points:
218 .IP * 3
219 The program must be specified using an absolute pathname (or a
220 pathname relative to the root directory, \fI/\fP),
221 and must immediately follow the '|' character.
222 .IP *
223 The process created to run the program runs as user and group
224 .IR root .
225 .IP *
226 Command-line arguments can be supplied to the
227 program (since Linux 2.6.24),
228 delimited by white space (up to a total line length of 128 bytes).
229 .IP *
230 The command-line arguments can include any of
231 the % specifiers listed above.
232 For example, to pass the PID of the process that is being dumped, specify
233 .I %p
234 in an argument.
235 .SS Controlling which mappings are written to the core dump
236 Since kernel 2.6.23, the Linux-specific
237 .IR /proc/PID/coredump_filter
238 file can be used to control which memory segments are written to the
239 core dump file in the event that a core dump is performed for the
240 process with the corresponding process ID.
241
242 The value in the file is a bit mask of memory mapping types (see
243 .BR mmap (2)).
244 If a bit is set in the mask, then memory mappings of the
245 corresponding type are dumped; otherwise they are not dumped.
246 The bits in this file have the following meanings:
247 .PP
248 .PD 0
249 .RS 4
250 .TP
251 bit 0
252 Dump anonymous private mappings.
253 .TP
254 bit 1
255 Dump anonymous shared mappings.
256 .TP
257 bit 2
258 Dump file-backed private mappings.
259 .TP
260 bit 3
261 Dump file-backed shared mappings.
262 .\" file-backed shared mappings of course also update the underlying
263 .\" mapped file.
264 .TP
265 bit 4 (since Linux 2.6.24)
266 Dump ELF headers.
267 .TP
268 bit 5 (since Linux 2.6.28)
269 Dump private huge pages.
270 .TP
271 bit 6 (since Linux 2.6.28)
272 Dump shared huge pages.
273 .RE
274 .PD
275 .PP
276 By default, the following bits are set: 0, 1, 4 (if the
277 .B CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS
278 kernel configuration option is enabled), and 5.
279 The value of this file is displayed in hexadecimal.
280 (The default value is thus displayed as 33.)
281
282 Memory-mapped I/O pages such as frame buffer are never dumped, and
283 virtual DSO pages are always dumped, regardless of the
284 .I coredump_filter
285 value.
286
287 A child process created via
288 .BR fork (2)
289 inherits its parent's
290 .I coredump_filter
291 value;
292 the
293 .I coredump_filter
294 value is preserved across an
295 .BR execve (2).
296
297 It can be useful to set
298 .I coredump_filter
299 in the parent shell before running a program, for example:
300
301 .in +4n
302 .nf
303 .RB "$" " echo 0x7 > /proc/self/coredump_filter"
304 .RB "$" " ./some_program"
305 .fi
306 .in
307 .PP
308 This file is provided only if the kernel was built with the
309 .B CONFIG_ELF_CORE
310 configuration option.
311 .SH NOTES
312 The
313 .BR gdb (1)
314 .I gcore
315 command can be used to obtain a core dump of a running process.
316
317 In Linux versions up to and including 2.6.27,
318 .\" Changed with commit 6409324b385f3f63a03645b4422e3be67348d922
319 if a multithreaded process (or, more precisely, a process that
320 shares its memory with another process by being created with the
321 .B CLONE_VM
322 flag of
323 .BR clone (2))
324 dumps core, then the process ID is always appended to the core filename,
325 unless the process ID was already included elsewhere in the
326 filename via a %p specification in
327 .IR /proc/sys/kernel/core_pattern .
328 (This is primarily useful when employing the obsolete
329 LinuxThreads implementation,
330 where each thread of a process has a different PID.)
331 .\" Always including the PID in the name of the core file made
332 .\" sense for LinuxThreads, where each thread had a unique PID,
333 .\" but doesn't seem to serve any purpose with NPTL, where all the
334 .\" threads in a process share the same PID (as POSIX.1 requires).
335 .\" Probably the behavior is maintained so that applications using
336 .\" LinuxThreads continue appending the PID (the kernel has no easy
337 .\" way of telling which threading implementation the user-space
338 .\" application is using). -- mtk, April 2006
339 .SH EXAMPLE
340 The program below can be used to demonstrate the use of the
341 pipe syntax in the
342 .I /proc/sys/kernel/core_pattern
343 file.
344 The following shell session demonstrates the use of this program
345 (compiled to create an executable named
346 .IR core_pattern_pipe_test ):
347 .PP
348 .in +4n
349 .nf
350 .RB "$" " cc \-o core_pattern_pipe_test core_pattern_pipe_test.c"
351 .RB "$" " su"
352 Password:
353 .RB "#" " echo \(dq|$PWD/core_pattern_pipe_test %p \
354 UID=%u GID=%g sig=%s\(dq > \e"
355 .B "    /proc/sys/kernel/core_pattern"
356 .RB "#" " exit"
357 .RB "$" " sleep 100"
358 .BR "^\e" "                     # type control-backslash"
359 Quit (core dumped)
360 .RB "$" " cat core.info"
361 argc=5
362 argc[0]=</home/mtk/core_pattern_pipe_test>
363 argc[1]=<20575>
364 argc[2]=<UID=1000>
365 argc[3]=<GID=100>
366 argc[4]=<sig=3>
367 Total bytes in core dump: 282624
368 .fi
369 .in
370 .SS Program source
371 \&
372 .nf
373 /* core_pattern_pipe_test.c */
374
375 #define _GNU_SOURCE
376 #include <sys/stat.h>
377 #include <fcntl.h>
378 #include <limits.h>
379 #include <stdio.h>
380 #include <stdlib.h>
381 #include <unistd.h>
382
383 #define BUF_SIZE 1024
384
385 int
386 main(int argc, char *argv[])
387 {
388     int tot, j;
389     ssize_t nread;
390     char buf[BUF_SIZE];
391     FILE *fp;
392     char cwd[PATH_MAX];
393
394     /* Change our current working directory to that of the
395        crashing process */
396
397     snprintf(cwd, PATH_MAX, "/proc/%s/cwd", argv[1]);
398     chdir(cwd);
399
400     /* Write output to file "core.info" in that directory */
401
402     fp = fopen("core.info", "w+");
403     if (fp == NULL)
404         exit(EXIT_FAILURE);
405
406     /* Display command\-line arguments given to core_pattern
407        pipe program */
408
409     fprintf(fp, "argc=%d\\n", argc);
410     for (j = 0; j < argc; j++)
411         fprintf(fp, "argc[%d]=<%s>\\n", j, argv[j]);
412
413     /* Count bytes in standard input (the core dump) */
414
415     tot = 0;
416     while ((nread = read(STDIN_FILENO, buf, BUF_SIZE)) > 0)
417         tot += nread;
418     fprintf(fp, "Total bytes in core dump: %d\\n", tot);
419
420     exit(EXIT_SUCCESS);
421 }
422 .fi
423 .SH SEE ALSO
424 .BR bash (1),
425 .BR gdb (1),
426 .BR getrlimit (2),
427 .BR mmap (2),
428 .BR prctl (2),
429 .BR sigaction (2),
430 .BR elf (5),
431 .BR proc (5),
432 .BR pthreads (7),
433 .BR signal (7)
434 .SH COLOPHON
435 This page is part of release 3.67 of the Linux
436 .I man-pages
437 project.
438 A description of the project,
439 information about reporting bugs,
440 and the latest version of this page,
441 can be found at
442 \%http://www.kernel.org/doc/man\-pages/.