tempname.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /* Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If not,
  13. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. Boston, MA 02111-1307, USA. */
  15. /* March 11, 2002 Manuel Novoa III
  16. *
  17. * Modify code to remove dependency on libgcc long long arith support funcs.
  18. */
  19. /* June 6, 2004 Erik Andersen
  20. *
  21. * Don't use brain damaged getpid() based randomness.
  22. */
  23. /* April 15, 2005 Mike Frysinger
  24. *
  25. * Use brain damaged getpid() if real random fails.
  26. */
  27. #include <stddef.h>
  28. #include <stdint.h>
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include <string.h>
  32. #include <errno.h>
  33. #include <fcntl.h>
  34. #include <unistd.h>
  35. #include <assert.h>
  36. #include <sys/types.h>
  37. #include <sys/stat.h>
  38. #include <sys/time.h>
  39. #include "tempname.h"
  40. libc_hidden_proto(strlen)
  41. libc_hidden_proto(strcmp)
  42. libc_hidden_proto(sprintf)
  43. libc_hidden_proto(mkdir)
  44. libc_hidden_proto(open)
  45. libc_hidden_proto(open64)
  46. libc_hidden_proto(read)
  47. libc_hidden_proto(close)
  48. libc_hidden_proto(getpid)
  49. libc_hidden_proto(stat)
  50. libc_hidden_proto(gettimeofday)
  51. /* Return nonzero if DIR is an existent directory. */
  52. static int direxists (const char *dir)
  53. {
  54. struct stat buf;
  55. return stat(dir, &buf) == 0 && S_ISDIR (buf.st_mode);
  56. }
  57. /* Path search algorithm, for tmpnam, tmpfile, etc. If DIR is
  58. non-null and exists, uses it; otherwise uses the first of $TMPDIR,
  59. P_tmpdir, /tmp that exists. Copies into TMPL a template suitable
  60. for use with mk[s]temp. Will fail (-1) if DIR is non-null and
  61. doesn't exist, none of the searched dirs exists, or there's not
  62. enough space in TMPL. */
  63. int attribute_hidden ___path_search (char *tmpl, size_t tmpl_len, const char *dir,
  64. const char *pfx /*, int try_tmpdir*/)
  65. {
  66. //const char *d;
  67. size_t dlen, plen;
  68. if (!pfx || !pfx[0])
  69. {
  70. pfx = "file";
  71. plen = 4;
  72. }
  73. else
  74. {
  75. plen = strlen (pfx);
  76. if (plen > 5)
  77. plen = 5;
  78. }
  79. /* Disable support for $TMPDIR */
  80. #if 0
  81. if (try_tmpdir)
  82. {
  83. d = __secure_getenv ("TMPDIR");
  84. if (d != NULL && direxists (d))
  85. dir = d;
  86. else if (dir != NULL && direxists (dir))
  87. /* nothing */ ;
  88. else
  89. dir = NULL;
  90. }
  91. #endif
  92. if (dir == NULL)
  93. {
  94. if (direxists (P_tmpdir))
  95. dir = P_tmpdir;
  96. else if (strcmp (P_tmpdir, "/tmp") != 0 && direxists ("/tmp"))
  97. dir = "/tmp";
  98. else
  99. {
  100. __set_errno (ENOENT);
  101. return -1;
  102. }
  103. }
  104. dlen = strlen (dir);
  105. while (dlen > 1 && dir[dlen - 1] == '/')
  106. dlen--; /* remove trailing slashes */
  107. /* check we have room for "${dir}/${pfx}XXXXXX\0" */
  108. if (tmpl_len < dlen + 1 + plen + 6 + 1)
  109. {
  110. __set_errno (EINVAL);
  111. return -1;
  112. }
  113. sprintf (tmpl, "%.*s/%.*sXXXXXX", dlen, dir, plen, pfx);
  114. return 0;
  115. }
  116. /* These are the characters used in temporary filenames. */
  117. static const char letters[] =
  118. "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
  119. #define NUM_LETTERS (62)
  120. static unsigned int fillrand(unsigned char *buf, unsigned int len)
  121. {
  122. int fd;
  123. unsigned int result = -1;
  124. fd = open("/dev/urandom", O_RDONLY);
  125. if (fd < 0) {
  126. fd = open("/dev/random", O_RDONLY | O_NONBLOCK);
  127. }
  128. if (fd >= 0) {
  129. result = read(fd, buf, len);
  130. close(fd);
  131. }
  132. return result;
  133. }
  134. static void brain_damaged_fillrand(unsigned char *buf, unsigned int len)
  135. {
  136. unsigned int i, k;
  137. struct timeval tv;
  138. uint32_t high, low, rh;
  139. static uint64_t value;
  140. gettimeofday(&tv, NULL);
  141. value += ((uint64_t) tv.tv_usec << 16) ^ tv.tv_sec ^ getpid();
  142. low = value & UINT32_MAX;
  143. high = value >> 32;
  144. for (i = 0; i < len; ++i) {
  145. rh = high % NUM_LETTERS;
  146. high /= NUM_LETTERS;
  147. #define L ((UINT32_MAX % NUM_LETTERS + 1) % NUM_LETTERS)
  148. k = (low % NUM_LETTERS) + (L * rh);
  149. #undef L
  150. #define H ((UINT32_MAX / NUM_LETTERS) + ((UINT32_MAX % NUM_LETTERS + 1) / NUM_LETTERS))
  151. low = (low / NUM_LETTERS) + (H * rh) + (k / NUM_LETTERS);
  152. #undef H
  153. k %= NUM_LETTERS;
  154. buf[i] = letters[k];
  155. }
  156. }
  157. /* Generate a temporary file name based on TMPL. TMPL must match the
  158. rules for mk[s]temp (i.e. end in "XXXXXX"). The name constructed
  159. does not exist at the time of the call to __gen_tempname. TMPL is
  160. overwritten with the result.
  161. KIND may be one of:
  162. __GT_NOCREATE: simply verify that the name does not exist
  163. at the time of the call.
  164. __GT_FILE: create the file using open(O_CREAT|O_EXCL)
  165. and return a read-write fd. The file is mode 0600.
  166. __GT_BIGFILE: same as __GT_FILE but use open64().
  167. __GT_DIR: create a directory, which will be mode 0700.
  168. */
  169. int attribute_hidden __gen_tempname (char *tmpl, int kind)
  170. {
  171. char *XXXXXX;
  172. unsigned int i;
  173. int fd, save_errno = errno;
  174. unsigned char randomness[6];
  175. size_t len;
  176. len = strlen (tmpl);
  177. /* This is where the Xs start. */
  178. XXXXXX = tmpl + len - 6;
  179. if (len < 6 || strcmp (XXXXXX, "XXXXXX"))
  180. {
  181. __set_errno (EINVAL);
  182. return -1;
  183. }
  184. /* Get some random data. */
  185. if (fillrand(randomness, sizeof(randomness)) != sizeof(randomness)) {
  186. /* if random device nodes failed us, lets use the braindamaged ver */
  187. brain_damaged_fillrand(randomness, sizeof(randomness));
  188. }
  189. for (i = 0; i < sizeof(randomness); ++i)
  190. XXXXXX[i] = letters[(randomness[i]) % NUM_LETTERS];
  191. for (i = 0; i < TMP_MAX; ++i) {
  192. switch(kind) {
  193. case __GT_NOCREATE:
  194. {
  195. struct stat st;
  196. if (stat (tmpl, &st) < 0) {
  197. if (errno == ENOENT) {
  198. fd = 0;
  199. goto restore_and_ret;
  200. } else
  201. /* Give up now. */
  202. return -1;
  203. } else
  204. fd = 0;
  205. }
  206. case __GT_FILE:
  207. fd = open (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
  208. break;
  209. #if defined __UCLIBC_HAS_LFS__
  210. case __GT_BIGFILE:
  211. fd = open64 (tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
  212. break;
  213. #endif
  214. case __GT_DIR:
  215. fd = mkdir (tmpl, S_IRUSR | S_IWUSR | S_IXUSR);
  216. break;
  217. default:
  218. fd = -1;
  219. assert (! "invalid KIND in __gen_tempname");
  220. }
  221. if (fd >= 0) {
  222. restore_and_ret:
  223. __set_errno (save_errno);
  224. return fd;
  225. }
  226. else if (errno != EEXIST)
  227. /* Any other error will apply also to other names we might
  228. try, and there are 2^32 or so of them, so give up now. */
  229. return -1;
  230. }
  231. /* We got out of the loop because we ran out of combinations to try. */
  232. __set_errno (EEXIST);
  233. return -1;
  234. }