1 /* Copyright (C) 1999, 2001-2003, 2006 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, see <http://www.gnu.org/licenses/>. */
17 /* Extracted from misc/mkdtemp.c and sysdeps/posix/tempname.c. */
26 # define __set_errno(Val) errno = (Val)
36 # define TMP_MAX 238328
41 #if HAVE_GETTIMEOFDAY || _LIBC
42 # if HAVE_SYS_TIME_H || _LIBC
43 # include <sys/time.h>
46 # if HAVE_TIME_H || _LIBC
52 #if !defined S_ISDIR && defined S_IFDIR
53 # define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
55 #if !S_IRUSR && S_IREAD
56 # define S_IRUSR S_IREAD
59 # define S_IRUSR 00400
61 #if !S_IWUSR && S_IWRITE
62 # define S_IWUSR S_IWRITE
65 # define S_IWUSR 00200
67 #if !S_IXUSR && S_IEXEC
68 # define S_IXUSR S_IEXEC
71 # define S_IXUSR 00100
79 # define __getpid getpid
80 # define __gettimeofday gettimeofday
81 # define __mkdir mkdir
84 /* Use the widest available unsigned type if uint64_t is not
85 available. The algorithm below extracts a number less than 62**6
86 (approximately 2**35.725) from uint64_t, so ancient hosts where
87 uintmax_t is only 32 bits lose about 3.725 bits of randomness,
88 which is better than not having mkstemp at all. */
89 #if !defined UINT64_MAX && !defined uint64_t
90 # define uint64_t uintmax_t
93 /* These are the characters used in temporary filenames. */
94 static const char letters
[] =
95 "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
97 /* Generate a temporary file name based on TMPL. TMPL must match the
98 rules for mk[s]temp (i.e. end in "XXXXXX"). The name constructed
99 does not exist at the time of the call to __gen_tempname. TMPL is
100 overwritten with the result.
103 __GT_DIR: create a directory, which will be mode 0700.
105 We use a clever algorithm to get hard-to-predict names. */
107 gen_tempname (char *tmpl
)
111 static uint64_t value
;
112 uint64_t random_time_bits
;
115 int save_errno
= errno
;
117 /* A lower bound on the number of temporary files to attempt to
118 generate. The maximum total number of temporary file names that
119 can exist for a given template is 62**6. It should never be
120 necessary to try all these combinations. Instead if a reasonable
121 number of names is tried (we define reasonable as 62**3) fail to
122 give the system administrator the chance to remove the problems. */
123 #define ATTEMPTS_MIN (62 * 62 * 62)
125 /* The number of times to attempt to generate a temporary file. To
126 conform to POSIX, this must be no smaller than TMP_MAX. */
127 #if ATTEMPTS_MIN < TMP_MAX
128 unsigned int attempts
= TMP_MAX
;
130 unsigned int attempts
= ATTEMPTS_MIN
;
134 if (len
< 6 || strcmp (&tmpl
[len
- 6], "XXXXXX"))
136 __set_errno (EINVAL
);
140 /* This is where the Xs start. */
141 XXXXXX
= &tmpl
[len
- 6];
143 /* Get some more or less random data. */
145 RANDOM_BITS (random_time_bits
);
147 # if HAVE_GETTIMEOFDAY || _LIBC
150 __gettimeofday (&tv
, NULL
);
151 random_time_bits
= ((uint64_t) tv
.tv_usec
<< 16) ^ tv
.tv_sec
;
154 random_time_bits
= time (NULL
);
157 value
+= random_time_bits
^ __getpid ();
159 for (count
= 0; count
< attempts
; value
+= 7777, ++count
)
163 /* Fill in the random bits. */
164 XXXXXX
[0] = letters
[v
% 62];
166 XXXXXX
[1] = letters
[v
% 62];
168 XXXXXX
[2] = letters
[v
% 62];
170 XXXXXX
[3] = letters
[v
% 62];
172 XXXXXX
[4] = letters
[v
% 62];
174 XXXXXX
[5] = letters
[v
% 62];
176 #ifdef MKDIR_TAKES_ONE_ARG
179 fd
= __mkdir (tmpl
, S_IRUSR
| S_IWUSR
| S_IXUSR
);
184 __set_errno (save_errno
);
187 else if (errno
!= EEXIST
)
191 /* We got out of the loop because we ran out of combinations to try. */
192 __set_errno (EEXIST
);
196 /* Generate a unique temporary directory from TEMPLATE.
197 The last six characters of TEMPLATE must be "XXXXXX";
198 they are replaced with a string that makes the filename unique.
199 The directory is created, mode 700, and its name is returned.
200 (This function comes from OpenBSD.) */
202 mkdtemp (char *template)
204 if (gen_tempname (template))