xref: /freebsd/share/man/man5/core.5 (revision 0f3ac37e8ac8f7948f501bc73cadd63bc85acc8c)
1afe61c15SRodney W. Grimes.\" Copyright (c) 1980, 1991, 1993
2afe61c15SRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
3afe61c15SRodney W. Grimes.\"
4afe61c15SRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
5afe61c15SRodney W. Grimes.\" modification, are permitted provided that the following conditions
6afe61c15SRodney W. Grimes.\" are met:
7afe61c15SRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
8afe61c15SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
9afe61c15SRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
10afe61c15SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
11afe61c15SRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
12afe61c15SRodney W. Grimes.\" 3. All advertising materials mentioning features or use of this software
13afe61c15SRodney W. Grimes.\"    must display the following acknowledgement:
14afe61c15SRodney W. Grimes.\"	This product includes software developed by the University of
15afe61c15SRodney W. Grimes.\"	California, Berkeley and its contributors.
16afe61c15SRodney W. Grimes.\" 4. Neither the name of the University nor the names of its contributors
17afe61c15SRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
18afe61c15SRodney W. Grimes.\"    without specific prior written permission.
19afe61c15SRodney W. Grimes.\"
20afe61c15SRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21afe61c15SRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22afe61c15SRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23afe61c15SRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24afe61c15SRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25afe61c15SRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26afe61c15SRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27afe61c15SRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28afe61c15SRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29afe61c15SRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30afe61c15SRodney W. Grimes.\" SUCH DAMAGE.
31afe61c15SRodney W. Grimes.\"
32afe61c15SRodney W. Grimes.\"     @(#)core.5	8.3 (Berkeley) 12/11/93
337f3dea24SPeter Wemm.\" $FreeBSD$
34afe61c15SRodney W. Grimes.\"
350f3ac37eSRuslan Ermilov.Dd January 9, 2002
36afe61c15SRodney W. Grimes.Dt CORE 5
373d45e180SRuslan Ermilov.Os
38afe61c15SRodney W. Grimes.Sh NAME
39afe61c15SRodney W. Grimes.Nm core
40afe61c15SRodney W. Grimes.Nd memory image file format
41afe61c15SRodney W. Grimes.Sh SYNOPSIS
4232eef9aeSRuslan Ermilov.In sys/param.h
43afe61c15SRodney W. Grimes.Sh DESCRIPTION
44afe61c15SRodney W. GrimesA small number of signals which cause abnormal termination of a process
45afe61c15SRodney W. Grimesalso cause a record of the process's in-core state to be written
46afe61c15SRodney W. Grimesto disk for later examination by one of the available debuggers.
47afe61c15SRodney W. Grimes(See
48afe61c15SRodney W. Grimes.Xr sigaction 2 . )
49aa81f3a9SJoerg WunschThis memory image is written to a file named by default
50afe61c15SRodney W. Grimes.Nm programname.core
51afe61c15SRodney W. Grimesin the working directory;
52afe61c15SRodney W. Grimesprovided the terminated process had write permission in the directory,
53afe61c15SRodney W. Grimesand provided the abnormality did not cause
54afe61c15SRodney W. Grimesa system crash.
55afe61c15SRodney W. Grimes(In this event, the decision to save the core file is arbitrary, see
56afe61c15SRodney W. Grimes.Xr savecore 8 . )
57afe61c15SRodney W. Grimes.Pp
58aa81f3a9SJoerg WunschThe maximum size of a core file is limited by
59afe61c15SRodney W. Grimes.Xr setrlimit 2 .
60afe61c15SRodney W. GrimesFiles which would be larger than the limit are not created.
61afe61c15SRodney W. Grimes.Pp
62aa81f3a9SJoerg WunschThe name of the file is controlled via the
63aa81f3a9SJoerg Wunsch.Xr sysctl 8
64aa81f3a9SJoerg Wunschvariable
65aa81f3a9SJoerg Wunsch.Va kern.corefile .
66aa81f3a9SJoerg WunschThe contents of this variable describes a filename to store
670f3ac37eSRuslan Ermilovthe core image to.
680f3ac37eSRuslan ErmilovThis filename can be absolute, or relative (which
69aa81f3a9SJoerg Wunschwill resolve to the current working directory of the program
700f3ac37eSRuslan Ermilovgenerating it).
710f3ac37eSRuslan ErmilovAny sequence of
72aa81f3a9SJoerg Wunsch.Em \&%N
73aa81f3a9SJoerg Wunschin this filename template will be replaced by the process name,
74aa81f3a9SJoerg Wunsch.Em \&%P
75aa81f3a9SJoerg Wunschby the processes PID, and
76aa81f3a9SJoerg Wunsch.Em \&%U
770f3ac37eSRuslan Ermilovby the UID.
780f3ac37eSRuslan ErmilovThe name defaults to
79aa81f3a9SJoerg Wunsch.Em \&%N.core ,
80b5c508fbSRuslan Ermilovyielding the traditional
81b5c508fbSRuslan Ermilov.Fx
82b5c508fbSRuslan Ermilovbehaviour.
83aa81f3a9SJoerg Wunsch.Pp
8453d3620bSNik ClaytonBy default, a process that changes user or group credentials whether
850f3ac37eSRuslan Ermilovreal or effective will not create a corefile.
860f3ac37eSRuslan ErmilovThis behaviour can be
8753d3620bSNik Claytonchanged to generate a core dump by setting the
8853d3620bSNik Clayton.Xr sysctl 8
8953d3620bSNik Claytonvariable
9053d3620bSNik Clayton.Va kern.sugid_coredump
9153d3620bSNik Claytonto 1.
9253d3620bSNik Clayton.Pp
93aa81f3a9SJoerg WunschThe core file consists of the
94afe61c15SRodney W. Grimes.Fa u.
95afe61c15SRodney W. Grimesarea, whose size (in pages) is
96afe61c15SRodney W. Grimesdefined by the
97afe61c15SRodney W. Grimes.Dv UPAGES
98afe61c15SRodney W. Grimesmanifest in the
99afe61c15SRodney W. Grimes.Aq Pa sys/param.h
1000f3ac37eSRuslan Ermilovfile.
1010f3ac37eSRuslan ErmilovThe
102afe61c15SRodney W. Grimes.Fa u.
103afe61c15SRodney W. Grimesarea starts with a
104afe61c15SRodney W. Grimes.Fa user
105afe61c15SRodney W. Grimesstructure as given in
106afe61c15SRodney W. Grimes.Aq Pa sys/user.h .
107aa81f3a9SJoerg WunschThe remainder of the core
108afe61c15SRodney W. Grimesfile consists of the data pages followed by
109afe61c15SRodney W. Grimesthe stack pages of the process image.
110aa81f3a9SJoerg WunschThe amount of data space image in the core
111afe61c15SRodney W. Grimesfile is given (in pages) by the
112afe61c15SRodney W. Grimesvariable
113afe61c15SRodney W. Grimes.Fa u_dsize
114afe61c15SRodney W. Grimesin the
115afe61c15SRodney W. Grimes.Fa u.
116afe61c15SRodney W. Grimesarea.
117afe61c15SRodney W. GrimesThe amount of stack image in the core file is given (in pages) by the
118afe61c15SRodney W. Grimesvariable
119afe61c15SRodney W. Grimes.Fa u_ssize
120afe61c15SRodney W. Grimesin the
1210f3ac37eSRuslan Ermilov.Fa u.
122afe61c15SRodney W. Grimesarea.
123afe61c15SRodney W. GrimesThe size of a ``page'' is given by the constant
12419dd549aSSteve Price.Dv PAGE_SIZE
125afe61c15SRodney W. Grimes(also from
126afe61c15SRodney W. Grimes.Aq Pa sys/param.h ) .
127aa81f3a9SJoerg Wunsch.Sh EXAMPLES
128aa81f3a9SJoerg WunschIn order to store all core images in per-user private areas under
129aa81f3a9SJoerg Wunsch.Pa /var/coredumps ,
130aa81f3a9SJoerg Wunschthe following
131aa81f3a9SJoerg Wunsch.Xr sysctl 8
132aa81f3a9SJoerg Wunschcommand can be used:
133aa81f3a9SJoerg Wunsch.Pp
134e21a315eSRuslan Ermilov.Dl sysctl kern.corefile="/var/coredumps/\&%U/\&%N.core"
135afe61c15SRodney W. Grimes.Sh SEE ALSO
136afe61c15SRodney W. Grimes.Xr gdb 1 ,
137afe61c15SRodney W. Grimes.Xr kgdb 1 ,
138c69a537cSWolfram Schneider.Xr setrlimit 2 ,
139aa81f3a9SJoerg Wunsch.Xr sigaction 2 ,
140aa81f3a9SJoerg Wunsch.Xr sysctl 8
141afe61c15SRodney W. Grimes.Sh HISTORY
142afe61c15SRodney W. GrimesA
1434b66483fSRuslan Ermilov.Nm
144afe61c15SRodney W. Grimesfile format appeared in
145afe61c15SRodney W. Grimes.At v6 .
146