Mark out_of_memory() and overflow_exit() with NORETURN.
[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
7 * Copyright (C) 2003, 2004, 2005, 2006 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 2 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 *
e7c67065
WD
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
0f78b815 22 */
2f03f956
AT
23
24#include "rsync.h"
25
1cfcb8af
WD
26extern int am_server;
27extern int am_daemon;
6e86c951
WD
28extern int io_error;
29extern int keep_partial;
30extern int log_got_error;
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
AT
81
82static char *cleanup_fname;
83static char *cleanup_new_fname;
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 **/
a9766ef1 95void _exit_cleanup(int code, const char *file, int line)
2f03f956 96{
9098bbf3 97 int ocode = code;
b765ec32
DD
98 static int inside_cleanup = 0;
99
aa2c47d8 100 if (inside_cleanup > 10) {
b765ec32
DD
101 /* prevent the occasional infinite recursion */
102 return;
103 }
aa2c47d8 104 inside_cleanup++;
2f03f956 105
2b28968d
WD
106 SIGACTION(SIGUSR1, SIG_IGN);
107 SIGACTION(SIGUSR2, SIG_IGN);
2f03f956 108
6e86c951
WD
109 if (verbose > 3) {
110 rprintf(FINFO,"_exit_cleanup(code=%d, file=%s, line=%d): entered\n",
45c49b52 111 code, file, line);
6e86c951 112 }
9098bbf3 113
19b27a48
AT
114 if (cleanup_child_pid != -1) {
115 int status;
ef1f6280
WD
116 if (wait_process(cleanup_child_pid, &status, WNOHANG)
117 == cleanup_child_pid) {
19b27a48 118 status = WEXITSTATUS(status);
8186ae6b
WD
119 if (status > code)
120 code = status;
19b27a48
AT
121 }
122 }
123
03dbc0b8 124 if (cleanup_got_literal && cleanup_new_fname && keep_partial
a7260c40 125 && handle_partial_dir(cleanup_new_fname, PDIR_CREATE)) {
2f03f956
AT
126 char *fname = cleanup_fname;
127 cleanup_fname = NULL;
b6609caf
WD
128 if (cleanup_fd_r != -1)
129 close(cleanup_fd_r);
09e2bbce
WD
130 if (cleanup_fd_w != -1) {
131 flush_write_file(cleanup_fd_w);
b6609caf 132 close(cleanup_fd_w);
09e2bbce 133 }
12fa790e
WD
134 finish_transfer(cleanup_new_fname, fname, NULL,
135 cleanup_file, 0, !partial_dir);
2f03f956 136 }
ef732c3b 137 io_flush(FULL_FLUSH);
2f03f956
AT
138 if (cleanup_fname)
139 do_unlink(cleanup_fname);
8186ae6b 140 if (code)
2f03f956 141 kill_all(SIGUSR1);
65fc84b3 142 if (cleanup_pid && cleanup_pid == getpid()) {
27d3cdbc 143 char *pidf = lp_pid_file();
8186ae6b 144 if (pidf && *pidf)
27d3cdbc 145 unlink(lp_pid_file());
27d3cdbc 146 }
9b73d1c0 147
6e35c72f 148 if (code == 0) {
054abde2
WD
149 if (io_error & IOERR_DEL_LIMIT)
150 code = RERR_DEL_LIMIT;
151 if (io_error & IOERR_VANISHED)
6e35c72f 152 code = RERR_VANISHED;
054abde2
WD
153 if (io_error & IOERR_GENERAL || log_got_error)
154 code = RERR_PARTIAL;
ff81e809
AT
155 }
156
1cfcb8af 157 if (code || am_daemon || (logfile_name && (am_server || !verbose)))
8186ae6b 158 log_exit(code, file, line);
19b27a48 159
6e86c951
WD
160 if (verbose > 2) {
161 rprintf(FINFO,"_exit_cleanup(code=%d, file=%s, line=%d): about to call exit(%d)\n",
45c49b52 162 ocode, file, line, code);
6e86c951 163 }
9098bbf3 164
9f639210 165 close_all();
2f03f956
AT
166 exit(code);
167}
168
169void cleanup_disable(void)
170{
03dbc0b8 171 cleanup_fname = cleanup_new_fname = NULL;
2f03f956
AT
172 cleanup_got_literal = 0;
173}
174
175
c6b81a98 176void cleanup_set(char *fnametmp, char *fname, struct file_struct *file,
b6609caf 177 int fd_r, int fd_w)
2f03f956 178{
03dbc0b8
WD
179 cleanup_fname = fnametmp;
180 cleanup_new_fname = fname; /* can be NULL on a partial-dir failure */
2f03f956 181 cleanup_file = file;
b6609caf
WD
182 cleanup_fd_r = fd_r;
183 cleanup_fd_w = fd_w;
2f03f956 184}
8638dd48 185
65fc84b3 186void cleanup_set_pid(pid_t pid)
8638dd48
DD
187{
188 cleanup_pid = pid;
189}