If the user specifies a small io_timeout value, lower select_timeout.
[rsync/rsync.git] / io.c
CommitLineData
7a24c346 1/* -*- c-file-style: "linux" -*-
d62bcc17
WD
2 *
3 * Copyright (C) 1996-2001 by Andrew Tridgell
880da007
MP
4 * Copyright (C) Paul Mackerras 1996
5 * Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
d62bcc17 6 *
880da007
MP
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.
d62bcc17 11 *
880da007
MP
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.
d62bcc17 16 *
880da007
MP
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 */
720b47f2 21
87ee2481 22/**
87ee2481
MP
23 * @file io.c
24 *
6ed6d7f5 25 * Socket and pipe I/O utilities used in rsync.
87ee2481
MP
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 **/
720b47f2 36
720b47f2
AT
37#include "rsync.h"
38
880da007 39/** If no timeout is specified then use a 60 second select timeout */
8cd9fd4e
AT
40#define SELECT_TIMEOUT 60
41
8d9dc9f9
AT
42static int io_multiplexing_out;
43static int io_multiplexing_in;
76c21947
WD
44static int multiplex_in_fd = -1;
45static int multiplex_out_fd = -1;
8d9dc9f9 46static time_t last_io;
7a55d06e
MP
47static int no_flush;
48
49extern int bwlimit;
71e58630 50extern size_t bwlimit_writemax;
720b47f2 51extern int verbose;
6ba9279f 52extern int io_timeout;
d17e1dd2
WD
53extern int am_server;
54extern int am_daemon;
55extern int am_sender;
e626b29e
WD
56extern int eol_nulls;
57extern char *remote_filesfrom_file;
a800434a 58extern struct stats stats;
720b47f2 59
a86179f4 60const char phase_unknown[] = "unknown";
e626b29e 61int select_timeout = SELECT_TIMEOUT;
805edf9d 62
98b332ed
MP
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.
eca2adb4 68 *
6ed6d7f5 69 * For buffered/multiplexed I/O these names will be somewhat
805edf9d 70 * approximate; perhaps for ease of support we would rather make the
6ed6d7f5 71 * buffer always flush when a single application-level I/O finishes.
805edf9d 72 *
eca2adb4
MP
73 * @todo Perhaps we want some simple stack functionality, but there's
74 * no need to overdo it.
98b332ed 75 **/
805edf9d
MP
76const char *io_write_phase = phase_unknown;
77const char *io_read_phase = phase_unknown;
98b332ed 78
7a55d06e
MP
79/** Ignore EOF errors while reading a module listing if the remote
80 version is 24 or less. */
81int kludge_around_eof = False;
82
d17e1dd2
WD
83int msg_fd_in = -1;
84int msg_fd_out = -1;
7a55d06e 85
56014c8c
WD
86static int io_filesfrom_f_in = -1;
87static int io_filesfrom_f_out = -1;
88static char io_filesfrom_buf[2048];
89static char *io_filesfrom_bp;
90static char io_filesfrom_lastchar;
91static int io_filesfrom_buflen;
720b47f2 92
9dd891bb 93static void read_loop(int fd, char *buf, size_t len);
ff41a59f 94
d17e1dd2
WD
95struct redo_list {
96 struct redo_list *next;
97 int num;
98};
99
100static struct redo_list *redo_list_head;
101static struct redo_list *redo_list_tail;
102
103struct msg_list {
104 struct msg_list *next;
105 char *buf;
106 int len;
107};
108
109static struct msg_list *msg_list_head;
110static struct msg_list *msg_list_tail;
111
112static void redo_list_add(int num)
113{
114 struct redo_list *rl;
115
116 if (!(rl = new(struct redo_list)))
117 exit_cleanup(RERR_MALLOC);
118 rl->next = NULL;
119 rl->num = num;
120 if (redo_list_tail)
121 redo_list_tail->next = rl;
122 else
123 redo_list_head = rl;
124 redo_list_tail = rl;
125}
126
8d9dc9f9
AT
127static void check_timeout(void)
128{
129 time_t t;
90ba34e2 130
d17e1dd2
WD
131 if (!io_timeout)
132 return;
8d9dc9f9
AT
133
134 if (!last_io) {
135 last_io = time(NULL);
136 return;
137 }
138
139 t = time(NULL);
140
86ffe37f 141 if (last_io && io_timeout && (t-last_io) >= io_timeout) {
0adb99b9 142 if (!am_server && !am_daemon) {
d62bcc17 143 rprintf(FERROR, "io timeout after %d seconds - exiting\n",
0adb99b9
AT
144 (int)(t-last_io));
145 }
65417579 146 exit_cleanup(RERR_TIMEOUT);
8d9dc9f9
AT
147 }
148}
149
d17e1dd2
WD
150/** Setup the fd used to receive MSG_* messages. Only needed when
151 * we're the generator because the sender and receiver both use the
6ed6d7f5 152 * multiplexed I/O setup. */
d17e1dd2
WD
153void set_msg_fd_in(int fd)
154{
155 msg_fd_in = fd;
156}
157
158/** Setup the fd used to send our MSG_* messages. Only needed when
159 * we're the receiver because the generator and the sender both use
6ed6d7f5 160 * the multiplexed I/O setup. */
d17e1dd2
WD
161void set_msg_fd_out(int fd)
162{
163 msg_fd_out = fd;
164 set_nonblocking(msg_fd_out);
165}
166
167/* Add a message to the pending MSG_* list. */
168static void msg_list_add(int code, char *buf, int len)
554e0a8d 169{
d17e1dd2
WD
170 struct msg_list *ml;
171
172 if (!(ml = new(struct msg_list)))
173 exit_cleanup(RERR_MALLOC);
174 ml->next = NULL;
175 if (!(ml->buf = new_array(char, len+4)))
176 exit_cleanup(RERR_MALLOC);
177 SIVAL(ml->buf, 0, ((code+MPLEX_BASE)<<24) | len);
178 memcpy(ml->buf+4, buf, len);
179 ml->len = len+4;
180 if (msg_list_tail)
181 msg_list_tail->next = ml;
182 else
183 msg_list_head = ml;
184 msg_list_tail = ml;
554e0a8d
AT
185}
186
d17e1dd2
WD
187void send_msg(enum msgcode code, char *buf, int len)
188{
189 msg_list_add(code, buf, len);
190 msg_list_push(NORMAL_FLUSH);
191}
192
193/** Read a message from the MSG_* fd and dispatch it. This is only
194 * called by the generator. */
195static void read_msg_fd(void)
554e0a8d
AT
196{
197 char buf[200];
06ce139f 198 size_t n;
d17e1dd2 199 int fd = msg_fd_in;
ff41a59f
AT
200 int tag, len;
201
d17e1dd2
WD
202 /* Temporarily disable msg_fd_in. This is needed because we
203 * may call a write routine that could try to call us back. */
204 msg_fd_in = -1;
554e0a8d 205
ff41a59f
AT
206 read_loop(fd, buf, 4);
207 tag = IVAL(buf, 0);
208
209 len = tag & 0xFFFFFF;
d17e1dd2 210 tag = (tag >> 24) - MPLEX_BASE;
ff41a59f 211
d17e1dd2
WD
212 switch (tag) {
213 case MSG_DONE:
13c7bcbb
WD
214 if (len != 0) {
215 rprintf(FERROR, "invalid message %d:%d\n", tag, len);
d17e1dd2 216 exit_cleanup(RERR_STREAMIO);
13c7bcbb 217 }
d17e1dd2
WD
218 redo_list_add(-1);
219 break;
220 case MSG_REDO:
13c7bcbb
WD
221 if (len != 4) {
222 rprintf(FERROR, "invalid message %d:%d\n", tag, len);
d17e1dd2 223 exit_cleanup(RERR_STREAMIO);
13c7bcbb 224 }
d17e1dd2
WD
225 read_loop(fd, buf, 4);
226 redo_list_add(IVAL(buf,0));
227 break;
228 case MSG_INFO:
229 case MSG_ERROR:
230 case MSG_LOG:
231 while (len) {
232 n = len;
233 if (n >= sizeof buf)
234 n = sizeof buf - 1;
235 read_loop(fd, buf, n);
236 rwrite((enum logcode)tag, buf, n);
237 len -= n;
238 }
239 break;
240 default:
13c7bcbb 241 rprintf(FERROR, "unknown message %d:%d\n", tag, len);
d17e1dd2
WD
242 exit_cleanup(RERR_STREAMIO);
243 }
244
245 msg_fd_in = fd;
246}
247
248/* Try to push messages off the list onto the wire. If we leave with more
249 * to do, return 0. On error, return -1. If everything flushed, return 1.
250 * This is only called by the receiver. */
251int msg_list_push(int flush_it_all)
252{
253 static int written = 0;
254 struct timeval tv;
255 fd_set fds;
256
257 if (msg_fd_out < 0)
258 return -1;
259
260 while (msg_list_head) {
261 struct msg_list *ml = msg_list_head;
262 int n = write(msg_fd_out, ml->buf + written, ml->len - written);
263 if (n < 0) {
264 if (errno == EINTR)
265 continue;
266 if (errno != EWOULDBLOCK && errno != EAGAIN)
267 return -1;
268 if (!flush_it_all)
269 return 0;
270 FD_ZERO(&fds);
271 FD_SET(msg_fd_out, &fds);
e626b29e 272 tv.tv_sec = select_timeout;
d17e1dd2
WD
273 tv.tv_usec = 0;
274 if (!select(msg_fd_out+1, NULL, &fds, NULL, &tv))
275 check_timeout();
276 } else if ((written += n) == ml->len) {
277 free(ml->buf);
278 msg_list_head = ml->next;
279 if (!msg_list_head)
280 msg_list_tail = NULL;
281 free(ml);
282 written = 0;
283 }
554e0a8d 284 }
d17e1dd2
WD
285 return 1;
286}
287
288int get_redo_num(void)
289{
290 struct redo_list *next;
291 int num;
292
293 while (!redo_list_head)
294 read_msg_fd();
554e0a8d 295
d17e1dd2
WD
296 num = redo_list_head->num;
297 next = redo_list_head->next;
298 free(redo_list_head);
299 redo_list_head = next;
300 if (!next)
301 redo_list_tail = NULL;
302
303 return num;
554e0a8d
AT
304}
305
56014c8c
WD
306/**
307 * When we're the receiver and we have a local --files-from list of names
308 * that needs to be sent over the socket to the sender, we have to do two
309 * things at the same time: send the sender a list of what files we're
310 * processing and read the incoming file+info list from the sender. We do
311 * this by augmenting the read_timeout() function to copy this data. It
312 * uses the io_filesfrom_buf to read a block of data from f_in (when it is
313 * ready, since it might be a pipe) and then blast it out f_out (when it
314 * is ready to receive more data).
315 */
316void io_set_filesfrom_fds(int f_in, int f_out)
317{
318 io_filesfrom_f_in = f_in;
319 io_filesfrom_f_out = f_out;
320 io_filesfrom_bp = io_filesfrom_buf;
321 io_filesfrom_lastchar = '\0';
322 io_filesfrom_buflen = 0;
323}
720b47f2 324
880da007
MP
325/**
326 * It's almost always an error to get an EOF when we're trying to read
327 * from the network, because the protocol is self-terminating.
328 *
329 * However, there is one unfortunate cases where it is not, which is
330 * rsync <2.4.6 sending a list of modules on a server, since the list
331 * is terminated by closing the socket. So, for the section of the
332 * program where that is a problem (start_socket_client),
333 * kludge_around_eof is True and we just exit.
334 */
3151cbae 335static void whine_about_eof(void)
7a55d06e 336{
7a55d06e 337 if (kludge_around_eof)
3151cbae 338 exit_cleanup(0);
7a55d06e 339 else {
d62bcc17 340 rprintf(FERROR, RSYNC_NAME ": connection unexpectedly closed "
3151cbae 341 "(%.0f bytes read so far)\n",
d62bcc17 342 (double)stats.total_read);
3151cbae
WD
343
344 exit_cleanup(RERR_STREAMIO);
7a55d06e
MP
345 }
346}
720b47f2 347
7a55d06e 348
3151cbae 349static void die_from_readerr(int err)
7a55d06e
MP
350{
351 /* this prevents us trying to write errors on a dead socket */
352 io_multiplexing_close();
3151cbae 353
d62bcc17 354 rsyserr(FERROR, err, "read error");
7a55d06e
MP
355 exit_cleanup(RERR_STREAMIO);
356}
357
358
880da007 359/**
6ed6d7f5 360 * Read from a socket with I/O timeout. return the number of bytes
c3563c46
MP
361 * read. If no bytes can be read then exit, never return a number <= 0.
362 *
8886f8d0
MP
363 * TODO: If the remote shell connection fails, then current versions
364 * actually report an "unexpected EOF" error here. Since it's a
365 * fairly common mistake to try to use rsh when ssh is required, we
366 * should trap that: if we fail to read any data at all, we should
367 * give a better explanation. We can tell whether the connection has
368 * started by looking e.g. at whether the remote version is known yet.
c3563c46 369 */
3151cbae 370static int read_timeout(int fd, char *buf, size_t len)
8d9dc9f9 371{
d62bcc17 372 int n, ret = 0;
4c36ddbe 373
d17e1dd2 374 io_flush(NORMAL_FLUSH);
ea2111d1 375
4c36ddbe 376 while (ret == 0) {
7a55d06e 377 /* until we manage to read *something* */
56014c8c 378 fd_set r_fds, w_fds;
4c36ddbe 379 struct timeval tv;
554e0a8d 380 int fd_count = fd+1;
a57873b7 381 int count;
4c36ddbe 382
56014c8c
WD
383 FD_ZERO(&r_fds);
384 FD_SET(fd, &r_fds);
d17e1dd2
WD
385 if (msg_fd_in >= 0) {
386 FD_SET(msg_fd_in, &r_fds);
387 if (msg_fd_in >= fd_count)
388 fd_count = msg_fd_in+1;
56014c8c 389 }
3309507d 390 if (io_filesfrom_f_out >= 0) {
56014c8c
WD
391 int new_fd;
392 if (io_filesfrom_buflen == 0) {
3309507d 393 if (io_filesfrom_f_in >= 0) {
56014c8c
WD
394 FD_SET(io_filesfrom_f_in, &r_fds);
395 new_fd = io_filesfrom_f_in;
396 } else {
397 io_filesfrom_f_out = -1;
398 new_fd = -1;
399 }
400 } else {
401 FD_ZERO(&w_fds);
402 FD_SET(io_filesfrom_f_out, &w_fds);
403 new_fd = io_filesfrom_f_out;
404 }
d17e1dd2
WD
405 if (new_fd >= fd_count)
406 fd_count = new_fd+1;
554e0a8d
AT
407 }
408
e626b29e 409 tv.tv_sec = select_timeout;
4c36ddbe
AT
410 tv.tv_usec = 0;
411
554e0a8d
AT
412 errno = 0;
413
56014c8c
WD
414 count = select(fd_count, &r_fds,
415 io_filesfrom_buflen? &w_fds : NULL,
416 NULL, &tv);
a57873b7
AT
417
418 if (count == 0) {
d17e1dd2 419 msg_list_push(NORMAL_FLUSH);
a57873b7
AT
420 check_timeout();
421 }
422
423 if (count <= 0) {
f89b9368 424 if (errno == EBADF)
554e0a8d 425 exit_cleanup(RERR_SOCKETIO);
4c36ddbe
AT
426 continue;
427 }
428
d17e1dd2
WD
429 if (msg_fd_in >= 0 && FD_ISSET(msg_fd_in, &r_fds))
430 read_msg_fd();
554e0a8d 431
3309507d 432 if (io_filesfrom_f_out >= 0) {
56014c8c
WD
433 if (io_filesfrom_buflen) {
434 if (FD_ISSET(io_filesfrom_f_out, &w_fds)) {
435 int l = write(io_filesfrom_f_out,
436 io_filesfrom_bp,
437 io_filesfrom_buflen);
438 if (l > 0) {
439 if (!(io_filesfrom_buflen -= l))
440 io_filesfrom_bp = io_filesfrom_buf;
441 else
442 io_filesfrom_bp += l;
443 } else {
444 /* XXX should we complain? */
445 io_filesfrom_f_out = -1;
446 }
447 }
3309507d 448 } else if (io_filesfrom_f_in >= 0) {
56014c8c
WD
449 if (FD_ISSET(io_filesfrom_f_in, &r_fds)) {
450 int l = read(io_filesfrom_f_in,
451 io_filesfrom_buf,
452 sizeof io_filesfrom_buf);
453 if (l <= 0) {
454 /* Send end-of-file marker */
455 io_filesfrom_buf[0] = '\0';
456 io_filesfrom_buf[1] = '\0';
457 io_filesfrom_buflen = io_filesfrom_lastchar? 2 : 1;
458 io_filesfrom_f_in = -1;
459 } else {
56014c8c
WD
460 if (!eol_nulls) {
461 char *s = io_filesfrom_buf + l;
462 /* Transform CR and/or LF into '\0' */
463 while (s-- > io_filesfrom_buf) {
464 if (*s == '\n' || *s == '\r')
465 *s = '\0';
466 }
467 }
468 if (!io_filesfrom_lastchar) {
469 /* Last buf ended with a '\0', so don't
470 * let this buf start with one. */
471 while (l && !*io_filesfrom_bp)
472 io_filesfrom_bp++, l--;
473 }
474 if (!l)
475 io_filesfrom_bp = io_filesfrom_buf;
476 else {
477 char *f = io_filesfrom_bp;
478 char *t = f;
479 char *eob = f + l;
480 /* Eliminate any multi-'\0' runs. */
481 while (f != eob) {
482 if (!(*t++ = *f++)) {
483 while (f != eob && !*f)
484 f++, l--;
485 }
486 }
487 io_filesfrom_lastchar = f[-1];
488 }
489 io_filesfrom_buflen = l;
490 }
491 }
492 }
493 }
494
f89b9368
WD
495 if (!FD_ISSET(fd, &r_fds))
496 continue;
554e0a8d 497
4c36ddbe
AT
498 n = read(fd, buf, len);
499
8d9dc9f9
AT
500 if (n > 0) {
501 buf += n;
502 len -= n;
4c36ddbe
AT
503 ret += n;
504 if (io_timeout)
505 last_io = time(NULL);
506 continue;
7a55d06e 507 } else if (n == 0) {
3151cbae 508 whine_about_eof();
7a55d06e 509 return -1; /* doesn't return */
3309507d 510 } else if (n < 0) {
d62bcc17
WD
511 if (errno == EINTR || errno == EWOULDBLOCK
512 || errno == EAGAIN)
7a55d06e 513 continue;
3151cbae 514 die_from_readerr(errno);
8d9dc9f9 515 }
4c36ddbe 516 }
8d9dc9f9 517
4c36ddbe
AT
518 return ret;
519}
8d9dc9f9 520
56014c8c
WD
521/**
522 * Read a line into the "fname" buffer (which must be at least MAXPATHLEN
523 * characters long).
524 */
525int read_filesfrom_line(int fd, char *fname)
526{
527 char ch, *s, *eob = fname + MAXPATHLEN - 1;
528 int cnt;
55d5937d 529 int reading_remotely = remote_filesfrom_file != NULL;
56014c8c
WD
530 int nulls = eol_nulls || reading_remotely;
531
532 start:
533 s = fname;
534 while (1) {
535 cnt = read(fd, &ch, 1);
536 if (cnt < 0 && (errno == EWOULDBLOCK
537 || errno == EINTR || errno == EAGAIN)) {
538 struct timeval tv;
539 fd_set fds;
540 FD_ZERO(&fds);
541 FD_SET(fd, &fds);
e626b29e 542 tv.tv_sec = select_timeout;
56014c8c
WD
543 tv.tv_usec = 0;
544 if (!select(fd+1, &fds, NULL, NULL, &tv))
545 check_timeout();
546 continue;
547 }
548 if (cnt != 1)
549 break;
550 if (nulls? !ch : (ch == '\r' || ch == '\n')) {
551 /* Skip empty lines if reading locally. */
552 if (!reading_remotely && s == fname)
553 continue;
554 break;
555 }
556 if (s < eob)
557 *s++ = ch;
558 }
559 *s = '\0';
7a55d06e 560
6b45fcf1
WD
561 /* Dump comments. */
562 if (*fname == '#' || *fname == ';')
56014c8c
WD
563 goto start;
564
565 return s - fname;
566}
7a55d06e
MP
567
568
880da007
MP
569/**
570 * Continue trying to read len bytes - don't return until len has been
571 * read.
572 **/
3151cbae 573static void read_loop(int fd, char *buf, size_t len)
4c36ddbe
AT
574{
575 while (len) {
576 int n = read_timeout(fd, buf, len);
577
578 buf += n;
579 len -= n;
8d9dc9f9
AT
580 }
581}
582
7a55d06e
MP
583
584/**
585 * Read from the file descriptor handling multiplexing - return number
586 * of bytes read.
d62bcc17
WD
587 *
588 * Never returns <= 0.
7a55d06e 589 */
9dd891bb 590static int read_unbuffered(int fd, char *buf, size_t len)
8d9dc9f9 591{
6fe25398 592 static size_t remaining;
909ce14f 593 int tag, ret = 0;
8d9dc9f9 594 char line[1024];
76c21947
WD
595 static char *buffer;
596 static size_t bufferIdx = 0;
597 static size_t bufferSz;
8d9dc9f9 598
76c21947 599 if (fd != multiplex_in_fd)
4c36ddbe 600 return read_timeout(fd, buf, len);
8d9dc9f9 601
76c21947
WD
602 if (!io_multiplexing_in && remaining == 0) {
603 if (!buffer) {
604 bufferSz = 2 * IO_BUFFER_SIZE;
605 buffer = new_array(char, bufferSz);
f89b9368
WD
606 if (!buffer)
607 out_of_memory("read_unbuffered");
76c21947
WD
608 }
609 remaining = read_timeout(fd, buffer, bufferSz);
610 bufferIdx = 0;
611 }
612
8d9dc9f9
AT
613 while (ret == 0) {
614 if (remaining) {
615 len = MIN(len, remaining);
76c21947
WD
616 memcpy(buf, buffer + bufferIdx, len);
617 bufferIdx += len;
8d9dc9f9
AT
618 remaining -= len;
619 ret = len;
76c21947 620 break;
8d9dc9f9
AT
621 }
622
909ce14f 623 read_loop(fd, line, 4);
ff41a59f 624 tag = IVAL(line, 0);
679e7657 625
8d9dc9f9 626 remaining = tag & 0xFFFFFF;
d17e1dd2 627 tag = (tag >> 24) - MPLEX_BASE;
8d9dc9f9 628
d17e1dd2
WD
629 switch (tag) {
630 case MSG_DATA:
76c21947
WD
631 if (!buffer || remaining > bufferSz) {
632 buffer = realloc_array(buffer, char, remaining);
f89b9368
WD
633 if (!buffer)
634 out_of_memory("read_unbuffered");
76c21947
WD
635 bufferSz = remaining;
636 }
637 read_loop(fd, buffer, remaining);
638 bufferIdx = 0;
d17e1dd2
WD
639 break;
640 case MSG_INFO:
641 case MSG_ERROR:
642 if (remaining >= sizeof line) {
643 rprintf(FERROR, "multiplexing overflow %d:%ld\n\n",
644 tag, (long)remaining);
645 exit_cleanup(RERR_STREAMIO);
646 }
647 read_loop(fd, line, remaining);
648 rwrite((enum logcode)tag, line, remaining);
649 remaining = 0;
650 break;
651 default:
909ce14f 652 rprintf(FERROR, "unexpected tag %d\n", tag);
65417579 653 exit_cleanup(RERR_STREAMIO);
8d9dc9f9 654 }
8d9dc9f9
AT
655 }
656
76c21947 657 if (remaining == 0)
d17e1dd2 658 io_flush(NORMAL_FLUSH);
76c21947 659
8d9dc9f9
AT
660 return ret;
661}
662
663
909ce14f 664
880da007
MP
665/**
666 * Do a buffered read from @p fd. Don't return until all @p n bytes
667 * have been read. If all @p n can't be read then exit with an
668 * error.
669 **/
3151cbae 670static void readfd(int fd, char *buffer, size_t N)
720b47f2 671{
6ba9279f 672 int ret;
d62bcc17 673 size_t total = 0;
3151cbae 674
6ba9279f 675 while (total < N) {
3151cbae 676 ret = read_unbuffered(fd, buffer + total, N-total);
6ba9279f 677 total += ret;
7f28dbee 678 }
1b7c47cb
AT
679
680 stats.total_read += total;
720b47f2
AT
681}
682
683
b7922338 684int32 read_int(int f)
720b47f2 685{
4c36ddbe 686 char b[4];
d730b113
AT
687 int32 ret;
688
4c36ddbe 689 readfd(f,b,4);
d730b113 690 ret = IVAL(b,0);
f89b9368
WD
691 if (ret == (int32)0xffffffff)
692 return -1;
d730b113 693 return ret;
720b47f2
AT
694}
695
71c46176 696int64 read_longint(int f)
3a6a366f 697{
71c46176 698 int64 ret;
3a6a366f
AT
699 char b[8];
700 ret = read_int(f);
71c46176 701
f89b9368 702 if ((int32)ret != (int32)0xffffffff)
8de330a3 703 return ret;
71c46176 704
3bee6733 705#ifdef NO_INT64
9486289c 706 rprintf(FERROR,"Integer overflow - attempted 64 bit offset\n");
65417579 707 exit_cleanup(RERR_UNSUPPORTED);
71c46176 708#else
91c4da3f
S
709 readfd(f,b,8);
710 ret = IVAL(b,0) | (((int64)IVAL(b,4))<<32);
71c46176
AT
711#endif
712
3a6a366f
AT
713 return ret;
714}
715
9dd891bb 716void read_buf(int f,char *buf,size_t len)
720b47f2 717{
4c36ddbe 718 readfd(f,buf,len);
720b47f2
AT
719}
720
9dd891bb 721void read_sbuf(int f,char *buf,size_t len)
575f2fca 722{
3151cbae 723 read_buf(f,buf,len);
575f2fca
AT
724 buf[len] = 0;
725}
726
182dca5c
AT
727unsigned char read_byte(int f)
728{
4c36ddbe 729 unsigned char c;
3151cbae 730 read_buf(f, (char *)&c, 1);
4c36ddbe 731 return c;
182dca5c 732}
720b47f2 733
880da007 734
08571358
MP
735/**
736 * Sleep after writing to limit I/O bandwidth usage.
737 *
738 * @todo Rather than sleeping after each write, it might be better to
739 * use some kind of averaging. The current algorithm seems to always
740 * use a bit less bandwidth than specified, because it doesn't make up
741 * for slow periods. But arguably this is a feature. In addition, we
742 * ought to take the time used to write the data into account.
71e58630
WD
743 *
744 * During some phases of big transfers (file FOO is uptodate) this is
745 * called with a small bytes_written every time. As the kernel has to
746 * round small waits up to guarantee that we actually wait at least the
747 * requested number of microseconds, this can become grossly inaccurate.
748 * We therefore keep track of the bytes we've written over time and only
749 * sleep when the accumulated delay is at least 1 tenth of a second.
08571358
MP
750 **/
751static void sleep_for_bwlimit(int bytes_written)
752{
71e58630
WD
753 static struct timeval prior_tv;
754 static long total_written = 0;
755 struct timeval tv, start_tv;
756 long elapsed_usec, sleep_usec;
757
758#define ONE_SEC 1000000L /* # of microseconds in a second */
08571358
MP
759
760 if (!bwlimit)
761 return;
e681e820 762
71e58630
WD
763 total_written += bytes_written;
764
765 gettimeofday(&start_tv, NULL);
766 if (prior_tv.tv_sec) {
767 elapsed_usec = (start_tv.tv_sec - prior_tv.tv_sec) * ONE_SEC
768 + (start_tv.tv_usec - prior_tv.tv_usec);
769 total_written -= elapsed_usec * bwlimit / (ONE_SEC/1024);
770 if (total_written < 0)
771 total_written = 0;
772 }
3151cbae 773
71e58630
WD
774 sleep_usec = total_written * (ONE_SEC/1024) / bwlimit;
775 if (sleep_usec < ONE_SEC / 10) {
776 prior_tv = start_tv;
777 return;
778 }
08571358 779
71e58630
WD
780 tv.tv_sec = sleep_usec / ONE_SEC;
781 tv.tv_usec = sleep_usec % ONE_SEC;
98b332ed 782 select(0, NULL, NULL, NULL, &tv);
71e58630
WD
783
784 gettimeofday(&prior_tv, NULL);
785 elapsed_usec = (prior_tv.tv_sec - start_tv.tv_sec) * ONE_SEC
786 + (prior_tv.tv_usec - start_tv.tv_usec);
787 total_written = (sleep_usec - elapsed_usec) * bwlimit / (ONE_SEC/1024);
08571358
MP
788}
789
790
880da007
MP
791/**
792 * Write len bytes to the file descriptor @p fd.
793 *
794 * This function underlies the multiplexing system. The body of the
795 * application never calls this function directly.
796 **/
9dd891bb 797static void writefd_unbuffered(int fd,char *buf,size_t len)
720b47f2 798{
06ce139f 799 size_t total = 0;
8d9dc9f9 800 fd_set w_fds, r_fds;
4c36ddbe 801 int fd_count, count;
8d9dc9f9 802 struct timeval tv;
720b47f2 803
d17e1dd2 804 msg_list_push(NORMAL_FLUSH);
90ba34e2 805
e44f9a12
AT
806 no_flush++;
807
4c36ddbe 808 while (total < len) {
8d9dc9f9 809 FD_ZERO(&w_fds);
8d9dc9f9 810 FD_SET(fd,&w_fds);
554e0a8d 811 fd_count = fd;
4c36ddbe 812
d17e1dd2 813 if (msg_fd_in >= 0) {
56014c8c 814 FD_ZERO(&r_fds);
d17e1dd2 815 FD_SET(msg_fd_in,&r_fds);
d62bcc17 816 if (msg_fd_in > fd_count)
d17e1dd2 817 fd_count = msg_fd_in;
8d9dc9f9
AT
818 }
819
e626b29e 820 tv.tv_sec = select_timeout;
8d9dc9f9 821 tv.tv_usec = 0;
4c36ddbe 822
554e0a8d 823 errno = 0;
d17e1dd2
WD
824 count = select(fd_count+1, msg_fd_in >= 0 ? &r_fds : NULL,
825 &w_fds, NULL, &tv);
4c36ddbe 826
a57873b7 827 if (count == 0) {
d17e1dd2 828 msg_list_push(NORMAL_FLUSH);
a57873b7
AT
829 check_timeout();
830 }
831
4c36ddbe 832 if (count <= 0) {
f89b9368 833 if (errno == EBADF)
554e0a8d 834 exit_cleanup(RERR_SOCKETIO);
8d9dc9f9
AT
835 continue;
836 }
4c36ddbe 837
d17e1dd2
WD
838 if (msg_fd_in >= 0 && FD_ISSET(msg_fd_in, &r_fds))
839 read_msg_fd();
554e0a8d 840
8d9dc9f9 841 if (FD_ISSET(fd, &w_fds)) {
06ce139f
MP
842 int ret;
843 size_t n = len-total;
71e58630
WD
844 if (bwlimit && n > bwlimit_writemax)
845 n = bwlimit_writemax;
f0359dd0 846 ret = write(fd,buf+total,n);
4c36ddbe 847
3309507d
WD
848 if (ret < 0) {
849 if (errno == EINTR)
850 continue;
851 if (errno == EWOULDBLOCK || errno == EAGAIN) {
852 msleep(1);
853 continue;
854 }
f0359dd0
AT
855 }
856
4c36ddbe 857 if (ret <= 0) {
befbfe61
MP
858 /* Don't try to write errors back
859 * across the stream */
860 io_multiplexing_close();
d62bcc17
WD
861 rsyserr(FERROR, errno,
862 "writefd_unbuffered failed to write %ld bytes: phase \"%s\"",
f89b9368 863 (long)len, io_write_phase);
65417579 864 exit_cleanup(RERR_STREAMIO);
4c36ddbe
AT
865 }
866
08571358 867 sleep_for_bwlimit(ret);
d62bcc17 868
4c36ddbe 869 total += ret;
a800434a 870
4c36ddbe
AT
871 if (io_timeout)
872 last_io = time(NULL);
8d9dc9f9 873 }
4c36ddbe 874 }
e44f9a12
AT
875
876 no_flush--;
720b47f2
AT
877}
878
8d9dc9f9 879
d6dead6b
AT
880static char *io_buffer;
881static int io_buffer_count;
882
76c21947 883void io_start_buffering_out(int fd)
d6dead6b 884{
f89b9368
WD
885 if (io_buffer)
886 return;
679e7657 887 multiplex_out_fd = fd;
58cadc86 888 io_buffer = new_array(char, IO_BUFFER_SIZE);
f89b9368
WD
889 if (!io_buffer)
890 out_of_memory("writefd");
d6dead6b 891 io_buffer_count = 0;
ff41a59f
AT
892}
893
76c21947
WD
894void io_start_buffering_in(int fd)
895{
896 multiplex_in_fd = fd;
897}
898
880da007
MP
899/**
900 * Write an message to a multiplexed stream. If this fails then rsync
901 * exits.
902 **/
d17e1dd2 903static void mplex_write(int fd, enum msgcode code, char *buf, size_t len)
ff41a59f
AT
904{
905 char buffer[4096];
06ce139f 906 size_t n = len;
8d9dc9f9 907
ff41a59f
AT
908 SIVAL(buffer, 0, ((MPLEX_BASE + (int)code)<<24) + len);
909
3151cbae
WD
910 if (n > (sizeof buffer - 4)) {
911 n = sizeof buffer - 4;
ff41a59f
AT
912 }
913
914 memcpy(&buffer[4], buf, n);
915 writefd_unbuffered(fd, buffer, n+4);
916
917 len -= n;
918 buf += n;
919
6d7b6081
AT
920 if (len) {
921 writefd_unbuffered(fd, buf, len);
922 }
d6dead6b
AT
923}
924
ff41a59f 925
d17e1dd2 926void io_flush(int flush_it_all)
d6dead6b 927{
679e7657 928 int fd = multiplex_out_fd;
d62bcc17 929
d17e1dd2 930 msg_list_push(flush_it_all);
90ba34e2 931
d17e1dd2
WD
932 if (!io_buffer_count || no_flush)
933 return;
8d9dc9f9 934
d17e1dd2
WD
935 if (io_multiplexing_out)
936 mplex_write(fd, MSG_DATA, io_buffer, io_buffer_count);
937 else
4c36ddbe 938 writefd_unbuffered(fd, io_buffer, io_buffer_count);
8d9dc9f9
AT
939 io_buffer_count = 0;
940}
941
0ba48136 942
7b5c3eb0 943void io_end_buffering(void)
8d9dc9f9 944{
d17e1dd2 945 io_flush(NORMAL_FLUSH);
8d9dc9f9 946 if (!io_multiplexing_out) {
ff41a59f 947 free(io_buffer);
8d9dc9f9
AT
948 io_buffer = NULL;
949 }
d6dead6b
AT
950}
951
9dd891bb 952static void writefd(int fd,char *buf,size_t len)
d6dead6b 953{
1b7c47cb
AT
954 stats.total_written += len;
955
d17e1dd2 956 msg_list_push(NORMAL_FLUSH);
90ba34e2 957
554e0a8d 958 if (!io_buffer || fd != multiplex_out_fd) {
4c36ddbe
AT
959 writefd_unbuffered(fd, buf, len);
960 return;
961 }
d6dead6b
AT
962
963 while (len) {
f89b9368 964 int n = MIN((int)len, IO_BUFFER_SIZE-io_buffer_count);
d6dead6b
AT
965 if (n > 0) {
966 memcpy(io_buffer+io_buffer_count, buf, n);
967 buf += n;
968 len -= n;
969 io_buffer_count += n;
970 }
3151cbae 971
d17e1dd2
WD
972 if (io_buffer_count == IO_BUFFER_SIZE)
973 io_flush(NORMAL_FLUSH);
d6dead6b 974 }
d6dead6b 975}
720b47f2
AT
976
977
b7922338 978void write_int(int f,int32 x)
720b47f2 979{
8d9dc9f9
AT
980 char b[4];
981 SIVAL(b,0,x);
4c36ddbe 982 writefd(f,b,4);
720b47f2
AT
983}
984
7a24c346 985
805edf9d
MP
986void write_int_named(int f, int32 x, const char *phase)
987{
988 io_write_phase = phase;
989 write_int(f, x);
990 io_write_phase = phase_unknown;
991}
992
993
7a24c346
MP
994/*
995 * Note: int64 may actually be a 32-bit type if ./configure couldn't find any
996 * 64-bit types on this platform.
997 */
71c46176 998void write_longint(int f, int64 x)
3a6a366f 999{
3a6a366f 1000 char b[8];
3a6a366f 1001
91c4da3f 1002 if (x <= 0x7FFFFFFF) {
3a6a366f
AT
1003 write_int(f, (int)x);
1004 return;
1005 }
1006
67863f46
S
1007#ifdef NO_INT64
1008 rprintf(FERROR,"Integer overflow - attempted 64 bit offset\n");
1009 exit_cleanup(RERR_UNSUPPORTED);
1010#else
8de330a3 1011 write_int(f, (int32)0xFFFFFFFF);
3a6a366f
AT
1012 SIVAL(b,0,(x&0xFFFFFFFF));
1013 SIVAL(b,4,((x>>32)&0xFFFFFFFF));
1014
4c36ddbe 1015 writefd(f,b,8);
67863f46 1016#endif
3a6a366f
AT
1017}
1018
9dd891bb 1019void write_buf(int f,char *buf,size_t len)
720b47f2 1020{
4c36ddbe 1021 writefd(f,buf,len);
720b47f2
AT
1022}
1023
880da007 1024/** Write a string to the connection */
6e4fb64e 1025static void write_sbuf(int f,char *buf)
f0fca04e
AT
1026{
1027 write_buf(f, buf, strlen(buf));
1028}
1029
720b47f2 1030
182dca5c
AT
1031void write_byte(int f,unsigned char c)
1032{
f0fca04e 1033 write_buf(f,(char *)&c,1);
182dca5c
AT
1034}
1035
7a55d06e
MP
1036
1037
914cc65c 1038/**
6ed6d7f5
WD
1039 * Read a line of up to @p maxlen characters into @p buf (not counting
1040 * the trailing null). Strips the (required) trailing newline and all
1041 * carriage returns.
914cc65c 1042 *
6ed6d7f5 1043 * @return 1 for success; 0 for I/O error or truncation.
914cc65c 1044 **/
9dd891bb 1045int read_line(int f, char *buf, size_t maxlen)
f0fca04e
AT
1046{
1047 while (maxlen) {
528bfcd7 1048 buf[0] = 0;
f0fca04e 1049 read_buf(f, buf, 1);
914cc65c
MP
1050 if (buf[0] == 0)
1051 return 0;
6ed6d7f5 1052 if (buf[0] == '\n')
f0fca04e 1053 break;
f0fca04e
AT
1054 if (buf[0] != '\r') {
1055 buf++;
1056 maxlen--;
1057 }
1058 }
6ed6d7f5
WD
1059 *buf = '\0';
1060 return maxlen > 0;
f0fca04e
AT
1061}
1062
1063
1064void io_printf(int fd, const char *format, ...)
1065{
d62bcc17 1066 va_list ap;
f0fca04e
AT
1067 char buf[1024];
1068 int len;
3151cbae 1069
f0fca04e 1070 va_start(ap, format);
3151cbae 1071 len = vsnprintf(buf, sizeof buf, format, ap);
f0fca04e
AT
1072 va_end(ap);
1073
f89b9368
WD
1074 if (len < 0)
1075 exit_cleanup(RERR_STREAMIO);
f0fca04e
AT
1076
1077 write_sbuf(fd, buf);
1078}
8d9dc9f9
AT
1079
1080
d17e1dd2 1081/** Setup for multiplexing a MSG_* stream with the data stream. */
8d9dc9f9
AT
1082void io_start_multiplex_out(int fd)
1083{
679e7657 1084 multiplex_out_fd = fd;
d17e1dd2 1085 io_flush(NORMAL_FLUSH);
76c21947 1086 io_start_buffering_out(fd);
8d9dc9f9
AT
1087 io_multiplexing_out = 1;
1088}
1089
d17e1dd2 1090/** Setup for multiplexing a MSG_* stream with the data stream. */
8d9dc9f9
AT
1091void io_start_multiplex_in(int fd)
1092{
679e7657 1093 multiplex_in_fd = fd;
d17e1dd2 1094 io_flush(NORMAL_FLUSH);
8d9dc9f9
AT
1095 io_multiplexing_in = 1;
1096}
1097
d17e1dd2
WD
1098/** Write an message to the multiplexed data stream. */
1099int io_multiplex_write(enum msgcode code, char *buf, size_t len)
8d9dc9f9 1100{
f89b9368
WD
1101 if (!io_multiplexing_out)
1102 return 0;
8d9dc9f9 1103
d17e1dd2 1104 io_flush(NORMAL_FLUSH);
1b7c47cb 1105 stats.total_written += (len+4);
ff41a59f 1106 mplex_write(multiplex_out_fd, code, buf, len);
8d9dc9f9
AT
1107 return 1;
1108}
1109
d17e1dd2 1110/** Stop output multiplexing. */
554e0a8d
AT
1111void io_multiplexing_close(void)
1112{
1113 io_multiplexing_out = 0;
1114}
1115