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