1 /* tempname.c - generate the name of a temporary file.
3 Copyright (C) 1991-2003, 2005-2007, 2009-2013 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 /* Extracted from glibc sysdeps/posix/tempname.c. See also tmpdir.c. */
22 # include "tempname.h"
25 #include <sys/types.h>
30 # define __set_errno(Val) errno = (Val)
35 # define P_tmpdir "/tmp"
38 # define TMP_MAX 238328
43 # define __GT_NOCREATE 2
45 #if !_LIBC && (GT_FILE != __GT_FILE || GT_DIR != __GT_DIR \
46 || GT_NOCREATE != __GT_NOCREATE)
47 # error report this to bug-gnulib@gnu.org
62 # define struct_stat64 struct stat64
64 # define struct_stat64 struct stat
65 # define __gen_tempname gen_tempname
66 # define __getpid getpid
67 # define __gettimeofday gettimeofday
68 # define __mkdir mkdir
70 # define __lxstat64(version, file, buf) lstat (file, buf)
71 # define __secure_getenv secure_getenv
75 # include <hp-timing.h>
77 # define RANDOM_BITS(Var) \
78 if (__builtin_expect (value == UINT64_C (0), 0)) \
80 /* If this is the first time this function is used initialize \
81 the variable we accumulate the value in to some somewhat \
82 random value. If we'd not do this programs at startup time \
83 might have a reduced set of possible names, at least on slow \
86 __gettimeofday (&tv, NULL); \
87 value = ((uint64_t) tv.tv_usec << 16) ^ tv.tv_sec; \
93 /* Use the widest available unsigned type if uint64_t is not
94 available. The algorithm below extracts a number less than 62**6
95 (approximately 2**35.725) from uint64_t, so ancient hosts where
96 uintmax_t is only 32 bits lose about 3.725 bits of randomness,
97 which is better than not having mkstemp at all. */
98 #if !defined UINT64_MAX && !defined uint64_t
99 # define uint64_t uintmax_t
103 /* Return nonzero if DIR is an existent directory. */
105 direxists (const char *dir
)
108 return __xstat64 (_STAT_VER
, dir
, &buf
) == 0 && S_ISDIR (buf
.st_mode
);
111 /* Path search algorithm, for tmpnam, tmpfile, etc. If DIR is
112 non-null and exists, uses it; otherwise uses the first of $TMPDIR,
113 P_tmpdir, /tmp that exists. Copies into TMPL a template suitable
114 for use with mk[s]temp. Will fail (-1) if DIR is non-null and
115 doesn't exist, none of the searched dirs exists, or there's not
116 enough space in TMPL. */
118 __path_search (char *tmpl
, size_t tmpl_len
, const char *dir
, const char *pfx
,
138 d
= __secure_getenv ("TMPDIR");
139 if (d
!= NULL
&& direxists (d
))
141 else if (dir
!= NULL
&& direxists (dir
))
148 if (direxists (P_tmpdir
))
150 else if (strcmp (P_tmpdir
, "/tmp") != 0 && direxists ("/tmp"))
154 __set_errno (ENOENT
);
160 while (dlen
> 1 && dir
[dlen
- 1] == '/')
161 dlen
--; /* remove trailing slashes */
163 /* check we have room for "${dir}/${pfx}XXXXXX\0" */
164 if (tmpl_len
< dlen
+ 1 + plen
+ 6 + 1)
166 __set_errno (EINVAL
);
170 sprintf (tmpl
, "%.*s/%.*sXXXXXX", (int) dlen
, dir
, (int) plen
, pfx
);
175 /* These are the characters used in temporary file names. */
176 static const char letters
[] =
177 "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
179 /* Generate a temporary file name based on TMPL. TMPL must match the
180 rules for mk[s]temp (i.e. end in "XXXXXX", possibly with a suffix).
181 The name constructed does not exist at the time of the call to
182 __gen_tempname. TMPL is overwritten with the result.
185 __GT_NOCREATE: simply verify that the name does not exist
186 at the time of the call.
187 __GT_FILE: create the file using open(O_CREAT|O_EXCL)
188 and return a read-write fd. The file is mode 0600.
189 __GT_DIR: create a directory, which will be mode 0700.
191 We use a clever algorithm to get hard-to-predict names. */
193 __gen_tempname (char *tmpl
, int suffixlen
, int flags
, int kind
)
197 static uint64_t value
;
198 uint64_t random_time_bits
;
201 int save_errno
= errno
;
204 /* A lower bound on the number of temporary files to attempt to
205 generate. The maximum total number of temporary file names that
206 can exist for a given template is 62**6. It should never be
207 necessary to try all of these combinations. Instead if a reasonable
208 number of names is tried (we define reasonable as 62**3) fail to
209 give the system administrator the chance to remove the problems. */
210 #define ATTEMPTS_MIN (62 * 62 * 62)
212 /* The number of times to attempt to generate a temporary file. To
213 conform to POSIX, this must be no smaller than TMP_MAX. */
214 #if ATTEMPTS_MIN < TMP_MAX
215 unsigned int attempts
= TMP_MAX
;
217 unsigned int attempts
= ATTEMPTS_MIN
;
221 if (len
< 6 + suffixlen
|| memcmp (&tmpl
[len
- 6 - suffixlen
], "XXXXXX", 6))
223 __set_errno (EINVAL
);
227 /* This is where the Xs start. */
228 XXXXXX
= &tmpl
[len
- 6 - suffixlen
];
230 /* Get some more or less random data. */
232 RANDOM_BITS (random_time_bits
);
236 __gettimeofday (&tv
, NULL
);
237 random_time_bits
= ((uint64_t) tv
.tv_usec
<< 16) ^ tv
.tv_sec
;
240 value
+= random_time_bits
^ __getpid ();
242 for (count
= 0; count
< attempts
; value
+= 7777, ++count
)
246 /* Fill in the random bits. */
247 XXXXXX
[0] = letters
[v
% 62];
249 XXXXXX
[1] = letters
[v
% 62];
251 XXXXXX
[2] = letters
[v
% 62];
253 XXXXXX
[3] = letters
[v
% 62];
255 XXXXXX
[4] = letters
[v
% 62];
257 XXXXXX
[5] = letters
[v
% 62];
264 | O_RDWR
| O_CREAT
| O_EXCL
, S_IRUSR
| S_IWUSR
);
268 fd
= __mkdir (tmpl
, S_IRUSR
| S_IWUSR
| S_IXUSR
);
272 /* This case is backward from the other three. __gen_tempname
273 succeeds if __xstat fails because the name does not exist.
274 Note the continue to bypass the common logic at the bottom
276 if (__lxstat64 (_STAT_VER
, tmpl
, &st
) < 0)
280 __set_errno (save_errno
);
290 assert (! "invalid KIND in __gen_tempname");
296 __set_errno (save_errno
);
299 else if (errno
!= EEXIST
)
303 /* We got out of the loop because we ran out of combinations to try. */
304 __set_errno (EEXIST
);