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.
25 extern int keep_partial
;
26 extern int log_got_error
;
27 extern char *partial_dir
;
30 * Close all open sockets and files, allowing a (somewhat) graceful
31 * shutdown() of socket connections. This eliminates the abortive
32 * TCP RST sent by a Winsock-based system when the close() occurs.
36 #ifdef SHUTDOWN_ALL_SOCKETS
42 max_fd
= sysconf(_SC_OPEN_MAX
) - 1;
43 for (fd
= max_fd
; fd
>= 0; fd
--) {
44 if ((ret
= do_fstat(fd
, &st
)) == 0) {
46 ret
= shutdown(fd
, 2);
56 * Code for handling interrupted transfers. Depending on the @c
57 * --partial option, we may either delete the temporary file, or go
58 * ahead and overwrite the destination. This second behaviour only
59 * occurs if we've sent literal data and therefore hopefully made
60 * progress on the transfer.
64 * Set to True once literal data has been sent across the link for the
65 * current file. (????)
67 * Handling the cleanup when a transfer is interrupted is tricky when
68 * --partial is selected. We need to ensure that the partial file is
69 * kept if any real data has been transferred.
71 int cleanup_got_literal
= 0;
73 static char *cleanup_fname
;
74 static char *cleanup_new_fname
;
75 static struct file_struct
*cleanup_file
;
76 static int cleanup_fd_r
, cleanup_fd_w
;
77 static pid_t cleanup_pid
= 0;
79 pid_t cleanup_child_pid
= -1;
82 * Eventually calls exit(), passing @p code, therefore does not return.
84 * @param code one of the RERR_* codes from errcode.h.
86 void _exit_cleanup(int code
, const char *file
, int line
)
89 static int inside_cleanup
= 0;
91 if (inside_cleanup
> 10) {
92 /* prevent the occasional infinite recursion */
97 signal(SIGUSR1
, SIG_IGN
);
98 signal(SIGUSR2
, SIG_IGN
);
101 rprintf(FINFO
,"_exit_cleanup(code=%d, file=%s, line=%d): entered\n",
102 code
, safe_fname(file
), line
);
105 if (cleanup_child_pid
!= -1) {
107 if (waitpid(cleanup_child_pid
, &status
, WNOHANG
) == cleanup_child_pid
) {
108 status
= WEXITSTATUS(status
);
114 if (cleanup_got_literal
&& cleanup_fname
&& keep_partial
115 && handle_partial_dir(cleanup_new_fname
, PDIR_CREATE
)) {
116 char *fname
= cleanup_fname
;
117 cleanup_fname
= NULL
;
118 if (cleanup_fd_r
!= -1)
120 if (cleanup_fd_w
!= -1) {
121 flush_write_file(cleanup_fd_w
);
124 finish_transfer(cleanup_new_fname
, fname
, cleanup_file
, 0,
127 io_flush(FULL_FLUSH
);
129 do_unlink(cleanup_fname
);
132 if (cleanup_pid
&& cleanup_pid
== getpid()) {
133 char *pidf
= lp_pid_file();
135 unlink(lp_pid_file());
139 if (io_error
& IOERR_DEL_LIMIT
)
140 code
= RERR_DEL_LIMIT
;
141 if (io_error
& IOERR_VANISHED
)
142 code
= RERR_VANISHED
;
143 if (io_error
& IOERR_GENERAL
|| log_got_error
)
148 log_exit(code
, file
, line
);
151 rprintf(FINFO
,"_exit_cleanup(code=%d, file=%s, line=%d): about to call exit(%d)\n",
152 ocode
, safe_fname(file
), line
, code
);
159 void cleanup_disable(void)
161 cleanup_fname
= NULL
;
162 cleanup_got_literal
= 0;
166 void cleanup_set(char *fnametmp
, char *fname
, struct file_struct
*file
,
169 cleanup_fname
= fnametmp
;
170 cleanup_new_fname
= fname
;
176 void cleanup_set_pid(pid_t pid
)