Fixed a couple option-name typos (that had '_' instead of '-').
[rsync.git] / cleanup.c
blob49d18307a6f5aa12e1c163057d7e16a438a08a43
1 /* -*- c-file-style: "linux" -*-
3 Copyright (C) 1996-2000 by Andrew Tridgell
4 Copyright (C) Paul Mackerras 1996
5 Copyright (C) 2002 by Martin Pool
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "rsync.h"
24 /**
25 * Close all open sockets and files, allowing a (somewhat) graceful
26 * shutdown() of socket connections. This eliminates the abortive
27 * TCP RST sent by a Winsock-based system when the close() occurs.
28 **/
29 void close_all(void)
31 #ifdef SHUTDOWN_ALL_SOCKETS
32 int max_fd;
33 int fd;
34 int ret;
35 struct stat st;
37 max_fd = sysconf(_SC_OPEN_MAX) - 1;
38 for (fd = max_fd; fd >= 0; fd--) {
39 ret = fstat(fd,&st);
40 if (fstat(fd,&st) == 0) {
41 if (is_a_socket(fd)) {
42 ret = shutdown(fd, 2);
44 ret = close(fd);
47 #endif
50 /**
51 * @file cleanup.c
53 * Code for handling interrupted transfers. Depending on the @c
54 * --partial option, we may either delete the temporary file, or go
55 * ahead and overwrite the destination. This second behaviour only
56 * occurs if we've sent literal data and therefore hopefully made
57 * progress on the transfer.
58 **/
60 /**
61 * Set to True once literal data has been sent across the link for the
62 * current file. (????)
64 * Handling the cleanup when a transfer is interrupted is tricky when
65 * --partial is selected. We need to ensure that the partial file is
66 * kept if any real data has been transferred.
67 **/
68 int cleanup_got_literal=0;
70 static char *cleanup_fname;
71 static char *cleanup_new_fname;
72 static struct file_struct *cleanup_file;
73 static int cleanup_fd1, cleanup_fd2;
74 static struct map_struct *cleanup_buf;
75 static int cleanup_pid = 0;
76 extern int io_error;
78 pid_t cleanup_child_pid = -1;
80 /**
81 * Eventually calls exit(), passing @p code, therefore does not return.
83 * @param code one of the RERR_* codes from errcode.h.
84 **/
85 void _exit_cleanup(int code, const char *file, int line)
87 int ocode = code;
88 extern int keep_partial;
89 extern int log_got_error;
90 static int inside_cleanup = 0;
92 if (inside_cleanup > 10) {
93 /* prevent the occasional infinite recursion */
94 return;
96 inside_cleanup++;
98 signal(SIGUSR1, SIG_IGN);
99 signal(SIGUSR2, SIG_IGN);
101 if (verbose > 3)
102 rprintf(FINFO,"_exit_cleanup(code=%d, file=%s, line=%d): entered\n",
103 code, file, line);
105 if (cleanup_child_pid != -1) {
106 int status;
107 if (waitpid(cleanup_child_pid, &status, WNOHANG) == cleanup_child_pid) {
108 status = WEXITSTATUS(status);
109 if (status > code) code = status;
113 if (cleanup_got_literal && cleanup_fname && keep_partial) {
114 char *fname = cleanup_fname;
115 cleanup_fname = NULL;
116 if (cleanup_buf) unmap_file(cleanup_buf);
117 if (cleanup_fd1 != -1) close(cleanup_fd1);
118 if (cleanup_fd2 != -1) close(cleanup_fd2);
119 finish_transfer(cleanup_new_fname, fname, cleanup_file);
121 io_flush();
122 if (cleanup_fname)
123 do_unlink(cleanup_fname);
124 if (code) {
125 kill_all(SIGUSR1);
127 if ((cleanup_pid != 0) && (cleanup_pid == (int) getpid())) {
128 char *pidf = lp_pid_file();
129 if (pidf && *pidf) {
130 unlink(lp_pid_file());
134 if (code == 0 && (io_error || log_got_error)) {
135 code = RERR_PARTIAL;
138 if (code) log_exit(code, file, line);
140 if (verbose > 2)
141 rprintf(FINFO,"_exit_cleanup(code=%d, file=%s, line=%d): about to call exit(%d)\n",
142 ocode, file, line, code);
144 close_all();
145 exit(code);
148 void cleanup_disable(void)
150 cleanup_fname = NULL;
151 cleanup_got_literal = 0;
155 void cleanup_set(char *fnametmp, char *fname, struct file_struct *file,
156 struct map_struct *buf, int fd1, int fd2)
158 cleanup_fname = fnametmp;
159 cleanup_new_fname = fname;
160 cleanup_file = file;
161 cleanup_buf = buf;
162 cleanup_fd1 = fd1;
163 cleanup_fd2 = fd2;
166 void cleanup_set_pid(int pid)
168 cleanup_pid = pid;