1 /* $NetBSD: gettemp.c,v 1.15 2012/03/15 18:22:30 christos Exp $ */
4 * Copyright (c) 1987, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. 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 HAVE_NBTOOL_CONFIG_H
33 #include "nbtool_config.h"
36 #if !HAVE_NBTOOL_CONFIG_H || !HAVE_MKSTEMP || !HAVE_MKDTEMP
38 #include <sys/cdefs.h>
39 #if defined(LIBC_SCCS) && !defined(lint)
41 static char sccsid
[] = "@(#)mktemp.c 8.1 (Berkeley) 6/4/93";
43 __RCSID("$NetBSD: gettemp.c,v 1.15 2012/03/15 18:22:30 christos Exp $");
45 #endif /* LIBC_SCCS and not lint */
47 #include <sys/types.h>
58 #if HAVE_NBTOOL_CONFIG_H
59 #define GETTEMP __nbcompat_gettemp
61 #include "reentrant.h"
63 #define GETTEMP __gettemp
67 GETTEMP(char *path
, int *doopen
, int domkdir
)
73 /* To guarantee multiple calls generate unique names even if
74 the file is not created. 676 different possibilities with 7
75 or more X's, 26 with 6 or less. */
76 static char xtra
[2] = "aa";
79 _DIAGASSERT(path
!= NULL
);
80 /* doopen may be NULL */
84 /* Move to end of path and count trailing X's. */
85 for (trv
= path
; *trv
; ++trv
)
91 /* Use at least one from xtra. Use 2 if more than 6 X's. */
92 if (*(trv
- 1) == 'X')
94 if (xcnt
> 6 && *(trv
- 1) == 'X')
97 /* Set remaining X's to pid digits with 0's to the left. */
98 while (*--trv
== 'X') {
99 *trv
= (pid
% 10) + '0';
103 /* update xtra for next call. */
115 * check the target directory; if you have six X's and it
116 * doesn't exist this runs for a *very* long time.
118 for (start
= trv
+ 1;; --trv
) {
123 if (stat(path
, &sbuf
))
125 if (!S_ISDIR(sbuf
.st_mode
)) {
137 open(path
, O_CREAT
| O_EXCL
| O_RDWR
, 0600)) >= 0)
141 } else if (domkdir
) {
142 if (mkdir(path
, 0700) >= 0)
146 } else if (lstat(path
, &sbuf
))
147 return errno
== ENOENT
? 1 : 0;
149 /* tricky little algorithm for backward compatibility */
150 for (trv
= start
;;) {
156 if (isdigit((unsigned char)*trv
))
167 #endif /* !HAVE_NBTOOL_CONFIG_H || !HAVE_MKSTEMP || !HAVE_MKDTEMP */