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