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 * 17 * - Uninitialized. In this state the object's `on_list` field must be 18 * zero but the rest of its contents need not be initialized. As 19 * soon as the object is used in any way, it is irrevocably 20 * registered in `tempfile_list`, and `on_list` is set. 21 * 22 * - Active, file open (after `create_tempfile()` or 23 * `reopen_tempfile()`). In this state: 24 * 25 * - the temporary file exists 26 * - `active` is set 27 * - `filename` holds the filename of the temporary file 28 * - `fd` holds a file descriptor open for writing to it 29 * - `fp` holds a pointer to an open `FILE` object if and only if 30 * `fdopen_tempfile()` has been called on the object 31 * - `owner` holds the PID of the process that created the file 32 * 33 * - Active, file closed (after successful `close_tempfile()`). Same 34 * as the previous state, except that the temporary file is closed, 35 * `fd` is -1, and `fp` is `NULL`. 36 * 37 * - Inactive (after `delete_tempfile()`, `rename_tempfile()`, a 38 * failed attempt to create a temporary file, or a failed 39 * `close_tempfile()`). In this state: 40 * 41 * - `active` is unset 42 * - `filename` is empty (usually, though there are transitory 43 * states in which this condition doesn't hold). Client code should 44 * *not* rely on the filename being empty in this state. 45 * - `fd` is -1 and `fp` is `NULL` 46 * - the object is left registered in the `tempfile_list`, and 47 * `on_list` is set. 48 * 49 * A temporary file is owned by the process that created it. The 50 * `tempfile` has an `owner` field that records the owner's PID. This 51 * field is used to prevent a forked process from deleting a temporary 52 * file created by its parent. 53 */ 54 55#include"cache.h" 56#include"tempfile.h" 57#include"sigchain.h" 58 59static struct tempfile *volatile tempfile_list; 60 61static voidremove_tempfiles(int skip_fclose) 62{ 63 pid_t me =getpid(); 64 65while(tempfile_list) { 66if(tempfile_list->owner == me) { 67/* fclose() is not safe to call in a signal handler */ 68if(skip_fclose) 69 tempfile_list->fp = NULL; 70delete_tempfile(tempfile_list); 71} 72 tempfile_list = tempfile_list->next; 73} 74} 75 76static voidremove_tempfiles_on_exit(void) 77{ 78remove_tempfiles(0); 79} 80 81static voidremove_tempfiles_on_signal(int signo) 82{ 83remove_tempfiles(1); 84sigchain_pop(signo); 85raise(signo); 86} 87 88/* 89 * Initialize *tempfile if necessary and add it to tempfile_list. 90 */ 91static voidprepare_tempfile_object(struct tempfile *tempfile) 92{ 93if(!tempfile_list) { 94/* One-time initialization */ 95sigchain_push_common(remove_tempfiles_on_signal); 96atexit(remove_tempfiles_on_exit); 97} 98 99if(tempfile->active) 100die("BUG: prepare_tempfile_object called for active object"); 101if(!tempfile->on_list) { 102/* Initialize *tempfile and add it to tempfile_list: */ 103 tempfile->fd = -1; 104 tempfile->fp = NULL; 105 tempfile->active =0; 106 tempfile->owner =0; 107strbuf_init(&tempfile->filename,0); 108 tempfile->next = tempfile_list; 109 tempfile_list = tempfile; 110 tempfile->on_list =1; 111}else if(tempfile->filename.len) { 112/* This shouldn't happen, but better safe than sorry. */ 113die("BUG: prepare_tempfile_object called for improperly-reset object"); 114} 115} 116 117/* Make sure errno contains a meaningful value on error */ 118intcreate_tempfile(struct tempfile *tempfile,const char*path) 119{ 120prepare_tempfile_object(tempfile); 121 122strbuf_add_absolute_path(&tempfile->filename, path); 123 tempfile->fd =open(tempfile->filename.buf, 124 O_RDWR | O_CREAT | O_EXCL | O_CLOEXEC,0666); 125if(O_CLOEXEC && tempfile->fd <0&& errno == EINVAL) 126/* Try again w/o O_CLOEXEC: the kernel might not support it */ 127 tempfile->fd =open(tempfile->filename.buf, 128 O_RDWR | O_CREAT | O_EXCL,0666); 129if(tempfile->fd <0) { 130strbuf_reset(&tempfile->filename); 131return-1; 132} 133 tempfile->owner =getpid(); 134 tempfile->active =1; 135if(adjust_shared_perm(tempfile->filename.buf)) { 136int save_errno = errno; 137error("cannot fix permission bits on%s", tempfile->filename.buf); 138delete_tempfile(tempfile); 139 errno = save_errno; 140return-1; 141} 142return tempfile->fd; 143} 144 145voidregister_tempfile(struct tempfile *tempfile,const char*path) 146{ 147prepare_tempfile_object(tempfile); 148strbuf_add_absolute_path(&tempfile->filename, path); 149 tempfile->owner =getpid(); 150 tempfile->active =1; 151} 152 153intmks_tempfile_sm(struct tempfile *tempfile, 154const char*template,int suffixlen,int mode) 155{ 156prepare_tempfile_object(tempfile); 157 158strbuf_add_absolute_path(&tempfile->filename,template); 159 tempfile->fd =git_mkstemps_mode(tempfile->filename.buf, suffixlen, mode); 160if(tempfile->fd <0) { 161strbuf_reset(&tempfile->filename); 162return-1; 163} 164 tempfile->owner =getpid(); 165 tempfile->active =1; 166return tempfile->fd; 167} 168 169intmks_tempfile_tsm(struct tempfile *tempfile, 170const char*template,int suffixlen,int mode) 171{ 172const char*tmpdir; 173 174prepare_tempfile_object(tempfile); 175 176 tmpdir =getenv("TMPDIR"); 177if(!tmpdir) 178 tmpdir ="/tmp"; 179 180strbuf_addf(&tempfile->filename,"%s/%s", tmpdir,template); 181 tempfile->fd =git_mkstemps_mode(tempfile->filename.buf, suffixlen, mode); 182if(tempfile->fd <0) { 183strbuf_reset(&tempfile->filename); 184return-1; 185} 186 tempfile->owner =getpid(); 187 tempfile->active =1; 188return tempfile->fd; 189} 190 191intxmks_tempfile_m(struct tempfile *tempfile,const char*template,int mode) 192{ 193int fd; 194struct strbuf full_template = STRBUF_INIT; 195 196strbuf_add_absolute_path(&full_template,template); 197 fd =mks_tempfile_m(tempfile, full_template.buf, mode); 198if(fd <0) 199die_errno("Unable to create temporary file '%s'", 200 full_template.buf); 201 202strbuf_release(&full_template); 203return fd; 204} 205 206FILE*fdopen_tempfile(struct tempfile *tempfile,const char*mode) 207{ 208if(!tempfile->active) 209die("BUG: fdopen_tempfile() called for inactive object"); 210if(tempfile->fp) 211die("BUG: fdopen_tempfile() called for open object"); 212 213 tempfile->fp =fdopen(tempfile->fd, mode); 214return tempfile->fp; 215} 216 217const char*get_tempfile_path(struct tempfile *tempfile) 218{ 219if(!tempfile->active) 220die("BUG: get_tempfile_path() called for inactive object"); 221return tempfile->filename.buf; 222} 223 224intget_tempfile_fd(struct tempfile *tempfile) 225{ 226if(!tempfile->active) 227die("BUG: get_tempfile_fd() called for inactive object"); 228return tempfile->fd; 229} 230 231FILE*get_tempfile_fp(struct tempfile *tempfile) 232{ 233if(!tempfile->active) 234die("BUG: get_tempfile_fp() called for inactive object"); 235return tempfile->fp; 236} 237 238intclose_tempfile(struct tempfile *tempfile) 239{ 240int fd = tempfile->fd; 241FILE*fp = tempfile->fp; 242int err; 243 244if(fd <0) 245return0; 246 247 tempfile->fd = -1; 248if(fp) { 249 tempfile->fp = NULL; 250 251/* 252 * Note: no short-circuiting here; we want to fclose() 253 * in any case! 254 */ 255 err =ferror(fp) |fclose(fp); 256}else{ 257 err =close(fd); 258} 259 260if(err) { 261int save_errno = errno; 262delete_tempfile(tempfile); 263 errno = save_errno; 264return-1; 265} 266 267return0; 268} 269 270intreopen_tempfile(struct tempfile *tempfile) 271{ 272if(0<= tempfile->fd) 273die("BUG: reopen_tempfile called for an open object"); 274if(!tempfile->active) 275die("BUG: reopen_tempfile called for an inactive object"); 276 tempfile->fd =open(tempfile->filename.buf, O_WRONLY); 277return tempfile->fd; 278} 279 280intrename_tempfile(struct tempfile *tempfile,const char*path) 281{ 282if(!tempfile->active) 283die("BUG: rename_tempfile called for inactive object"); 284 285if(close_tempfile(tempfile)) 286return-1; 287 288if(rename(tempfile->filename.buf, path)) { 289int save_errno = errno; 290delete_tempfile(tempfile); 291 errno = save_errno; 292return-1; 293} 294 295 tempfile->active =0; 296strbuf_reset(&tempfile->filename); 297return0; 298} 299 300voiddelete_tempfile(struct tempfile *tempfile) 301{ 302if(!tempfile->active) 303return; 304 305if(!close_tempfile(tempfile)) { 306unlink_or_warn(tempfile->filename.buf); 307 tempfile->active =0; 308strbuf_reset(&tempfile->filename); 309} 310}