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 * 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.
31 #ifdef SHUTDOWN_ALL_SOCKETS
37 max_fd
= sysconf(_SC_OPEN_MAX
) - 1;
38 for (fd
= max_fd
; fd
>= 0; fd
--) {
40 if (fstat(fd
,&st
) == 0) {
41 if (is_a_socket(fd
)) {
42 ret
= shutdown(fd
, 2);
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.
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.
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;
78 pid_t cleanup_child_pid
= -1;
81 * Eventually calls exit(), passing @p code, therefore does not return.
83 * @param code one of the RERR_* codes from errcode.h.
85 void _exit_cleanup(int code
, const char *file
, int line
)
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 */
98 signal(SIGUSR1
, SIG_IGN
);
99 signal(SIGUSR2
, SIG_IGN
);
102 rprintf(FINFO
,"_exit_cleanup(code=%d, file=%s, line=%d): entered\n",
105 if (cleanup_child_pid
!= -1) {
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
);
123 do_unlink(cleanup_fname
);
127 if ((cleanup_pid
!= 0) && (cleanup_pid
== (int) getpid())) {
128 char *pidf
= lp_pid_file();
130 unlink(lp_pid_file());
134 if (code
== 0 && (io_error
|| log_got_error
)) {
138 if (code
) log_exit(code
, file
, line
);
141 rprintf(FINFO
,"_exit_cleanup(code=%d, file=%s, line=%d): about to call exit(%d)\n",
142 ocode
, file
, line
, 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
;
166 void cleanup_set_pid(int pid
)