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