Honor the new omit_dir_times var.
[rsync/rsync.git] / cleanup.c
1 /* -*- c-file-style: "linux" -*-
2
3    Copyright (C) 1996-2000 by Andrew Tridgell
4    Copyright (C) Paul Mackerras 1996
5    Copyright (C) 2002 by Martin Pool
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "rsync.h"
23
24 extern int io_error;
25 extern int keep_partial;
26 extern int log_got_error;
27 extern char *partial_dir;
28
29 /**
30  * Close all open sockets and files, allowing a (somewhat) graceful
31  * shutdown() of socket connections.  This eliminates the abortive
32  * TCP RST sent by a Winsock-based system when the close() occurs.
33  **/
34 void close_all(void)
35 {
36 #ifdef SHUTDOWN_ALL_SOCKETS
37         int max_fd;
38         int fd;
39         int ret;
40         struct stat st;
41
42         max_fd = sysconf(_SC_OPEN_MAX) - 1;
43         for (fd = max_fd; fd >= 0; fd--) {
44                 ret = fstat(fd,&st);
45                 if (fstat(fd,&st) == 0) {
46                         if (is_a_socket(fd))
47                                 ret = shutdown(fd, 2);
48                         ret = close(fd);
49                 }
50         }
51 #endif
52 }
53
54 /**
55  * @file cleanup.c
56  *
57  * Code for handling interrupted transfers.  Depending on the @c
58  * --partial option, we may either delete the temporary file, or go
59  * ahead and overwrite the destination.  This second behaviour only
60  * occurs if we've sent literal data and therefore hopefully made
61  * progress on the transfer.
62  **/
63
64 /**
65  * Set to True once literal data has been sent across the link for the
66  * current file. (????)
67  *
68  * Handling the cleanup when a transfer is interrupted is tricky when
69  * --partial is selected.  We need to ensure that the partial file is
70  * kept if any real data has been transferred.
71  **/
72 int cleanup_got_literal = 0;
73
74 static char *cleanup_fname;
75 static char *cleanup_new_fname;
76 static struct file_struct *cleanup_file;
77 static int cleanup_fd_r, cleanup_fd_w;
78 static pid_t cleanup_pid = 0;
79
80 pid_t cleanup_child_pid = -1;
81
82 /**
83  * Eventually calls exit(), passing @p code, therefore does not return.
84  *
85  * @param code one of the RERR_* codes from errcode.h.
86  **/
87 void _exit_cleanup(int code, const char *file, int line)
88 {
89         int ocode = code;
90         static int inside_cleanup = 0;
91
92         if (inside_cleanup > 10) {
93                 /* prevent the occasional infinite recursion */
94                 return;
95         }
96         inside_cleanup++;
97
98         signal(SIGUSR1, SIG_IGN);
99         signal(SIGUSR2, SIG_IGN);
100
101         if (verbose > 3) {
102                 rprintf(FINFO,"_exit_cleanup(code=%d, file=%s, line=%d): entered\n",
103                         code, file, line);
104         }
105
106         if (cleanup_child_pid != -1) {
107                 int status;
108                 if (waitpid(cleanup_child_pid, &status, WNOHANG) == cleanup_child_pid) {
109                         status = WEXITSTATUS(status);
110                         if (status > code)
111                                 code = status;
112                 }
113         }
114
115         if (cleanup_got_literal && cleanup_fname && keep_partial
116             && handle_partial_dir(cleanup_new_fname, PDIR_CREATE)) {
117                 char *fname = cleanup_fname;
118                 cleanup_fname = NULL;
119                 if (cleanup_fd_r != -1)
120                         close(cleanup_fd_r);
121                 if (cleanup_fd_w != -1) {
122                         flush_write_file(cleanup_fd_w);
123                         close(cleanup_fd_w);
124                 }
125                 finish_transfer(cleanup_new_fname, fname, cleanup_file, 0,
126                                 !partial_dir);
127         }
128         io_flush(FULL_FLUSH);
129         if (cleanup_fname)
130                 do_unlink(cleanup_fname);
131         if (code)
132                 kill_all(SIGUSR1);
133         if (cleanup_pid && cleanup_pid == getpid()) {
134                 char *pidf = lp_pid_file();
135                 if (pidf && *pidf)
136                         unlink(lp_pid_file());
137         }
138
139         if (code == 0) {
140                 if ((io_error & ~IOERR_VANISHED) || log_got_error)
141                         code = RERR_PARTIAL;
142                 else if (io_error)
143                         code = RERR_VANISHED;
144         }
145
146         if (code)
147                 log_exit(code, file, line);
148
149         if (verbose > 2) {
150                 rprintf(FINFO,"_exit_cleanup(code=%d, file=%s, line=%d): about to call exit(%d)\n",
151                         ocode, file, line, code);
152         }
153
154         close_all();
155         exit(code);
156 }
157
158 void cleanup_disable(void)
159 {
160         cleanup_fname = NULL;
161         cleanup_got_literal = 0;
162 }
163
164
165 void cleanup_set(char *fnametmp, char *fname, struct file_struct *file,
166                  int fd_r, int fd_w)
167 {
168         cleanup_fname = fnametmp;
169         cleanup_new_fname = fname;
170         cleanup_file = file;
171         cleanup_fd_r = fd_r;
172         cleanup_fd_w = fd_w;
173 }
174
175 void cleanup_set_pid(pid_t pid)
176 {
177         cleanup_pid = pid;
178 }