The match_gid() function needed to affect the *flags_ptr value
[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
ba2133d6 7 * Copyright (C) 2003-2007 Wayne Davison
0f78b815
WD
8 *
9 * This program is free software; you can redistribute it and/or modify
ba2133d6
WD
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
0f78b815
WD
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
e7c67065
WD
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
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;
29extern int log_got_error;
d45898df 30extern char *partial_dir;
1cfcb8af 31extern char *logfile_name;
6e86c951 32
44e604f4 33#ifdef HAVE_SIGACTION
2b28968d
WD
34static struct sigaction sigact;
35#endif
36
9f639210
DD
37/**
38 * Close all open sockets and files, allowing a (somewhat) graceful
39 * shutdown() of socket connections. This eliminates the abortive
40 * TCP RST sent by a Winsock-based system when the close() occurs.
41 **/
18d6b679 42void close_all(void)
9f639210
DD
43{
44#ifdef SHUTDOWN_ALL_SOCKETS
45 int max_fd;
46 int fd;
47 int ret;
58fef0ac 48 STRUCT_STAT st;
9f639210
DD
49
50 max_fd = sysconf(_SC_OPEN_MAX) - 1;
51 for (fd = max_fd; fd >= 0; fd--) {
58fef0ac 52 if ((ret = do_fstat(fd, &st)) == 0) {
8186ae6b 53 if (is_a_socket(fd))
9f639210 54 ret = shutdown(fd, 2);
9f639210
DD
55 ret = close(fd);
56 }
57 }
58#endif
59}
60
e0fde757
MP
61/**
62 * @file cleanup.c
63 *
64 * Code for handling interrupted transfers. Depending on the @c
65 * --partial option, we may either delete the temporary file, or go
66 * ahead and overwrite the destination. This second behaviour only
67 * occurs if we've sent literal data and therefore hopefully made
68 * progress on the transfer.
69 **/
70
71/**
72 * Set to True once literal data has been sent across the link for the
73 * current file. (????)
74 *
75 * Handling the cleanup when a transfer is interrupted is tricky when
76 * --partial is selected. We need to ensure that the partial file is
77 * kept if any real data has been transferred.
78 **/
8186ae6b 79int cleanup_got_literal = 0;
2f03f956
AT
80
81static char *cleanup_fname;
82static char *cleanup_new_fname;
83static struct file_struct *cleanup_file;
b6609caf 84static int cleanup_fd_r, cleanup_fd_w;
65fc84b3 85static pid_t cleanup_pid = 0;
2f03f956 86
19b27a48 87pid_t cleanup_child_pid = -1;
ef1aa910 88
e0fde757 89/**
b0f451eb 90 * Eventually calls exit(), passing @p code, therefore does not return.
e0fde757
MP
91 *
92 * @param code one of the RERR_* codes from errcode.h.
93 **/
b1b54199 94NORETURN void _exit_cleanup(int code, const char *file, int line)
2f03f956 95{
154c345d
WD
96 static int cleanup_step = 0;
97 static int exit_code = 0;
98 static int unmodified_code = 0;
2f03f956 99
2b28968d
WD
100 SIGACTION(SIGUSR1, SIG_IGN);
101 SIGACTION(SIGUSR2, SIG_IGN);
2f03f956 102
154c345d
WD
103 if (exit_code) /* Preserve first error code when recursing. */
104 code = exit_code;
b1b54199 105
154c345d
WD
106 /* Some of our actions might cause a recursive call back here, so we
107 * keep track of where we are in the cleanup and never repeat a step. */
108 switch (cleanup_step) {
e3794138 109#include "case_N.h" /* case 0: cleanup_step++; */
154c345d
WD
110
111 exit_code = unmodified_code = code;
9098bbf3 112
154c345d
WD
113 if (verbose > 3) {
114 rprintf(FINFO,
115 "_exit_cleanup(code=%d, file=%s, line=%d): entered\n",
116 code, file, line);
19b27a48 117 }
19b27a48 118
154c345d 119 /* FALLTHROUGH */
e3794138 120#include "case_N.h"
154c345d
WD
121
122 if (cleanup_child_pid != -1) {
123 int status;
124 int pid = wait_process(cleanup_child_pid, &status, WNOHANG);
125 if (pid == cleanup_child_pid) {
126 status = WEXITSTATUS(status);
127 if (status > code)
128 code = exit_code = status;
129 }
09e2bbce 130 }
9b73d1c0 131
154c345d 132 /* FALLTHROUGH */
e3794138 133#include "case_N.h"
154c345d
WD
134
135 if (cleanup_got_literal && cleanup_fname && cleanup_new_fname
136 && keep_partial && handle_partial_dir(cleanup_new_fname, PDIR_CREATE)) {
137 char *fname = cleanup_fname;
138 cleanup_fname = NULL;
139 if (cleanup_fd_r != -1)
140 close(cleanup_fd_r);
141 if (cleanup_fd_w != -1) {
142 flush_write_file(cleanup_fd_w);
143 close(cleanup_fd_w);
144 }
16edf865 145 finish_transfer(cleanup_new_fname, fname, NULL, NULL,
154c345d
WD
146 cleanup_file, 0, !partial_dir);
147 }
148
149 /* FALLTHROUGH */
e3794138 150#include "case_N.h"
154c345d
WD
151
152 io_flush(FULL_FLUSH);
153
154 /* FALLTHROUGH */
e3794138 155#include "case_N.h"
154c345d
WD
156
157 if (cleanup_fname)
158 do_unlink(cleanup_fname);
159 if (code)
160 kill_all(SIGUSR1);
161 if (cleanup_pid && cleanup_pid == getpid()) {
162 char *pidf = lp_pid_file();
163 if (pidf && *pidf)
164 unlink(lp_pid_file());
165 }
166
167 if (code == 0) {
168 if (io_error & IOERR_DEL_LIMIT)
169 code = exit_code = RERR_DEL_LIMIT;
170 if (io_error & IOERR_VANISHED)
171 code = exit_code = RERR_VANISHED;
172 if (io_error & IOERR_GENERAL || log_got_error)
173 code = exit_code = RERR_PARTIAL;
174 }
175
176 if (code || am_daemon || (logfile_name && (am_server || !verbose)))
177 log_exit(code, file, line);
178
179 /* FALLTHROUGH */
e3794138 180#include "case_N.h"
154c345d
WD
181
182 if (verbose > 2) {
183 rprintf(FINFO,
184 "_exit_cleanup(code=%d, file=%s, line=%d): "
185 "about to call exit(%d)\n",
186 unmodified_code, file, line, code);
187 }
188
189 /* FALLTHROUGH */
e3794138 190#include "case_N.h"
ff81e809 191
377d22ab
WD
192 if (am_server && code)
193 msleep(100);
154c345d 194 close_all();
19b27a48 195
154c345d
WD
196 /* FALLTHROUGH */
197 default:
198 break;
6e86c951 199 }
9098bbf3 200
2f03f956
AT
201 exit(code);
202}
203
204void cleanup_disable(void)
205{
03dbc0b8 206 cleanup_fname = cleanup_new_fname = NULL;
2f03f956
AT
207 cleanup_got_literal = 0;
208}
209
210
c6b81a98 211void cleanup_set(char *fnametmp, char *fname, struct file_struct *file,
b6609caf 212 int fd_r, int fd_w)
2f03f956 213{
03dbc0b8
WD
214 cleanup_fname = fnametmp;
215 cleanup_new_fname = fname; /* can be NULL on a partial-dir failure */
2f03f956 216 cleanup_file = file;
b6609caf
WD
217 cleanup_fd_r = fd_r;
218 cleanup_fd_w = fd_w;
2f03f956 219}
8638dd48 220
65fc84b3 221void cleanup_set_pid(pid_t pid)
8638dd48
DD
222{
223 cleanup_pid = pid;
224}