1 /* Copyright (C) 1991-2020 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
19 # include <libc-config.h>
20 # include "tempname.h"
23 #include <sys/types.h>
30 # define P_tmpdir "/tmp"
33 # define TMP_MAX 238328
38 # define __GT_NOCREATE 2
40 #if !_LIBC && (GT_FILE != __GT_FILE || GT_DIR != __GT_DIR \
41 || GT_NOCREATE != __GT_NOCREATE)
42 # error report this to bug-gnulib@gnu.org
52 #include <sys/random.h>
57 # define struct_stat64 struct stat64
58 # define __secure_getenv __libc_secure_getenv
60 # define struct_stat64 struct stat
61 # define __gen_tempname gen_tempname
62 # define __mkdir mkdir
64 # define __lxstat64(version, file, buf) lstat (file, buf)
65 # define __getrandom getrandom
66 # define __clock_gettime64 clock_gettime
67 # define __timespec64 timespec
70 /* Use getrandom if it works, falling back on a 64-bit linear
71 congruential generator that starts with Var's value
72 mixed in with a clock's low-order bits if available. */
73 typedef uint_fast64_t random_value
;
74 #define RANDOM_VALUE_MAX UINT_FAST64_MAX
75 #define BASE_62_DIGITS 10 /* 62**10 < UINT_FAST64_MAX */
76 #define BASE_62_POWER (62LL * 62 * 62 * 62 * 62 * 62 * 62 * 62 * 62 * 62)
79 random_bits (random_value var
)
82 if (__getrandom (&r
, sizeof r
, 0) == sizeof r
)
84 #if _LIBC || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
85 /* Add entropy if getrandom is not supported. */
86 struct __timespec64 tv
;
87 __clock_gettime64 (CLOCK_MONOTONIC
, &tv
);
90 return 2862933555777941757 * var
+ 3037000493;
94 /* Return nonzero if DIR is an existent directory. */
96 direxists (const char *dir
)
99 return __xstat64 (_STAT_VER
, dir
, &buf
) == 0 && S_ISDIR (buf
.st_mode
);
102 /* Path search algorithm, for tmpnam, tmpfile, etc. If DIR is
103 non-null and exists, uses it; otherwise uses the first of $TMPDIR,
104 P_tmpdir, /tmp that exists. Copies into TMPL a template suitable
105 for use with mk[s]temp. Will fail (-1) if DIR is non-null and
106 doesn't exist, none of the searched dirs exists, or there's not
107 enough space in TMPL. */
109 __path_search (char *tmpl
, size_t tmpl_len
, const char *dir
, const char *pfx
,
129 d
= __secure_getenv ("TMPDIR");
130 if (d
!= NULL
&& direxists (d
))
132 else if (dir
!= NULL
&& direxists (dir
))
139 if (direxists (P_tmpdir
))
141 else if (strcmp (P_tmpdir
, "/tmp") != 0 && direxists ("/tmp"))
145 __set_errno (ENOENT
);
151 while (dlen
> 1 && dir
[dlen
- 1] == '/')
152 dlen
--; /* remove trailing slashes */
154 /* check we have room for "${dir}/${pfx}XXXXXX\0" */
155 if (tmpl_len
< dlen
+ 1 + plen
+ 6 + 1)
157 __set_errno (EINVAL
);
161 sprintf (tmpl
, "%.*s/%.*sXXXXXX", (int) dlen
, dir
, (int) plen
, pfx
);
167 static int try_tempname_len (char *, int, void *, int (*) (char *, void *),
172 try_file (char *tmpl
, void *flags
)
174 int *openflags
= flags
;
176 (*openflags
& ~O_ACCMODE
)
177 | O_RDWR
| O_CREAT
| O_EXCL
, S_IRUSR
| S_IWUSR
);
181 try_dir (char *tmpl
, void *flags _GL_UNUSED
)
183 return __mkdir (tmpl
, S_IRUSR
| S_IWUSR
| S_IXUSR
);
187 try_nocreate (char *tmpl
, void *flags _GL_UNUSED
)
191 if (__lxstat64 (_STAT_VER
, tmpl
, &st
) == 0 || errno
== EOVERFLOW
)
192 __set_errno (EEXIST
);
193 return errno
== ENOENT
? 0 : -1;
196 /* These are the characters used in temporary file names. */
197 static const char letters
[] =
198 "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
200 /* Generate a temporary file name based on TMPL. TMPL must match the
201 rules for mk[s]temp (i.e., end in at least X_SUFFIX_LEN "X"s,
202 possibly with a suffix).
203 The name constructed does not exist at the time of the call to
204 this function. TMPL is overwritten with the result.
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_DIR: create a directory, which will be mode 0700.
213 We use a clever algorithm to get hard-to-predict names. */
218 gen_tempname_len (char *tmpl
, int suffixlen
, int flags
, int kind
,
221 static int (*const tryfunc
[]) (char *, void *) =
223 [__GT_FILE
] = try_file
,
224 [__GT_DIR
] = try_dir
,
225 [__GT_NOCREATE
] = try_nocreate
227 return try_tempname_len (tmpl
, suffixlen
, &flags
, tryfunc
[kind
],
235 try_tempname_len (char *tmpl
, int suffixlen
, void *args
,
236 int (*tryfunc
) (char *, void *), size_t x_suffix_len
)
242 int save_errno
= errno
;
244 /* A lower bound on the number of temporary files to attempt to
245 generate. The maximum total number of temporary file names that
246 can exist for a given template is 62**6. It should never be
247 necessary to try all of these combinations. Instead if a reasonable
248 number of names is tried (we define reasonable as 62**3) fail to
249 give the system administrator the chance to remove the problems.
250 This value requires that X_SUFFIX_LEN be at least 3. */
251 #define ATTEMPTS_MIN (62 * 62 * 62)
253 /* The number of times to attempt to generate a temporary file. To
254 conform to POSIX, this must be no smaller than TMP_MAX. */
255 #if ATTEMPTS_MIN < TMP_MAX
256 unsigned int attempts
= TMP_MAX
;
258 unsigned int attempts
= ATTEMPTS_MIN
;
261 /* A random variable. The initial value is used only the for fallback path
262 on 'random_bits' on 'getrandom' failure. Its initial value tries to use
263 some entropy from the ASLR and ignore possible bits from the stack
265 random_value v
= ((uintptr_t) &v
) / alignof (max_align_t
);
267 /* How many random base-62 digits can currently be extracted from V. */
270 /* Least unfair value for V. If V is less than this, V can generate
271 BASE_62_DIGITS digits fairly. Otherwise it might be biased. */
272 random_value
const unfair_min
273 = RANDOM_VALUE_MAX
- RANDOM_VALUE_MAX
% BASE_62_POWER
;
276 if (len
< x_suffix_len
+ suffixlen
277 || strspn (&tmpl
[len
- x_suffix_len
- suffixlen
], "X") < x_suffix_len
)
279 __set_errno (EINVAL
);
283 /* This is where the Xs start. */
284 XXXXXX
= &tmpl
[len
- x_suffix_len
- suffixlen
];
286 for (count
= 0; count
< attempts
; ++count
)
288 for (size_t i
= 0; i
< x_suffix_len
; i
++)
294 while (unfair_min
<= v
);
296 vdigits
= BASE_62_DIGITS
;
299 XXXXXX
[i
] = letters
[v
% 62];
304 fd
= tryfunc (tmpl
, args
);
307 __set_errno (save_errno
);
310 else if (errno
!= EEXIST
)
314 /* We got out of the loop because we ran out of combinations to try. */
315 __set_errno (EEXIST
);
320 __gen_tempname (char *tmpl
, int suffixlen
, int flags
, int kind
)
322 return gen_tempname_len (tmpl
, suffixlen
, flags
, kind
, 6);
327 try_tempname (char *tmpl
, int suffixlen
, void *args
,
328 int (*tryfunc
) (char *, void *))
330 return try_tempname_len (tmpl
, suffixlen
, args
, tryfunc
, 6);