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.\" 35afe61c15SRodney W. Grimes.Dd December 11, 1993 36afe61c15SRodney W. Grimes.Dt CORE 5 37afe61c15SRodney W. Grimes.Os BSD 4 38afe61c15SRodney W. Grimes.Sh NAME 39afe61c15SRodney W. Grimes.Nm core 40afe61c15SRodney W. Grimes.Nd memory image file format 41afe61c15SRodney W. Grimes.Sh SYNOPSIS 42afe61c15SRodney W. Grimes.Fd #include <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 67aa81f3a9SJoerg Wunschthe core image to. This filename can be absolute, or relative (which 68aa81f3a9SJoerg Wunschwill resolve to the current working directory of the program 69aa81f3a9SJoerg Wunschgenerating it). Any sequence of 70aa81f3a9SJoerg Wunsch.Em \&%N 71aa81f3a9SJoerg Wunschin this filename template will be replaced by the process name, 72aa81f3a9SJoerg Wunsch.Em \&%P 73aa81f3a9SJoerg Wunschby the processes PID, and 74aa81f3a9SJoerg Wunsch.Em \&%U 75aa81f3a9SJoerg Wunschby the UID. The name defaults to 76aa81f3a9SJoerg Wunsch.Em \&%N.core , 77aa81f3a9SJoerg Wunschyielding the traditional FreeBSD behaviour. 78aa81f3a9SJoerg Wunsch.Pp 79aa81f3a9SJoerg WunschThe core file consists of the 80afe61c15SRodney W. Grimes.Fa u . 81afe61c15SRodney W. Grimesarea, whose size (in pages) is 82afe61c15SRodney W. Grimesdefined by the 83afe61c15SRodney W. Grimes.Dv UPAGES 84afe61c15SRodney W. Grimesmanifest in the 85afe61c15SRodney W. Grimes.Aq Pa sys/param.h 86afe61c15SRodney W. Grimesfile. The 87afe61c15SRodney W. Grimes.Fa u . 88afe61c15SRodney W. Grimesarea starts with a 89afe61c15SRodney W. Grimes.Fa user 90afe61c15SRodney W. Grimesstructure as given in 91afe61c15SRodney W. Grimes.Aq Pa sys/user.h . 92aa81f3a9SJoerg WunschThe remainder of the core 93afe61c15SRodney W. Grimesfile consists of the data pages followed by 94afe61c15SRodney W. Grimesthe stack pages of the process image. 95aa81f3a9SJoerg WunschThe amount of data space image in the core 96afe61c15SRodney W. Grimesfile is given (in pages) by the 97afe61c15SRodney W. Grimesvariable 98afe61c15SRodney W. Grimes.Fa u_dsize 99afe61c15SRodney W. Grimesin the 100afe61c15SRodney W. Grimes.Fa u . 101afe61c15SRodney W. Grimesarea. 102afe61c15SRodney W. GrimesThe amount of stack image in the core file is given (in pages) by the 103afe61c15SRodney W. Grimesvariable 104afe61c15SRodney W. Grimes.Fa u_ssize 105afe61c15SRodney W. Grimesin the 106afe61c15SRodney W. Grimes.Ar u . 107afe61c15SRodney W. Grimesarea. 108afe61c15SRodney W. GrimesThe size of a ``page'' is given by the constant 10919dd549aSSteve Price.Dv PAGE_SIZE 110afe61c15SRodney W. Grimes(also from 111afe61c15SRodney W. Grimes.Aq Pa sys/param.h ) . 112aa81f3a9SJoerg Wunsch.Sh EXAMPLES 113aa81f3a9SJoerg WunschIn order to store all core images in per-user private areas under 114aa81f3a9SJoerg Wunsch.Pa /var/coredumps , 115aa81f3a9SJoerg Wunschthe following 116aa81f3a9SJoerg Wunsch.Xr sysctl 8 117aa81f3a9SJoerg Wunschcommand can be used: 118aa81f3a9SJoerg Wunsch.Pp 119aa81f3a9SJoerg Wunsch.Dl sysctl -w kern.corefile="/var/coredumps/\&%U/\&%N.core" 120afe61c15SRodney W. Grimes.Sh SEE ALSO 121afe61c15SRodney W. Grimes.Xr gdb 1 , 122afe61c15SRodney W. Grimes.Xr kgdb 1 , 123c69a537cSWolfram Schneider.Xr setrlimit 2 , 124aa81f3a9SJoerg Wunsch.Xr sigaction 2 , 125aa81f3a9SJoerg Wunsch.Xr sysctl 8 126afe61c15SRodney W. Grimes.Sh HISTORY 127afe61c15SRodney W. GrimesA 128afe61c15SRodney W. Grimes.Nm core 129afe61c15SRodney W. Grimesfile format appeared in 130afe61c15SRodney W. Grimes.At v6 . 131