Clarified something in the new --hard-links text.
[rsync/rsync.git] / io.c
CommitLineData
0f78b815
WD
1/*
2 * Socket and pipe I/O utilities used in rsync.
d62bcc17 3 *
0f78b815
WD
4 * Copyright (C) 1996-2001 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
ba2133d6 7 * Copyright (C) 2003-2007 Wayne Davison
d62bcc17 8 *
880da007 9 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
d62bcc17 13 *
880da007
MP
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
d62bcc17 18 *
e7c67065 19 * You should have received a copy of the GNU General Public License along
4fd842f9 20 * with this program; if not, visit the http://fsf.org website.
880da007 21 */
720b47f2 22
0f78b815
WD
23/* Rsync provides its own multiplexing system, which is used to send
24 * stderr and stdout over a single socket.
87ee2481
MP
25 *
26 * For historical reasons this is off during the start of the
27 * connection, but it's switched on quite early using
0f78b815 28 * io_start_multiplex_out() and io_start_multiplex_in(). */
720b47f2 29
720b47f2
AT
30#include "rsync.h"
31
880da007 32/** If no timeout is specified then use a 60 second select timeout */
8cd9fd4e
AT
33#define SELECT_TIMEOUT 60
34
7a55d06e 35extern int bwlimit;
71e58630 36extern size_t bwlimit_writemax;
6ba9279f 37extern int io_timeout;
cdf236aa 38extern int allowed_lull;
d17e1dd2
WD
39extern int am_server;
40extern int am_daemon;
41extern int am_sender;
98f8c9a5 42extern int am_generator;
3ea6e0e7 43extern int inc_recurse;
8ef246e0 44extern int io_error;
e626b29e 45extern int eol_nulls;
8ef246e0 46extern int flist_eof;
3b0a30eb 47extern int read_batch;
188fed95 48extern int csum_length;
b9f592fb
WD
49extern int checksum_seed;
50extern int protocol_version;
47c11975 51extern int remove_source_files;
cdf236aa 52extern int preserve_hard_links;
d19320fd 53extern char *filesfrom_host;
a800434a 54extern struct stats stats;
8ef246e0 55extern struct file_list *cur_flist, *first_flist;
332cf6df
WD
56#ifdef ICONV_OPTION
57extern iconv_t ic_send, ic_recv;
58#endif
720b47f2 59
a86179f4 60const char phase_unknown[] = "unknown";
9e2409ab 61int ignore_timeout = 0;
b9f592fb 62int batch_fd = -1;
04c722d5 63int msgdone_cnt = 0;
805edf9d 64
cb2e1f18 65/* Ignore an EOF error if non-zero. See whine_about_eof(). */
574c2500 66int kluge_around_eof = 0;
7a55d06e 67
d17e1dd2
WD
68int msg_fd_in = -1;
69int msg_fd_out = -1;
cdf236aa
WD
70int sock_f_in = -1;
71int sock_f_out = -1;
7a55d06e 72
8ef246e0
WD
73static int iobuf_f_in = -1;
74static char *iobuf_in;
75static size_t iobuf_in_siz;
76static size_t iobuf_in_ndx;
77static size_t iobuf_in_remaining;
78
79static int iobuf_f_out = -1;
80static char *iobuf_out;
81static int iobuf_out_cnt;
82
83int flist_forward_from = -1;
84
1f75bb10
WD
85static int io_multiplexing_out;
86static int io_multiplexing_in;
3b0a30eb
WD
87static time_t last_io_in;
88static time_t last_io_out;
1f75bb10
WD
89static int no_flush;
90
b9f592fb
WD
91static int write_batch_monitor_in = -1;
92static int write_batch_monitor_out = -1;
93
56014c8c
WD
94static int io_filesfrom_f_in = -1;
95static int io_filesfrom_f_out = -1;
96static char io_filesfrom_buf[2048];
332cf6df
WD
97#ifdef ICONV_OPTION
98static char iconv_buf[sizeof io_filesfrom_buf / 2];
99#endif
56014c8c
WD
100static char *io_filesfrom_bp;
101static char io_filesfrom_lastchar;
102static int io_filesfrom_buflen;
954bbed8 103static int defer_forwarding_messages = 0;
3b0a30eb 104static int select_timeout = SELECT_TIMEOUT;
d6081c82
WD
105static int active_filecnt = 0;
106static OFF_T active_bytecnt = 0;
720b47f2 107
351e23ad
WD
108static char int_byte_extra[64] = {
109 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* (00 - 3F)/4 */
110 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* (40 - 7F)/4 */
111 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* (80 - BF)/4 */
112 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 5, 6, /* (C0 - FF)/4 */
482f48cc
WD
113};
114
29349024
WD
115enum festatus { FES_SUCCESS, FES_REDO, FES_NO_SEND };
116
dde5b772 117static void readfd(int fd, char *buffer, size_t N);
8ef246e0
WD
118static void writefd(int fd, const char *buf, size_t len);
119static void writefd_unbuffered(int fd, const char *buf, size_t len);
332cf6df 120static void mplex_write(int fd, enum msgcode code, const char *buf, size_t len, int convert);
ff41a59f 121
c6816b94
WD
122struct flist_ndx_item {
123 struct flist_ndx_item *next;
124 int ndx;
d17e1dd2
WD
125};
126
c6816b94
WD
127struct flist_ndx_list {
128 struct flist_ndx_item *head, *tail;
129};
130
cdf236aa 131static struct flist_ndx_list redo_list, hlink_list;
d17e1dd2 132
08c88178
WD
133struct msg_list_item {
134 struct msg_list_item *next;
332cf6df 135 char convert;
954bbed8 136 char buf[1];
d17e1dd2
WD
137};
138
08c88178
WD
139struct msg_list {
140 struct msg_list_item *head, *tail;
141};
142
e4c877cf 143static struct msg_list msg_queue;
d17e1dd2 144
c6816b94 145static void flist_ndx_push(struct flist_ndx_list *lp, int ndx)
d17e1dd2 146{
c6816b94
WD
147 struct flist_ndx_item *item;
148
149 if (!(item = new(struct flist_ndx_item)))
150 out_of_memory("flist_ndx_push");
151 item->next = NULL;
152 item->ndx = ndx;
153 if (lp->tail)
154 lp->tail->next = item;
d17e1dd2 155 else
c6816b94
WD
156 lp->head = item;
157 lp->tail = item;
158}
159
160static int flist_ndx_pop(struct flist_ndx_list *lp)
161{
162 struct flist_ndx_item *next;
163 int ndx;
164
165 if (!lp->head)
166 return -1;
167
168 ndx = lp->head->ndx;
169 next = lp->head->next;
170 free(lp->head);
171 lp->head = next;
172 if (!next)
173 lp->tail = NULL;
174
175 return ndx;
d17e1dd2
WD
176}
177
29349024
WD
178static void got_flist_entry_status(enum festatus status, const char *buf)
179{
180 int ndx = IVAL(buf, 0);
181 struct file_list *flist = flist_for_ndx(ndx);
182
183 assert(flist != NULL);
184 assert(ndx >= flist->ndx_start);
185
186 if (remove_source_files) {
187 active_filecnt--;
188 active_bytecnt -= F_LENGTH(flist->files[ndx - flist->ndx_start]);
189 }
190
191 if (inc_recurse)
192 flist->in_progress--;
193
194 switch (status) {
195 case FES_SUCCESS:
196 if (remove_source_files)
197 send_msg(MSG_SUCCESS, buf, 4, 0);
198 if (preserve_hard_links) {
199 struct file_struct *file = flist->files[ndx - flist->ndx_start];
200 if (F_IS_HLINKED(file))
201 flist_ndx_push(&hlink_list, ndx);
202 }
203 break;
204 case FES_REDO:
205 if (inc_recurse)
206 flist->to_redo++;
207 flist_ndx_push(&redo_list, ndx);
208 break;
209 case FES_NO_SEND:
210 break;
211 }
212}
213
8d9dc9f9
AT
214static void check_timeout(void)
215{
216 time_t t;
90ba34e2 217
9e2409ab 218 if (!io_timeout || ignore_timeout)
d17e1dd2 219 return;
8d9dc9f9 220
3b0a30eb
WD
221 if (!last_io_in) {
222 last_io_in = time(NULL);
8d9dc9f9
AT
223 return;
224 }
225
226 t = time(NULL);
227
3b0a30eb 228 if (t - last_io_in >= io_timeout) {
0adb99b9 229 if (!am_server && !am_daemon) {
4ccfd96c 230 rprintf(FERROR, "io timeout after %d seconds -- exiting\n",
3b0a30eb 231 (int)(t-last_io_in));
0adb99b9 232 }
65417579 233 exit_cleanup(RERR_TIMEOUT);
8d9dc9f9
AT
234 }
235}
236
1f75bb10
WD
237/* Note the fds used for the main socket (which might really be a pipe
238 * for a local transfer, but we can ignore that). */
239void io_set_sock_fds(int f_in, int f_out)
240{
241 sock_f_in = f_in;
242 sock_f_out = f_out;
243}
244
3b0a30eb
WD
245void set_io_timeout(int secs)
246{
247 io_timeout = secs;
248
249 if (!io_timeout || io_timeout > SELECT_TIMEOUT)
250 select_timeout = SELECT_TIMEOUT;
251 else
252 select_timeout = io_timeout;
253
254 allowed_lull = read_batch ? 0 : (io_timeout + 1) / 2;
255}
256
98f8c9a5
WD
257/* Setup the fd used to receive MSG_* messages. Only needed during the
258 * early stages of being a local sender (up through the sending of the
259 * file list) or when we're the generator (to fetch the messages from
260 * the receiver). */
d17e1dd2
WD
261void set_msg_fd_in(int fd)
262{
263 msg_fd_in = fd;
264}
265
98f8c9a5
WD
266/* Setup the fd used to send our MSG_* messages. Only needed when
267 * we're the receiver (to send our messages to the generator). */
d17e1dd2
WD
268void set_msg_fd_out(int fd)
269{
270 msg_fd_out = fd;
271 set_nonblocking(msg_fd_out);
272}
273
274/* Add a message to the pending MSG_* list. */
332cf6df 275static void msg_list_add(struct msg_list *lst, int code, const char *buf, int len, int convert)
554e0a8d 276{
954bbed8
WD
277 struct msg_list_item *m;
278 int sz = len + 4 + sizeof m[0] - 1;
d17e1dd2 279
954bbed8 280 if (!(m = (struct msg_list_item *)new_array(char, sz)))
c6816b94 281 out_of_memory("msg_list_add");
954bbed8 282 m->next = NULL;
332cf6df 283 m->convert = convert;
954bbed8
WD
284 SIVAL(m->buf, 0, ((code+MPLEX_BASE)<<24) | len);
285 memcpy(m->buf + 4, buf, len);
286 if (lst->tail)
287 lst->tail->next = m;
d17e1dd2 288 else
954bbed8
WD
289 lst->head = m;
290 lst->tail = m;
554e0a8d
AT
291}
292
e4c877cf 293static void msg_flush(void)
3be97bf9 294{
e4c877cf
WD
295 if (am_generator) {
296 while (msg_queue.head && io_multiplexing_out) {
297 struct msg_list_item *m = msg_queue.head;
332cf6df
WD
298 int len = IVAL(m->buf, 0) & 0xFFFFFF;
299 int tag = *((uchar*)m->buf+3) - MPLEX_BASE;
e4c877cf
WD
300 if (!(msg_queue.head = m->next))
301 msg_queue.tail = NULL;
332cf6df 302 stats.total_written += len + 4;
e4c877cf 303 defer_forwarding_messages++;
332cf6df 304 mplex_write(sock_f_out, tag, m->buf + 4, len, m->convert);
e4c877cf
WD
305 defer_forwarding_messages--;
306 free(m);
307 }
308 } else {
309 while (msg_queue.head) {
310 struct msg_list_item *m = msg_queue.head;
332cf6df
WD
311 int len = IVAL(m->buf, 0) & 0xFFFFFF;
312 int tag = *((uchar*)m->buf+3) - MPLEX_BASE;
e4c877cf
WD
313 if (!(msg_queue.head = m->next))
314 msg_queue.tail = NULL;
315 defer_forwarding_messages++;
332cf6df 316 mplex_write(msg_fd_out, tag, m->buf + 4, len, m->convert);
e4c877cf
WD
317 defer_forwarding_messages--;
318 free(m);
319 }
3be97bf9
WD
320 }
321}
322
98f8c9a5
WD
323/* Read a message from the MSG_* fd and handle it. This is called either
324 * during the early stages of being a local sender (up through the sending
325 * of the file list) or when we're the generator (to fetch the messages
326 * from the receiver). */
d17e1dd2 327static void read_msg_fd(void)
554e0a8d 328{
f9c6b3e7 329 char buf[2048];
06ce139f 330 size_t n;
8ef246e0 331 struct file_list *flist;
d17e1dd2 332 int fd = msg_fd_in;
ff41a59f
AT
333 int tag, len;
334
00bdf899 335 /* Temporarily disable msg_fd_in. This is needed to avoid looping back
af436313 336 * to this routine from writefd_unbuffered(). */
3be97bf9 337 no_flush++;
d17e1dd2 338 msg_fd_in = -1;
be21e29c 339 defer_forwarding_messages++;
554e0a8d 340
dde5b772 341 readfd(fd, buf, 4);
ff41a59f
AT
342 tag = IVAL(buf, 0);
343
344 len = tag & 0xFFFFFF;
d17e1dd2 345 tag = (tag >> 24) - MPLEX_BASE;
ff41a59f 346
d17e1dd2
WD
347 switch (tag) {
348 case MSG_DONE:
cc7b86bf 349 if (len < 0 || len > 1 || !am_generator) {
8ef246e0
WD
350 invalid_msg:
351 rprintf(FERROR, "invalid message %d:%d [%s%s]\n",
352 tag, len, who_am_i(),
3ea6e0e7 353 inc_recurse ? "/inc" : "");
d17e1dd2 354 exit_cleanup(RERR_STREAMIO);
13c7bcbb 355 }
cc7b86bf
WD
356 if (len) {
357 readfd(fd, buf, len);
351e23ad 358 stats.total_read = read_varlong(fd, 3);
cc7b86bf 359 }
04c722d5 360 msgdone_cnt++;
d17e1dd2
WD
361 break;
362 case MSG_REDO:
8ef246e0
WD
363 if (len != 4 || !am_generator)
364 goto invalid_msg;
dde5b772 365 readfd(fd, buf, 4);
29349024 366 got_flist_entry_status(FES_REDO, buf);
8ef246e0
WD
367 break;
368 case MSG_FLIST:
3ea6e0e7 369 if (len != 4 || !am_generator || !inc_recurse)
8ef246e0 370 goto invalid_msg;
dde5b772 371 readfd(fd, buf, 4);
8ef246e0
WD
372 /* Read extra file list from receiver. */
373 assert(iobuf_in != NULL);
374 assert(iobuf_f_in == fd);
1faa1a6d
WD
375 if (verbose > 3) {
376 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
377 who_am_i(), IVAL(buf,0));
378 }
8ef246e0
WD
379 flist = recv_file_list(fd);
380 flist->parent_ndx = IVAL(buf,0);
381 break;
382 case MSG_FLIST_EOF:
3ea6e0e7 383 if (len != 0 || !am_generator || !inc_recurse)
8ef246e0
WD
384 goto invalid_msg;
385 flist_eof = 1;
d17e1dd2 386 break;
0d67e00a 387 case MSG_DELETED:
8ef246e0
WD
388 if (len >= (int)sizeof buf || !am_generator)
389 goto invalid_msg;
dde5b772 390 readfd(fd, buf, len);
332cf6df 391 send_msg(MSG_DELETED, buf, len, 1);
0d67e00a 392 break;
9981c27e 393 case MSG_SUCCESS:
8ef246e0
WD
394 if (len != 4 || !am_generator)
395 goto invalid_msg;
29349024
WD
396 readfd(fd, buf, 4);
397 got_flist_entry_status(FES_SUCCESS, buf);
8ef246e0
WD
398 break;
399 case MSG_NO_SEND:
400 if (len != 4 || !am_generator)
401 goto invalid_msg;
29349024
WD
402 readfd(fd, buf, 4);
403 got_flist_entry_status(FES_NO_SEND, buf);
9981c27e 404 break;
72f2d1b3 405 case MSG_SOCKERR:
64119c79 406 case MSG_CLIENT:
8ef246e0
WD
407 if (!am_generator)
408 goto invalid_msg;
64119c79 409 if (tag == MSG_SOCKERR)
8ef246e0 410 io_end_multiplex_out();
72f2d1b3 411 /* FALL THROUGH */
d17e1dd2
WD
412 case MSG_INFO:
413 case MSG_ERROR:
414 case MSG_LOG:
415 while (len) {
416 n = len;
417 if (n >= sizeof buf)
418 n = sizeof buf - 1;
dde5b772 419 readfd(fd, buf, n);
332cf6df 420 rwrite((enum logcode)tag, buf, n, !am_generator);
d17e1dd2
WD
421 len -= n;
422 }
423 break;
424 default:
f8b9da1a
WD
425 rprintf(FERROR, "unknown message %d:%d [%s]\n",
426 tag, len, who_am_i());
d17e1dd2
WD
427 exit_cleanup(RERR_STREAMIO);
428 }
429
3be97bf9 430 no_flush--;
d17e1dd2 431 msg_fd_in = fd;
3be97bf9 432 if (!--defer_forwarding_messages)
e4c877cf 433 msg_flush();
d17e1dd2
WD
434}
435
d6081c82 436/* This is used by the generator to limit how many file transfers can
47c11975 437 * be active at once when --remove-source-files is specified. Without
d6081c82
WD
438 * this, sender-side deletions were mostly happening at the end. */
439void increment_active_files(int ndx, int itemizing, enum logcode code)
440{
441 /* TODO: tune these limits? */
5b986297 442 while (active_filecnt >= (active_bytecnt >= 128*1024 ? 10 : 50)) {
04c722d5
WD
443 check_for_finished_files(itemizing, code, 0);
444 if (iobuf_out_cnt)
445 io_flush(NORMAL_FLUSH);
446 else
447 read_msg_fd();
d6081c82
WD
448 }
449
450 active_filecnt++;
121bfb2b 451 active_bytecnt += F_LENGTH(cur_flist->files[ndx - cur_flist->ndx_start]);
d6081c82
WD
452}
453
3be97bf9 454/* Write an message to a multiplexed stream. If this fails, rsync exits. */
332cf6df 455static void mplex_write(int fd, enum msgcode code, const char *buf, size_t len, int convert)
d17e1dd2 456{
332cf6df 457 char buffer[BIGPATHBUFLEN]; /* Oversized for use by iconv code. */
3be97bf9 458 size_t n = len;
d17e1dd2 459
3be97bf9
WD
460 SIVAL(buffer, 0, ((MPLEX_BASE + (int)code)<<24) + len);
461
332cf6df
WD
462#ifdef ICONV_OPTION
463 if (convert && ic_send == (iconv_t)-1)
464#endif
465 convert = 0;
466
467 if (convert || n > 1024 - 4) /* BIGPATHBUFLEN can handle 1024 bytes */
3be97bf9
WD
468 n = 0;
469 else
470 memcpy(buffer + 4, buf, n);
471
472 writefd_unbuffered(fd, buffer, n+4);
473
474 len -= n;
475 buf += n;
476
332cf6df
WD
477#ifdef ICONV_OPTION
478 if (convert) {
479 iconv(ic_send, NULL, 0, NULL, 0);
480 defer_forwarding_messages++;
481 while (len) {
482 ICONV_CONST char *ibuf = (ICONV_CONST char *)buf;
483 char *obuf = buffer;
484 size_t ocnt = sizeof buffer;
485 while (len && iconv(ic_send, &ibuf,&len,
486 &obuf,&ocnt) == (size_t)-1) {
487 if (errno == E2BIG || !ocnt)
488 break;
489 *obuf++ = *ibuf++;
490 ocnt--, len--;
491 }
492 n = obuf - buffer;
493 writefd_unbuffered(fd, buffer, n);
494 }
495 if (!--defer_forwarding_messages)
496 msg_flush();
497 } else
498#endif
3be97bf9
WD
499 if (len) {
500 defer_forwarding_messages++;
501 writefd_unbuffered(fd, buf, len);
502 if (!--defer_forwarding_messages)
e4c877cf 503 msg_flush();
8ef246e0 504 }
d17e1dd2
WD
505}
506
332cf6df 507int send_msg(enum msgcode code, const char *buf, int len, int convert)
37f35d89
WD
508{
509 if (msg_fd_out < 0) {
12ccc73a 510 if (!defer_forwarding_messages)
332cf6df 511 return io_multiplex_write(code, buf, len, convert);
12ccc73a
WD
512 if (!io_multiplexing_out)
513 return 0;
332cf6df 514 msg_list_add(&msg_queue, code, buf, len, convert);
12ccc73a 515 return 1;
37f35d89 516 }
e4c877cf 517 if (flist_forward_from >= 0)
332cf6df 518 msg_list_add(&msg_queue, code, buf, len, convert);
e4c877cf 519 else
332cf6df 520 mplex_write(msg_fd_out, code, buf, len, convert);
12ccc73a 521 return 1;
37f35d89
WD
522}
523
155d9206
WD
524void send_msg_int(enum msgcode code, int num)
525{
526 char numbuf[4];
527 SIVAL(numbuf, 0, num);
332cf6df 528 send_msg(code, numbuf, 4, 0);
155d9206
WD
529}
530
8ef246e0 531void wait_for_receiver(void)
d17e1dd2 532{
2a5df862
WD
533 if (iobuf_out_cnt)
534 io_flush(NORMAL_FLUSH);
535 else
536 read_msg_fd();
8ef246e0 537}
554e0a8d 538
8ef246e0
WD
539int get_redo_num(void)
540{
c6816b94 541 return flist_ndx_pop(&redo_list);
554e0a8d
AT
542}
543
cdf236aa
WD
544int get_hlink_num(void)
545{
546 return flist_ndx_pop(&hlink_list);
547}
548
56014c8c
WD
549/**
550 * When we're the receiver and we have a local --files-from list of names
551 * that needs to be sent over the socket to the sender, we have to do two
552 * things at the same time: send the sender a list of what files we're
553 * processing and read the incoming file+info list from the sender. We do
554 * this by augmenting the read_timeout() function to copy this data. It
555 * uses the io_filesfrom_buf to read a block of data from f_in (when it is
556 * ready, since it might be a pipe) and then blast it out f_out (when it
557 * is ready to receive more data).
558 */
559void io_set_filesfrom_fds(int f_in, int f_out)
560{
561 io_filesfrom_f_in = f_in;
562 io_filesfrom_f_out = f_out;
563 io_filesfrom_bp = io_filesfrom_buf;
564 io_filesfrom_lastchar = '\0';
565 io_filesfrom_buflen = 0;
566}
720b47f2 567
cb2e1f18
WD
568/* It's almost always an error to get an EOF when we're trying to read from the
569 * network, because the protocol is (for the most part) self-terminating.
880da007 570 *
cb2e1f18
WD
571 * There is one case for the receiver when it is at the end of the transfer
572 * (hanging around reading any keep-alive packets that might come its way): if
573 * the sender dies before the generator's kill-signal comes through, we can end
574 * up here needing to loop until the kill-signal arrives. In this situation,
575 * kluge_around_eof will be < 0.
576 *
577 * There is another case for older protocol versions (< 24) where the module
578 * listing was not terminated, so we must ignore an EOF error in that case and
579 * exit. In this situation, kluge_around_eof will be > 0. */
1f75bb10 580static void whine_about_eof(int fd)
7a55d06e 581{
574c2500 582 if (kluge_around_eof && fd == sock_f_in) {
55bb7fff 583 int i;
574c2500
WD
584 if (kluge_around_eof > 0)
585 exit_cleanup(0);
55bb7fff
WD
586 /* If we're still here after 10 seconds, exit with an error. */
587 for (i = 10*1000/20; i--; )
574c2500
WD
588 msleep(20);
589 }
3151cbae 590
00bdf899 591 rprintf(FERROR, RSYNC_NAME ": connection unexpectedly closed "
dca68b0a
WD
592 "(%.0f bytes received so far) [%s]\n",
593 (double)stats.total_read, who_am_i());
00bdf899
WD
594
595 exit_cleanup(RERR_STREAMIO);
7a55d06e 596}
720b47f2 597
880da007 598/**
6ed6d7f5 599 * Read from a socket with I/O timeout. return the number of bytes
c3563c46
MP
600 * read. If no bytes can be read then exit, never return a number <= 0.
601 *
8886f8d0
MP
602 * TODO: If the remote shell connection fails, then current versions
603 * actually report an "unexpected EOF" error here. Since it's a
604 * fairly common mistake to try to use rsh when ssh is required, we
605 * should trap that: if we fail to read any data at all, we should
606 * give a better explanation. We can tell whether the connection has
607 * started by looking e.g. at whether the remote version is known yet.
c3563c46 608 */
3151cbae 609static int read_timeout(int fd, char *buf, size_t len)
8d9dc9f9 610{
d8aeda1e 611 int n, cnt = 0;
4c36ddbe 612
dde5b772 613 io_flush(FULL_FLUSH);
ea2111d1 614
d8aeda1e 615 while (cnt == 0) {
7a55d06e 616 /* until we manage to read *something* */
56014c8c 617 fd_set r_fds, w_fds;
4c36ddbe 618 struct timeval tv;
1ea087a7 619 int maxfd = fd;
a57873b7 620 int count;
4c36ddbe 621
56014c8c 622 FD_ZERO(&r_fds);
a7026ba9 623 FD_ZERO(&w_fds);
56014c8c 624 FD_SET(fd, &r_fds);
3309507d 625 if (io_filesfrom_f_out >= 0) {
56014c8c
WD
626 int new_fd;
627 if (io_filesfrom_buflen == 0) {
3309507d 628 if (io_filesfrom_f_in >= 0) {
56014c8c
WD
629 FD_SET(io_filesfrom_f_in, &r_fds);
630 new_fd = io_filesfrom_f_in;
631 } else {
632 io_filesfrom_f_out = -1;
633 new_fd = -1;
634 }
635 } else {
56014c8c
WD
636 FD_SET(io_filesfrom_f_out, &w_fds);
637 new_fd = io_filesfrom_f_out;
638 }
1ea087a7
WD
639 if (new_fd > maxfd)
640 maxfd = new_fd;
554e0a8d
AT
641 }
642
e626b29e 643 tv.tv_sec = select_timeout;
4c36ddbe
AT
644 tv.tv_usec = 0;
645
554e0a8d
AT
646 errno = 0;
647
a7026ba9 648 count = select(maxfd + 1, &r_fds, &w_fds, NULL, &tv);
a57873b7 649
a57873b7 650 if (count <= 0) {
2a5df862
WD
651 if (errno == EBADF) {
652 defer_forwarding_messages = 0;
554e0a8d 653 exit_cleanup(RERR_SOCKETIO);
2a5df862 654 }
bd717af8 655 check_timeout();
4c36ddbe
AT
656 continue;
657 }
658
3309507d 659 if (io_filesfrom_f_out >= 0) {
56014c8c
WD
660 if (io_filesfrom_buflen) {
661 if (FD_ISSET(io_filesfrom_f_out, &w_fds)) {
662 int l = write(io_filesfrom_f_out,
663 io_filesfrom_bp,
664 io_filesfrom_buflen);
665 if (l > 0) {
666 if (!(io_filesfrom_buflen -= l))
667 io_filesfrom_bp = io_filesfrom_buf;
668 else
669 io_filesfrom_bp += l;
47cffb77 670 } else if (errno != EINTR) {
56014c8c
WD
671 /* XXX should we complain? */
672 io_filesfrom_f_out = -1;
673 }
674 }
3309507d 675 } else if (io_filesfrom_f_in >= 0) {
56014c8c
WD
676 if (FD_ISSET(io_filesfrom_f_in, &r_fds)) {
677 int l = read(io_filesfrom_f_in,
678 io_filesfrom_buf,
679 sizeof io_filesfrom_buf);
680 if (l <= 0) {
47cffb77
WD
681 if (l == 0 || errno != EINTR) {
682 /* Send end-of-file marker */
683 io_filesfrom_buf[0] = '\0';
684 io_filesfrom_buf[1] = '\0';
685 io_filesfrom_buflen = io_filesfrom_lastchar? 2 : 1;
686 io_filesfrom_f_in = -1;
687 }
56014c8c 688 } else {
56014c8c
WD
689 if (!eol_nulls) {
690 char *s = io_filesfrom_buf + l;
691 /* Transform CR and/or LF into '\0' */
692 while (s-- > io_filesfrom_buf) {
693 if (*s == '\n' || *s == '\r')
694 *s = '\0';
695 }
696 }
697 if (!io_filesfrom_lastchar) {
698 /* Last buf ended with a '\0', so don't
699 * let this buf start with one. */
700 while (l && !*io_filesfrom_bp)
701 io_filesfrom_bp++, l--;
702 }
703 if (!l)
704 io_filesfrom_bp = io_filesfrom_buf;
705 else {
706 char *f = io_filesfrom_bp;
707 char *t = f;
708 char *eob = f + l;
709 /* Eliminate any multi-'\0' runs. */
710 while (f != eob) {
711 if (!(*t++ = *f++)) {
712 while (f != eob && !*f)
713 f++, l--;
714 }
715 }
716 io_filesfrom_lastchar = f[-1];
717 }
718 io_filesfrom_buflen = l;
719 }
720 }
721 }
722 }
723
f89b9368
WD
724 if (!FD_ISSET(fd, &r_fds))
725 continue;
554e0a8d 726
4c36ddbe
AT
727 n = read(fd, buf, len);
728
1ea087a7
WD
729 if (n <= 0) {
730 if (n == 0)
1f75bb10 731 whine_about_eof(fd); /* Doesn't return. */
d62bcc17
WD
732 if (errno == EINTR || errno == EWOULDBLOCK
733 || errno == EAGAIN)
7a55d06e 734 continue;
1f75bb10
WD
735
736 /* Don't write errors on a dead socket. */
72f2d1b3 737 if (fd == sock_f_in) {
8ef246e0 738 io_end_multiplex_out();
72f2d1b3
WD
739 rsyserr(FSOCKERR, errno, "read error");
740 } else
741 rsyserr(FERROR, errno, "read error");
1f75bb10 742 exit_cleanup(RERR_STREAMIO);
8d9dc9f9 743 }
00bdf899
WD
744
745 buf += n;
746 len -= n;
d8aeda1e 747 cnt += n;
1f75bb10 748
3b0a30eb
WD
749 if (fd == sock_f_in && io_timeout)
750 last_io_in = time(NULL);
4c36ddbe 751 }
8d9dc9f9 752
d8aeda1e 753 return cnt;
4c36ddbe 754}
8d9dc9f9 755
332cf6df
WD
756/* Read a line into the "fname" buffer (which must be at least MAXPATHLEN
757 * characters long). */
56014c8c
WD
758int read_filesfrom_line(int fd, char *fname)
759{
760 char ch, *s, *eob = fname + MAXPATHLEN - 1;
761 int cnt;
d19320fd 762 int reading_remotely = filesfrom_host != NULL;
56014c8c
WD
763 int nulls = eol_nulls || reading_remotely;
764
765 start:
766 s = fname;
767 while (1) {
768 cnt = read(fd, &ch, 1);
769 if (cnt < 0 && (errno == EWOULDBLOCK
770 || errno == EINTR || errno == EAGAIN)) {
771 struct timeval tv;
6c850772
WD
772 fd_set r_fds, e_fds;
773 FD_ZERO(&r_fds);
774 FD_SET(fd, &r_fds);
775 FD_ZERO(&e_fds);
776 FD_SET(fd, &e_fds);
e626b29e 777 tv.tv_sec = select_timeout;
56014c8c 778 tv.tv_usec = 0;
6c850772 779 if (!select(fd+1, &r_fds, NULL, &e_fds, &tv))
56014c8c 780 check_timeout();
35c8fd76
WD
781 /*if (FD_ISSET(fd, &e_fds))
782 rprintf(FINFO, "select exception on fd %d\n", fd); */
56014c8c
WD
783 continue;
784 }
785 if (cnt != 1)
786 break;
787 if (nulls? !ch : (ch == '\r' || ch == '\n')) {
788 /* Skip empty lines if reading locally. */
789 if (!reading_remotely && s == fname)
790 continue;
791 break;
792 }
793 if (s < eob)
794 *s++ = ch;
795 }
796 *s = '\0';
7a55d06e 797
6b45fcf1
WD
798 /* Dump comments. */
799 if (*fname == '#' || *fname == ';')
56014c8c
WD
800 goto start;
801
802 return s - fname;
803}
7a55d06e 804
8ef246e0 805int io_start_buffering_out(int f_out)
1f75bb10 806{
8ef246e0
WD
807 if (iobuf_out) {
808 assert(f_out == iobuf_f_out);
809 return 0;
810 }
1f75bb10
WD
811 if (!(iobuf_out = new_array(char, IO_BUFFER_SIZE)))
812 out_of_memory("io_start_buffering_out");
813 iobuf_out_cnt = 0;
8ef246e0
WD
814 iobuf_f_out = f_out;
815 return 1;
1f75bb10
WD
816}
817
8ef246e0 818int io_start_buffering_in(int f_in)
1f75bb10 819{
8ef246e0
WD
820 if (iobuf_in) {
821 assert(f_in == iobuf_f_in);
822 return 0;
823 }
1f75bb10
WD
824 iobuf_in_siz = 2 * IO_BUFFER_SIZE;
825 if (!(iobuf_in = new_array(char, iobuf_in_siz)))
826 out_of_memory("io_start_buffering_in");
8ef246e0
WD
827 iobuf_f_in = f_in;
828 return 1;
1f75bb10
WD
829}
830
8ef246e0 831void io_end_buffering_in(void)
1f75bb10 832{
8ef246e0
WD
833 if (!iobuf_in)
834 return;
835 free(iobuf_in);
836 iobuf_in = NULL;
837 iobuf_in_ndx = 0;
838 iobuf_in_remaining = 0;
839 iobuf_f_in = -1;
840}
841
842void io_end_buffering_out(void)
843{
844 if (!iobuf_out)
845 return;
846 io_flush(FULL_FLUSH);
847 free(iobuf_out);
848 iobuf_out = NULL;
849 iobuf_f_out = -1;
1f75bb10
WD
850}
851
be91bd81 852void maybe_flush_socket(int important)
626bec8e 853{
be91bd81
WD
854 if (iobuf_out && iobuf_out_cnt
855 && (important || time(NULL) - last_io_out >= 5))
626bec8e
WD
856 io_flush(NORMAL_FLUSH);
857}
858
cdf236aa 859void maybe_send_keepalive(void)
9e2409ab 860{
3b0a30eb 861 if (time(NULL) - last_io_out >= allowed_lull) {
9e2409ab 862 if (!iobuf_out || !iobuf_out_cnt) {
3221f451
WD
863 if (protocol_version < 29)
864 return; /* there's nothing we can do */
8ef246e0 865 if (protocol_version >= 30)
332cf6df 866 send_msg(MSG_NOOP, "", 0, 0);
8ef246e0 867 else {
9decb4d2 868 write_int(sock_f_out, cur_flist->used);
8ef246e0
WD
869 write_shortint(sock_f_out, ITEM_IS_NEW);
870 }
9e2409ab
WD
871 }
872 if (iobuf_out)
873 io_flush(NORMAL_FLUSH);
874 }
875}
876
8ef246e0
WD
877void start_flist_forward(int f_in)
878{
879 assert(iobuf_out != NULL);
880 assert(iobuf_f_out == msg_fd_out);
881 flist_forward_from = f_in;
882}
883
884void stop_flist_forward()
885{
8ef246e0 886 flist_forward_from = -1;
dde5b772 887 io_flush(FULL_FLUSH);
8ef246e0
WD
888}
889
880da007
MP
890/**
891 * Continue trying to read len bytes - don't return until len has been
892 * read.
893 **/
3151cbae 894static void read_loop(int fd, char *buf, size_t len)
4c36ddbe
AT
895{
896 while (len) {
897 int n = read_timeout(fd, buf, len);
898
899 buf += n;
900 len -= n;
8d9dc9f9
AT
901 }
902}
903
7a55d06e
MP
904/**
905 * Read from the file descriptor handling multiplexing - return number
906 * of bytes read.
d62bcc17
WD
907 *
908 * Never returns <= 0.
7a55d06e 909 */
c399d22a 910static int readfd_unbuffered(int fd, char *buf, size_t len)
8d9dc9f9 911{
f2a4853c 912 size_t msg_bytes;
d8aeda1e 913 int tag, cnt = 0;
33544bf4 914 char line[BIGPATHBUFLEN];
8d9dc9f9 915
8ef246e0 916 if (!iobuf_in || fd != iobuf_f_in)
4c36ddbe 917 return read_timeout(fd, buf, len);
8d9dc9f9 918
8ef246e0
WD
919 if (!io_multiplexing_in && iobuf_in_remaining == 0) {
920 iobuf_in_remaining = read_timeout(fd, iobuf_in, iobuf_in_siz);
1f75bb10 921 iobuf_in_ndx = 0;
76c21947
WD
922 }
923
d8aeda1e 924 while (cnt == 0) {
8ef246e0
WD
925 if (iobuf_in_remaining) {
926 len = MIN(len, iobuf_in_remaining);
1f75bb10
WD
927 memcpy(buf, iobuf_in + iobuf_in_ndx, len);
928 iobuf_in_ndx += len;
8ef246e0 929 iobuf_in_remaining -= len;
d8aeda1e 930 cnt = len;
76c21947 931 break;
8d9dc9f9
AT
932 }
933
909ce14f 934 read_loop(fd, line, 4);
ff41a59f 935 tag = IVAL(line, 0);
679e7657 936
f2a4853c 937 msg_bytes = tag & 0xFFFFFF;
d17e1dd2 938 tag = (tag >> 24) - MPLEX_BASE;
8d9dc9f9 939
d17e1dd2
WD
940 switch (tag) {
941 case MSG_DATA:
f2a4853c 942 if (msg_bytes > iobuf_in_siz) {
1f75bb10 943 if (!(iobuf_in = realloc_array(iobuf_in, char,
f2a4853c 944 msg_bytes)))
c399d22a 945 out_of_memory("readfd_unbuffered");
f2a4853c 946 iobuf_in_siz = msg_bytes;
76c21947 947 }
f2a4853c 948 read_loop(fd, iobuf_in, msg_bytes);
8ef246e0 949 iobuf_in_remaining = msg_bytes;
1f75bb10 950 iobuf_in_ndx = 0;
d17e1dd2 951 break;
8ef246e0
WD
952 case MSG_NOOP:
953 if (am_sender)
954 maybe_send_keepalive();
955 break;
956 case MSG_IO_ERROR:
957 if (msg_bytes != 4)
958 goto invalid_msg;
959 read_loop(fd, line, msg_bytes);
960 io_error |= IVAL(line, 0);
961 break;
0d67e00a 962 case MSG_DELETED:
f2a4853c
WD
963 if (msg_bytes >= sizeof line)
964 goto overflow;
332cf6df
WD
965#ifdef ICONV_OPTION
966 if (ic_recv != (iconv_t)-1) {
967 ICONV_CONST char *ibuf;
968 char *obuf = line;
969 size_t icnt, ocnt = sizeof line - 1;
970 int add_null = 0;
971 iconv(ic_send, NULL, 0, NULL, 0);
972 while (msg_bytes) {
973 icnt = msg_bytes > sizeof iconv_buf
974 ? sizeof iconv_buf : msg_bytes;
975 read_loop(fd, iconv_buf, icnt);
976 if (!(msg_bytes -= icnt) && !iconv_buf[icnt-1])
977 icnt--, add_null = 1;
978 ibuf = (ICONV_CONST char *)iconv_buf;
979 if (iconv(ic_send, &ibuf,&icnt,
980 &obuf,&ocnt) == (size_t)-1)
981 goto overflow; // XXX
982 }
983 if (add_null)
984 *obuf++ = '\0';
985 msg_bytes = obuf - line;
986 } else
987#endif
988 read_loop(fd, line, msg_bytes);
0d67e00a 989 /* A directory name was sent with the trailing null */
f2a4853c 990 if (msg_bytes > 0 && !line[msg_bytes-1])
0d67e00a 991 log_delete(line, S_IFDIR);
12bda6f7
WD
992 else {
993 line[msg_bytes] = '\0';
0d67e00a 994 log_delete(line, S_IFREG);
12bda6f7 995 }
0d67e00a 996 break;
9981c27e 997 case MSG_SUCCESS:
f2a4853c 998 if (msg_bytes != 4) {
8ef246e0 999 invalid_msg:
cdf236aa 1000 rprintf(FERROR, "invalid multi-message %d:%ld [%s]\n",
f2a4853c 1001 tag, (long)msg_bytes, who_am_i());
9981c27e
WD
1002 exit_cleanup(RERR_STREAMIO);
1003 }
f2a4853c 1004 read_loop(fd, line, msg_bytes);
9981c27e 1005 successful_send(IVAL(line, 0));
9981c27e 1006 break;
8ef246e0
WD
1007 case MSG_NO_SEND:
1008 if (msg_bytes != 4)
1009 goto invalid_msg;
1010 read_loop(fd, line, msg_bytes);
1011 send_msg_int(MSG_NO_SEND, IVAL(line, 0));
1012 break;
d17e1dd2
WD
1013 case MSG_INFO:
1014 case MSG_ERROR:
f2a4853c
WD
1015 if (msg_bytes >= sizeof line) {
1016 overflow:
bd9fca47 1017 rprintf(FERROR,
cdf236aa 1018 "multiplexing overflow %d:%ld [%s]\n",
f2a4853c 1019 tag, (long)msg_bytes, who_am_i());
d17e1dd2
WD
1020 exit_cleanup(RERR_STREAMIO);
1021 }
f2a4853c 1022 read_loop(fd, line, msg_bytes);
332cf6df 1023 rwrite((enum logcode)tag, line, msg_bytes, 1);
d17e1dd2
WD
1024 break;
1025 default:
cdf236aa
WD
1026 rprintf(FERROR, "unexpected tag %d [%s]\n",
1027 tag, who_am_i());
65417579 1028 exit_cleanup(RERR_STREAMIO);
8d9dc9f9 1029 }
8d9dc9f9
AT
1030 }
1031
8ef246e0 1032 if (iobuf_in_remaining == 0)
d17e1dd2 1033 io_flush(NORMAL_FLUSH);
76c21947 1034
d8aeda1e 1035 return cnt;
8d9dc9f9
AT
1036}
1037
dde5b772
WD
1038/* Do a buffered read from fd. Don't return until all N bytes have
1039 * been read. If all N can't be read then exit with an error. */
3151cbae 1040static void readfd(int fd, char *buffer, size_t N)
720b47f2 1041{
d8aeda1e 1042 int cnt;
d62bcc17 1043 size_t total = 0;
3151cbae 1044
6ba9279f 1045 while (total < N) {
d8aeda1e
WD
1046 cnt = readfd_unbuffered(fd, buffer + total, N-total);
1047 total += cnt;
7f28dbee 1048 }
1b7c47cb 1049
b9f592fb
WD
1050 if (fd == write_batch_monitor_in) {
1051 if ((size_t)write(batch_fd, buffer, total) != total)
1052 exit_cleanup(RERR_FILEIO);
1053 }
1f75bb10 1054
8ef246e0
WD
1055 if (fd == flist_forward_from)
1056 writefd(iobuf_f_out, buffer, total);
1057
1f75bb10
WD
1058 if (fd == sock_f_in)
1059 stats.total_read += total;
720b47f2
AT
1060}
1061
3a993aa4 1062unsigned short read_shortint(int f)
9361f839 1063{
482f48cc
WD
1064 char b[2];
1065 readfd(f, b, 2);
1066 return (UVAL(b, 1) << 8) + UVAL(b, 0);
9361f839
WD
1067}
1068
b7922338 1069int32 read_int(int f)
720b47f2 1070{
4c36ddbe 1071 char b[4];
d8aeda1e 1072 int32 num;
d730b113 1073
482f48cc
WD
1074 readfd(f, b, 4);
1075 num = IVAL(b, 0);
1076#if SIZEOF_INT32 > 4
1077 if (num & (int32)0x80000000)
1078 num |= ~(int32)0xffffffff;
1079#endif
d8aeda1e 1080 return num;
720b47f2
AT
1081}
1082
351e23ad 1083int32 read_varint(int f)
3a6a366f 1084{
351e23ad
WD
1085 union {
1086 char b[5];
1087 int32 x;
1088 } u;
1089 uchar ch;
1090 int extra;
1091
1092 u.x = 0;
1093 readfd(f, (char*)&ch, 1);
1094 extra = int_byte_extra[ch / 4];
1095 if (extra) {
1096 uchar bit = ((uchar)1<<(8-extra));
1097 if (extra >= (int)sizeof u.b) {
1098 rprintf(FERROR, "Overflow in read_varint()\n");
1099 exit_cleanup(RERR_STREAMIO);
1100 }
1101 readfd(f, u.b, extra);
1102 u.b[extra] = ch & (bit-1);
1103 } else
1104 u.b[0] = ch;
1105#if CAREFUL_ALIGNMENT
1106 u.x = IVAL(u.b,0);
1107#endif
1108#if SIZEOF_INT32 > 4
1109 if (u.x & (int32)0x80000000)
1110 u.x |= ~(int32)0xffffffff;
1111#endif
1112 return u.x;
1113}
71c46176 1114
351e23ad
WD
1115int64 read_varlong(int f, uchar min_bytes)
1116{
1117 union {
1118 char b[9];
1119 int64 x;
1120 } u;
1121 char b2[8];
1122 int extra;
71c46176 1123
031fa9ad 1124#if SIZEOF_INT64 < 8
351e23ad 1125 memset(u.b, 0, 8);
031fa9ad 1126#else
351e23ad 1127 u.x = 0;
031fa9ad 1128#endif
351e23ad
WD
1129 readfd(f, b2, min_bytes);
1130 memcpy(u.b, b2+1, min_bytes-1);
1131 extra = int_byte_extra[CVAL(b2, 0) / 4];
1132 if (extra) {
1133 uchar bit = ((uchar)1<<(8-extra));
1134 if (min_bytes + extra > (int)sizeof u.b) {
1135 rprintf(FERROR, "Overflow in read_varlong()\n");
1136 exit_cleanup(RERR_STREAMIO);
1137 }
1138 readfd(f, u.b + min_bytes - 1, extra);
1139 u.b[min_bytes + extra - 1] = CVAL(b2, 0) & (bit-1);
4ea4acf1 1140#if SIZEOF_INT64 < 8
351e23ad 1141 if (min_bytes + extra > 5 || u.b[4] || CVAL(u.b,3) & 0x80) {
4ea4acf1
WD
1142 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
1143 exit_cleanup(RERR_UNSUPPORTED);
1144 }
1145#endif
351e23ad
WD
1146 } else
1147 u.b[min_bytes + extra - 1] = CVAL(b2, 0);
1148#if SIZEOF_INT64 < 8
1149 u.x = IVAL(u.b,0);
1150#elif CAREFUL_ALIGNMENT
1151 u.x = IVAL(u.b,0) | (((int64)IVAL(u.b,4))<<32);
1152#endif
1153 return u.x;
1154}
1155
1156int64 read_longint(int f)
1157{
4ea4acf1 1158#if SIZEOF_INT64 >= 8
351e23ad 1159 char b[9];
4ea4acf1 1160#endif
351e23ad 1161 int32 num = read_int(f);
71c46176 1162
351e23ad
WD
1163 if (num != (int32)0xffffffff)
1164 return num;
1165
1166#if SIZEOF_INT64 < 8
1167 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
1168 exit_cleanup(RERR_UNSUPPORTED);
1169#else
1170 readfd(f, b, 8);
1171 return IVAL(b,0) | (((int64)IVAL(b,4))<<32);
1172#endif
3a6a366f
AT
1173}
1174
4a19c3b2 1175void read_buf(int f, char *buf, size_t len)
720b47f2 1176{
4c36ddbe 1177 readfd(f,buf,len);
720b47f2
AT
1178}
1179
4a19c3b2 1180void read_sbuf(int f, char *buf, size_t len)
575f2fca 1181{
93095cbe 1182 readfd(f, buf, len);
af436313 1183 buf[len] = '\0';
575f2fca
AT
1184}
1185
9361f839 1186uchar read_byte(int f)
182dca5c 1187{
9361f839 1188 uchar c;
93095cbe 1189 readfd(f, (char *)&c, 1);
4c36ddbe 1190 return c;
182dca5c 1191}
720b47f2 1192
46e99b09
WD
1193int read_vstring(int f, char *buf, int bufsize)
1194{
1195 int len = read_byte(f);
1196
1197 if (len & 0x80)
1198 len = (len & ~0x80) * 0x100 + read_byte(f);
1199
1200 if (len >= bufsize) {
1201 rprintf(FERROR, "over-long vstring received (%d > %d)\n",
1202 len, bufsize - 1);
9a6ed83f 1203 return -1;
46e99b09
WD
1204 }
1205
1206 if (len)
1207 readfd(f, buf, len);
1208 buf[len] = '\0';
1209 return len;
1210}
1211
188fed95
WD
1212/* Populate a sum_struct with values from the socket. This is
1213 * called by both the sender and the receiver. */
1214void read_sum_head(int f, struct sum_struct *sum)
1215{
1216 sum->count = read_int(f);
c638caa6
WD
1217 if (sum->count < 0) {
1218 rprintf(FERROR, "Invalid checksum count %ld [%s]\n",
1219 (long)sum->count, who_am_i());
1220 exit_cleanup(RERR_PROTOCOL);
1221 }
188fed95
WD
1222 sum->blength = read_int(f);
1223 if (sum->blength < 0 || sum->blength > MAX_BLOCK_SIZE) {
cdf236aa
WD
1224 rprintf(FERROR, "Invalid block length %ld [%s]\n",
1225 (long)sum->blength, who_am_i());
188fed95
WD
1226 exit_cleanup(RERR_PROTOCOL);
1227 }
1228 sum->s2length = protocol_version < 27 ? csum_length : (int)read_int(f);
a0456b9c 1229 if (sum->s2length < 0 || sum->s2length > MAX_DIGEST_LEN) {
cdf236aa
WD
1230 rprintf(FERROR, "Invalid checksum length %d [%s]\n",
1231 sum->s2length, who_am_i());
188fed95
WD
1232 exit_cleanup(RERR_PROTOCOL);
1233 }
1234 sum->remainder = read_int(f);
1235 if (sum->remainder < 0 || sum->remainder > sum->blength) {
cdf236aa
WD
1236 rprintf(FERROR, "Invalid remainder length %ld [%s]\n",
1237 (long)sum->remainder, who_am_i());
188fed95
WD
1238 exit_cleanup(RERR_PROTOCOL);
1239 }
1240}
1241
c207d7ec
WD
1242/* Send the values from a sum_struct over the socket. Set sum to
1243 * NULL if there are no checksums to send. This is called by both
1244 * the generator and the sender. */
1245void write_sum_head(int f, struct sum_struct *sum)
1246{
1247 static struct sum_struct null_sum;
1248
1249 if (sum == NULL)
1250 sum = &null_sum;
1251
1252 write_int(f, sum->count);
1253 write_int(f, sum->blength);
1254 if (protocol_version >= 27)
1255 write_int(f, sum->s2length);
1256 write_int(f, sum->remainder);
1257}
1258
08571358
MP
1259/**
1260 * Sleep after writing to limit I/O bandwidth usage.
1261 *
1262 * @todo Rather than sleeping after each write, it might be better to
1263 * use some kind of averaging. The current algorithm seems to always
1264 * use a bit less bandwidth than specified, because it doesn't make up
1265 * for slow periods. But arguably this is a feature. In addition, we
1266 * ought to take the time used to write the data into account.
71e58630
WD
1267 *
1268 * During some phases of big transfers (file FOO is uptodate) this is
1269 * called with a small bytes_written every time. As the kernel has to
1270 * round small waits up to guarantee that we actually wait at least the
1271 * requested number of microseconds, this can become grossly inaccurate.
1272 * We therefore keep track of the bytes we've written over time and only
1273 * sleep when the accumulated delay is at least 1 tenth of a second.
08571358
MP
1274 **/
1275static void sleep_for_bwlimit(int bytes_written)
1276{
71e58630 1277 static struct timeval prior_tv;
0f78b815 1278 static long total_written = 0;
71e58630
WD
1279 struct timeval tv, start_tv;
1280 long elapsed_usec, sleep_usec;
1281
1282#define ONE_SEC 1000000L /* # of microseconds in a second */
08571358 1283
9a0cfff5 1284 if (!bwlimit_writemax)
08571358 1285 return;
e681e820 1286
0f78b815 1287 total_written += bytes_written;
71e58630
WD
1288
1289 gettimeofday(&start_tv, NULL);
1290 if (prior_tv.tv_sec) {
1291 elapsed_usec = (start_tv.tv_sec - prior_tv.tv_sec) * ONE_SEC
1292 + (start_tv.tv_usec - prior_tv.tv_usec);
1293 total_written -= elapsed_usec * bwlimit / (ONE_SEC/1024);
1294 if (total_written < 0)
1295 total_written = 0;
1296 }
3151cbae 1297
71e58630
WD
1298 sleep_usec = total_written * (ONE_SEC/1024) / bwlimit;
1299 if (sleep_usec < ONE_SEC / 10) {
1300 prior_tv = start_tv;
1301 return;
1302 }
08571358 1303
71e58630
WD
1304 tv.tv_sec = sleep_usec / ONE_SEC;
1305 tv.tv_usec = sleep_usec % ONE_SEC;
98b332ed 1306 select(0, NULL, NULL, NULL, &tv);
71e58630
WD
1307
1308 gettimeofday(&prior_tv, NULL);
1309 elapsed_usec = (prior_tv.tv_sec - start_tv.tv_sec) * ONE_SEC
1310 + (prior_tv.tv_usec - start_tv.tv_usec);
1311 total_written = (sleep_usec - elapsed_usec) * bwlimit / (ONE_SEC/1024);
08571358
MP
1312}
1313
1f75bb10 1314/* Write len bytes to the file descriptor fd, looping as necessary to get
0fb2fc4a 1315 * the job done and also (in certain circumstances) reading any data on
af436313 1316 * msg_fd_in to avoid deadlock.
880da007
MP
1317 *
1318 * This function underlies the multiplexing system. The body of the
1f75bb10 1319 * application never calls this function directly. */
4a19c3b2 1320static void writefd_unbuffered(int fd, const char *buf, size_t len)
720b47f2 1321{
1ea087a7 1322 size_t n, total = 0;
6c850772 1323 fd_set w_fds, r_fds, e_fds;
d8aeda1e 1324 int maxfd, count, cnt, using_r_fds;
e4c877cf 1325 int defer_inc = 0;
8d9dc9f9 1326 struct timeval tv;
720b47f2 1327
3be97bf9 1328 if (no_flush++)
e4c877cf 1329 defer_forwarding_messages++, defer_inc++;
e44f9a12 1330
4c36ddbe 1331 while (total < len) {
8d9dc9f9 1332 FD_ZERO(&w_fds);
6c850772
WD
1333 FD_SET(fd, &w_fds);
1334 FD_ZERO(&e_fds);
1335 FD_SET(fd, &e_fds);
1ea087a7 1336 maxfd = fd;
4c36ddbe 1337
954bbed8 1338 if (msg_fd_in >= 0) {
56014c8c 1339 FD_ZERO(&r_fds);
6c850772 1340 FD_SET(msg_fd_in, &r_fds);
1ea087a7
WD
1341 if (msg_fd_in > maxfd)
1342 maxfd = msg_fd_in;
3eeac9bc
WD
1343 using_r_fds = 1;
1344 } else
1345 using_r_fds = 0;
8d9dc9f9 1346
e626b29e 1347 tv.tv_sec = select_timeout;
8d9dc9f9 1348 tv.tv_usec = 0;
4c36ddbe 1349
554e0a8d 1350 errno = 0;
3eeac9bc 1351 count = select(maxfd + 1, using_r_fds ? &r_fds : NULL,
6c850772 1352 &w_fds, &e_fds, &tv);
4c36ddbe
AT
1353
1354 if (count <= 0) {
1ea087a7 1355 if (count < 0 && errno == EBADF)
554e0a8d 1356 exit_cleanup(RERR_SOCKETIO);
bd717af8 1357 check_timeout();
8d9dc9f9
AT
1358 continue;
1359 }
4c36ddbe 1360
35c8fd76
WD
1361 /*if (FD_ISSET(fd, &e_fds))
1362 rprintf(FINFO, "select exception on fd %d\n", fd); */
6c850772 1363
3eeac9bc 1364 if (using_r_fds && FD_ISSET(msg_fd_in, &r_fds))
d17e1dd2 1365 read_msg_fd();
554e0a8d 1366
9a6ed83f 1367 if (!FD_ISSET(fd, &w_fds))
1ea087a7 1368 continue;
4c36ddbe 1369
1ea087a7 1370 n = len - total;
9a0cfff5 1371 if (bwlimit_writemax && n > bwlimit_writemax)
1ea087a7 1372 n = bwlimit_writemax;
d8aeda1e 1373 cnt = write(fd, buf + total, n);
1ea087a7 1374
d8aeda1e
WD
1375 if (cnt <= 0) {
1376 if (cnt < 0) {
3309507d
WD
1377 if (errno == EINTR)
1378 continue;
1379 if (errno == EWOULDBLOCK || errno == EAGAIN) {
1380 msleep(1);
1381 continue;
1382 }
f0359dd0
AT
1383 }
1384
1ea087a7 1385 /* Don't try to write errors back across the stream. */
1f75bb10 1386 if (fd == sock_f_out)
8ef246e0 1387 io_end_multiplex_out();
2a5df862
WD
1388 /* Don't try to write errors down a failing msg pipe. */
1389 if (am_server && fd == msg_fd_out)
1390 exit_cleanup(RERR_STREAMIO);
1ea087a7 1391 rsyserr(FERROR, errno,
b88c2e8f
WD
1392 "writefd_unbuffered failed to write %ld bytes [%s]",
1393 (long)len, who_am_i());
d1b31da7
WD
1394 /* If the other side is sending us error messages, try
1395 * to grab any messages they sent before they died. */
7f459268 1396 while (fd == sock_f_out && io_multiplexing_in) {
3b0a30eb 1397 set_io_timeout(30);
9e2409ab 1398 ignore_timeout = 0;
d1b31da7
WD
1399 readfd_unbuffered(sock_f_in, io_filesfrom_buf,
1400 sizeof io_filesfrom_buf);
1401 }
1ea087a7
WD
1402 exit_cleanup(RERR_STREAMIO);
1403 }
4c36ddbe 1404
d8aeda1e 1405 total += cnt;
e4c877cf 1406 defer_forwarding_messages++, defer_inc++;
a800434a 1407
1f75bb10 1408 if (fd == sock_f_out) {
626bec8e 1409 if (io_timeout || am_generator)
3b0a30eb 1410 last_io_out = time(NULL);
d8aeda1e 1411 sleep_for_bwlimit(cnt);
1f75bb10 1412 }
4c36ddbe 1413 }
e44f9a12
AT
1414
1415 no_flush--;
e4c877cf
WD
1416 if (!(defer_forwarding_messages -= defer_inc))
1417 msg_flush();
d6dead6b
AT
1418}
1419
dde5b772 1420void io_flush(int flush_it_all)
d6dead6b 1421{
1f75bb10 1422 if (!iobuf_out_cnt || no_flush)
d17e1dd2 1423 return;
8d9dc9f9 1424
d17e1dd2 1425 if (io_multiplexing_out)
332cf6df 1426 mplex_write(sock_f_out, MSG_DATA, iobuf_out, iobuf_out_cnt, 0);
d17e1dd2 1427 else
8ef246e0 1428 writefd_unbuffered(iobuf_f_out, iobuf_out, iobuf_out_cnt);
1f75bb10 1429 iobuf_out_cnt = 0;
e4c877cf
WD
1430
1431 if (flush_it_all && !defer_forwarding_messages)
1432 msg_flush();
8d9dc9f9
AT
1433}
1434
4a19c3b2 1435static void writefd(int fd, const char *buf, size_t len)
d6dead6b 1436{
1f75bb10
WD
1437 if (fd == sock_f_out)
1438 stats.total_written += len;
1439
b9f592fb
WD
1440 if (fd == write_batch_monitor_out) {
1441 if ((size_t)write(batch_fd, buf, len) != len)
1442 exit_cleanup(RERR_FILEIO);
1443 }
1444
8ef246e0 1445 if (!iobuf_out || fd != iobuf_f_out) {
4c36ddbe
AT
1446 writefd_unbuffered(fd, buf, len);
1447 return;
1448 }
d6dead6b
AT
1449
1450 while (len) {
1f75bb10 1451 int n = MIN((int)len, IO_BUFFER_SIZE - iobuf_out_cnt);
d6dead6b 1452 if (n > 0) {
1f75bb10 1453 memcpy(iobuf_out+iobuf_out_cnt, buf, n);
d6dead6b
AT
1454 buf += n;
1455 len -= n;
1f75bb10 1456 iobuf_out_cnt += n;
d6dead6b 1457 }
3151cbae 1458
1f75bb10 1459 if (iobuf_out_cnt == IO_BUFFER_SIZE)
d17e1dd2 1460 io_flush(NORMAL_FLUSH);
d6dead6b 1461 }
d6dead6b 1462}
720b47f2 1463
3a993aa4 1464void write_shortint(int f, unsigned short x)
9361f839 1465{
3a993aa4
WD
1466 char b[2];
1467 b[0] = (char)x;
1468 b[1] = (char)(x >> 8);
1469 writefd(f, b, 2);
9361f839
WD
1470}
1471
351e23ad
WD
1472void write_int(int f, int32 x)
1473{
1474 char b[4];
1475 SIVAL(b, 0, x);
1476 writefd(f, b, 4);
1477}
1478
f31514ad 1479void write_varint(int f, int32 x)
1c3344a1
WD
1480{
1481 char b[5];
351e23ad
WD
1482 uchar bit;
1483 int cnt = 4;
1484
1485 SIVAL(b, 1, x);
1486
1487 while (cnt > 1 && b[cnt] == 0)
1488 cnt--;
1489 bit = ((uchar)1<<(7-cnt+1));
1490 if (CVAL(b, cnt) >= bit) {
1491 cnt++;
1492 *b = ~(bit-1);
1493 } else if (cnt > 1)
1494 *b = b[cnt] | ~(bit*2-1);
1495 else
1496 *b = b[cnt];
1497
1498 writefd(f, b, cnt);
1c3344a1
WD
1499}
1500
351e23ad 1501void write_varlong(int f, int64 x, uchar min_bytes)
720b47f2 1502{
351e23ad
WD
1503 char b[9];
1504 uchar bit;
1505 int cnt = 8;
1506
1507 SIVAL(b, 1, x);
1508#if SIZEOF_INT64 >= 8
1509 SIVAL(b, 5, x >> 32);
1510#else
1511 if (x <= 0x7FFFFFFF && x >= 0)
1512 memset(b + 5, 0, 4);
1513 else {
1514 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
1515 exit_cleanup(RERR_UNSUPPORTED);
1516 }
1517#endif
1518
1519 while (cnt > min_bytes && b[cnt] == 0)
1520 cnt--;
1521 bit = ((uchar)1<<(7-cnt+min_bytes));
1522 if (CVAL(b, cnt) >= bit) {
1523 cnt++;
1524 *b = ~(bit-1);
1525 } else if (cnt > min_bytes)
1526 *b = b[cnt] | ~(bit*2-1);
1527 else
1528 *b = b[cnt];
1529
1530 writefd(f, b, cnt);
720b47f2
AT
1531}
1532
7a24c346
MP
1533/*
1534 * Note: int64 may actually be a 32-bit type if ./configure couldn't find any
1535 * 64-bit types on this platform.
1536 */
71c46176 1537void write_longint(int f, int64 x)
3a6a366f 1538{
351e23ad 1539 char b[12], * const s = b+4;
3a6a366f 1540
351e23ad
WD
1541 SIVAL(s, 0, x);
1542 if (x <= 0x7FFFFFFF && x >= 0) {
482f48cc 1543 writefd(f, s, 4);
351e23ad
WD
1544 return;
1545 }
3a6a366f 1546
4ea4acf1 1547#if SIZEOF_INT64 < 8
351e23ad
WD
1548 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
1549 exit_cleanup(RERR_UNSUPPORTED);
4ea4acf1 1550#else
351e23ad
WD
1551 memset(b, 0xFF, 4);
1552 SIVAL(s, 4, x >> 32);
1553 writefd(f, b, 12);
4ea4acf1 1554#endif
3a6a366f
AT
1555}
1556
4a19c3b2 1557void write_buf(int f, const char *buf, size_t len)
720b47f2 1558{
4c36ddbe 1559 writefd(f,buf,len);
720b47f2
AT
1560}
1561
880da007 1562/** Write a string to the connection */
4a19c3b2 1563void write_sbuf(int f, const char *buf)
f0fca04e 1564{
93095cbe 1565 writefd(f, buf, strlen(buf));
f0fca04e
AT
1566}
1567
9361f839 1568void write_byte(int f, uchar c)
182dca5c 1569{
93095cbe 1570 writefd(f, (char *)&c, 1);
182dca5c
AT
1571}
1572
4a19c3b2 1573void write_vstring(int f, const char *str, int len)
46e99b09
WD
1574{
1575 uchar lenbuf[3], *lb = lenbuf;
1576
1577 if (len > 0x7F) {
1578 if (len > 0x7FFF) {
1579 rprintf(FERROR,
1580 "attempting to send over-long vstring (%d > %d)\n",
1581 len, 0x7FFF);
1582 exit_cleanup(RERR_PROTOCOL);
1583 }
1584 *lb++ = len / 0x100 + 0x80;
1585 }
1586 *lb = len;
1587
1588 writefd(f, (char*)lenbuf, lb - lenbuf + 1);
1589 if (len)
1590 writefd(f, str, len);
1591}
1592
8a65e0ce
WD
1593/* Send a file-list index using a byte-reduction method. */
1594void write_ndx(int f, int32 ndx)
1595{
1596 static int32 prev_positive = -1, prev_negative = 1;
1597 int32 diff, cnt = 0;
1598 char b[6];
1599
1600 if (protocol_version < 30 || read_batch) {
1601 write_int(f, ndx);
1602 return;
1603 }
1604
1605 /* Send NDX_DONE as a single-byte 0 with no side effects. Send
1606 * negative nums as a positive after sending a leading 0xFF. */
1607 if (ndx >= 0) {
1608 diff = ndx - prev_positive;
1609 prev_positive = ndx;
1610 } else if (ndx == NDX_DONE) {
1611 *b = 0;
1612 writefd(f, b, 1);
1613 return;
1614 } else {
1615 b[cnt++] = (char)0xFF;
1616 ndx = -ndx;
1617 diff = ndx - prev_negative;
1618 prev_negative = ndx;
1619 }
1620
1621 /* A diff of 1 - 253 is sent as a one-byte diff; a diff of 254 - 32767
1622 * or 0 is sent as a 0xFE + a two-byte diff; otherwise we send 0xFE
1623 * & all 4 bytes of the (non-negative) num with the high-bit set. */
1624 if (diff < 0xFE && diff > 0)
1625 b[cnt++] = (char)diff;
1626 else if (diff < 0 || diff > 0x7FFF) {
1627 b[cnt++] = (char)0xFE;
1628 b[cnt++] = (char)((ndx >> 24) | 0x80);
8a65e0ce 1629 b[cnt++] = (char)ndx;
351e23ad
WD
1630 b[cnt++] = (char)(ndx >> 8);
1631 b[cnt++] = (char)(ndx >> 16);
8a65e0ce
WD
1632 } else {
1633 b[cnt++] = (char)0xFE;
1634 b[cnt++] = (char)(diff >> 8);
1635 b[cnt++] = (char)diff;
1636 }
1637 writefd(f, b, cnt);
1638}
1639
1640/* Receive a file-list index using a byte-reduction method. */
1641int32 read_ndx(int f)
1642{
1643 static int32 prev_positive = -1, prev_negative = 1;
1644 int32 *prev_ptr, num;
1645 char b[4];
1646
1647 if (protocol_version < 30)
1648 return read_int(f);
1649
1650 readfd(f, b, 1);
1651 if (CVAL(b, 0) == 0xFF) {
1652 readfd(f, b, 1);
1653 prev_ptr = &prev_negative;
1654 } else if (CVAL(b, 0) == 0)
1655 return NDX_DONE;
1656 else
1657 prev_ptr = &prev_positive;
1658 if (CVAL(b, 0) == 0xFE) {
1659 readfd(f, b, 2);
1660 if (CVAL(b, 0) & 0x80) {
351e23ad
WD
1661 b[3] = CVAL(b, 0) & ~0x80;
1662 b[0] = b[1];
1663 readfd(f, b+1, 2);
1664 num = IVAL(b, 0);
8a65e0ce 1665 } else
351e23ad 1666 num = (UVAL(b,0)<<8) + UVAL(b,1) + *prev_ptr;
8a65e0ce 1667 } else
351e23ad 1668 num = UVAL(b, 0) + *prev_ptr;
8a65e0ce
WD
1669 *prev_ptr = num;
1670 if (prev_ptr == &prev_negative)
1671 num = -num;
1672 return num;
1673}
1674
914cc65c 1675/**
6ed6d7f5
WD
1676 * Read a line of up to @p maxlen characters into @p buf (not counting
1677 * the trailing null). Strips the (required) trailing newline and all
1678 * carriage returns.
914cc65c 1679 *
6ed6d7f5 1680 * @return 1 for success; 0 for I/O error or truncation.
914cc65c 1681 **/
9dd891bb 1682int read_line(int f, char *buf, size_t maxlen)
f0fca04e
AT
1683{
1684 while (maxlen) {
528bfcd7 1685 buf[0] = 0;
f0fca04e 1686 read_buf(f, buf, 1);
914cc65c
MP
1687 if (buf[0] == 0)
1688 return 0;
6ed6d7f5 1689 if (buf[0] == '\n')
f0fca04e 1690 break;
f0fca04e
AT
1691 if (buf[0] != '\r') {
1692 buf++;
1693 maxlen--;
1694 }
1695 }
6ed6d7f5
WD
1696 *buf = '\0';
1697 return maxlen > 0;
f0fca04e
AT
1698}
1699
f0fca04e
AT
1700void io_printf(int fd, const char *format, ...)
1701{
d62bcc17 1702 va_list ap;
33544bf4 1703 char buf[BIGPATHBUFLEN];
f0fca04e 1704 int len;
3151cbae 1705
f0fca04e 1706 va_start(ap, format);
3151cbae 1707 len = vsnprintf(buf, sizeof buf, format, ap);
f0fca04e
AT
1708 va_end(ap);
1709
f89b9368
WD
1710 if (len < 0)
1711 exit_cleanup(RERR_STREAMIO);
f0fca04e 1712
33544bf4
WD
1713 if (len > (int)sizeof buf) {
1714 rprintf(FERROR, "io_printf() was too long for the buffer.\n");
1715 exit_cleanup(RERR_STREAMIO);
1716 }
1717
f0fca04e
AT
1718 write_sbuf(fd, buf);
1719}
8d9dc9f9 1720
d17e1dd2 1721/** Setup for multiplexing a MSG_* stream with the data stream. */
1f75bb10 1722void io_start_multiplex_out(void)
8d9dc9f9 1723{
d17e1dd2 1724 io_flush(NORMAL_FLUSH);
8ef246e0 1725 io_start_buffering_out(sock_f_out);
8d9dc9f9
AT
1726 io_multiplexing_out = 1;
1727}
1728
d17e1dd2 1729/** Setup for multiplexing a MSG_* stream with the data stream. */
1f75bb10 1730void io_start_multiplex_in(void)
8d9dc9f9 1731{
d17e1dd2 1732 io_flush(NORMAL_FLUSH);
8ef246e0 1733 io_start_buffering_in(sock_f_in);
8d9dc9f9
AT
1734 io_multiplexing_in = 1;
1735}
1736
d17e1dd2 1737/** Write an message to the multiplexed data stream. */
332cf6df 1738int io_multiplex_write(enum msgcode code, const char *buf, size_t len, int convert)
8d9dc9f9 1739{
f89b9368
WD
1740 if (!io_multiplexing_out)
1741 return 0;
d17e1dd2 1742 io_flush(NORMAL_FLUSH);
1b7c47cb 1743 stats.total_written += (len+4);
332cf6df 1744 mplex_write(sock_f_out, code, buf, len, convert);
8d9dc9f9
AT
1745 return 1;
1746}
1747
8ef246e0 1748void io_end_multiplex_in(void)
7f459268
WD
1749{
1750 io_multiplexing_in = 0;
8ef246e0 1751 io_end_buffering_in();
7f459268
WD
1752}
1753
d17e1dd2 1754/** Stop output multiplexing. */
8ef246e0 1755void io_end_multiplex_out(void)
554e0a8d
AT
1756{
1757 io_multiplexing_out = 0;
8ef246e0 1758 io_end_buffering_out();
554e0a8d
AT
1759}
1760
b9f592fb
WD
1761void start_write_batch(int fd)
1762{
1763 /* Some communication has already taken place, but we don't
1764 * enable batch writing until here so that we can write a
1765 * canonical record of the communication even though the
1766 * actual communication so far depends on whether a daemon
1767 * is involved. */
1768 write_int(batch_fd, protocol_version);
1769 write_int(batch_fd, checksum_seed);
b9f592fb
WD
1770
1771 if (am_sender)
1772 write_batch_monitor_out = fd;
1773 else
1774 write_batch_monitor_in = fd;
1775}
1776
1777void stop_write_batch(void)
1778{
1779 write_batch_monitor_out = -1;
1780 write_batch_monitor_in = -1;
1781}