Improve iconvbufs() to do more buffer size checks.
[rsync.git] / cleanup.c
1 /*
2  * End-of-run cleanup routines.
3  *
4  * Copyright (C) 1996-2000 Andrew Tridgell
5  * Copyright (C) 1996 Paul Mackerras
6  * Copyright (C) 2002 Martin Pool
7  * Copyright (C) 2003-2013 Wayne Davison
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, visit the http://fsf.org website.
21  */
22
23 #include "rsync.h"
24
25 extern int am_server;
26 extern int am_daemon;
27 extern int am_receiver;
28 extern int io_error;
29 extern int keep_partial;
30 extern int got_xfer_error;
31 extern int protocol_version;
32 extern int output_needs_newline;
33 extern char *partial_dir;
34 extern char *logfile_name;
35
36 BOOL shutting_down = False;
37
38 #ifdef HAVE_SIGACTION
39 static struct sigaction sigact;
40 #endif
41
42 /**
43  * Close all open sockets and files, allowing a (somewhat) graceful
44  * shutdown() of socket connections.  This eliminates the abortive
45  * TCP RST sent by a Winsock-based system when the close() occurs.
46  **/
47 void close_all(void)
48 {
49 #ifdef SHUTDOWN_ALL_SOCKETS
50         int max_fd;
51         int fd;
52         int ret;
53         STRUCT_STAT st;
54
55         max_fd = sysconf(_SC_OPEN_MAX) - 1;
56         for (fd = max_fd; fd >= 0; fd--) {
57                 if ((ret = do_fstat(fd, &st)) == 0) {
58                         if (is_a_socket(fd))
59                                 ret = shutdown(fd, 2);
60                         ret = close(fd);
61                 }
62         }
63 #endif
64 }
65
66 /**
67  * @file cleanup.c
68  *
69  * Code for handling interrupted transfers.  Depending on the @c
70  * --partial option, we may either delete the temporary file, or go
71  * ahead and overwrite the destination.  This second behaviour only
72  * occurs if we've sent literal data and therefore hopefully made
73  * progress on the transfer.
74  **/
75
76 /**
77  * Set to True once literal data has been sent across the link for the
78  * current file. (????)
79  *
80  * Handling the cleanup when a transfer is interrupted is tricky when
81  * --partial is selected.  We need to ensure that the partial file is
82  * kept if any real data has been transferred.
83  **/
84 int cleanup_got_literal = 0;
85
86 static const char *cleanup_fname;
87 static const char *cleanup_new_fname;
88 static struct file_struct *cleanup_file;
89 static int cleanup_fd_r, cleanup_fd_w;
90 static pid_t cleanup_pid = 0;
91
92 pid_t cleanup_child_pid = -1;
93
94 /**
95  * Eventually calls exit(), passing @p code, therefore does not return.
96  *
97  * @param code one of the RERR_* codes from errcode.h.
98  **/
99 NORETURN void _exit_cleanup(int code, const char *file, int line)
100 {
101         static int switch_step = 0;
102         static int exit_code = 0, exit_line = 0;
103         static const char *exit_file = NULL;
104         static int unmodified_code = 0;
105
106         SIGACTION(SIGUSR1, SIG_IGN);
107         SIGACTION(SIGUSR2, SIG_IGN);
108
109         if (exit_code) { /* Preserve first exit info when recursing. */
110                 code = exit_code;
111                 file = exit_file;
112                 line = exit_line;
113         }
114
115         /* If this is the exit at the end of the run, the server side
116          * should not attempt to output a message (see log_exit()). */
117         if (am_server && code == 0)
118                 am_server = 2;
119
120         /* Some of our actions might cause a recursive call back here, so we
121          * keep track of where we are in the cleanup and never repeat a step. */
122         switch (switch_step) {
123 #include "case_N.h" /* case 0: */
124                 switch_step++;
125
126                 exit_code = unmodified_code = code;
127                 exit_file = file;
128                 exit_line = line;
129
130                 if (output_needs_newline) {
131                         fputc('\n', stdout);
132                         output_needs_newline = 0;
133                 }
134
135                 if (DEBUG_GTE(EXIT, 2)) {
136                         rprintf(FINFO,
137                                 "[%s] _exit_cleanup(code=%d, file=%s, line=%d): entered\n",
138                                 who_am_i(), code, file, line);
139                 }
140
141                 /* FALLTHROUGH */
142 #include "case_N.h"
143                 switch_step++;
144
145                 if (cleanup_child_pid != -1) {
146                         int status;
147                         int pid = wait_process(cleanup_child_pid, &status, WNOHANG);
148                         if (pid == cleanup_child_pid) {
149                                 status = WEXITSTATUS(status);
150                                 if (status > code)
151                                         code = exit_code = status;
152                         }
153                 }
154
155                 /* FALLTHROUGH */
156 #include "case_N.h"
157                 switch_step++;
158
159                 if (cleanup_got_literal && cleanup_fname && cleanup_new_fname
160                  && keep_partial && handle_partial_dir(cleanup_new_fname, PDIR_CREATE)) {
161                         int tweak_modtime = 0;
162                         const char *fname = cleanup_fname;
163                         cleanup_fname = NULL;
164                         if (cleanup_fd_r != -1)
165                                 close(cleanup_fd_r);
166                         if (cleanup_fd_w != -1) {
167                                 flush_write_file(cleanup_fd_w);
168                                 close(cleanup_fd_w);
169                         }
170                         if (!partial_dir) {
171                             /* We don't want to leave a partial file with a modern time or it
172                              * could be skipped via --update.  Setting the time to something
173                              * really old also helps it to stand out as unfinished in an ls. */
174                             tweak_modtime = 1;
175                             cleanup_file->modtime = 0;
176                         }
177                         finish_transfer(cleanup_new_fname, fname, NULL, NULL,
178                                         cleanup_file, tweak_modtime, !partial_dir);
179                 }
180
181                 /* FALLTHROUGH */
182 #include "case_N.h"
183                 switch_step++;
184
185                 if (!code || am_server || am_receiver)
186                         io_flush(FULL_FLUSH);
187
188                 /* FALLTHROUGH */
189 #include "case_N.h"
190                 switch_step++;
191
192                 if (cleanup_fname)
193                         do_unlink(cleanup_fname);
194                 if (code)
195                         kill_all(SIGUSR1);
196                 if (cleanup_pid && cleanup_pid == getpid()) {
197                         char *pidf = lp_pid_file();
198                         if (pidf && *pidf)
199                                 unlink(lp_pid_file());
200                 }
201
202                 if (code == 0) {
203                         if (io_error & IOERR_DEL_LIMIT)
204                                 code = exit_code = RERR_DEL_LIMIT;
205                         if (io_error & IOERR_VANISHED)
206                                 code = exit_code = RERR_VANISHED;
207                         if (io_error & IOERR_GENERAL || got_xfer_error)
208                                 code = exit_code = RERR_PARTIAL;
209                 }
210
211                 /* If line < 0, this exit is after a MSG_ERROR_EXIT event, so
212                  * we don't want to output a duplicate error. */
213                 if ((code && line > 0)
214                  || am_daemon || (logfile_name && (am_server || !INFO_GTE(STATS, 1))))
215                         log_exit(code, file, line);
216
217                 /* FALLTHROUGH */
218 #include "case_N.h"
219                 switch_step++;
220
221                 if (DEBUG_GTE(EXIT, 1)) {
222                         rprintf(FINFO,
223                                 "[%s] _exit_cleanup(code=%d, file=%s, line=%d): "
224                                 "about to call exit(%d)\n",
225                                 who_am_i(), unmodified_code, file, line, code);
226                 }
227
228                 /* FALLTHROUGH */
229 #include "case_N.h"
230                 switch_step++;
231
232                 if (exit_code && exit_code != RERR_SOCKETIO && exit_code != RERR_STREAMIO && exit_code != RERR_SIGNAL1
233                  && exit_code != RERR_TIMEOUT && !shutting_down && (protocol_version >= 31 || am_receiver)) {
234                         if (line > 0) {
235                                 if (DEBUG_GTE(EXIT, 3)) {
236                                         rprintf(FINFO, "[%s] sending MSG_ERROR_EXIT with exit_code %d\n",
237                                                 who_am_i(), exit_code);
238                                 }
239                                 send_msg_int(MSG_ERROR_EXIT, exit_code);
240                         }
241                         noop_io_until_death();
242                 }
243
244                 /* FALLTHROUGH */
245 #include "case_N.h"
246                 switch_step++;
247
248                 if (am_server && code)
249                         msleep(100);
250                 close_all();
251
252                 /* FALLTHROUGH */
253         default:
254                 break;
255         }
256
257         exit(code);
258 }
259
260 void cleanup_disable(void)
261 {
262         cleanup_fname = cleanup_new_fname = NULL;
263         cleanup_got_literal = 0;
264 }
265
266
267 void cleanup_set(const char *fnametmp, const char *fname, struct file_struct *file,
268                  int fd_r, int fd_w)
269 {
270         cleanup_fname = fnametmp;
271         cleanup_new_fname = fname; /* can be NULL on a partial-dir failure */
272         cleanup_file = file;
273         cleanup_fd_r = fd_r;
274         cleanup_fd_w = fd_w;
275 }
276
277 void cleanup_set_pid(pid_t pid)
278 {
279         cleanup_pid = pid;
280 }