STAT_MACROS_BROKEN is obsolete.
[gnulib.git] / lib / mkdtemp.c
1 /* Copyright (C) 1999, 2001-2003, 2006 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
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 2, or (at your option)
7    any later version.
8
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.
13
14    You should have received a copy of the GNU General Public License along
15    with this program; if not, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Extracted from misc/mkdtemp.c and sysdeps/posix/tempname.c.  */
19
20 #ifdef HAVE_CONFIG_H
21 # include "config.h"
22 #endif
23
24 /* Specification.  */
25 #include "mkdtemp.h"
26
27 #include <errno.h>
28 #ifndef __set_errno
29 # define __set_errno(Val) errno = (Val)
30 #endif
31
32 #include <stddef.h>
33 #include <stdlib.h>
34 #include <string.h>
35
36 #include <stdio.h>
37 #ifndef TMP_MAX
38 # define TMP_MAX 238328
39 #endif
40
41 #if HAVE_STDINT_H || _LIBC
42 # include <stdint.h>
43 #endif
44 #if HAVE_INTTYPES_H
45 # include <inttypes.h>
46 #endif
47
48 #include <unistd.h>
49
50 #if HAVE_GETTIMEOFDAY || _LIBC
51 # if HAVE_SYS_TIME_H || _LIBC
52 #  include <sys/time.h>
53 # endif
54 #else
55 # if HAVE_TIME_H || _LIBC
56 #  include <time.h>
57 # endif
58 #endif
59
60 #include <sys/stat.h>
61 #if !defined S_ISDIR && defined S_IFDIR
62 # define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
63 #endif
64 #if !S_IRUSR && S_IREAD
65 # define S_IRUSR S_IREAD
66 #endif
67 #if !S_IRUSR
68 # define S_IRUSR 00400
69 #endif
70 #if !S_IWUSR && S_IWRITE
71 # define S_IWUSR S_IWRITE
72 #endif
73 #if !S_IWUSR
74 # define S_IWUSR 00200
75 #endif
76 #if !S_IXUSR && S_IEXEC
77 # define S_IXUSR S_IEXEC
78 #endif
79 #if !S_IXUSR
80 # define S_IXUSR 00100
81 #endif
82
83 #ifdef __MINGW32__
84 # include <io.h>
85 /* mingw's _mkdir() function has 1 argument, but we pass 2 arguments.
86    Therefore we have to disable the argument count checking.  */
87 # define mkdir ((int (*)()) _mkdir)
88 #endif
89
90 #if !_LIBC
91 # define __getpid getpid
92 # define __gettimeofday gettimeofday
93 # define __mkdir mkdir
94 #endif
95
96 /* Use the widest available unsigned type if uint64_t is not
97    available.  The algorithm below extracts a number less than 62**6
98    (approximately 2**35.725) from uint64_t, so ancient hosts where
99    uintmax_t is only 32 bits lose about 3.725 bits of randomness,
100    which is better than not having mkstemp at all.  */
101 #if !defined UINT64_MAX && !defined uint64_t
102 # define uint64_t uintmax_t
103 #endif
104
105 /* These are the characters used in temporary filenames.  */
106 static const char letters[] =
107 "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
108
109 /* Generate a temporary file name based on TMPL.  TMPL must match the
110    rules for mk[s]temp (i.e. end in "XXXXXX").  The name constructed
111    does not exist at the time of the call to __gen_tempname.  TMPL is
112    overwritten with the result.
113
114    KIND is:
115    __GT_DIR:            create a directory, which will be mode 0700.
116
117    We use a clever algorithm to get hard-to-predict names. */
118 static int
119 gen_tempname (char *tmpl)
120 {
121   int len;
122   char *XXXXXX;
123   static uint64_t value;
124   uint64_t random_time_bits;
125   int count, fd = -1;
126   int save_errno = errno;
127
128   len = strlen (tmpl);
129   if (len < 6 || strcmp (&tmpl[len - 6], "XXXXXX"))
130     {
131       __set_errno (EINVAL);
132       return -1;
133     }
134
135   /* This is where the Xs start.  */
136   XXXXXX = &tmpl[len - 6];
137
138   /* Get some more or less random data.  */
139 #ifdef RANDOM_BITS
140   RANDOM_BITS (random_time_bits);
141 #else
142 # if HAVE_GETTIMEOFDAY || _LIBC
143   {
144     struct timeval tv;
145     __gettimeofday (&tv, NULL);
146     random_time_bits = ((uint64_t) tv.tv_usec << 16) ^ tv.tv_sec;
147   }
148 # else
149   random_time_bits = time (NULL);
150 # endif
151 #endif
152   value += random_time_bits ^ __getpid ();
153
154   for (count = 0; count < TMP_MAX; value += 7777, ++count)
155     {
156       uint64_t v = value;
157
158       /* Fill in the random bits.  */
159       XXXXXX[0] = letters[v % 62];
160       v /= 62;
161       XXXXXX[1] = letters[v % 62];
162       v /= 62;
163       XXXXXX[2] = letters[v % 62];
164       v /= 62;
165       XXXXXX[3] = letters[v % 62];
166       v /= 62;
167       XXXXXX[4] = letters[v % 62];
168       v /= 62;
169       XXXXXX[5] = letters[v % 62];
170
171       fd = __mkdir (tmpl, S_IRUSR | S_IWUSR | S_IXUSR);
172
173       if (fd >= 0)
174         {
175           __set_errno (save_errno);
176           return fd;
177         }
178       else if (errno != EEXIST)
179         return -1;
180     }
181
182   /* We got out of the loop because we ran out of combinations to try.  */
183   __set_errno (EEXIST);
184   return -1;
185 }
186
187 /* Generate a unique temporary directory from TEMPLATE.
188    The last six characters of TEMPLATE must be "XXXXXX";
189    they are replaced with a string that makes the filename unique.
190    The directory is created, mode 700, and its name is returned.
191    (This function comes from OpenBSD.) */
192 char *
193 mkdtemp (char *template)
194 {
195   if (gen_tempname (template))
196     return NULL;
197   else
198     return template;
199 }