Prefer send_msg_int() over send_msg() for better debug output.
[rsync/rsync.git] / cleanup.c
CommitLineData
0f78b815
WD
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
b3bf9b9d 7 * Copyright (C) 2003-2009 Wayne Davison
0f78b815
WD
8 *
9 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
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.
0f78b815
WD
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 *
e7c67065 19 * You should have received a copy of the GNU General Public License along
4fd842f9 20 * with this program; if not, visit the http://fsf.org website.
0f78b815 21 */
2f03f956
AT
22
23#include "rsync.h"
24
1cfcb8af
WD
25extern int am_server;
26extern int am_daemon;
f9185203
WD
27extern int am_sender;
28extern int am_generator;
6e86c951
WD
29extern int io_error;
30extern int keep_partial;
3f0211b6 31extern int got_xfer_error;
f9185203 32extern int protocol_version;
951e826b 33extern int output_needs_newline;
d45898df 34extern char *partial_dir;
1cfcb8af 35extern char *logfile_name;
6e86c951 36
44e604f4 37#ifdef HAVE_SIGACTION
2b28968d
WD
38static struct sigaction sigact;
39#endif
40
9f639210
DD
41/**
42 * Close all open sockets and files, allowing a (somewhat) graceful
43 * shutdown() of socket connections. This eliminates the abortive
44 * TCP RST sent by a Winsock-based system when the close() occurs.
45 **/
18d6b679 46void close_all(void)
9f639210
DD
47{
48#ifdef SHUTDOWN_ALL_SOCKETS
49 int max_fd;
50 int fd;
51 int ret;
58fef0ac 52 STRUCT_STAT st;
9f639210
DD
53
54 max_fd = sysconf(_SC_OPEN_MAX) - 1;
55 for (fd = max_fd; fd >= 0; fd--) {
58fef0ac 56 if ((ret = do_fstat(fd, &st)) == 0) {
8186ae6b 57 if (is_a_socket(fd))
9f639210 58 ret = shutdown(fd, 2);
9f639210
DD
59 ret = close(fd);
60 }
61 }
62#endif
63}
64
e0fde757
MP
65/**
66 * @file cleanup.c
67 *
68 * Code for handling interrupted transfers. Depending on the @c
69 * --partial option, we may either delete the temporary file, or go
70 * ahead and overwrite the destination. This second behaviour only
71 * occurs if we've sent literal data and therefore hopefully made
72 * progress on the transfer.
73 **/
74
75/**
76 * Set to True once literal data has been sent across the link for the
77 * current file. (????)
78 *
79 * Handling the cleanup when a transfer is interrupted is tricky when
80 * --partial is selected. We need to ensure that the partial file is
81 * kept if any real data has been transferred.
82 **/
8186ae6b 83int cleanup_got_literal = 0;
2f03f956 84
93204cca
WD
85static const char *cleanup_fname;
86static const char *cleanup_new_fname;
2f03f956 87static struct file_struct *cleanup_file;
b6609caf 88static int cleanup_fd_r, cleanup_fd_w;
65fc84b3 89static pid_t cleanup_pid = 0;
2f03f956 90
19b27a48 91pid_t cleanup_child_pid = -1;
ef1aa910 92
e0fde757 93/**
b0f451eb 94 * Eventually calls exit(), passing @p code, therefore does not return.
e0fde757
MP
95 *
96 * @param code one of the RERR_* codes from errcode.h.
97 **/
b1b54199 98NORETURN void _exit_cleanup(int code, const char *file, int line)
2f03f956 99{
154c345d 100 static int cleanup_step = 0;
9270e88d
WD
101 static int exit_code = 0, exit_line = 0;
102 static const char *exit_file = NULL;
154c345d 103 static int unmodified_code = 0;
2f03f956 104
2b28968d
WD
105 SIGACTION(SIGUSR1, SIG_IGN);
106 SIGACTION(SIGUSR2, SIG_IGN);
2f03f956 107
9270e88d 108 if (exit_code) { /* Preserve first exit info when recursing. */
154c345d 109 code = exit_code;
9270e88d
WD
110 file = exit_file;
111 line = exit_line;
112 }
b1b54199 113
969cdffb 114 /* If this is the exit at the end of the run, the server side
37077bd3 115 * should not attempt to output a message (see log_exit()). */
969cdffb
WD
116 if (am_server && code == 0)
117 am_server = 2;
118
154c345d
WD
119 /* Some of our actions might cause a recursive call back here, so we
120 * keep track of where we are in the cleanup and never repeat a step. */
121 switch (cleanup_step) {
e3794138 122#include "case_N.h" /* case 0: cleanup_step++; */
154c345d
WD
123
124 exit_code = unmodified_code = code;
9270e88d
WD
125 exit_file = file;
126 exit_line = line;
9098bbf3 127
951e826b 128 if (output_needs_newline) {
bb4e4d88 129 fputc('\n', stdout);
951e826b 130 output_needs_newline = 0;
bb4e4d88
WD
131 }
132
951e826b 133 if (DEBUG_GTE(EXIT, 2)) {
154c345d
WD
134 rprintf(FINFO,
135 "_exit_cleanup(code=%d, file=%s, line=%d): entered\n",
136 code, file, line);
19b27a48 137 }
19b27a48 138
154c345d 139 /* FALLTHROUGH */
e3794138 140#include "case_N.h"
154c345d
WD
141
142 if (cleanup_child_pid != -1) {
143 int status;
144 int pid = wait_process(cleanup_child_pid, &status, WNOHANG);
145 if (pid == cleanup_child_pid) {
146 status = WEXITSTATUS(status);
147 if (status > code)
148 code = exit_code = status;
149 }
09e2bbce 150 }
9b73d1c0 151
154c345d 152 /* FALLTHROUGH */
e3794138 153#include "case_N.h"
154c345d
WD
154
155 if (cleanup_got_literal && cleanup_fname && cleanup_new_fname
156 && keep_partial && handle_partial_dir(cleanup_new_fname, PDIR_CREATE)) {
93204cca 157 const char *fname = cleanup_fname;
154c345d
WD
158 cleanup_fname = NULL;
159 if (cleanup_fd_r != -1)
160 close(cleanup_fd_r);
161 if (cleanup_fd_w != -1) {
162 flush_write_file(cleanup_fd_w);
163 close(cleanup_fd_w);
164 }
16edf865 165 finish_transfer(cleanup_new_fname, fname, NULL, NULL,
154c345d
WD
166 cleanup_file, 0, !partial_dir);
167 }
168
169 /* FALLTHROUGH */
e3794138 170#include "case_N.h"
154c345d 171
f9185203
WD
172 if (!code || am_server || (!am_sender && !am_generator))
173 io_flush(FULL_FLUSH);
154c345d
WD
174
175 /* FALLTHROUGH */
e3794138 176#include "case_N.h"
154c345d
WD
177
178 if (cleanup_fname)
179 do_unlink(cleanup_fname);
180 if (code)
181 kill_all(SIGUSR1);
182 if (cleanup_pid && cleanup_pid == getpid()) {
183 char *pidf = lp_pid_file();
184 if (pidf && *pidf)
185 unlink(lp_pid_file());
186 }
187
188 if (code == 0) {
189 if (io_error & IOERR_DEL_LIMIT)
190 code = exit_code = RERR_DEL_LIMIT;
191 if (io_error & IOERR_VANISHED)
192 code = exit_code = RERR_VANISHED;
3f0211b6 193 if (io_error & IOERR_GENERAL || got_xfer_error)
154c345d
WD
194 code = exit_code = RERR_PARTIAL;
195 }
196
304d7b58
WD
197 /* If line < 0, this exit is after a MSG_ERROR_EXIT event, so
198 * we don't want to output a duplicate error. */
199 if ((code && line > 0)
f9185203 200 || am_daemon || (logfile_name && (am_server || !INFO_GTE(STATS, 1))))
154c345d
WD
201 log_exit(code, file, line);
202
203 /* FALLTHROUGH */
e3794138 204#include "case_N.h"
154c345d 205
951e826b 206 if (DEBUG_GTE(EXIT, 1)) {
154c345d
WD
207 rprintf(FINFO,
208 "_exit_cleanup(code=%d, file=%s, line=%d): "
209 "about to call exit(%d)\n",
210 unmodified_code, file, line, code);
211 }
212
304d7b58
WD
213 /* FALLTHROUGH */
214#include "case_N.h"
215
216 if (exit_code && exit_code != RERR_STREAMIO && exit_code != RERR_SIGNAL1
217 && (protocol_version >= 31 || am_server || (!am_sender && !am_generator))) {
218 if (line > 0)
219 send_msg_int(MSG_ERROR_EXIT, exit_code);
220 noop_io_until_death();
221 }
222
154c345d 223 /* FALLTHROUGH */
e3794138 224#include "case_N.h"
ff81e809 225
377d22ab
WD
226 if (am_server && code)
227 msleep(100);
154c345d 228 close_all();
19b27a48 229
154c345d
WD
230 /* FALLTHROUGH */
231 default:
232 break;
6e86c951 233 }
9098bbf3 234
2f03f956
AT
235 exit(code);
236}
237
238void cleanup_disable(void)
239{
03dbc0b8 240 cleanup_fname = cleanup_new_fname = NULL;
2f03f956
AT
241 cleanup_got_literal = 0;
242}
243
244
93204cca 245void cleanup_set(const char *fnametmp, const char *fname, struct file_struct *file,
b6609caf 246 int fd_r, int fd_w)
2f03f956 247{
03dbc0b8
WD
248 cleanup_fname = fnametmp;
249 cleanup_new_fname = fname; /* can be NULL on a partial-dir failure */
2f03f956 250 cleanup_file = file;
b6609caf
WD
251 cleanup_fd_r = fd_r;
252 cleanup_fd_w = fd_w;
2f03f956 253}
8638dd48 254
65fc84b3 255void cleanup_set_pid(pid_t pid)
8638dd48
DD
256{
257 cleanup_pid = pid;
258}