- Got rid of the checking of msg_fd_in in read_timeout() -- it was
[rsync/rsync.git] / io.c
... / ...
CommitLineData
1/* -*- c-file-style: "linux" -*-
2 *
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>
6 *
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.
11 *
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.
16 *
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.
20 */
21
22/**
23 * @file io.c
24 *
25 * Socket and pipe I/O utilities used in rsync.
26 *
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
30 * error messages.
31 *
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().
35 **/
36
37#include "rsync.h"
38
39/** If no timeout is specified then use a 60 second select timeout */
40#define SELECT_TIMEOUT 60
41
42extern int bwlimit;
43extern size_t bwlimit_writemax;
44extern int verbose;
45extern int io_timeout;
46extern int am_server;
47extern int am_daemon;
48extern int am_sender;
49extern int am_generator;
50extern int eol_nulls;
51extern int csum_length;
52extern int checksum_seed;
53extern int protocol_version;
54extern char *filesfrom_host;
55extern struct stats stats;
56
57const char phase_unknown[] = "unknown";
58int select_timeout = SELECT_TIMEOUT;
59int ignore_timeout = 0;
60int batch_fd = -1;
61int batch_gen_fd = -1;
62
63/**
64 * The connection might be dropped at some point; perhaps because the
65 * remote instance crashed. Just giving the offset on the stream is
66 * not very helpful. So instead we try to make io_phase_name point to
67 * something useful.
68 *
69 * For buffered/multiplexed I/O these names will be somewhat
70 * approximate; perhaps for ease of support we would rather make the
71 * buffer always flush when a single application-level I/O finishes.
72 *
73 * @todo Perhaps we want some simple stack functionality, but there's
74 * no need to overdo it.
75 **/
76const char *io_write_phase = phase_unknown;
77const char *io_read_phase = phase_unknown;
78
79/* Ignore an EOF error if non-zero. See whine_about_eof(). */
80int kluge_around_eof = 0;
81
82int msg_fd_in = -1;
83int msg_fd_out = -1;
84
85static int io_multiplexing_out;
86static int io_multiplexing_in;
87static int sock_f_in = -1;
88static int sock_f_out = -1;
89static time_t last_io;
90static int no_flush;
91
92static int write_batch_monitor_in = -1;
93static int write_batch_monitor_out = -1;
94
95static int io_filesfrom_f_in = -1;
96static int io_filesfrom_f_out = -1;
97static char io_filesfrom_buf[2048];
98static char *io_filesfrom_bp;
99static char io_filesfrom_lastchar;
100static int io_filesfrom_buflen;
101static size_t contiguous_write_len = 0;
102
103static void read_loop(int fd, char *buf, size_t len);
104
105struct redo_list {
106 struct redo_list *next;
107 int num;
108};
109
110static struct redo_list *redo_list_head;
111static struct redo_list *redo_list_tail;
112
113struct msg_list {
114 struct msg_list *next;
115 char *buf;
116 int len;
117};
118
119static struct msg_list *msg_list_head;
120static struct msg_list *msg_list_tail;
121
122static void redo_list_add(int num)
123{
124 struct redo_list *rl;
125
126 if (!(rl = new(struct redo_list)))
127 exit_cleanup(RERR_MALLOC);
128 rl->next = NULL;
129 rl->num = num;
130 if (redo_list_tail)
131 redo_list_tail->next = rl;
132 else
133 redo_list_head = rl;
134 redo_list_tail = rl;
135}
136
137static void check_timeout(void)
138{
139 time_t t;
140
141 if (!io_timeout || ignore_timeout)
142 return;
143
144 if (!last_io) {
145 last_io = time(NULL);
146 return;
147 }
148
149 t = time(NULL);
150
151 if (t - last_io >= io_timeout) {
152 if (!am_server && !am_daemon) {
153 rprintf(FERROR, "io timeout after %d seconds -- exiting\n",
154 (int)(t-last_io));
155 }
156 exit_cleanup(RERR_TIMEOUT);
157 }
158}
159
160/* Note the fds used for the main socket (which might really be a pipe
161 * for a local transfer, but we can ignore that). */
162void io_set_sock_fds(int f_in, int f_out)
163{
164 sock_f_in = f_in;
165 sock_f_out = f_out;
166}
167
168/* Setup the fd used to receive MSG_* messages. Only needed during the
169 * early stages of being a local sender (up through the sending of the
170 * file list) or when we're the generator (to fetch the messages from
171 * the receiver). */
172void set_msg_fd_in(int fd)
173{
174 msg_fd_in = fd;
175}
176
177/* Setup the fd used to send our MSG_* messages. Only needed when
178 * we're the receiver (to send our messages to the generator). */
179void set_msg_fd_out(int fd)
180{
181 msg_fd_out = fd;
182 set_nonblocking(msg_fd_out);
183}
184
185/* Add a message to the pending MSG_* list. */
186static void msg_list_add(int code, char *buf, int len)
187{
188 struct msg_list *ml;
189
190 if (!(ml = new(struct msg_list)))
191 exit_cleanup(RERR_MALLOC);
192 ml->next = NULL;
193 if (!(ml->buf = new_array(char, len+4)))
194 exit_cleanup(RERR_MALLOC);
195 SIVAL(ml->buf, 0, ((code+MPLEX_BASE)<<24) | len);
196 memcpy(ml->buf+4, buf, len);
197 ml->len = len+4;
198 if (msg_list_tail)
199 msg_list_tail->next = ml;
200 else
201 msg_list_head = ml;
202 msg_list_tail = ml;
203}
204
205void send_msg(enum msgcode code, char *buf, int len)
206{
207 if (msg_fd_out < 0) {
208 io_multiplex_write(code, buf, len);
209 return;
210 }
211 msg_list_add(code, buf, len);
212 msg_list_push(NORMAL_FLUSH);
213}
214
215/* Read a message from the MSG_* fd and handle it. This is called either
216 * during the early stages of being a local sender (up through the sending
217 * of the file list) or when we're the generator (to fetch the messages
218 * from the receiver). */
219static void read_msg_fd(void)
220{
221 char buf[2048];
222 size_t n;
223 int fd = msg_fd_in;
224 int tag, len;
225
226 /* Temporarily disable msg_fd_in. This is needed to avoid looping back
227 * to this routine from writefd_unbuffered(). */
228 msg_fd_in = -1;
229
230 read_loop(fd, buf, 4);
231 tag = IVAL(buf, 0);
232
233 len = tag & 0xFFFFFF;
234 tag = (tag >> 24) - MPLEX_BASE;
235
236 switch (tag) {
237 case MSG_DONE:
238 if (len != 0 || !am_generator) {
239 rprintf(FERROR, "invalid message %d:%d\n", tag, len);
240 exit_cleanup(RERR_STREAMIO);
241 }
242 redo_list_add(-1);
243 break;
244 case MSG_REDO:
245 if (len != 4 || !am_generator) {
246 rprintf(FERROR, "invalid message %d:%d\n", tag, len);
247 exit_cleanup(RERR_STREAMIO);
248 }
249 read_loop(fd, buf, 4);
250 redo_list_add(IVAL(buf,0));
251 break;
252 case MSG_DELETED:
253 if (len >= (int)sizeof buf || !am_generator) {
254 rprintf(FERROR, "invalid message %d:%d\n", tag, len);
255 exit_cleanup(RERR_STREAMIO);
256 }
257 read_loop(fd, buf, len);
258 io_multiplex_write(MSG_DELETED, buf, len);
259 break;
260 case MSG_SUCCESS:
261 if (len != 4 || !am_generator) {
262 rprintf(FERROR, "invalid message %d:%d\n", tag, len);
263 exit_cleanup(RERR_STREAMIO);
264 }
265 read_loop(fd, buf, len);
266 io_multiplex_write(MSG_SUCCESS, buf, len);
267 break;
268 case MSG_INFO:
269 case MSG_ERROR:
270 case MSG_LOG:
271 while (len) {
272 n = len;
273 if (n >= sizeof buf)
274 n = sizeof buf - 1;
275 read_loop(fd, buf, n);
276 rwrite((enum logcode)tag, buf, n);
277 len -= n;
278 }
279 break;
280 default:
281 rprintf(FERROR, "unknown message %d:%d\n", tag, len);
282 exit_cleanup(RERR_STREAMIO);
283 }
284
285 msg_fd_in = fd;
286}
287
288/* Try to push messages off the list onto the wire. If we leave with more
289 * to do, return 0. On error, return -1. If everything flushed, return 1.
290 * This is only active in the receiver. */
291int msg_list_push(int flush_it_all)
292{
293 static int written = 0;
294 struct timeval tv;
295 fd_set fds;
296
297 if (msg_fd_out < 0)
298 return -1;
299
300 while (msg_list_head) {
301 struct msg_list *ml = msg_list_head;
302 int n = write(msg_fd_out, ml->buf + written, ml->len - written);
303 if (n < 0) {
304 if (errno == EINTR)
305 continue;
306 if (errno != EWOULDBLOCK && errno != EAGAIN)
307 return -1;
308 if (!flush_it_all)
309 return 0;
310 FD_ZERO(&fds);
311 FD_SET(msg_fd_out, &fds);
312 tv.tv_sec = select_timeout;
313 tv.tv_usec = 0;
314 if (!select(msg_fd_out+1, NULL, &fds, NULL, &tv))
315 check_timeout();
316 } else if ((written += n) == ml->len) {
317 free(ml->buf);
318 msg_list_head = ml->next;
319 if (!msg_list_head)
320 msg_list_tail = NULL;
321 free(ml);
322 written = 0;
323 }
324 }
325 return 1;
326}
327
328int get_redo_num(void)
329{
330 struct redo_list *next;
331 int num;
332
333 while (!redo_list_head)
334 read_msg_fd();
335
336 num = redo_list_head->num;
337 next = redo_list_head->next;
338 free(redo_list_head);
339 redo_list_head = next;
340 if (!next)
341 redo_list_tail = NULL;
342
343 return num;
344}
345
346/**
347 * When we're the receiver and we have a local --files-from list of names
348 * that needs to be sent over the socket to the sender, we have to do two
349 * things at the same time: send the sender a list of what files we're
350 * processing and read the incoming file+info list from the sender. We do
351 * this by augmenting the read_timeout() function to copy this data. It
352 * uses the io_filesfrom_buf to read a block of data from f_in (when it is
353 * ready, since it might be a pipe) and then blast it out f_out (when it
354 * is ready to receive more data).
355 */
356void io_set_filesfrom_fds(int f_in, int f_out)
357{
358 io_filesfrom_f_in = f_in;
359 io_filesfrom_f_out = f_out;
360 io_filesfrom_bp = io_filesfrom_buf;
361 io_filesfrom_lastchar = '\0';
362 io_filesfrom_buflen = 0;
363}
364
365/* It's almost always an error to get an EOF when we're trying to read from the
366 * network, because the protocol is (for the most part) self-terminating.
367 *
368 * There is one case for the receiver when it is at the end of the transfer
369 * (hanging around reading any keep-alive packets that might come its way): if
370 * the sender dies before the generator's kill-signal comes through, we can end
371 * up here needing to loop until the kill-signal arrives. In this situation,
372 * kluge_around_eof will be < 0.
373 *
374 * There is another case for older protocol versions (< 24) where the module
375 * listing was not terminated, so we must ignore an EOF error in that case and
376 * exit. In this situation, kluge_around_eof will be > 0. */
377static void whine_about_eof(int fd)
378{
379 if (kluge_around_eof && fd == sock_f_in) {
380 int i;
381 if (kluge_around_eof > 0)
382 exit_cleanup(0);
383 /* If we're still here after 10 seconds, exit with an error. */
384 for (i = 10*1000/20; i--; )
385 msleep(20);
386 }
387
388 rprintf(FERROR, RSYNC_NAME ": connection unexpectedly closed "
389 "(%.0f bytes received so far) [%s]\n",
390 (double)stats.total_read, who_am_i());
391
392 exit_cleanup(RERR_STREAMIO);
393}
394
395
396/**
397 * Read from a socket with I/O timeout. return the number of bytes
398 * read. If no bytes can be read then exit, never return a number <= 0.
399 *
400 * TODO: If the remote shell connection fails, then current versions
401 * actually report an "unexpected EOF" error here. Since it's a
402 * fairly common mistake to try to use rsh when ssh is required, we
403 * should trap that: if we fail to read any data at all, we should
404 * give a better explanation. We can tell whether the connection has
405 * started by looking e.g. at whether the remote version is known yet.
406 */
407static int read_timeout(int fd, char *buf, size_t len)
408{
409 int n, ret = 0;
410
411 io_flush(NORMAL_FLUSH);
412
413 while (ret == 0) {
414 /* until we manage to read *something* */
415 fd_set r_fds, w_fds;
416 struct timeval tv;
417 int maxfd = fd;
418 int count;
419
420 FD_ZERO(&r_fds);
421 FD_ZERO(&w_fds);
422 FD_SET(fd, &r_fds);
423 if (msg_list_head) {
424 FD_SET(msg_fd_out, &w_fds);
425 if (msg_fd_out > maxfd)
426 maxfd = msg_fd_out;
427 }
428 if (io_filesfrom_f_out >= 0) {
429 int new_fd;
430 if (io_filesfrom_buflen == 0) {
431 if (io_filesfrom_f_in >= 0) {
432 FD_SET(io_filesfrom_f_in, &r_fds);
433 new_fd = io_filesfrom_f_in;
434 } else {
435 io_filesfrom_f_out = -1;
436 new_fd = -1;
437 }
438 } else {
439 FD_SET(io_filesfrom_f_out, &w_fds);
440 new_fd = io_filesfrom_f_out;
441 }
442 if (new_fd > maxfd)
443 maxfd = new_fd;
444 }
445
446 tv.tv_sec = select_timeout;
447 tv.tv_usec = 0;
448
449 errno = 0;
450
451 count = select(maxfd + 1, &r_fds, &w_fds, NULL, &tv);
452
453 if (count <= 0) {
454 if (errno == EBADF)
455 exit_cleanup(RERR_SOCKETIO);
456 check_timeout();
457 continue;
458 }
459
460 if (msg_list_head && FD_ISSET(msg_fd_out, &w_fds))
461 msg_list_push(NORMAL_FLUSH);
462
463 if (io_filesfrom_f_out >= 0) {
464 if (io_filesfrom_buflen) {
465 if (FD_ISSET(io_filesfrom_f_out, &w_fds)) {
466 int l = write(io_filesfrom_f_out,
467 io_filesfrom_bp,
468 io_filesfrom_buflen);
469 if (l > 0) {
470 if (!(io_filesfrom_buflen -= l))
471 io_filesfrom_bp = io_filesfrom_buf;
472 else
473 io_filesfrom_bp += l;
474 } else {
475 /* XXX should we complain? */
476 io_filesfrom_f_out = -1;
477 }
478 }
479 } else if (io_filesfrom_f_in >= 0) {
480 if (FD_ISSET(io_filesfrom_f_in, &r_fds)) {
481 int l = read(io_filesfrom_f_in,
482 io_filesfrom_buf,
483 sizeof io_filesfrom_buf);
484 if (l <= 0) {
485 /* Send end-of-file marker */
486 io_filesfrom_buf[0] = '\0';
487 io_filesfrom_buf[1] = '\0';
488 io_filesfrom_buflen = io_filesfrom_lastchar? 2 : 1;
489 io_filesfrom_f_in = -1;
490 } else {
491 if (!eol_nulls) {
492 char *s = io_filesfrom_buf + l;
493 /* Transform CR and/or LF into '\0' */
494 while (s-- > io_filesfrom_buf) {
495 if (*s == '\n' || *s == '\r')
496 *s = '\0';
497 }
498 }
499 if (!io_filesfrom_lastchar) {
500 /* Last buf ended with a '\0', so don't
501 * let this buf start with one. */
502 while (l && !*io_filesfrom_bp)
503 io_filesfrom_bp++, l--;
504 }
505 if (!l)
506 io_filesfrom_bp = io_filesfrom_buf;
507 else {
508 char *f = io_filesfrom_bp;
509 char *t = f;
510 char *eob = f + l;
511 /* Eliminate any multi-'\0' runs. */
512 while (f != eob) {
513 if (!(*t++ = *f++)) {
514 while (f != eob && !*f)
515 f++, l--;
516 }
517 }
518 io_filesfrom_lastchar = f[-1];
519 }
520 io_filesfrom_buflen = l;
521 }
522 }
523 }
524 }
525
526 if (!FD_ISSET(fd, &r_fds))
527 continue;
528
529 n = read(fd, buf, len);
530
531 if (n <= 0) {
532 if (n == 0)
533 whine_about_eof(fd); /* Doesn't return. */
534 if (errno == EINTR || errno == EWOULDBLOCK
535 || errno == EAGAIN)
536 continue;
537
538 /* Don't write errors on a dead socket. */
539 if (fd == sock_f_in)
540 close_multiplexing_out();
541 rsyserr(FERROR, errno, "read error");
542 exit_cleanup(RERR_STREAMIO);
543 }
544
545 buf += n;
546 len -= n;
547 ret += n;
548
549 if (io_timeout && fd == sock_f_in)
550 last_io = time(NULL);
551 }
552
553 return ret;
554}
555
556/**
557 * Read a line into the "fname" buffer (which must be at least MAXPATHLEN
558 * characters long).
559 */
560int read_filesfrom_line(int fd, char *fname)
561{
562 char ch, *s, *eob = fname + MAXPATHLEN - 1;
563 int cnt;
564 int reading_remotely = filesfrom_host != NULL;
565 int nulls = eol_nulls || reading_remotely;
566
567 start:
568 s = fname;
569 while (1) {
570 cnt = read(fd, &ch, 1);
571 if (cnt < 0 && (errno == EWOULDBLOCK
572 || errno == EINTR || errno == EAGAIN)) {
573 struct timeval tv;
574 fd_set fds;
575 FD_ZERO(&fds);
576 FD_SET(fd, &fds);
577 tv.tv_sec = select_timeout;
578 tv.tv_usec = 0;
579 if (!select(fd+1, &fds, NULL, NULL, &tv))
580 check_timeout();
581 continue;
582 }
583 if (cnt != 1)
584 break;
585 if (nulls? !ch : (ch == '\r' || ch == '\n')) {
586 /* Skip empty lines if reading locally. */
587 if (!reading_remotely && s == fname)
588 continue;
589 break;
590 }
591 if (s < eob)
592 *s++ = ch;
593 }
594 *s = '\0';
595
596 /* Dump comments. */
597 if (*fname == '#' || *fname == ';')
598 goto start;
599
600 return s - fname;
601}
602
603
604static char *iobuf_out;
605static int iobuf_out_cnt;
606
607void io_start_buffering_out(void)
608{
609 if (iobuf_out)
610 return;
611 if (!(iobuf_out = new_array(char, IO_BUFFER_SIZE)))
612 out_of_memory("io_start_buffering_out");
613 iobuf_out_cnt = 0;
614}
615
616
617static char *iobuf_in;
618static size_t iobuf_in_siz;
619
620void io_start_buffering_in(void)
621{
622 if (iobuf_in)
623 return;
624 iobuf_in_siz = 2 * IO_BUFFER_SIZE;
625 if (!(iobuf_in = new_array(char, iobuf_in_siz)))
626 out_of_memory("io_start_buffering_in");
627}
628
629
630void io_end_buffering(void)
631{
632 io_flush(NORMAL_FLUSH);
633 if (!io_multiplexing_out) {
634 free(iobuf_out);
635 iobuf_out = NULL;
636 }
637}
638
639
640void maybe_send_keepalive(int allowed_lull, int ndx)
641{
642 if (time(NULL) - last_io >= allowed_lull) {
643 if (!iobuf_out || !iobuf_out_cnt) {
644 if (protocol_version < 29)
645 return; /* there's nothing we can do */
646 write_int(sock_f_out, ndx);
647 write_shortint(sock_f_out, ITEM_IS_NEW);
648 }
649 if (iobuf_out)
650 io_flush(NORMAL_FLUSH);
651 }
652}
653
654
655/**
656 * Continue trying to read len bytes - don't return until len has been
657 * read.
658 **/
659static void read_loop(int fd, char *buf, size_t len)
660{
661 while (len) {
662 int n = read_timeout(fd, buf, len);
663
664 buf += n;
665 len -= n;
666 }
667}
668
669
670/**
671 * Read from the file descriptor handling multiplexing - return number
672 * of bytes read.
673 *
674 * Never returns <= 0.
675 */
676static int readfd_unbuffered(int fd, char *buf, size_t len)
677{
678 static size_t remaining;
679 static size_t iobuf_in_ndx;
680 int tag, ret = 0;
681 char line[MAXPATHLEN+1];
682
683 if (!iobuf_in || fd != sock_f_in)
684 return read_timeout(fd, buf, len);
685
686 if (!io_multiplexing_in && remaining == 0) {
687 remaining = read_timeout(fd, iobuf_in, iobuf_in_siz);
688 iobuf_in_ndx = 0;
689 }
690
691 while (ret == 0) {
692 if (remaining) {
693 len = MIN(len, remaining);
694 memcpy(buf, iobuf_in + iobuf_in_ndx, len);
695 iobuf_in_ndx += len;
696 remaining -= len;
697 ret = len;
698 break;
699 }
700
701 read_loop(fd, line, 4);
702 tag = IVAL(line, 0);
703
704 remaining = tag & 0xFFFFFF;
705 tag = (tag >> 24) - MPLEX_BASE;
706
707 switch (tag) {
708 case MSG_DATA:
709 if (remaining > iobuf_in_siz) {
710 if (!(iobuf_in = realloc_array(iobuf_in, char,
711 remaining)))
712 out_of_memory("readfd_unbuffered");
713 iobuf_in_siz = remaining;
714 }
715 read_loop(fd, iobuf_in, remaining);
716 iobuf_in_ndx = 0;
717 break;
718 case MSG_DELETED:
719 if (remaining >= sizeof line) {
720 rprintf(FERROR, "invalid multi-message %d:%ld\n",
721 tag, (long)remaining);
722 exit_cleanup(RERR_STREAMIO);
723 }
724 read_loop(fd, line, remaining);
725 line[remaining] = '\0';
726 /* A directory name was sent with the trailing null */
727 if (remaining > 0 && !line[remaining-1])
728 log_delete(line, S_IFDIR);
729 else
730 log_delete(line, S_IFREG);
731 remaining = 0;
732 break;
733 case MSG_SUCCESS:
734 if (remaining != 4) {
735 rprintf(FERROR, "invalid multi-message %d:%ld\n",
736 tag, (long)remaining);
737 exit_cleanup(RERR_STREAMIO);
738 }
739 read_loop(fd, line, remaining);
740 successful_send(IVAL(line, 0));
741 remaining = 0;
742 break;
743 case MSG_INFO:
744 case MSG_ERROR:
745 if (remaining >= sizeof line) {
746 rprintf(FERROR,
747 "[%s] multiplexing overflow %d:%ld\n\n",
748 who_am_i(), tag, (long)remaining);
749 exit_cleanup(RERR_STREAMIO);
750 }
751 read_loop(fd, line, remaining);
752 rwrite((enum logcode)tag, line, remaining);
753 remaining = 0;
754 break;
755 default:
756 rprintf(FERROR, "[%s] unexpected tag %d\n",
757 who_am_i(), tag);
758 exit_cleanup(RERR_STREAMIO);
759 }
760 }
761
762 if (remaining == 0)
763 io_flush(NORMAL_FLUSH);
764
765 return ret;
766}
767
768
769
770/**
771 * Do a buffered read from @p fd. Don't return until all @p n bytes
772 * have been read. If all @p n can't be read then exit with an
773 * error.
774 **/
775static void readfd(int fd, char *buffer, size_t N)
776{
777 int ret;
778 size_t total = 0;
779
780 while (total < N) {
781 ret = readfd_unbuffered(fd, buffer + total, N-total);
782 total += ret;
783 }
784
785 if (fd == write_batch_monitor_in) {
786 if ((size_t)write(batch_fd, buffer, total) != total)
787 exit_cleanup(RERR_FILEIO);
788 }
789
790 if (fd == sock_f_in)
791 stats.total_read += total;
792}
793
794
795int read_shortint(int f)
796{
797 uchar b[2];
798 readfd(f, (char *)b, 2);
799 return (b[1] << 8) + b[0];
800}
801
802
803int32 read_int(int f)
804{
805 char b[4];
806 int32 ret;
807
808 readfd(f,b,4);
809 ret = IVAL(b,0);
810 if (ret == (int32)0xffffffff)
811 return -1;
812 return ret;
813}
814
815int64 read_longint(int f)
816{
817 int64 ret;
818 char b[8];
819 ret = read_int(f);
820
821 if ((int32)ret != (int32)0xffffffff)
822 return ret;
823
824#if SIZEOF_INT64 < 8
825 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
826 exit_cleanup(RERR_UNSUPPORTED);
827#else
828 readfd(f,b,8);
829 ret = IVAL(b,0) | (((int64)IVAL(b,4))<<32);
830#endif
831
832 return ret;
833}
834
835void read_buf(int f,char *buf,size_t len)
836{
837 readfd(f,buf,len);
838}
839
840void read_sbuf(int f,char *buf,size_t len)
841{
842 readfd(f, buf, len);
843 buf[len] = '\0';
844}
845
846uchar read_byte(int f)
847{
848 uchar c;
849 readfd(f, (char *)&c, 1);
850 return c;
851}
852
853/* Populate a sum_struct with values from the socket. This is
854 * called by both the sender and the receiver. */
855void read_sum_head(int f, struct sum_struct *sum)
856{
857 sum->count = read_int(f);
858 sum->blength = read_int(f);
859 if (sum->blength < 0 || sum->blength > MAX_BLOCK_SIZE) {
860 rprintf(FERROR, "[%s] Invalid block length %ld\n",
861 who_am_i(), (long)sum->blength);
862 exit_cleanup(RERR_PROTOCOL);
863 }
864 sum->s2length = protocol_version < 27 ? csum_length : (int)read_int(f);
865 if (sum->s2length < 0 || sum->s2length > MD4_SUM_LENGTH) {
866 rprintf(FERROR, "[%s] Invalid checksum length %d\n",
867 who_am_i(), sum->s2length);
868 exit_cleanup(RERR_PROTOCOL);
869 }
870 sum->remainder = read_int(f);
871 if (sum->remainder < 0 || sum->remainder > sum->blength) {
872 rprintf(FERROR, "[%s] Invalid remainder length %ld\n",
873 who_am_i(), (long)sum->remainder);
874 exit_cleanup(RERR_PROTOCOL);
875 }
876}
877
878/* Send the values from a sum_struct over the socket. Set sum to
879 * NULL if there are no checksums to send. This is called by both
880 * the generator and the sender. */
881void write_sum_head(int f, struct sum_struct *sum)
882{
883 static struct sum_struct null_sum;
884
885 if (sum == NULL)
886 sum = &null_sum;
887
888 write_int(f, sum->count);
889 write_int(f, sum->blength);
890 if (protocol_version >= 27)
891 write_int(f, sum->s2length);
892 write_int(f, sum->remainder);
893}
894
895
896/**
897 * Sleep after writing to limit I/O bandwidth usage.
898 *
899 * @todo Rather than sleeping after each write, it might be better to
900 * use some kind of averaging. The current algorithm seems to always
901 * use a bit less bandwidth than specified, because it doesn't make up
902 * for slow periods. But arguably this is a feature. In addition, we
903 * ought to take the time used to write the data into account.
904 *
905 * During some phases of big transfers (file FOO is uptodate) this is
906 * called with a small bytes_written every time. As the kernel has to
907 * round small waits up to guarantee that we actually wait at least the
908 * requested number of microseconds, this can become grossly inaccurate.
909 * We therefore keep track of the bytes we've written over time and only
910 * sleep when the accumulated delay is at least 1 tenth of a second.
911 **/
912static void sleep_for_bwlimit(int bytes_written)
913{
914 static struct timeval prior_tv;
915 static long total_written = 0;
916 struct timeval tv, start_tv;
917 long elapsed_usec, sleep_usec;
918
919#define ONE_SEC 1000000L /* # of microseconds in a second */
920
921 if (!bwlimit)
922 return;
923
924 total_written += bytes_written;
925
926 gettimeofday(&start_tv, NULL);
927 if (prior_tv.tv_sec) {
928 elapsed_usec = (start_tv.tv_sec - prior_tv.tv_sec) * ONE_SEC
929 + (start_tv.tv_usec - prior_tv.tv_usec);
930 total_written -= elapsed_usec * bwlimit / (ONE_SEC/1024);
931 if (total_written < 0)
932 total_written = 0;
933 }
934
935 sleep_usec = total_written * (ONE_SEC/1024) / bwlimit;
936 if (sleep_usec < ONE_SEC / 10) {
937 prior_tv = start_tv;
938 return;
939 }
940
941 tv.tv_sec = sleep_usec / ONE_SEC;
942 tv.tv_usec = sleep_usec % ONE_SEC;
943 select(0, NULL, NULL, NULL, &tv);
944
945 gettimeofday(&prior_tv, NULL);
946 elapsed_usec = (prior_tv.tv_sec - start_tv.tv_sec) * ONE_SEC
947 + (prior_tv.tv_usec - start_tv.tv_usec);
948 total_written = (sleep_usec - elapsed_usec) * bwlimit / (ONE_SEC/1024);
949}
950
951
952/* Write len bytes to the file descriptor fd, looping as necessary to get
953 * the job done and also (in certain circumstnces) reading any data on
954 * msg_fd_in to avoid deadlock.
955 *
956 * This function underlies the multiplexing system. The body of the
957 * application never calls this function directly. */
958static void writefd_unbuffered(int fd,char *buf,size_t len)
959{
960 size_t n, total = 0;
961 fd_set w_fds, r_fds;
962 int maxfd, count, ret;
963 struct timeval tv;
964
965 no_flush++;
966
967 while (total < len) {
968 FD_ZERO(&w_fds);
969 FD_SET(fd,&w_fds);
970 maxfd = fd;
971
972 if (msg_fd_in >= 0 && len-total >= contiguous_write_len) {
973 FD_ZERO(&r_fds);
974 FD_SET(msg_fd_in,&r_fds);
975 if (msg_fd_in > maxfd)
976 maxfd = msg_fd_in;
977 }
978 if (fd != sock_f_out && iobuf_out_cnt && no_flush == 1) {
979 FD_SET(sock_f_out, &w_fds);
980 if (sock_f_out > maxfd)
981 maxfd = sock_f_out;
982 }
983
984 tv.tv_sec = select_timeout;
985 tv.tv_usec = 0;
986
987 errno = 0;
988 count = select(maxfd + 1, msg_fd_in >= 0 ? &r_fds : NULL,
989 &w_fds, NULL, &tv);
990
991 if (count <= 0) {
992 if (count < 0 && errno == EBADF)
993 exit_cleanup(RERR_SOCKETIO);
994 check_timeout();
995 continue;
996 }
997
998 if (msg_fd_in >= 0 && FD_ISSET(msg_fd_in, &r_fds))
999 read_msg_fd();
1000
1001 if (!FD_ISSET(fd, &w_fds)) {
1002 if (fd != sock_f_out && iobuf_out_cnt) {
1003 no_flush--;
1004 io_flush(NORMAL_FLUSH);
1005 no_flush++;
1006 }
1007 continue;
1008 }
1009
1010 n = len - total;
1011 if (bwlimit && n > bwlimit_writemax)
1012 n = bwlimit_writemax;
1013 ret = write(fd, buf + total, n);
1014
1015 if (ret <= 0) {
1016 if (ret < 0) {
1017 if (errno == EINTR)
1018 continue;
1019 if (errno == EWOULDBLOCK || errno == EAGAIN) {
1020 msleep(1);
1021 continue;
1022 }
1023 }
1024
1025 /* Don't try to write errors back across the stream. */
1026 if (fd == sock_f_out)
1027 close_multiplexing_out();
1028 rsyserr(FERROR, errno,
1029 "writefd_unbuffered failed to write %ld bytes: phase \"%s\" [%s]",
1030 (long)len, io_write_phase, who_am_i());
1031 /* If the other side is sending us error messages, try
1032 * to grab any messages they sent before they died. */
1033 while (fd == sock_f_out && io_multiplexing_in) {
1034 io_timeout = select_timeout = 30;
1035 ignore_timeout = 0;
1036 readfd_unbuffered(sock_f_in, io_filesfrom_buf,
1037 sizeof io_filesfrom_buf);
1038 }
1039 exit_cleanup(RERR_STREAMIO);
1040 }
1041
1042 total += ret;
1043
1044 if (fd == sock_f_out) {
1045 if (io_timeout)
1046 last_io = time(NULL);
1047 sleep_for_bwlimit(ret);
1048 }
1049 }
1050
1051 no_flush--;
1052}
1053
1054
1055/**
1056 * Write an message to a multiplexed stream. If this fails then rsync
1057 * exits.
1058 **/
1059static void mplex_write(enum msgcode code, char *buf, size_t len)
1060{
1061 char buffer[4096];
1062 size_t n = len;
1063
1064 SIVAL(buffer, 0, ((MPLEX_BASE + (int)code)<<24) + len);
1065
1066 /* When the generator reads messages from the msg_fd_in pipe, it can
1067 * cause output to occur down the socket. Setting contiguous_write_len
1068 * prevents the reading of msg_fd_in once we actually start to write
1069 * this sequence of data (though we might read it before the start). */
1070 if (am_generator && msg_fd_in >= 0)
1071 contiguous_write_len = len + 4;
1072
1073 if (n > sizeof buffer - 4)
1074 n = sizeof buffer - 4;
1075
1076 memcpy(&buffer[4], buf, n);
1077 writefd_unbuffered(sock_f_out, buffer, n+4);
1078
1079 len -= n;
1080 buf += n;
1081
1082 if (len)
1083 writefd_unbuffered(sock_f_out, buf, len);
1084
1085 if (am_generator && msg_fd_in >= 0)
1086 contiguous_write_len = 0;
1087}
1088
1089
1090void io_flush(int flush_it_all)
1091{
1092 msg_list_push(flush_it_all);
1093
1094 if (!iobuf_out_cnt || no_flush)
1095 return;
1096
1097 if (io_multiplexing_out)
1098 mplex_write(MSG_DATA, iobuf_out, iobuf_out_cnt);
1099 else
1100 writefd_unbuffered(sock_f_out, iobuf_out, iobuf_out_cnt);
1101 iobuf_out_cnt = 0;
1102}
1103
1104
1105static void writefd(int fd,char *buf,size_t len)
1106{
1107 if (fd == msg_fd_out) {
1108 rprintf(FERROR, "Internal error: wrong write used in receiver.\n");
1109 exit_cleanup(RERR_PROTOCOL);
1110 }
1111
1112 if (fd == sock_f_out)
1113 stats.total_written += len;
1114
1115 if (fd == write_batch_monitor_out) {
1116 if ((size_t)write(batch_fd, buf, len) != len)
1117 exit_cleanup(RERR_FILEIO);
1118 }
1119
1120 if (!iobuf_out || fd != sock_f_out) {
1121 writefd_unbuffered(fd, buf, len);
1122 return;
1123 }
1124
1125 while (len) {
1126 int n = MIN((int)len, IO_BUFFER_SIZE - iobuf_out_cnt);
1127 if (n > 0) {
1128 memcpy(iobuf_out+iobuf_out_cnt, buf, n);
1129 buf += n;
1130 len -= n;
1131 iobuf_out_cnt += n;
1132 }
1133
1134 if (iobuf_out_cnt == IO_BUFFER_SIZE)
1135 io_flush(NORMAL_FLUSH);
1136 }
1137}
1138
1139
1140void write_shortint(int f, int x)
1141{
1142 uchar b[2];
1143 b[0] = x;
1144 b[1] = x >> 8;
1145 writefd(f, (char *)b, 2);
1146}
1147
1148
1149void write_int(int f,int32 x)
1150{
1151 char b[4];
1152 SIVAL(b,0,x);
1153 writefd(f,b,4);
1154}
1155
1156
1157void write_int_named(int f, int32 x, const char *phase)
1158{
1159 io_write_phase = phase;
1160 write_int(f, x);
1161 io_write_phase = phase_unknown;
1162}
1163
1164
1165/*
1166 * Note: int64 may actually be a 32-bit type if ./configure couldn't find any
1167 * 64-bit types on this platform.
1168 */
1169void write_longint(int f, int64 x)
1170{
1171 char b[8];
1172
1173 if (x <= 0x7FFFFFFF) {
1174 write_int(f, (int)x);
1175 return;
1176 }
1177
1178#if SIZEOF_INT64 < 8
1179 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
1180 exit_cleanup(RERR_UNSUPPORTED);
1181#else
1182 write_int(f, (int32)0xFFFFFFFF);
1183 SIVAL(b,0,(x&0xFFFFFFFF));
1184 SIVAL(b,4,((x>>32)&0xFFFFFFFF));
1185
1186 writefd(f,b,8);
1187#endif
1188}
1189
1190void write_buf(int f,char *buf,size_t len)
1191{
1192 writefd(f,buf,len);
1193}
1194
1195/** Write a string to the connection */
1196void write_sbuf(int f, char *buf)
1197{
1198 writefd(f, buf, strlen(buf));
1199}
1200
1201void write_byte(int f, uchar c)
1202{
1203 writefd(f, (char *)&c, 1);
1204}
1205
1206
1207/**
1208 * Read a line of up to @p maxlen characters into @p buf (not counting
1209 * the trailing null). Strips the (required) trailing newline and all
1210 * carriage returns.
1211 *
1212 * @return 1 for success; 0 for I/O error or truncation.
1213 **/
1214int read_line(int f, char *buf, size_t maxlen)
1215{
1216 while (maxlen) {
1217 buf[0] = 0;
1218 read_buf(f, buf, 1);
1219 if (buf[0] == 0)
1220 return 0;
1221 if (buf[0] == '\n')
1222 break;
1223 if (buf[0] != '\r') {
1224 buf++;
1225 maxlen--;
1226 }
1227 }
1228 *buf = '\0';
1229 return maxlen > 0;
1230}
1231
1232
1233void io_printf(int fd, const char *format, ...)
1234{
1235 va_list ap;
1236 char buf[1024];
1237 int len;
1238
1239 va_start(ap, format);
1240 len = vsnprintf(buf, sizeof buf, format, ap);
1241 va_end(ap);
1242
1243 if (len < 0)
1244 exit_cleanup(RERR_STREAMIO);
1245
1246 write_sbuf(fd, buf);
1247}
1248
1249
1250/** Setup for multiplexing a MSG_* stream with the data stream. */
1251void io_start_multiplex_out(void)
1252{
1253 io_flush(NORMAL_FLUSH);
1254 io_start_buffering_out();
1255 io_multiplexing_out = 1;
1256}
1257
1258/** Setup for multiplexing a MSG_* stream with the data stream. */
1259void io_start_multiplex_in(void)
1260{
1261 io_flush(NORMAL_FLUSH);
1262 io_start_buffering_in();
1263 io_multiplexing_in = 1;
1264}
1265
1266/** Write an message to the multiplexed data stream. */
1267int io_multiplex_write(enum msgcode code, char *buf, size_t len)
1268{
1269 if (!io_multiplexing_out)
1270 return 0;
1271
1272 io_flush(NORMAL_FLUSH);
1273 stats.total_written += (len+4);
1274 mplex_write(code, buf, len);
1275 return 1;
1276}
1277
1278void close_multiplexing_in(void)
1279{
1280 io_multiplexing_in = 0;
1281}
1282
1283/** Stop output multiplexing. */
1284void close_multiplexing_out(void)
1285{
1286 io_multiplexing_out = 0;
1287}
1288
1289void start_write_batch(int fd)
1290{
1291 write_stream_flags(batch_fd);
1292
1293 /* Some communication has already taken place, but we don't
1294 * enable batch writing until here so that we can write a
1295 * canonical record of the communication even though the
1296 * actual communication so far depends on whether a daemon
1297 * is involved. */
1298 write_int(batch_fd, protocol_version);
1299 write_int(batch_fd, checksum_seed);
1300
1301 if (am_sender)
1302 write_batch_monitor_out = fd;
1303 else
1304 write_batch_monitor_in = fd;
1305}
1306
1307void stop_write_batch(void)
1308{
1309 write_batch_monitor_out = -1;
1310 write_batch_monitor_in = -1;
1311}