xref: /freebsd/sbin/savecore/savecore.8 (revision 9768746b)
1.\" Copyright (c) 1980, 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. Neither the name of the University nor the names of its contributors
13.\"    may be used to endorse or promote products derived from this software
14.\"    without specific prior written permission.
15.\"
16.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
28.\"     From: @(#)savecore.8	8.1 (Berkeley) 6/5/93
29.\" $FreeBSD$
30.\"
31.Dd April 4, 2022
32.Dt SAVECORE 8
33.Os
34.Sh NAME
35.Nm savecore
36.Nd "save a core dump of the operating system"
37.Sh SYNOPSIS
38.Nm
39.Fl c
40.Op Fl v
41.Op Ar device ...
42.Nm
43.Fl C
44.Op Fl v
45.Op Ar device ...
46.Nm
47.Fl L
48.Op Fl fvZz
49.Op Fl m Ar maxdumps
50.Op Ar directory
51.Nm
52.Op Fl -libxo
53.Op Fl fkuvz
54.Op Fl m Ar maxdumps
55.Op Ar directory Op Ar device ...
56.Sh DESCRIPTION
57The
58.Nm
59utility
60copies a core dump into
61.Ar directory ,
62or the current working directory if no
63.Ar directory
64argument is given,
65and enters a reboot message and information about the core dump into
66the system log.
67.Pp
68The options are as follows:
69.Bl -tag -width ".Fl m Ar maxdumps"
70.It Fl -libxo
71Generate output via
72.Xr libxo 3
73in a selection of different human and machine readable formats.
74See
75.Xr xo_parse_args 3
76for details on command line arguments.
77.It Fl C
78Check to see if a dump exists,
79and display a brief message to indicate the status.
80An exit status of 0 indicates that a dump is there,
811 indicates that none exists.
82This option is compatible only with the
83.Op Fl v
84option.
85.It Fl c
86Clear the dump, so that future invocations of
87.Nm
88will ignore it.
89.It Fl f
90Force a dump to be taken even if either the dump was cleared or if the
91dump header information is inconsistent.
92.It Fl k
93Do not clear the dump after saving it.
94.It Fl L
95Instruct
96.Nm
97to generate and save a kernel dump of the running system, rather than
98copying one from a dump device.
99.It Fl m Ar maxdumps
100Maximum number of dumps to store.
101Once the number of stored dumps is equal to
102.Ar maxdumps
103the counter will restart from
104.Dv 0 .
105.It Fl u
106Uncompress the dump in case it was compressed by the kernel.
107.It Fl v
108Print out some additional debugging information.
109Specify twice for more information.
110.It Fl Z
111Compress the dump (see
112.Xr zstd 1 ) .
113This option is only supported in conjunction with the
114.Fl L
115option.
116Regular dumps can be configured for compression with zstd using
117.Xr dumpon 8 .
118.It Fl z
119Compress the dump (see
120.Xr gzip 1 ) .
121The dump may already be compressed if the kernel was configured to
122do so by
123.Xr dumpon 8 .
124In this case, the option has no effect.
125.Pp
126If used in conjunction with the
127.Fl L
128option, the requested live dump will be compressed with gzip.
129.El
130.Pp
131The
132.Nm
133utility
134looks for dumps on each device specified by the
135.Ar device
136argument(s), or on each device in
137.Pa /etc/fstab
138marked as
139.Dq dump
140or
141.Dq swap .
142The
143.Nm
144utility
145checks the core dump in various ways to make sure that it is complete.
146If it passes these checks, it saves the core image in
147.Ar directory Ns Pa /vmcore.#
148and information about the core in
149.Ar directory Ns Pa /info.# .
150If the core is encrypted, it saves the dump key in
151.Ar directory Ns Pa /key.# .
152The core can be later decrypted using
153.Xr decryptcore 8 .
154For kernel textdumps generated with the
155.Xr textdump 4
156facility, output will be stored in the
157.Xr tar 5
158format and named
159.Ar directory Ns Pa /textdump.tar.# .
160The
161.Dq #
162is the number from the first line of the file
163.Ar directory Ns Pa /bounds ,
164and it is incremented and stored back into the file each time
165.Nm
166successfully runs.
167.Pp
168The
169.Nm
170utility
171also checks the available disk space before attempting to make the copies.
172If there is insufficient disk space in the file system containing
173.Ar directory ,
174or if the file
175.Ar directory Ns Pa /minfree
176exists and the number of free kilobytes (for non-superusers) in the
177file system after the copies were made would be less than the number
178in the first line of this file, the copies are not attempted.
179.Pp
180If
181.Nm
182successfully copies the kernel and the core dump, the core dump is cleared
183so that future invocations of
184.Nm
185will ignore it.
186.Pp
187The
188.Nm
189utility
190is meant to be called near the end of the initialization file
191.Pa /etc/rc
192(see
193.Xr rc 8 ) .
194.Sh SEE ALSO
195.Xr gzip 1 ,
196.Xr zstd 1 ,
197.Xr getbootfile 3 ,
198.Xr libxo 3 ,
199.Xr xo_parse_args 3 ,
200.Xr mem 4 ,
201.Xr textdump 4 ,
202.Xr tar 5 ,
203.Xr crashinfo 8 ,
204.Xr decryptcore 8 ,
205.Xr dumpon 8 ,
206.Xr syslogd 8
207.Sh HISTORY
208The
209.Nm
210utility appeared in
211.Bx 4.1 .
212.Pp
213Support for kernel textdumps appeared in
214.Fx 7.1 .
215.Sh BUGS
216The minfree code does not consider the effect of compression or sparse files.
217