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