1 /* -*- c-file-style: "linux" -*-
3 * Copyright (C) 1996-2001 by Andrew Tridgell
4 * Copyright (C) Paul Mackerras 1996
5 * Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
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 * Socket and pipe IO utilities used in rsync.
27 * rsync provides its own multiplexing system, which is used to send
28 * stderr and stdout over a single socket. We need this because
29 * stdout normally carries the binary data stream, and stderr all our
32 * For historical reasons this is off during the start of the
33 * connection, but it's switched on quite early using
34 * io_start_multiplex_out() and io_start_multiplex_in().
39 /** If no timeout is specified then use a 60 second select timeout */
40 #define SELECT_TIMEOUT 60
42 static int io_multiplexing_out
;
43 static int io_multiplexing_in
;
44 static int multiplex_in_fd
;
45 static int multiplex_out_fd
;
46 static time_t last_io
;
51 extern int io_timeout
;
52 extern struct stats stats
;
55 const char phase_unknown
[] = "unknown";
58 * The connection might be dropped at some point; perhaps because the
59 * remote instance crashed. Just giving the offset on the stream is
60 * not very helpful. So instead we try to make io_phase_name point to
63 * For buffered/multiplexed IO these names will be somewhat
64 * approximate; perhaps for ease of support we would rather make the
65 * buffer always flush when a single application-level IO finishes.
67 * @todo Perhaps we want some simple stack functionality, but there's
68 * no need to overdo it.
70 const char *io_write_phase
= phase_unknown
;
71 const char *io_read_phase
= phase_unknown
;
73 /** Ignore EOF errors while reading a module listing if the remote
74 version is 24 or less. */
75 int kludge_around_eof
= False
;
78 static int io_error_fd
= -1;
79 static int io_filesfrom_f_in
= -1;
80 static int io_filesfrom_f_out
= -1;
81 static char io_filesfrom_buf
[2048];
82 static char *io_filesfrom_bp
;
83 static char io_filesfrom_lastchar
;
84 static int io_filesfrom_buflen
;
86 static void read_loop(int fd
, char *buf
, size_t len
);
88 static void check_timeout(void)
90 extern int am_server
, am_daemon
;
95 if (!io_timeout
) return;
104 if (last_io
&& io_timeout
&& (t
-last_io
) >= io_timeout
) {
105 if (!am_server
&& !am_daemon
) {
106 rprintf(FERROR
,"io timeout after %d seconds - exiting\n",
109 exit_cleanup(RERR_TIMEOUT
);
113 /** Setup the fd used to propagate errors */
114 void io_set_error_fd(int fd
)
119 /** Read some data from the error fd and write it to the write log code */
120 static void read_error_fd(void)
124 int fd
= io_error_fd
;
127 /* io_error_fd is temporarily disabled -- is this meant to
128 * prevent indefinite recursion? */
131 read_loop(fd
, buf
, 4);
134 len
= tag
& 0xFFFFFF;
140 if (n
> (sizeof buf
- 1))
142 read_loop(fd
, buf
, n
);
143 rwrite((enum logcode
)tag
, buf
, n
);
151 * When we're the receiver and we have a local --files-from list of names
152 * that needs to be sent over the socket to the sender, we have to do two
153 * things at the same time: send the sender a list of what files we're
154 * processing and read the incoming file+info list from the sender. We do
155 * this by augmenting the read_timeout() function to copy this data. It
156 * uses the io_filesfrom_buf to read a block of data from f_in (when it is
157 * ready, since it might be a pipe) and then blast it out f_out (when it
158 * is ready to receive more data).
160 void io_set_filesfrom_fds(int f_in
, int f_out
)
162 io_filesfrom_f_in
= f_in
;
163 io_filesfrom_f_out
= f_out
;
164 io_filesfrom_bp
= io_filesfrom_buf
;
165 io_filesfrom_lastchar
= '\0';
166 io_filesfrom_buflen
= 0;
170 * It's almost always an error to get an EOF when we're trying to read
171 * from the network, because the protocol is self-terminating.
173 * However, there is one unfortunate cases where it is not, which is
174 * rsync <2.4.6 sending a list of modules on a server, since the list
175 * is terminated by closing the socket. So, for the section of the
176 * program where that is a problem (start_socket_client),
177 * kludge_around_eof is True and we just exit.
179 static void whine_about_eof(void)
181 if (kludge_around_eof
)
185 "%s: connection unexpectedly closed "
186 "(%.0f bytes read so far)\n",
187 RSYNC_NAME
, (double)stats
.total_read
);
189 exit_cleanup(RERR_STREAMIO
);
194 static void die_from_readerr(int err
)
196 /* this prevents us trying to write errors on a dead socket */
197 io_multiplexing_close();
199 rprintf(FERROR
, "%s: read error: %s\n",
200 RSYNC_NAME
, strerror(err
));
201 exit_cleanup(RERR_STREAMIO
);
206 * Read from a socket with IO timeout. return the number of bytes
207 * read. If no bytes can be read then exit, never return a number <= 0.
209 * TODO: If the remote shell connection fails, then current versions
210 * actually report an "unexpected EOF" error here. Since it's a
211 * fairly common mistake to try to use rsh when ssh is required, we
212 * should trap that: if we fail to read any data at all, we should
213 * give a better explanation. We can tell whether the connection has
214 * started by looking e.g. at whether the remote version is known yet.
216 static int read_timeout(int fd
, char *buf
, size_t len
)
223 /* until we manage to read *something* */
231 if (io_error_fd
!= -1) {
232 FD_SET(io_error_fd
, &r_fds
);
233 if (io_error_fd
>= fd_count
) fd_count
= io_error_fd
+1;
235 if (io_filesfrom_f_out
!= -1) {
237 if (io_filesfrom_buflen
== 0) {
238 if (io_filesfrom_f_in
!= -1) {
239 FD_SET(io_filesfrom_f_in
, &r_fds
);
240 new_fd
= io_filesfrom_f_in
;
242 io_filesfrom_f_out
= -1;
247 FD_SET(io_filesfrom_f_out
, &w_fds
);
248 new_fd
= io_filesfrom_f_out
;
250 if (new_fd
>= fd_count
) fd_count
= new_fd
+1;
253 tv
.tv_sec
= io_timeout
?io_timeout
:SELECT_TIMEOUT
;
258 count
= select(fd_count
, &r_fds
,
259 io_filesfrom_buflen
? &w_fds
: NULL
,
267 if (errno
== EBADF
) {
268 exit_cleanup(RERR_SOCKETIO
);
274 if (io_error_fd
!= -1 && FD_ISSET(io_error_fd
, &r_fds
)) {
278 if (io_filesfrom_f_out
!= -1) {
279 if (io_filesfrom_buflen
) {
280 if (FD_ISSET(io_filesfrom_f_out
, &w_fds
)) {
281 int l
= write(io_filesfrom_f_out
,
283 io_filesfrom_buflen
);
285 if (!(io_filesfrom_buflen
-= l
))
286 io_filesfrom_bp
= io_filesfrom_buf
;
288 io_filesfrom_bp
+= l
;
290 /* XXX should we complain? */
291 io_filesfrom_f_out
= -1;
294 } else if (io_filesfrom_f_in
!= -1) {
295 if (FD_ISSET(io_filesfrom_f_in
, &r_fds
)) {
296 int l
= read(io_filesfrom_f_in
,
298 sizeof io_filesfrom_buf
);
300 /* Send end-of-file marker */
301 io_filesfrom_buf
[0] = '\0';
302 io_filesfrom_buf
[1] = '\0';
303 io_filesfrom_buflen
= io_filesfrom_lastchar
? 2 : 1;
304 io_filesfrom_f_in
= -1;
306 extern int eol_nulls
;
308 char *s
= io_filesfrom_buf
+ l
;
309 /* Transform CR and/or LF into '\0' */
310 while (s
-- > io_filesfrom_buf
) {
311 if (*s
== '\n' || *s
== '\r')
315 if (!io_filesfrom_lastchar
) {
316 /* Last buf ended with a '\0', so don't
317 * let this buf start with one. */
318 while (l
&& !*io_filesfrom_bp
)
319 io_filesfrom_bp
++, l
--;
322 io_filesfrom_bp
= io_filesfrom_buf
;
324 char *f
= io_filesfrom_bp
;
327 /* Eliminate any multi-'\0' runs. */
329 if (!(*t
++ = *f
++)) {
330 while (f
!= eob
&& !*f
)
334 io_filesfrom_lastchar
= f
[-1];
336 io_filesfrom_buflen
= l
;
342 if (!FD_ISSET(fd
, &r_fds
)) continue;
344 n
= read(fd
, buf
, len
);
351 last_io
= time(NULL
);
355 return -1; /* doesn't return */
356 } else if (n
== -1) {
357 if (errno
== EINTR
|| errno
== EWOULDBLOCK
||
360 die_from_readerr(errno
);
368 * Read a line into the "fname" buffer (which must be at least MAXPATHLEN
371 int read_filesfrom_line(int fd
, char *fname
)
373 char ch
, *s
, *eob
= fname
+ MAXPATHLEN
- 1;
375 extern int io_timeout
;
376 extern int eol_nulls
;
377 extern char *remote_filesfrom_file
;
378 extern int am_server
;
379 int reading_remotely
= remote_filesfrom_file
|| (am_server
&& fd
== 0);
380 int nulls
= eol_nulls
|| reading_remotely
;
385 cnt
= read(fd
, &ch
, 1);
386 if (cnt
< 0 && (errno
== EWOULDBLOCK
387 || errno
== EINTR
|| errno
== EAGAIN
)) {
392 tv
.tv_sec
= io_timeout
? io_timeout
: SELECT_TIMEOUT
;
394 if (!select(fd
+1, &fds
, NULL
, NULL
, &tv
))
400 if (nulls
? !ch
: (ch
== '\r' || ch
== '\n')) {
401 /* Skip empty lines if reading locally. */
402 if (!reading_remotely
&& s
== fname
)
412 if (*fname
== '#' || *fname
== ';')
420 * Continue trying to read len bytes - don't return until len has been
423 static void read_loop(int fd
, char *buf
, size_t len
)
426 int n
= read_timeout(fd
, buf
, len
);
435 * Read from the file descriptor handling multiplexing - return number
438 * Never returns <= 0.
440 static int read_unbuffered(int fd
, char *buf
, size_t len
)
442 static size_t remaining
;
446 if (!io_multiplexing_in
|| fd
!= multiplex_in_fd
)
447 return read_timeout(fd
, buf
, len
);
451 len
= MIN(len
, remaining
);
452 read_loop(fd
, buf
, len
);
458 read_loop(fd
, line
, 4);
461 remaining
= tag
& 0xFFFFFF;
464 if (tag
== MPLEX_BASE
)
469 if (tag
!= FERROR
&& tag
!= FINFO
) {
470 rprintf(FERROR
, "unexpected tag %d\n", tag
);
471 exit_cleanup(RERR_STREAMIO
);
474 if (remaining
> sizeof line
- 1) {
475 rprintf(FERROR
, "multiplexing overflow %ld\n\n",
477 exit_cleanup(RERR_STREAMIO
);
480 read_loop(fd
, line
, remaining
);
483 rprintf((enum logcode
) tag
, "%s", line
);
493 * Do a buffered read from @p fd. Don't return until all @p n bytes
494 * have been read. If all @p n can't be read then exit with an
497 static void readfd(int fd
, char *buffer
, size_t N
)
505 ret
= read_unbuffered(fd
, buffer
+ total
, N
-total
);
509 stats
.total_read
+= total
;
513 int32
read_int(int f
)
520 if (ret
== (int32
)0xffffffff) return -1;
524 int64
read_longint(int f
)
530 if ((int32
)ret
!= (int32
)0xffffffff) {
535 rprintf(FERROR
,"Integer overflow - attempted 64 bit offset\n");
536 exit_cleanup(RERR_UNSUPPORTED
);
539 ret
= IVAL(b
,0) | (((int64
)IVAL(b
,4))<<32);
545 void read_buf(int f
,char *buf
,size_t len
)
550 void read_sbuf(int f
,char *buf
,size_t len
)
556 unsigned char read_byte(int f
)
559 read_buf(f
, (char *)&c
, 1);
565 * Sleep after writing to limit I/O bandwidth usage.
567 * @todo Rather than sleeping after each write, it might be better to
568 * use some kind of averaging. The current algorithm seems to always
569 * use a bit less bandwidth than specified, because it doesn't make up
570 * for slow periods. But arguably this is a feature. In addition, we
571 * ought to take the time used to write the data into account.
573 static void sleep_for_bwlimit(int bytes_written
)
580 assert(bytes_written
> 0);
583 tv
.tv_usec
= bytes_written
* 1000 / bwlimit
;
584 tv
.tv_sec
= tv
.tv_usec
/ 1000000;
585 tv
.tv_usec
= tv
.tv_usec
% 1000000;
587 select(0, NULL
, NULL
, NULL
, &tv
);
592 * Write len bytes to the file descriptor @p fd.
594 * This function underlies the multiplexing system. The body of the
595 * application never calls this function directly.
597 static void writefd_unbuffered(int fd
,char *buf
,size_t len
)
608 while (total
< len
) {
613 if (io_error_fd
!= -1) {
615 FD_SET(io_error_fd
,&r_fds
);
616 if (io_error_fd
> fd_count
)
617 fd_count
= io_error_fd
;
620 tv
.tv_sec
= io_timeout
?io_timeout
:SELECT_TIMEOUT
;
625 count
= select(fd_count
+1,
626 io_error_fd
!= -1?&r_fds
:NULL
,
635 if (errno
== EBADF
) {
636 exit_cleanup(RERR_SOCKETIO
);
641 if (io_error_fd
!= -1 && FD_ISSET(io_error_fd
, &r_fds
)) {
645 if (FD_ISSET(fd
, &w_fds
)) {
647 size_t n
= len
-total
;
648 ret
= write(fd
,buf
+total
,n
);
650 if (ret
== -1 && errno
== EINTR
) {
655 (errno
== EWOULDBLOCK
|| errno
== EAGAIN
)) {
661 /* Don't try to write errors back
662 * across the stream */
663 io_multiplexing_close();
664 rprintf(FERROR
, RSYNC_NAME
665 ": writefd_unbuffered failed to write %ld bytes: phase \"%s\": %s\n",
666 (long) len
, io_write_phase
,
668 exit_cleanup(RERR_STREAMIO
);
671 sleep_for_bwlimit(ret
);
676 last_io
= time(NULL
);
684 static char *io_buffer
;
685 static int io_buffer_count
;
687 void io_start_buffering(int fd
)
689 if (io_buffer
) return;
690 multiplex_out_fd
= fd
;
691 io_buffer
= (char *)malloc(IO_BUFFER_SIZE
);
692 if (!io_buffer
) out_of_memory("writefd");
697 * Write an message to a multiplexed stream. If this fails then rsync
700 static void mplex_write(int fd
, enum logcode code
, char *buf
, size_t len
)
705 SIVAL(buffer
, 0, ((MPLEX_BASE
+ (int)code
)<<24) + len
);
707 if (n
> (sizeof buffer
- 4)) {
708 n
= sizeof buffer
- 4;
711 memcpy(&buffer
[4], buf
, n
);
712 writefd_unbuffered(fd
, buffer
, n
+4);
718 writefd_unbuffered(fd
, buf
, len
);
725 int fd
= multiplex_out_fd
;
729 if (!io_buffer_count
|| no_flush
) return;
731 if (io_multiplexing_out
) {
732 mplex_write(fd
, FNONE
, io_buffer
, io_buffer_count
);
734 writefd_unbuffered(fd
, io_buffer
, io_buffer_count
);
740 void io_end_buffering(void)
743 if (!io_multiplexing_out
) {
749 static void writefd(int fd
,char *buf
,size_t len
)
751 stats
.total_written
+= len
;
755 if (!io_buffer
|| fd
!= multiplex_out_fd
) {
756 writefd_unbuffered(fd
, buf
, len
);
761 int n
= MIN((int) len
, IO_BUFFER_SIZE
-io_buffer_count
);
763 memcpy(io_buffer
+io_buffer_count
, buf
, n
);
766 io_buffer_count
+= n
;
769 if (io_buffer_count
== IO_BUFFER_SIZE
) io_flush();
774 void write_int(int f
,int32 x
)
782 void write_int_named(int f
, int32 x
, const char *phase
)
784 io_write_phase
= phase
;
786 io_write_phase
= phase_unknown
;
791 * Note: int64 may actually be a 32-bit type if ./configure couldn't find any
792 * 64-bit types on this platform.
794 void write_longint(int f
, int64 x
)
798 if (x
<= 0x7FFFFFFF) {
799 write_int(f
, (int)x
);
804 rprintf(FERROR
,"Integer overflow - attempted 64 bit offset\n");
805 exit_cleanup(RERR_UNSUPPORTED
);
807 write_int(f
, (int32
)0xFFFFFFFF);
808 SIVAL(b
,0,(x
&0xFFFFFFFF));
809 SIVAL(b
,4,((x
>>32)&0xFFFFFFFF));
815 void write_buf(int f
,char *buf
,size_t len
)
820 /** Write a string to the connection */
821 static void write_sbuf(int f
,char *buf
)
823 write_buf(f
, buf
, strlen(buf
));
827 void write_byte(int f
,unsigned char c
)
829 write_buf(f
,(char *)&c
,1);
835 * Read a line of up to @p maxlen characters into @p buf. Does not
836 * contain a trailing newline or carriage return.
838 * @return 1 for success; 0 for io error or truncation.
840 int read_line(int f
, char *buf
, size_t maxlen
)
847 if (buf
[0] == '\n') {
851 if (buf
[0] != '\r') {
865 void io_printf(int fd
, const char *format
, ...)
871 va_start(ap
, format
);
872 len
= vsnprintf(buf
, sizeof buf
, format
, ap
);
875 if (len
< 0) exit_cleanup(RERR_STREAMIO
);
881 /** Setup for multiplexing an error stream with the data stream */
882 void io_start_multiplex_out(int fd
)
884 multiplex_out_fd
= fd
;
886 io_start_buffering(fd
);
887 io_multiplexing_out
= 1;
890 /** Setup for multiplexing an error stream with the data stream */
891 void io_start_multiplex_in(int fd
)
893 multiplex_in_fd
= fd
;
895 io_multiplexing_in
= 1;
898 /** Write an message to the multiplexed error stream */
899 int io_multiplex_write(enum logcode code
, char *buf
, size_t len
)
901 if (!io_multiplexing_out
) return 0;
904 stats
.total_written
+= (len
+4);
905 mplex_write(multiplex_out_fd
, code
, buf
, len
);
909 /** Stop output multiplexing */
910 void io_multiplexing_close(void)
912 io_multiplexing_out
= 0;