1 /* Utility to pick a temporary filename prefix.
2 Copyright (C) 1996-2017 Free Software Foundation, Inc.
4 This file is part of the libiberty library.
5 Libiberty is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 Libiberty is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with libiberty; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
18 Boston, MA 02110-1301, USA. */
24 #include <stdio.h> /* May get P_tmpdir. */
25 #include <sys/types.h>
36 #ifdef HAVE_SYS_FILE_H
37 #include <sys/file.h> /* May get R_OK, etc. on some systems. */
39 #if defined(_WIN32) && !defined(__CYGWIN__)
49 #include "libiberty.h"
50 extern int mkstemps (char *, int);
52 /* '/' works just fine on MS-DOS based systems. */
54 #define DIR_SEPARATOR '/'
57 /* Name of temporary file.
58 mktemp requires 6 trailing X's. */
59 #define TEMP_FILE "ccXXXXXX"
60 #define TEMP_FILE_LEN (sizeof(TEMP_FILE) - 1)
62 #if !defined(_WIN32) || defined(__CYGWIN__)
64 /* Subroutine of choose_tmpdir.
65 If BASE is non-NULL, return it.
66 Otherwise it checks if DIR is a usable directory.
67 If success, DIR is returned.
68 Otherwise NULL is returned. */
70 static inline const char *try_dir (const char *, const char *);
72 static inline const char *
73 try_dir (const char *dir
, const char *base
)
78 && access (dir
, R_OK
| W_OK
| X_OK
) == 0)
83 static const char tmp
[] = { DIR_SEPARATOR
, 't', 'm', 'p', 0 };
84 static const char usrtmp
[] =
85 { DIR_SEPARATOR
, 'u', 's', 'r', DIR_SEPARATOR
, 't', 'm', 'p', 0 };
86 static const char vartmp
[] =
87 { DIR_SEPARATOR
, 'v', 'a', 'r', DIR_SEPARATOR
, 't', 'm', 'p', 0 };
91 static char *memoized_tmpdir
;
95 @deftypefn Replacement const char* choose_tmpdir ()
97 Returns a pointer to a directory path suitable for creating temporary
107 if (!memoized_tmpdir
)
109 #if !defined(_WIN32) || defined(__CYGWIN__)
110 const char *base
= 0;
115 /* Try VMS standard temp logical. */
116 base
= try_dir ("/sys$scratch", base
);
118 base
= try_dir (getenv ("TMPDIR"), base
);
119 base
= try_dir (getenv ("TMP"), base
);
120 base
= try_dir (getenv ("TEMP"), base
);
124 /* We really want a directory name here as if concatenated with say \dir
125 we do not end up with a double \\ which defines an UNC path. */
126 if (strcmp (P_tmpdir
, "\\") == 0)
127 base
= try_dir ("\\.", base
);
129 base
= try_dir (P_tmpdir
, base
);
132 /* Try /var/tmp, /usr/tmp, then /tmp. */
133 base
= try_dir (vartmp
, base
);
134 base
= try_dir (usrtmp
, base
);
135 base
= try_dir (tmp
, base
);
137 /* If all else fails, use the current directory! */
140 /* Append DIR_SEPARATOR to the directory we've chosen
143 tmpdir
= XNEWVEC (char, len
+ 2);
144 strcpy (tmpdir
, base
);
145 tmpdir
[len
] = DIR_SEPARATOR
;
146 tmpdir
[len
+1] = '\0';
147 memoized_tmpdir
= tmpdir
;
148 #else /* defined(_WIN32) && !defined(__CYGWIN__) */
151 /* Figure out how much space we need. */
152 len
= GetTempPath(0, NULL
);
155 memoized_tmpdir
= XNEWVEC (char, len
);
156 if (!GetTempPath(len
, memoized_tmpdir
))
158 XDELETEVEC (memoized_tmpdir
);
159 memoized_tmpdir
= NULL
;
162 if (!memoized_tmpdir
)
163 /* If all else fails, use the current directory. */
164 memoized_tmpdir
= xstrdup (".\\");
165 #endif /* defined(_WIN32) && !defined(__CYGWIN__) */
168 return memoized_tmpdir
;
173 @deftypefn Replacement char* make_temp_file (const char *@var{suffix})
175 Return a temporary file name (as a string) or @code{NULL} if unable to
176 create one. @var{suffix} is a suffix to append to the file name. The
177 string is @code{malloc}ed, and the temporary file has been created.
184 make_temp_file (const char *suffix
)
186 const char *base
= choose_tmpdir ();
188 int base_len
, suffix_len
;
194 base_len
= strlen (base
);
195 suffix_len
= strlen (suffix
);
197 temp_filename
= XNEWVEC (char, base_len
200 strcpy (temp_filename
, base
);
201 strcpy (temp_filename
+ base_len
, TEMP_FILE
);
202 strcpy (temp_filename
+ base_len
+ TEMP_FILE_LEN
, suffix
);
204 fd
= mkstemps (temp_filename
, suffix_len
);
205 /* Mkstemps failed. It may be EPERM, ENOSPC etc. */
208 fprintf (stderr
, "Cannot create temporary file in %s: %s\n",
209 base
, strerror (errno
));
212 /* We abort on failed close out of sheer paranoia. */
215 return temp_filename
;