[!HAVE_DECL_GETENV]: Declare getenv to avoid warning on SunOS4.
[pspp] / lib / tempname.c
1 /* Copyright (C) 1991-1999, 2000, 2001 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Library General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    The GNU C Library 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 GNU
12    Library General Public License for more details.
13
14    You should have received a copy of the GNU Library General Public
15    License along with the GNU C Library; see the file COPYING.LIB.  If not,
16    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17    Boston, MA 02111-1307, USA.  */
18
19 #if HAVE_CONFIG_H
20 # include <config.h>
21 #endif
22
23 #include <sys/types.h>
24 #include <assert.h>
25
26 #include <errno.h>
27 #ifndef __set_errno
28 # define __set_errno(Val) errno = (Val)
29 #endif
30
31 #include <stdio.h>
32 #ifndef P_tmpdir
33 # define P_tmpdir "/tmp"
34 #endif
35 #ifndef TMP_MAX
36 # define TMP_MAX 238328
37 #endif
38 #ifndef __GT_FILE
39 # define __GT_FILE      0
40 # define __GT_BIGFILE   1
41 # define __GT_DIR       2
42 # define __GT_NOCREATE  3
43 #endif
44
45 #if STDC_HEADERS || _LIBC
46 # include <stddef.h>
47 # include <stdlib.h>
48 # include <string.h>
49 #endif
50
51 #if HAVE_FCNTL_H || _LIBC
52 # include <fcntl.h>
53 #endif
54
55 #if HAVE_SYS_TIME_H || _LIBC
56 # include <sys/time.h>
57 #endif
58
59 #if HAVE_STDINT_H || _LIBC
60 # include <stdint.h>
61 #endif
62
63 #if HAVE_UNISTD_H || _LIBC
64 # include <unistd.h>
65 #endif
66
67 #include <sys/stat.h>
68 #if STAT_MACROS_BROKEN
69 # undef S_ISDIR
70 #endif
71 #if !defined S_ISDIR && defined S_IFDIR
72 # define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
73 #endif
74 #if !S_IRUSR && S_IREAD
75 # define S_IRUSR S_IREAD
76 #endif
77 #if !S_IRUSR
78 # define S_IRUSR 00400
79 #endif
80 #if !S_IWUSR && S_IWRITE
81 # define S_IWUSR S_IWRITE
82 #endif
83 #if !S_IWUSR
84 # define S_IWUSR 00200
85 #endif
86 #if !S_IXUSR && S_IEXEC
87 # define S_IXUSR S_IEXEC
88 #endif
89 #if !S_IXUSR
90 # define S_IXUSR 00100
91 #endif
92
93 #if _LIBC
94 # define struct_stat64 struct stat64
95 #else
96 # define struct_stat64 struct stat
97 # define __getpid getpid
98 # define __gettimeofday gettimeofday
99 # define __mkdir mkdir
100 # define __open open
101 # define __open64 open
102 # define __lxstat64(version, path, buf) lstat (path, buf)
103 # define __xstat64(version, path, buf) stat (path, buf)
104 #endif
105
106 #if ! (HAVE___SECURE_GETENV || _LIBC)
107 # define __secure_getenv getenv
108
109 # ifndef HAVE_DECL_GETENV
110 "this configure-time declaration test was not run"
111 # endif
112 # if !HAVE_DECL_GETENV
113 char *getenv ();
114 # endif
115 #endif
116
117 /* Use the widest available unsigned type if uint64_t is not
118    available.  The algorithm below extracts a number less than 62**6
119    (approximately 2**35.725) from uint64_t, so ancient hosts where
120    uintmax_t is only 32 bits lose about 3.725 bits of randomness,
121    which is better than not having mkstemp at all.  */
122 #if !defined UINT64_MAX && !defined uint64_t
123 # define uint64_t uintmax_t
124 #endif
125
126 /* Return nonzero if DIR is an existent directory.  */
127 static int
128 direxists (const char *dir)
129 {
130   struct_stat64 buf;
131   return __xstat64 (_STAT_VER, dir, &buf) == 0 && S_ISDIR (buf.st_mode);
132 }
133
134 /* Path search algorithm, for tmpnam, tmpfile, etc.  If DIR is
135    non-null and exists, uses it; otherwise uses the first of $TMPDIR,
136    P_tmpdir, /tmp that exists.  Copies into TMPL a template suitable
137    for use with mk[s]temp.  Will fail (-1) if DIR is non-null and
138    doesn't exist, none of the searched dirs exists, or there's not
139    enough space in TMPL. */
140 int
141 __path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx,
142                int try_tmpdir)
143 {
144   const char *d;
145   size_t dlen, plen;
146
147   if (!pfx || !pfx[0])
148     {
149       pfx = "file";
150       plen = 4;
151     }
152   else
153     {
154       plen = strlen (pfx);
155       if (plen > 5)
156         plen = 5;
157     }
158
159   if (try_tmpdir)
160     {
161       d = __secure_getenv ("TMPDIR");
162       if (d != NULL && direxists (d))
163         dir = d;
164       else if (dir != NULL && direxists (dir))
165         /* nothing */ ;
166       else
167         dir = NULL;
168     }
169   if (dir == NULL)
170     {
171       if (direxists (P_tmpdir))
172         dir = P_tmpdir;
173       else if (strcmp (P_tmpdir, "/tmp") != 0 && direxists ("/tmp"))
174         dir = "/tmp";
175       else
176         {
177           __set_errno (ENOENT);
178           return -1;
179         }
180     }
181
182   dlen = strlen (dir);
183   while (dlen > 1 && dir[dlen - 1] == '/')
184     dlen--;                     /* remove trailing slashes */
185
186   /* check we have room for "${dir}/${pfx}XXXXXX\0" */
187   if (tmpl_len < dlen + 1 + plen + 6 + 1)
188     {
189       __set_errno (EINVAL);
190       return -1;
191     }
192
193   sprintf (tmpl, "%.*s/%.*sXXXXXX", (int) dlen, dir, (int) plen, pfx);
194   return 0;
195 }
196
197 /* These are the characters used in temporary filenames.  */
198 static const char letters[] =
199 "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
200
201 /* Generate a temporary file name based on TMPL.  TMPL must match the
202    rules for mk[s]temp (i.e. end in "XXXXXX").  The name constructed
203    does not exist at the time of the call to __gen_tempname.  TMPL is
204    overwritten with the result.
205
206    KIND may be one of:
207    __GT_NOCREATE:       simply verify that the name does not exist
208                         at the time of the call.
209    __GT_FILE:           create the file using open(O_CREAT|O_EXCL)
210                         and return a read-write fd.  The file is mode 0600.
211    __GT_BIGFILE:        same as __GT_FILE but use open64().
212    __GT_DIR:            create a directory, which will be mode 0700.
213
214    We use a clever algorithm to get hard-to-predict names. */
215 int
216 __gen_tempname (char *tmpl, int kind)
217 {
218   int len;
219   char *XXXXXX;
220   static uint64_t value;
221   uint64_t random_time_bits;
222   int count, fd = -1;
223   int save_errno = errno;
224   struct_stat64 st;
225
226   len = strlen (tmpl);
227   if (len < 6 || strcmp (&tmpl[len - 6], "XXXXXX"))
228     {
229       __set_errno (EINVAL);
230       return -1;
231     }
232
233   /* This is where the Xs start.  */
234   XXXXXX = &tmpl[len - 6];
235
236   /* Get some more or less random data.  */
237 #if HAVE_GETTIMEOFDAY || _LIBC
238   {
239     struct timeval tv;
240     __gettimeofday (&tv, NULL);
241     random_time_bits = ((uint64_t) tv.tv_usec << 16) ^ tv.tv_sec;
242   }
243 #else
244   random_time_bits = time (NULL);
245 #endif
246   value += random_time_bits ^ __getpid ();
247
248   for (count = 0; count < TMP_MAX; value += 7777, ++count)
249     {
250       uint64_t v = value;
251
252       /* Fill in the random bits.  */
253       XXXXXX[0] = letters[v % 62];
254       v /= 62;
255       XXXXXX[1] = letters[v % 62];
256       v /= 62;
257       XXXXXX[2] = letters[v % 62];
258       v /= 62;
259       XXXXXX[3] = letters[v % 62];
260       v /= 62;
261       XXXXXX[4] = letters[v % 62];
262       v /= 62;
263       XXXXXX[5] = letters[v % 62];
264
265       switch (kind)
266         {
267         case __GT_FILE:
268           fd = __open (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
269           break;
270
271         case __GT_BIGFILE:
272           fd = __open64 (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
273           break;
274
275         case __GT_DIR:
276           fd = __mkdir (tmpl, S_IRUSR | S_IWUSR | S_IXUSR);
277           break;
278
279         case __GT_NOCREATE:
280           /* This case is backward from the other three.  __gen_tempname
281              succeeds if __xstat fails because the name does not exist.
282              Note the continue to bypass the common logic at the bottom
283              of the loop.  */
284           if (__lxstat64 (_STAT_VER, tmpl, &st) < 0)
285             {
286               if (errno == ENOENT)
287                 {
288                   __set_errno (save_errno);
289                   return 0;
290                 }
291               else
292                 /* Give up now. */
293                 return -1;
294             }
295           continue;
296
297         default:
298           assert (! "invalid KIND in __gen_tempname");
299         }
300
301       if (fd >= 0)
302         {
303           __set_errno (save_errno);
304           return fd;
305         }
306       else if (errno != EEXIST)
307         return -1;
308     }
309
310   /* We got out of the loop because we ran out of combinations to try.  */
311   __set_errno (EEXIST);
312   return -1;
313 }