2 * Copyright (c) 1987, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. ***REMOVED*** - see
14 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
15 * 4. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #if defined(LIBC_SCCS) && !defined(lint)
33 static char sccsid
[] = "@(#)mktemp.c 8.1 (Berkeley) 6/4/93";
34 #endif /* LIBC_SCCS and not lint */
41 #include <sys/types.h>
50 #if !defined(_WINDOWS) && !defined(XP_OS2_VACPP)
63 static int _gettemp(char *path
, register int *doopen
, int extraFlags
);
69 FILE *temp
= tmpfile();
71 return (temp
? fileno(temp
) : -1);
75 return (_gettemp(path
, &fd
, 0) ? fd
: -1);
80 mkstempflags(char *path
, int extraFlags
)
84 return (_gettemp(path
, &fd
, extraFlags
) ? fd
: -1);
90 return(_gettemp(path
, (int *)NULL
, 0) ? path
: (char *)NULL
);
93 /* NB: This routine modifies its input string, and does not always restore it.
94 ** returns 1 on success, 0 on failure.
97 _gettemp(char *path
, register int *doopen
, int extraFlags
)
99 #if !defined(_WINDOWS) || defined(_WIN32)
102 register char *start
, *trv
;
107 for (trv
= path
; *trv
; ++trv
); /* extra X's get set to 0's */
108 while (*--trv
== 'X') {
109 *trv
= (pid
% 10) + '0';
114 * check the target directory; if you have six X's and it
115 * doesn't exist this runs for a *very* long time.
117 for (start
= trv
+ 1;; --trv
) {
122 if (saved
== '/' || saved
== '\\') {
125 rv
= stat(path
, &sbuf
);
129 if (!S_ISDIR(sbuf
.st_mode
)) {
140 open(path
, O_CREAT
|O_EXCL
|O_RDWR
|extraFlags
, 0600)) >= 0)
145 else if (stat(path
, &sbuf
))
146 return(errno
== ENOENT
? 1 : 0);
148 /* tricky little algorithm for backward compatibility */
149 for (trv
= start
;;) {