2 * State diagram and cleanup
3 * -------------------------
5 * If the program exits while a temporary file is active, we want to
6 * make sure that we remove it. This is done by remembering the active
7 * temporary files in a linked list, `tempfile_list`. An `atexit(3)`
8 * handler and a signal handler are registered, to clean up any active
11 * Because the signal handler can run at any time, `tempfile_list` and
12 * the `tempfile` objects that comprise it must be kept in
13 * self-consistent states at all times.
15 * The possible states of a `tempfile` object are as follows:
17 * - Inactive/unallocated. The only way to get a tempfile is via a creation
18 * function like create_tempfile(). Once allocated, the tempfile is on the
19 * global tempfile_list and considered active.
21 * - Active, file open (after `create_tempfile()` or
22 * `reopen_tempfile()`). In this state:
24 * - the temporary file exists
25 * - `filename` holds the filename of the temporary file
26 * - `fd` holds a file descriptor open for writing to it
27 * - `fp` holds a pointer to an open `FILE` object if and only if
28 * `fdopen_tempfile()` has been called on the object
29 * - `owner` holds the PID of the process that created the file
31 * - Active, file closed (after `close_tempfile_gently()`). Same
32 * as the previous state, except that the temporary file is closed,
33 * `fd` is -1, and `fp` is `NULL`.
35 * - Inactive (after `delete_tempfile()`, `rename_tempfile()`, or a
36 * failed attempt to create a temporary file). The struct is removed from
37 * the global tempfile_list and deallocated.
39 * A temporary file is owned by the process that created it. The
40 * `tempfile` has an `owner` field that records the owner's PID. This
41 * field is used to prevent a forked process from deleting a temporary
42 * file created by its parent.
45 #include "git-compat-util.h"
52 static VOLATILE_LIST_HEAD(tempfile_list
);
54 static void remove_template_directory(struct tempfile
*tempfile
,
55 int in_signal_handler
)
57 if (tempfile
->directory
) {
58 if (in_signal_handler
)
59 rmdir(tempfile
->directory
);
61 rmdir_or_warn(tempfile
->directory
);
65 static void remove_tempfiles(int in_signal_handler
)
68 volatile struct volatile_list_head
*pos
;
70 list_for_each(pos
, &tempfile_list
) {
71 struct tempfile
*p
= list_entry(pos
, struct tempfile
, list
);
73 if (!is_tempfile_active(p
) || p
->owner
!= me
)
79 if (in_signal_handler
)
80 unlink(p
->filename
.buf
);
82 unlink_or_warn(p
->filename
.buf
);
83 remove_template_directory(p
, in_signal_handler
);
87 static void remove_tempfiles_on_exit(void)
92 static void remove_tempfiles_on_signal(int signo
)
99 static struct tempfile
*new_tempfile(void)
101 struct tempfile
*tempfile
= xmalloc(sizeof(*tempfile
));
105 INIT_LIST_HEAD(&tempfile
->list
);
106 strbuf_init(&tempfile
->filename
, 0);
107 tempfile
->directory
= NULL
;
111 static void activate_tempfile(struct tempfile
*tempfile
)
113 static int initialized
;
116 sigchain_push_common(remove_tempfiles_on_signal
);
117 atexit(remove_tempfiles_on_exit
);
121 volatile_list_add(&tempfile
->list
, &tempfile_list
);
122 tempfile
->owner
= getpid();
125 static void deactivate_tempfile(struct tempfile
*tempfile
)
127 volatile_list_del(&tempfile
->list
);
128 strbuf_release(&tempfile
->filename
);
129 free(tempfile
->directory
);
133 /* Make sure errno contains a meaningful value on error */
134 struct tempfile
*create_tempfile_mode(const char *path
, int mode
)
136 struct tempfile
*tempfile
= new_tempfile();
138 strbuf_add_absolute_path(&tempfile
->filename
, path
);
139 tempfile
->fd
= open(tempfile
->filename
.buf
,
140 O_RDWR
| O_CREAT
| O_EXCL
| O_CLOEXEC
, mode
);
141 if (O_CLOEXEC
&& tempfile
->fd
< 0 && errno
== EINVAL
)
142 /* Try again w/o O_CLOEXEC: the kernel might not support it */
143 tempfile
->fd
= open(tempfile
->filename
.buf
,
144 O_RDWR
| O_CREAT
| O_EXCL
, mode
);
145 if (tempfile
->fd
< 0) {
146 deactivate_tempfile(tempfile
);
149 activate_tempfile(tempfile
);
150 if (adjust_shared_perm(tempfile
->filename
.buf
)) {
151 int save_errno
= errno
;
152 error("cannot fix permission bits on %s", tempfile
->filename
.buf
);
153 delete_tempfile(&tempfile
);
161 struct tempfile
*register_tempfile(const char *path
)
163 struct tempfile
*tempfile
= new_tempfile();
164 strbuf_add_absolute_path(&tempfile
->filename
, path
);
165 activate_tempfile(tempfile
);
169 struct tempfile
*mks_tempfile_sm(const char *filename_template
, int suffixlen
, int mode
)
171 struct tempfile
*tempfile
= new_tempfile();
173 strbuf_add_absolute_path(&tempfile
->filename
, filename_template
);
174 tempfile
->fd
= git_mkstemps_mode(tempfile
->filename
.buf
, suffixlen
, mode
);
175 if (tempfile
->fd
< 0) {
176 deactivate_tempfile(tempfile
);
179 activate_tempfile(tempfile
);
183 struct tempfile
*mks_tempfile_tsm(const char *filename_template
, int suffixlen
, int mode
)
185 struct tempfile
*tempfile
= new_tempfile();
188 tmpdir
= getenv("TMPDIR");
192 strbuf_addf(&tempfile
->filename
, "%s/%s", tmpdir
, filename_template
);
193 tempfile
->fd
= git_mkstemps_mode(tempfile
->filename
.buf
, suffixlen
, mode
);
194 if (tempfile
->fd
< 0) {
195 deactivate_tempfile(tempfile
);
198 activate_tempfile(tempfile
);
202 struct tempfile
*mks_tempfile_dt(const char *directory_template
,
203 const char *filename
)
205 struct tempfile
*tempfile
;
207 struct strbuf sb
= STRBUF_INIT
;
211 if (!ends_with(directory_template
, "XXXXXX")) {
216 tmpdir
= getenv("TMPDIR");
220 strbuf_addf(&sb
, "%s/%s", tmpdir
, directory_template
);
221 directorylen
= sb
.len
;
222 if (!mkdtemp(sb
.buf
)) {
223 int orig_errno
= errno
;
229 strbuf_addf(&sb
, "/%s", filename
);
230 fd
= open(sb
.buf
, O_CREAT
| O_EXCL
| O_RDWR
, 0600);
232 int orig_errno
= errno
;
233 strbuf_setlen(&sb
, directorylen
);
240 tempfile
= new_tempfile();
241 strbuf_swap(&tempfile
->filename
, &sb
);
242 tempfile
->directory
= xmemdupz(tempfile
->filename
.buf
, directorylen
);
244 activate_tempfile(tempfile
);
248 struct tempfile
*xmks_tempfile_m(const char *filename_template
, int mode
)
250 struct tempfile
*tempfile
;
251 struct strbuf full_template
= STRBUF_INIT
;
253 strbuf_add_absolute_path(&full_template
, filename_template
);
254 tempfile
= mks_tempfile_m(full_template
.buf
, mode
);
256 die_errno("Unable to create temporary file '%s'",
259 strbuf_release(&full_template
);
263 FILE *fdopen_tempfile(struct tempfile
*tempfile
, const char *mode
)
265 if (!is_tempfile_active(tempfile
))
266 BUG("fdopen_tempfile() called for inactive object");
268 BUG("fdopen_tempfile() called for open object");
270 tempfile
->fp
= fdopen(tempfile
->fd
, mode
);
274 const char *get_tempfile_path(struct tempfile
*tempfile
)
276 if (!is_tempfile_active(tempfile
))
277 BUG("get_tempfile_path() called for inactive object");
278 return tempfile
->filename
.buf
;
281 int get_tempfile_fd(struct tempfile
*tempfile
)
283 if (!is_tempfile_active(tempfile
))
284 BUG("get_tempfile_fd() called for inactive object");
288 FILE *get_tempfile_fp(struct tempfile
*tempfile
)
290 if (!is_tempfile_active(tempfile
))
291 BUG("get_tempfile_fp() called for inactive object");
295 int close_tempfile_gently(struct tempfile
*tempfile
)
301 if (!is_tempfile_active(tempfile
) || tempfile
->fd
< 0)
323 int reopen_tempfile(struct tempfile
*tempfile
)
325 if (!is_tempfile_active(tempfile
))
326 BUG("reopen_tempfile called for an inactive object");
327 if (0 <= tempfile
->fd
)
328 BUG("reopen_tempfile called for an open object");
329 tempfile
->fd
= open(tempfile
->filename
.buf
, O_WRONLY
|O_TRUNC
);
333 int rename_tempfile(struct tempfile
**tempfile_p
, const char *path
)
335 struct tempfile
*tempfile
= *tempfile_p
;
337 if (!is_tempfile_active(tempfile
))
338 BUG("rename_tempfile called for inactive object");
340 if (close_tempfile_gently(tempfile
)) {
341 delete_tempfile(tempfile_p
);
345 if (rename(tempfile
->filename
.buf
, path
)) {
346 int save_errno
= errno
;
347 delete_tempfile(tempfile_p
);
352 deactivate_tempfile(tempfile
);
357 void delete_tempfile(struct tempfile
**tempfile_p
)
359 struct tempfile
*tempfile
= *tempfile_p
;
361 if (!is_tempfile_active(tempfile
))
364 close_tempfile_gently(tempfile
);
365 unlink_or_warn(tempfile
->filename
.buf
);
366 remove_template_directory(tempfile
, 0);
367 deactivate_tempfile(tempfile
);