]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/mktemp/mktemp.1
netmap: fix copyin/copyout of nmreq options list
[FreeBSD/FreeBSD.git] / usr.bin / mktemp / mktemp.1
1 .\" Copyright (c) 1989, 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: $OpenBSD: mktemp.1,v 1.8 1998/03/19 06:13:37 millert Exp $
29 .\" $FreeBSD$
30 .\"
31 .Dd August 4, 2022
32 .Dt MKTEMP 1
33 .Os
34 .Sh NAME
35 .Nm mktemp
36 .Nd make temporary file name (unique)
37 .Sh SYNOPSIS
38 .Nm
39 .Op Fl d
40 .Op Fl p Ar tmpdir
41 .Op Fl q
42 .Op Fl t Ar prefix
43 .Op Fl u
44 .Ar template ...
45 .Nm
46 .Op Fl d
47 .Op Fl p Ar tmpdir
48 .Op Fl q
49 .Op Fl u
50 .Fl t Ar prefix
51 .Sh DESCRIPTION
52 The
53 .Nm
54 utility takes each of the given file name templates and overwrites a
55 portion of it to create a file name.
56 This file name is unique
57 and suitable for use by the application.
58 The template may be
59 any file name with some number of
60 .Ql X Ns s
61 appended
62 to it, for example
63 .Pa /tmp/temp.XXXX .
64 The trailing
65 .Ql X Ns s
66 are replaced with the current process number and/or a
67 unique letter combination.
68 The number of unique file names
69 .Nm
70 can return depends on the number of
71 .Ql X Ns s
72 provided; six
73 .Ql X Ns s
74 will
75 result in
76 .Nm
77 selecting 1 of 56800235584 (62 ** 6) possible file names.
78 .Pp
79 If
80 .Nm
81 can successfully generate a unique file name, the file
82 is created with mode 0600 (unless the
83 .Fl u
84 flag is given) and the filename is printed
85 to standard output.
86 .Pp
87 If the
88 .Fl t Ar prefix
89 option is given,
90 .Nm
91 will generate a template string based on the
92 .Ar prefix
93 and the
94 .Ev TMPDIR
95 environment variable if set.
96 If the
97 .Fl p
98 option is set, then the given
99 .Ar tmpdir
100 will be used if the
101 .Ev TMPDIR
102 environment variable is not set.
103 Finally,
104 .Pa /tmp
105 will be used if neither
106 .Ev TMPDIR
107 or
108 .Fl p
109 are set and used.
110 Care should
111 be taken to ensure that it is appropriate to use an environment variable
112 potentially supplied by the user.
113 .Pp
114 If no arguments are passed or if only the
115 .Fl d
116 flag is passed
117 .Nm
118 behaves as if
119 .Fl t Li tmp
120 was supplied.
121 .Pp
122 Any number of temporary files may be created in a single invocation,
123 including one based on the internal template resulting from the
124 .Fl t
125 flag.
126 .Pp
127 The
128 .Nm
129 utility is provided to allow shell scripts to safely use temporary files.
130 Traditionally, many shell scripts take the name of the program with
131 the pid as a suffix and use that as a temporary file name.
132 This
133 kind of naming scheme is predictable and the race condition it creates
134 is easy for an attacker to win.
135 A safer, though still inferior, approach
136 is to make a temporary directory using the same naming scheme.
137 While
138 this does allow one to guarantee that a temporary file will not be
139 subverted, it still allows a simple denial of service attack.
140 For these
141 reasons it is suggested that
142 .Nm
143 be used instead.
144 .Sh OPTIONS
145 The available options are as follows:
146 .Bl -tag -width indent
147 .It Fl d , Fl -directory
148 Make a directory instead of a file.
149 .It Fl p Ar tmpdir , Fl -tmpdir Ns Oo = Ns Ar tmpdir Oc
150 Use
151 .Ar tmpdir
152 for the
153 .Fl t
154 flag if the
155 .Ev TMPDIR
156 environment variable is not set.
157 Additionally, any provided
158 .Ar template
159 arguments will be interpreted relative to the path specified as
160 .Ar tmpdir .
161 If
162 .Ar tmpdir
163 is either empty or omitted, then the
164 .Ev TMPDIR
165 environment variable will be used.
166 .It Fl q , Fl -quiet
167 Fail silently if an error occurs.
168 This is useful if
169 a script does not want error output to go to standard error.
170 .It Fl t Ar prefix
171 Generate a template (using the supplied
172 .Ar prefix
173 and
174 .Ev TMPDIR
175 if set) to create a filename template.
176 .It Fl u , Fl -dry-run
177 Operate in
178 .Dq unsafe
179 mode.
180 The temp file will be unlinked before
181 .Nm
182 exits.
183 This is slightly better than
184 .Xr mktemp 3
185 but still introduces a race condition.
186 Use of this
187 option is not encouraged.
188 .El
189 .Sh EXIT STATUS
190 .Ex -std
191 .Sh EXAMPLES
192 The following
193 .Xr sh 1
194 fragment illustrates a simple use of
195 .Nm
196 where the script should quit if it cannot get a safe
197 temporary file.
198 .Bd -literal -offset indent
199 tempfoo=`basename $0`
200 TMPFILE=`mktemp /tmp/${tempfoo}.XXXXXX` || exit 1
201 echo "program output" >> $TMPFILE
202 .Ed
203 .Pp
204 To allow the use of $TMPDIR:
205 .Bd -literal -offset indent
206 tempfoo=`basename $0`
207 TMPFILE=`mktemp -t ${tempfoo}` || exit 1
208 echo "program output" >> $TMPFILE
209 .Ed
210 .Pp
211 In this case, we want the script to catch the error itself.
212 .Bd -literal -offset indent
213 tempfoo=`basename $0`
214 TMPFILE=`mktemp -q /tmp/${tempfoo}.XXXXXX`
215 if [ $? -ne 0 ]; then
216         echo "$0: Can't create temp file, exiting..."
217         exit 1
218 fi
219 .Ed
220 .Sh SEE ALSO
221 .Xr mkdtemp 3 ,
222 .Xr mkstemp 3 ,
223 .Xr mktemp 3 ,
224 .Xr environ 7
225 .Sh HISTORY
226 A
227 .Nm
228 utility appeared in
229 .Ox 2.1 .
230 This implementation was written independently based on the
231 .Ox
232 man page, and
233 first appeared in
234 .Fx 2.2.7 .
235 This man page is taken from
236 .Ox .