1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
/* Copyright (c) 1987, 1989, 2012 University of Maryland Department of
Computer Science.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation, the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions: The above copyright notice, this permission
notice and the disclaimer statement shall be included in all copies
or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef _AMIGA
#define getpid() 42
#endif /* _AMIGA */
#if defined( WIN32 ) || defined( _AMIGA )
#include "types.h"
#else
#include <sys/file.h>
char *getenv();
#endif
#include "tempfile.h"
#ifdef KPATHSEA
#include <kpathsea/config.h>
#include <kpathsea/c-fopen.h>
#else
#ifndef O_BINARY
#define O_BINARY 0
#endif
#endif
#if defined(WIN32) || defined(MSDOS)
#define TMP_OPEN_MODE (O_RDWR | O_BINARY)
#else
#define TMP_OPEN_MODE 2
#endif
#ifdef DOSISH
#ifndef WIN32
#define __cdecl
#endif
static char *TmpFile;
static void __cdecl
RemoveTempFile(void)
{
if (TmpFile) {
unlink(TmpFile);
TmpFile = (char *)0;
}
}
#endif
/*
* Create an open but unlinked (i.e., remove-on-exit-or-file-close)
* file. Return the file descriptor, or -1 if unable to create such
* a file. The buffer `name' is used to hold the file name (so that
* if this returns -1, it is useful for error messages).
*
* We use the despicable trick of unlinking an open temporary file.
* The alternatives are too painful. If it becomes necessary to
* do this another way, however, here is a method suggested by Fred
* Blonder: fork, and have the parent wait for the child to exit.
* (The parent must avoid being killed during this phase.) When
* the child exits, the parent should then remove the temporary file,
* then exit with the same status, or send itself the same signal.
*/
int
MakeRWTempFile(char *name)
{
register int tf, n;
int mypid, tries;
const char *tmpdir;
if ((tmpdir = getenv("TMP")) == NULL
&& (tmpdir = getenv("TEMP")) == NULL
&& (tmpdir = getenv("TMPDIR")) == NULL)
#if defined(WIN32) || defined(MSDOS)
tmpdir = ".";
#else
tmpdir = "/tmp";
#endif
/* compose a suitable temporary file name, and get an r/w descriptor */
mypid = getpid();
n = 0;
tries = 0;
do {
(void) sprintf(name, "%s/#%d.%d", tmpdir, mypid, n++);
#ifndef DOSISH
(void) unlink(name);
#endif
#ifdef O_CREAT /* have three-argument open syscall */
tries++;
tf = open(name, O_RDWR | O_CREAT | O_EXCL | O_BINARY, 0666);
#else
if (access(name, 0) == 0) {
/*
* Skip existing files. Note that tf might
* not be set yet.
*/
tf = -1;
continue;
}
tries++;
tf = creat(name, 0666);
if (tf >= 0) {
(void) close(tf);
tf = open(name, TMP_OPEN_MODE);
if (tf < 0)
(void) unlink(name);
}
#endif
} while (tf < 0 && tries < 20);
if (tf < 0) /* probably unrecoverable user error */
return (-1);
#ifdef DOSISH
/* Can't use the despicable trick of unlinking an open file,
since the filesystem won't wait for it to be closed. Let's
be somewhat less despicable. */
TmpFile = (char *)malloc(strlen(name) + 1);
if (TmpFile) {
strcpy(TmpFile, name);
atexit(RemoveTempFile);
}
#else
(void) unlink(name);
#endif
return (tf);
}
|