Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 1 | /* |
| 2 | * State diagram and cleanup |
| 3 | * ------------------------- |
| 4 | * |
| 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 |
| 9 | * temporary files. |
| 10 | * |
| 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. |
| 14 | * |
| 15 | * The possible states of a `tempfile` object are as follows: |
| 16 | * |
Jeff King | 320fa57 | 2022-08-30 15:46:01 -0400 | [diff] [blame] | 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. |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 20 | * |
| 21 | * - Active, file open (after `create_tempfile()` or |
| 22 | * `reopen_tempfile()`). In this state: |
| 23 | * |
| 24 | * - the temporary file exists |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 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 |
| 30 | * |
Jeff King | 49bd0fc | 2017-09-05 08:14:30 -0400 | [diff] [blame] | 31 | * - Active, file closed (after `close_tempfile_gently()`). Same |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 32 | * as the previous state, except that the temporary file is closed, |
| 33 | * `fd` is -1, and `fp` is `NULL`. |
| 34 | * |
Jeff King | 49bd0fc | 2017-09-05 08:14:30 -0400 | [diff] [blame] | 35 | * - Inactive (after `delete_tempfile()`, `rename_tempfile()`, or a |
Jeff King | 320fa57 | 2022-08-30 15:46:01 -0400 | [diff] [blame] | 36 | * failed attempt to create a temporary file). The struct is removed from |
| 37 | * the global tempfile_list and deallocated. |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 38 | * |
| 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. |
| 43 | */ |
| 44 | |
Elijah Newren | a64acf7 | 2023-03-21 06:26:02 +0000 | [diff] [blame] | 45 | #include "git-compat-util.h" |
Calvin Wan | 5d1344b | 2023-06-06 19:48:39 +0000 | [diff] [blame] | 46 | #include "abspath.h" |
Elijah Newren | a64acf7 | 2023-03-21 06:26:02 +0000 | [diff] [blame] | 47 | #include "path.h" |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 48 | #include "tempfile.h" |
| 49 | #include "sigchain.h" |
| 50 | |
Jeff King | 24d8218 | 2017-09-05 08:15:00 -0400 | [diff] [blame] | 51 | static VOLATILE_LIST_HEAD(tempfile_list); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 52 | |
Patrick Steinhardt | 4ae540d | 2024-03-07 14:10:31 +0100 | [diff] [blame] | 53 | static int remove_template_directory(struct tempfile *tempfile, |
René Scharfe | 2c2db19 | 2022-04-20 22:26:09 +0200 | [diff] [blame] | 54 | int in_signal_handler) |
| 55 | { |
René Scharfe | babe2e0 | 2022-08-27 00:46:29 +0200 | [diff] [blame] | 56 | if (tempfile->directory) { |
René Scharfe | 2c2db19 | 2022-04-20 22:26:09 +0200 | [diff] [blame] | 57 | if (in_signal_handler) |
Patrick Steinhardt | 4ae540d | 2024-03-07 14:10:31 +0100 | [diff] [blame] | 58 | return rmdir(tempfile->directory); |
René Scharfe | 2c2db19 | 2022-04-20 22:26:09 +0200 | [diff] [blame] | 59 | else |
Patrick Steinhardt | 4ae540d | 2024-03-07 14:10:31 +0100 | [diff] [blame] | 60 | return rmdir_or_warn(tempfile->directory); |
René Scharfe | 2c2db19 | 2022-04-20 22:26:09 +0200 | [diff] [blame] | 61 | } |
Patrick Steinhardt | 4ae540d | 2024-03-07 14:10:31 +0100 | [diff] [blame] | 62 | |
| 63 | return 0; |
René Scharfe | 2c2db19 | 2022-04-20 22:26:09 +0200 | [diff] [blame] | 64 | } |
| 65 | |
Jeff King | 6b93506 | 2017-09-05 08:14:53 -0400 | [diff] [blame] | 66 | static void remove_tempfiles(int in_signal_handler) |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 67 | { |
| 68 | pid_t me = getpid(); |
Jeff King | 24d8218 | 2017-09-05 08:15:00 -0400 | [diff] [blame] | 69 | volatile struct volatile_list_head *pos; |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 70 | |
Jeff King | 24d8218 | 2017-09-05 08:15:00 -0400 | [diff] [blame] | 71 | list_for_each(pos, &tempfile_list) { |
| 72 | struct tempfile *p = list_entry(pos, struct tempfile, list); |
| 73 | |
Jeff King | 6b93506 | 2017-09-05 08:14:53 -0400 | [diff] [blame] | 74 | if (!is_tempfile_active(p) || p->owner != me) |
| 75 | continue; |
| 76 | |
| 77 | if (p->fd >= 0) |
| 78 | close(p->fd); |
| 79 | |
| 80 | if (in_signal_handler) |
| 81 | unlink(p->filename.buf); |
| 82 | else |
| 83 | unlink_or_warn(p->filename.buf); |
René Scharfe | 2c2db19 | 2022-04-20 22:26:09 +0200 | [diff] [blame] | 84 | remove_template_directory(p, in_signal_handler); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 85 | } |
| 86 | } |
| 87 | |
| 88 | static void remove_tempfiles_on_exit(void) |
| 89 | { |
| 90 | remove_tempfiles(0); |
| 91 | } |
| 92 | |
| 93 | static void remove_tempfiles_on_signal(int signo) |
| 94 | { |
| 95 | remove_tempfiles(1); |
| 96 | sigchain_pop(signo); |
| 97 | raise(signo); |
| 98 | } |
| 99 | |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 100 | static struct tempfile *new_tempfile(void) |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 101 | { |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 102 | struct tempfile *tempfile = xmalloc(sizeof(*tempfile)); |
Jeff King | 422a21c | 2017-09-05 08:15:04 -0400 | [diff] [blame] | 103 | tempfile->fd = -1; |
| 104 | tempfile->fp = NULL; |
Jeff King | 422a21c | 2017-09-05 08:15:04 -0400 | [diff] [blame] | 105 | tempfile->owner = 0; |
| 106 | INIT_LIST_HEAD(&tempfile->list); |
| 107 | strbuf_init(&tempfile->filename, 0); |
René Scharfe | babe2e0 | 2022-08-27 00:46:29 +0200 | [diff] [blame] | 108 | tempfile->directory = NULL; |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 109 | return tempfile; |
Michael Haggerty | 7eba6ce | 2015-08-10 11:47:42 +0200 | [diff] [blame] | 110 | } |
| 111 | |
Jeff King | 2933ebb | 2017-09-05 08:14:47 -0400 | [diff] [blame] | 112 | static void activate_tempfile(struct tempfile *tempfile) |
| 113 | { |
Jeff King | 422a21c | 2017-09-05 08:15:04 -0400 | [diff] [blame] | 114 | static int initialized; |
| 115 | |
Jeff King | 422a21c | 2017-09-05 08:15:04 -0400 | [diff] [blame] | 116 | if (!initialized) { |
| 117 | sigchain_push_common(remove_tempfiles_on_signal); |
| 118 | atexit(remove_tempfiles_on_exit); |
| 119 | initialized = 1; |
| 120 | } |
| 121 | |
| 122 | volatile_list_add(&tempfile->list, &tempfile_list); |
Jeff King | 2933ebb | 2017-09-05 08:14:47 -0400 | [diff] [blame] | 123 | tempfile->owner = getpid(); |
Jeff King | 2933ebb | 2017-09-05 08:14:47 -0400 | [diff] [blame] | 124 | } |
| 125 | |
Jeff King | b5f4dcb | 2017-09-05 08:14:50 -0400 | [diff] [blame] | 126 | static void deactivate_tempfile(struct tempfile *tempfile) |
| 127 | { |
Jeff King | 77a42b3 | 2022-08-30 15:45:06 -0400 | [diff] [blame] | 128 | volatile_list_del(&tempfile->list); |
Jeff King | 102cf7a | 2017-09-05 08:14:56 -0400 | [diff] [blame] | 129 | strbuf_release(&tempfile->filename); |
René Scharfe | babe2e0 | 2022-08-27 00:46:29 +0200 | [diff] [blame] | 130 | free(tempfile->directory); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 131 | free(tempfile); |
Jeff King | b5f4dcb | 2017-09-05 08:14:50 -0400 | [diff] [blame] | 132 | } |
| 133 | |
Michael Haggerty | 7eba6ce | 2015-08-10 11:47:42 +0200 | [diff] [blame] | 134 | /* Make sure errno contains a meaningful value on error */ |
Taylor Blau | bef0413 | 2020-04-27 10:27:54 -0600 | [diff] [blame] | 135 | struct tempfile *create_tempfile_mode(const char *path, int mode) |
Michael Haggerty | 7eba6ce | 2015-08-10 11:47:42 +0200 | [diff] [blame] | 136 | { |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 137 | struct tempfile *tempfile = new_tempfile(); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 138 | |
| 139 | strbuf_add_absolute_path(&tempfile->filename, path); |
Ben Wijen | 05d1ed6 | 2016-08-22 14:47:55 +0200 | [diff] [blame] | 140 | tempfile->fd = open(tempfile->filename.buf, |
Taylor Blau | bef0413 | 2020-04-27 10:27:54 -0600 | [diff] [blame] | 141 | O_RDWR | O_CREAT | O_EXCL | O_CLOEXEC, mode); |
Ben Wijen | 05d1ed6 | 2016-08-22 14:47:55 +0200 | [diff] [blame] | 142 | if (O_CLOEXEC && tempfile->fd < 0 && errno == EINVAL) |
| 143 | /* Try again w/o O_CLOEXEC: the kernel might not support it */ |
| 144 | tempfile->fd = open(tempfile->filename.buf, |
Taylor Blau | bef0413 | 2020-04-27 10:27:54 -0600 | [diff] [blame] | 145 | O_RDWR | O_CREAT | O_EXCL, mode); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 146 | if (tempfile->fd < 0) { |
Jeff King | b5f4dcb | 2017-09-05 08:14:50 -0400 | [diff] [blame] | 147 | deactivate_tempfile(tempfile); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 148 | return NULL; |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 149 | } |
Jeff King | 2933ebb | 2017-09-05 08:14:47 -0400 | [diff] [blame] | 150 | activate_tempfile(tempfile); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 151 | if (adjust_shared_perm(tempfile->filename.buf)) { |
| 152 | int save_errno = errno; |
| 153 | error("cannot fix permission bits on %s", tempfile->filename.buf); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 154 | delete_tempfile(&tempfile); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 155 | errno = save_errno; |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 156 | return NULL; |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 157 | } |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 158 | |
| 159 | return tempfile; |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 160 | } |
| 161 | |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 162 | struct tempfile *register_tempfile(const char *path) |
Michael Haggerty | 9939715 | 2015-08-10 11:47:44 +0200 | [diff] [blame] | 163 | { |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 164 | struct tempfile *tempfile = new_tempfile(); |
Michael Haggerty | 9939715 | 2015-08-10 11:47:44 +0200 | [diff] [blame] | 165 | strbuf_add_absolute_path(&tempfile->filename, path); |
Jeff King | 2933ebb | 2017-09-05 08:14:47 -0400 | [diff] [blame] | 166 | activate_tempfile(tempfile); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 167 | return tempfile; |
Michael Haggerty | 9939715 | 2015-08-10 11:47:44 +0200 | [diff] [blame] | 168 | } |
| 169 | |
Brandon Williams | ea8ace4 | 2018-02-14 10:59:57 -0800 | [diff] [blame] | 170 | struct tempfile *mks_tempfile_sm(const char *filename_template, int suffixlen, int mode) |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 171 | { |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 172 | struct tempfile *tempfile = new_tempfile(); |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 173 | |
Brandon Williams | ea8ace4 | 2018-02-14 10:59:57 -0800 | [diff] [blame] | 174 | strbuf_add_absolute_path(&tempfile->filename, filename_template); |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 175 | tempfile->fd = git_mkstemps_mode(tempfile->filename.buf, suffixlen, mode); |
| 176 | if (tempfile->fd < 0) { |
Jeff King | b5f4dcb | 2017-09-05 08:14:50 -0400 | [diff] [blame] | 177 | deactivate_tempfile(tempfile); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 178 | return NULL; |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 179 | } |
Jeff King | 2933ebb | 2017-09-05 08:14:47 -0400 | [diff] [blame] | 180 | activate_tempfile(tempfile); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 181 | return tempfile; |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 182 | } |
| 183 | |
Brandon Williams | ea8ace4 | 2018-02-14 10:59:57 -0800 | [diff] [blame] | 184 | struct tempfile *mks_tempfile_tsm(const char *filename_template, int suffixlen, int mode) |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 185 | { |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 186 | struct tempfile *tempfile = new_tempfile(); |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 187 | const char *tmpdir; |
| 188 | |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 189 | tmpdir = getenv("TMPDIR"); |
| 190 | if (!tmpdir) |
| 191 | tmpdir = "/tmp"; |
| 192 | |
Brandon Williams | ea8ace4 | 2018-02-14 10:59:57 -0800 | [diff] [blame] | 193 | strbuf_addf(&tempfile->filename, "%s/%s", tmpdir, filename_template); |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 194 | tempfile->fd = git_mkstemps_mode(tempfile->filename.buf, suffixlen, mode); |
| 195 | if (tempfile->fd < 0) { |
Jeff King | b5f4dcb | 2017-09-05 08:14:50 -0400 | [diff] [blame] | 196 | deactivate_tempfile(tempfile); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 197 | return NULL; |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 198 | } |
Jeff King | 2933ebb | 2017-09-05 08:14:47 -0400 | [diff] [blame] | 199 | activate_tempfile(tempfile); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 200 | return tempfile; |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 201 | } |
| 202 | |
René Scharfe | 2c2db19 | 2022-04-20 22:26:09 +0200 | [diff] [blame] | 203 | struct tempfile *mks_tempfile_dt(const char *directory_template, |
| 204 | const char *filename) |
| 205 | { |
| 206 | struct tempfile *tempfile; |
| 207 | const char *tmpdir; |
| 208 | struct strbuf sb = STRBUF_INIT; |
| 209 | int fd; |
| 210 | size_t directorylen; |
| 211 | |
| 212 | if (!ends_with(directory_template, "XXXXXX")) { |
| 213 | errno = EINVAL; |
| 214 | return NULL; |
| 215 | } |
| 216 | |
| 217 | tmpdir = getenv("TMPDIR"); |
| 218 | if (!tmpdir) |
| 219 | tmpdir = "/tmp"; |
| 220 | |
| 221 | strbuf_addf(&sb, "%s/%s", tmpdir, directory_template); |
| 222 | directorylen = sb.len; |
| 223 | if (!mkdtemp(sb.buf)) { |
| 224 | int orig_errno = errno; |
| 225 | strbuf_release(&sb); |
| 226 | errno = orig_errno; |
| 227 | return NULL; |
| 228 | } |
| 229 | |
| 230 | strbuf_addf(&sb, "/%s", filename); |
| 231 | fd = open(sb.buf, O_CREAT | O_EXCL | O_RDWR, 0600); |
| 232 | if (fd < 0) { |
| 233 | int orig_errno = errno; |
| 234 | strbuf_setlen(&sb, directorylen); |
| 235 | rmdir(sb.buf); |
| 236 | strbuf_release(&sb); |
| 237 | errno = orig_errno; |
| 238 | return NULL; |
| 239 | } |
| 240 | |
| 241 | tempfile = new_tempfile(); |
| 242 | strbuf_swap(&tempfile->filename, &sb); |
René Scharfe | babe2e0 | 2022-08-27 00:46:29 +0200 | [diff] [blame] | 243 | tempfile->directory = xmemdupz(tempfile->filename.buf, directorylen); |
René Scharfe | 2c2db19 | 2022-04-20 22:26:09 +0200 | [diff] [blame] | 244 | tempfile->fd = fd; |
| 245 | activate_tempfile(tempfile); |
| 246 | return tempfile; |
| 247 | } |
| 248 | |
Brandon Williams | ea8ace4 | 2018-02-14 10:59:57 -0800 | [diff] [blame] | 249 | struct tempfile *xmks_tempfile_m(const char *filename_template, int mode) |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 250 | { |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 251 | struct tempfile *tempfile; |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 252 | struct strbuf full_template = STRBUF_INIT; |
| 253 | |
Brandon Williams | ea8ace4 | 2018-02-14 10:59:57 -0800 | [diff] [blame] | 254 | strbuf_add_absolute_path(&full_template, filename_template); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 255 | tempfile = mks_tempfile_m(full_template.buf, mode); |
| 256 | if (!tempfile) |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 257 | die_errno("Unable to create temporary file '%s'", |
| 258 | full_template.buf); |
| 259 | |
| 260 | strbuf_release(&full_template); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 261 | return tempfile; |
Michael Haggerty | 354ab11 | 2015-08-10 11:47:43 +0200 | [diff] [blame] | 262 | } |
| 263 | |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 264 | FILE *fdopen_tempfile(struct tempfile *tempfile, const char *mode) |
| 265 | { |
Jeff King | e6fc267 | 2017-09-05 08:14:36 -0400 | [diff] [blame] | 266 | if (!is_tempfile_active(tempfile)) |
Jeff King | 9b028aa | 2017-09-05 08:14:43 -0400 | [diff] [blame] | 267 | BUG("fdopen_tempfile() called for inactive object"); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 268 | if (tempfile->fp) |
Jeff King | 9b028aa | 2017-09-05 08:14:43 -0400 | [diff] [blame] | 269 | BUG("fdopen_tempfile() called for open object"); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 270 | |
| 271 | tempfile->fp = fdopen(tempfile->fd, mode); |
| 272 | return tempfile->fp; |
| 273 | } |
| 274 | |
| 275 | const char *get_tempfile_path(struct tempfile *tempfile) |
| 276 | { |
Jeff King | e6fc267 | 2017-09-05 08:14:36 -0400 | [diff] [blame] | 277 | if (!is_tempfile_active(tempfile)) |
Jeff King | 9b028aa | 2017-09-05 08:14:43 -0400 | [diff] [blame] | 278 | BUG("get_tempfile_path() called for inactive object"); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 279 | return tempfile->filename.buf; |
| 280 | } |
| 281 | |
| 282 | int get_tempfile_fd(struct tempfile *tempfile) |
| 283 | { |
Jeff King | e6fc267 | 2017-09-05 08:14:36 -0400 | [diff] [blame] | 284 | if (!is_tempfile_active(tempfile)) |
Jeff King | 9b028aa | 2017-09-05 08:14:43 -0400 | [diff] [blame] | 285 | BUG("get_tempfile_fd() called for inactive object"); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 286 | return tempfile->fd; |
| 287 | } |
| 288 | |
| 289 | FILE *get_tempfile_fp(struct tempfile *tempfile) |
| 290 | { |
Jeff King | e6fc267 | 2017-09-05 08:14:36 -0400 | [diff] [blame] | 291 | if (!is_tempfile_active(tempfile)) |
Jeff King | 9b028aa | 2017-09-05 08:14:43 -0400 | [diff] [blame] | 292 | BUG("get_tempfile_fp() called for inactive object"); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 293 | return tempfile->fp; |
| 294 | } |
| 295 | |
Jeff King | 49bd0fc | 2017-09-05 08:14:30 -0400 | [diff] [blame] | 296 | int close_tempfile_gently(struct tempfile *tempfile) |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 297 | { |
Jeff King | f5b4dc7 | 2017-09-05 08:14:40 -0400 | [diff] [blame] | 298 | int fd; |
| 299 | FILE *fp; |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 300 | int err; |
| 301 | |
Jeff King | f5b4dc7 | 2017-09-05 08:14:40 -0400 | [diff] [blame] | 302 | if (!is_tempfile_active(tempfile) || tempfile->fd < 0) |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 303 | return 0; |
| 304 | |
Jeff King | f5b4dc7 | 2017-09-05 08:14:40 -0400 | [diff] [blame] | 305 | fd = tempfile->fd; |
| 306 | fp = tempfile->fp; |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 307 | tempfile->fd = -1; |
| 308 | if (fp) { |
| 309 | tempfile->fp = NULL; |
Jeff King | 7e8c935 | 2017-02-17 16:07:49 -0500 | [diff] [blame] | 310 | if (ferror(fp)) { |
| 311 | err = -1; |
| 312 | if (!fclose(fp)) |
| 313 | errno = EIO; |
| 314 | } else { |
| 315 | err = fclose(fp); |
| 316 | } |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 317 | } else { |
| 318 | err = close(fd); |
| 319 | } |
| 320 | |
Jeff King | 49bd0fc | 2017-09-05 08:14:30 -0400 | [diff] [blame] | 321 | return err ? -1 : 0; |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | int reopen_tempfile(struct tempfile *tempfile) |
| 325 | { |
Jeff King | e6fc267 | 2017-09-05 08:14:36 -0400 | [diff] [blame] | 326 | if (!is_tempfile_active(tempfile)) |
Jeff King | 9b028aa | 2017-09-05 08:14:43 -0400 | [diff] [blame] | 327 | BUG("reopen_tempfile called for an inactive object"); |
Jeff King | f5b4dc7 | 2017-09-05 08:14:40 -0400 | [diff] [blame] | 328 | if (0 <= tempfile->fd) |
Jeff King | 9b028aa | 2017-09-05 08:14:43 -0400 | [diff] [blame] | 329 | BUG("reopen_tempfile called for an open object"); |
Jeff King | 6c003d6 | 2018-09-04 19:36:43 -0400 | [diff] [blame] | 330 | tempfile->fd = open(tempfile->filename.buf, O_WRONLY|O_TRUNC); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 331 | return tempfile->fd; |
| 332 | } |
| 333 | |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 334 | int rename_tempfile(struct tempfile **tempfile_p, const char *path) |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 335 | { |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 336 | struct tempfile *tempfile = *tempfile_p; |
| 337 | |
Jeff King | e6fc267 | 2017-09-05 08:14:36 -0400 | [diff] [blame] | 338 | if (!is_tempfile_active(tempfile)) |
Jeff King | 9b028aa | 2017-09-05 08:14:43 -0400 | [diff] [blame] | 339 | BUG("rename_tempfile called for inactive object"); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 340 | |
Jeff King | 49bd0fc | 2017-09-05 08:14:30 -0400 | [diff] [blame] | 341 | if (close_tempfile_gently(tempfile)) { |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 342 | delete_tempfile(tempfile_p); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 343 | return -1; |
Jeff King | 49bd0fc | 2017-09-05 08:14:30 -0400 | [diff] [blame] | 344 | } |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 345 | |
| 346 | if (rename(tempfile->filename.buf, path)) { |
| 347 | int save_errno = errno; |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 348 | delete_tempfile(tempfile_p); |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 349 | errno = save_errno; |
| 350 | return -1; |
| 351 | } |
| 352 | |
Jeff King | b5f4dcb | 2017-09-05 08:14:50 -0400 | [diff] [blame] | 353 | deactivate_tempfile(tempfile); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 354 | *tempfile_p = NULL; |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 355 | return 0; |
| 356 | } |
| 357 | |
Patrick Steinhardt | 4ae540d | 2024-03-07 14:10:31 +0100 | [diff] [blame] | 358 | int delete_tempfile(struct tempfile **tempfile_p) |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 359 | { |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 360 | struct tempfile *tempfile = *tempfile_p; |
Patrick Steinhardt | 4ae540d | 2024-03-07 14:10:31 +0100 | [diff] [blame] | 361 | int err = 0; |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 362 | |
Jeff King | e6fc267 | 2017-09-05 08:14:36 -0400 | [diff] [blame] | 363 | if (!is_tempfile_active(tempfile)) |
Patrick Steinhardt | 4ae540d | 2024-03-07 14:10:31 +0100 | [diff] [blame] | 364 | return 0; |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 365 | |
Patrick Steinhardt | 4ae540d | 2024-03-07 14:10:31 +0100 | [diff] [blame] | 366 | err |= close_tempfile_gently(tempfile); |
| 367 | err |= unlink_or_warn(tempfile->filename.buf); |
| 368 | err |= remove_template_directory(tempfile, 0); |
Jeff King | b5f4dcb | 2017-09-05 08:14:50 -0400 | [diff] [blame] | 369 | deactivate_tempfile(tempfile); |
Jeff King | 076aa2c | 2017-09-05 08:15:08 -0400 | [diff] [blame] | 370 | *tempfile_p = NULL; |
Patrick Steinhardt | 4ae540d | 2024-03-07 14:10:31 +0100 | [diff] [blame] | 371 | |
| 372 | return err ? -1 : 0; |
Michael Haggerty | 1a9d15d | 2015-08-10 11:47:41 +0200 | [diff] [blame] | 373 | } |