- Got rid of caveat about -H not working with incremental recursion.
[rsync/rsync.git] / io.c
... / ...
CommitLineData
1/*
2 * Socket and pipe I/O utilities used in rsync.
3 *
4 * Copyright (C) 1996-2001 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
7 * Copyright (C) 2003-2007 Wayne Davison
8 *
9 * This program is free software; you can redistribute it and/or modify
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.
13 *
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.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, visit the http://fsf.org website.
21 */
22
23/* Rsync provides its own multiplexing system, which is used to send
24 * stderr and stdout over a single socket.
25 *
26 * For historical reasons this is off during the start of the
27 * connection, but it's switched on quite early using
28 * io_start_multiplex_out() and io_start_multiplex_in(). */
29
30#include "rsync.h"
31
32/** If no timeout is specified then use a 60 second select timeout */
33#define SELECT_TIMEOUT 60
34
35extern int bwlimit;
36extern size_t bwlimit_writemax;
37extern int io_timeout;
38extern int allowed_lull;
39extern int am_server;
40extern int am_daemon;
41extern int am_sender;
42extern int am_generator;
43extern int inc_recurse;
44extern int io_error;
45extern int eol_nulls;
46extern int flist_eof;
47extern int read_batch;
48extern int csum_length;
49extern int checksum_seed;
50extern int protocol_version;
51extern int remove_source_files;
52extern int preserve_hard_links;
53extern char *filesfrom_host;
54extern struct stats stats;
55extern struct file_list *cur_flist, *first_flist;
56#ifdef ICONV_OPTION
57extern iconv_t ic_send, ic_recv;
58#endif
59
60const char phase_unknown[] = "unknown";
61int ignore_timeout = 0;
62int batch_fd = -1;
63int msgdone_cnt = 0;
64
65/* Ignore an EOF error if non-zero. See whine_about_eof(). */
66int kluge_around_eof = 0;
67
68int msg_fd_in = -1;
69int msg_fd_out = -1;
70int sock_f_in = -1;
71int sock_f_out = -1;
72
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
85static int io_multiplexing_out;
86static int io_multiplexing_in;
87static time_t last_io_in;
88static time_t last_io_out;
89static int no_flush;
90
91static int write_batch_monitor_in = -1;
92static int write_batch_monitor_out = -1;
93
94static int io_filesfrom_f_in = -1;
95static int io_filesfrom_f_out = -1;
96static char io_filesfrom_buf[2048];
97#ifdef ICONV_OPTION
98static char iconv_buf[sizeof io_filesfrom_buf / 2];
99#endif
100static char *io_filesfrom_bp;
101static char io_filesfrom_lastchar;
102static int io_filesfrom_buflen;
103static int defer_forwarding_messages = 0;
104static int select_timeout = SELECT_TIMEOUT;
105static int active_filecnt = 0;
106static OFF_T active_bytecnt = 0;
107
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 */
113};
114
115enum festatus { FES_SUCCESS, FES_REDO, FES_NO_SEND };
116
117static void readfd(int fd, char *buffer, size_t N);
118static void writefd(int fd, const char *buf, size_t len);
119static void writefd_unbuffered(int fd, const char *buf, size_t len);
120static void mplex_write(int fd, enum msgcode code, const char *buf, size_t len, int convert);
121
122struct flist_ndx_item {
123 struct flist_ndx_item *next;
124 int ndx;
125};
126
127struct flist_ndx_list {
128 struct flist_ndx_item *head, *tail;
129};
130
131static struct flist_ndx_list redo_list, hlink_list;
132
133struct msg_list_item {
134 struct msg_list_item *next;
135 char convert;
136 char buf[1];
137};
138
139struct msg_list {
140 struct msg_list_item *head, *tail;
141};
142
143static struct msg_list msg_queue;
144
145static void flist_ndx_push(struct flist_ndx_list *lp, int ndx)
146{
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;
155 else
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;
176}
177
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
214static void check_timeout(void)
215{
216 time_t t;
217
218 if (!io_timeout || ignore_timeout)
219 return;
220
221 if (!last_io_in) {
222 last_io_in = time(NULL);
223 return;
224 }
225
226 t = time(NULL);
227
228 if (t - last_io_in >= io_timeout) {
229 if (!am_server && !am_daemon) {
230 rprintf(FERROR, "io timeout after %d seconds -- exiting\n",
231 (int)(t-last_io_in));
232 }
233 exit_cleanup(RERR_TIMEOUT);
234 }
235}
236
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
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
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). */
261void set_msg_fd_in(int fd)
262{
263 msg_fd_in = fd;
264}
265
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). */
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. */
275static void msg_list_add(struct msg_list *lst, int code, const char *buf, int len, int convert)
276{
277 struct msg_list_item *m;
278 int sz = len + 4 + sizeof m[0] - 1;
279
280 if (!(m = (struct msg_list_item *)new_array(char, sz)))
281 out_of_memory("msg_list_add");
282 m->next = NULL;
283 m->convert = convert;
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;
288 else
289 lst->head = m;
290 lst->tail = m;
291}
292
293static void msg_flush(void)
294{
295 if (am_generator) {
296 while (msg_queue.head && io_multiplexing_out) {
297 struct msg_list_item *m = msg_queue.head;
298 int len = IVAL(m->buf, 0) & 0xFFFFFF;
299 int tag = *((uchar*)m->buf+3) - MPLEX_BASE;
300 if (!(msg_queue.head = m->next))
301 msg_queue.tail = NULL;
302 stats.total_written += len + 4;
303 defer_forwarding_messages++;
304 mplex_write(sock_f_out, tag, m->buf + 4, len, m->convert);
305 defer_forwarding_messages--;
306 free(m);
307 }
308 } else {
309 while (msg_queue.head) {
310 struct msg_list_item *m = msg_queue.head;
311 int len = IVAL(m->buf, 0) & 0xFFFFFF;
312 int tag = *((uchar*)m->buf+3) - MPLEX_BASE;
313 if (!(msg_queue.head = m->next))
314 msg_queue.tail = NULL;
315 defer_forwarding_messages++;
316 mplex_write(msg_fd_out, tag, m->buf + 4, len, m->convert);
317 defer_forwarding_messages--;
318 free(m);
319 }
320 }
321}
322
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). */
327static void read_msg_fd(void)
328{
329 char buf[2048];
330 size_t n;
331 struct file_list *flist;
332 int fd = msg_fd_in;
333 int tag, len;
334
335 /* Temporarily disable msg_fd_in. This is needed to avoid looping back
336 * to this routine from writefd_unbuffered(). */
337 no_flush++;
338 msg_fd_in = -1;
339 defer_forwarding_messages++;
340
341 readfd(fd, buf, 4);
342 tag = IVAL(buf, 0);
343
344 len = tag & 0xFFFFFF;
345 tag = (tag >> 24) - MPLEX_BASE;
346
347 switch (tag) {
348 case MSG_DONE:
349 if (len < 0 || len > 1 || !am_generator) {
350 invalid_msg:
351 rprintf(FERROR, "invalid message %d:%d [%s%s]\n",
352 tag, len, who_am_i(),
353 inc_recurse ? "/inc" : "");
354 exit_cleanup(RERR_STREAMIO);
355 }
356 if (len) {
357 readfd(fd, buf, len);
358 stats.total_read = read_varlong(fd, 3);
359 }
360 msgdone_cnt++;
361 break;
362 case MSG_REDO:
363 if (len != 4 || !am_generator)
364 goto invalid_msg;
365 readfd(fd, buf, 4);
366 got_flist_entry_status(FES_REDO, buf);
367 break;
368 case MSG_FLIST:
369 if (len != 4 || !am_generator || !inc_recurse)
370 goto invalid_msg;
371 readfd(fd, buf, 4);
372 /* Read extra file list from receiver. */
373 assert(iobuf_in != NULL);
374 assert(iobuf_f_in == fd);
375 if (verbose > 3) {
376 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
377 who_am_i(), IVAL(buf,0));
378 }
379 flist = recv_file_list(fd);
380 flist->parent_ndx = IVAL(buf,0);
381 break;
382 case MSG_FLIST_EOF:
383 if (len != 0 || !am_generator || !inc_recurse)
384 goto invalid_msg;
385 flist_eof = 1;
386 break;
387 case MSG_DELETED:
388 if (len >= (int)sizeof buf || !am_generator)
389 goto invalid_msg;
390 readfd(fd, buf, len);
391 send_msg(MSG_DELETED, buf, len, 1);
392 break;
393 case MSG_SUCCESS:
394 if (len != 4 || !am_generator)
395 goto invalid_msg;
396 readfd(fd, buf, 4);
397 got_flist_entry_status(FES_SUCCESS, buf);
398 break;
399 case MSG_NO_SEND:
400 if (len != 4 || !am_generator)
401 goto invalid_msg;
402 readfd(fd, buf, 4);
403 got_flist_entry_status(FES_NO_SEND, buf);
404 break;
405 case MSG_SOCKERR:
406 case MSG_CLIENT:
407 if (!am_generator)
408 goto invalid_msg;
409 if (tag == MSG_SOCKERR)
410 io_end_multiplex_out();
411 /* FALL THROUGH */
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;
419 readfd(fd, buf, n);
420 rwrite((enum logcode)tag, buf, n, !am_generator);
421 len -= n;
422 }
423 break;
424 default:
425 rprintf(FERROR, "unknown message %d:%d [%s]\n",
426 tag, len, who_am_i());
427 exit_cleanup(RERR_STREAMIO);
428 }
429
430 no_flush--;
431 msg_fd_in = fd;
432 if (!--defer_forwarding_messages)
433 msg_flush();
434}
435
436/* This is used by the generator to limit how many file transfers can
437 * be active at once when --remove-source-files is specified. Without
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? */
442 while (active_filecnt >= (active_bytecnt >= 128*1024 ? 10 : 50)) {
443 check_for_finished_files(itemizing, code, 0);
444 if (iobuf_out_cnt)
445 io_flush(NORMAL_FLUSH);
446 else
447 read_msg_fd();
448 }
449
450 active_filecnt++;
451 active_bytecnt += F_LENGTH(cur_flist->files[ndx - cur_flist->ndx_start]);
452}
453
454/* Write an message to a multiplexed stream. If this fails, rsync exits. */
455static void mplex_write(int fd, enum msgcode code, const char *buf, size_t len, int convert)
456{
457 char buffer[BIGPATHBUFLEN]; /* Oversized for use by iconv code. */
458 size_t n = len;
459
460 SIVAL(buffer, 0, ((MPLEX_BASE + (int)code)<<24) + len);
461
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 */
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
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
499 if (len) {
500 defer_forwarding_messages++;
501 writefd_unbuffered(fd, buf, len);
502 if (!--defer_forwarding_messages)
503 msg_flush();
504 }
505}
506
507int send_msg(enum msgcode code, const char *buf, int len, int convert)
508{
509 if (msg_fd_out < 0) {
510 if (!defer_forwarding_messages)
511 return io_multiplex_write(code, buf, len, convert);
512 if (!io_multiplexing_out)
513 return 0;
514 msg_list_add(&msg_queue, code, buf, len, convert);
515 return 1;
516 }
517 if (flist_forward_from >= 0)
518 msg_list_add(&msg_queue, code, buf, len, convert);
519 else
520 mplex_write(msg_fd_out, code, buf, len, convert);
521 return 1;
522}
523
524void send_msg_int(enum msgcode code, int num)
525{
526 char numbuf[4];
527 SIVAL(numbuf, 0, num);
528 send_msg(code, numbuf, 4, 0);
529}
530
531void wait_for_receiver(void)
532{
533 if (iobuf_out_cnt)
534 io_flush(NORMAL_FLUSH);
535 else
536 read_msg_fd();
537}
538
539int get_redo_num(void)
540{
541 return flist_ndx_pop(&redo_list);
542}
543
544int get_hlink_num(void)
545{
546 return flist_ndx_pop(&hlink_list);
547}
548
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}
567
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.
570 *
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. */
580static void whine_about_eof(int fd)
581{
582 if (kluge_around_eof && fd == sock_f_in) {
583 int i;
584 if (kluge_around_eof > 0)
585 exit_cleanup(0);
586 /* If we're still here after 10 seconds, exit with an error. */
587 for (i = 10*1000/20; i--; )
588 msleep(20);
589 }
590
591 rprintf(FERROR, RSYNC_NAME ": connection unexpectedly closed "
592 "(%.0f bytes received so far) [%s]\n",
593 (double)stats.total_read, who_am_i());
594
595 exit_cleanup(RERR_STREAMIO);
596}
597
598/**
599 * Read from a socket with I/O timeout. return the number of bytes
600 * read. If no bytes can be read then exit, never return a number <= 0.
601 *
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.
608 */
609static int read_timeout(int fd, char *buf, size_t len)
610{
611 int n, cnt = 0;
612
613 io_flush(FULL_FLUSH);
614
615 while (cnt == 0) {
616 /* until we manage to read *something* */
617 fd_set r_fds, w_fds;
618 struct timeval tv;
619 int maxfd = fd;
620 int count;
621
622 FD_ZERO(&r_fds);
623 FD_ZERO(&w_fds);
624 FD_SET(fd, &r_fds);
625 if (io_filesfrom_f_out >= 0) {
626 int new_fd;
627 if (io_filesfrom_buflen == 0) {
628 if (io_filesfrom_f_in >= 0) {
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 {
636 FD_SET(io_filesfrom_f_out, &w_fds);
637 new_fd = io_filesfrom_f_out;
638 }
639 if (new_fd > maxfd)
640 maxfd = new_fd;
641 }
642
643 tv.tv_sec = select_timeout;
644 tv.tv_usec = 0;
645
646 errno = 0;
647
648 count = select(maxfd + 1, &r_fds, &w_fds, NULL, &tv);
649
650 if (count <= 0) {
651 if (errno == EBADF) {
652 defer_forwarding_messages = 0;
653 exit_cleanup(RERR_SOCKETIO);
654 }
655 check_timeout();
656 continue;
657 }
658
659 if (io_filesfrom_f_out >= 0) {
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;
670 } else if (errno != EINTR) {
671 /* XXX should we complain? */
672 io_filesfrom_f_out = -1;
673 }
674 }
675 } else if (io_filesfrom_f_in >= 0) {
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) {
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 }
688 } else {
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
724 if (!FD_ISSET(fd, &r_fds))
725 continue;
726
727 n = read(fd, buf, len);
728
729 if (n <= 0) {
730 if (n == 0)
731 whine_about_eof(fd); /* Doesn't return. */
732 if (errno == EINTR || errno == EWOULDBLOCK
733 || errno == EAGAIN)
734 continue;
735
736 /* Don't write errors on a dead socket. */
737 if (fd == sock_f_in) {
738 io_end_multiplex_out();
739 rsyserr(FSOCKERR, errno, "read error");
740 } else
741 rsyserr(FERROR, errno, "read error");
742 exit_cleanup(RERR_STREAMIO);
743 }
744
745 buf += n;
746 len -= n;
747 cnt += n;
748
749 if (fd == sock_f_in && io_timeout)
750 last_io_in = time(NULL);
751 }
752
753 return cnt;
754}
755
756/* Read a line into the "fname" buffer (which must be at least MAXPATHLEN
757 * characters long). */
758int read_filesfrom_line(int fd, char *fname)
759{
760 char ch, *s, *eob = fname + MAXPATHLEN - 1;
761 int cnt;
762 int reading_remotely = filesfrom_host != NULL;
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;
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);
777 tv.tv_sec = select_timeout;
778 tv.tv_usec = 0;
779 if (!select(fd+1, &r_fds, NULL, &e_fds, &tv))
780 check_timeout();
781 if (FD_ISSET(fd, &e_fds)) {
782 rsyserr(FINFO, errno,
783 "select exception on fd %d", fd);
784 }
785 continue;
786 }
787 if (cnt != 1)
788 break;
789 if (nulls? !ch : (ch == '\r' || ch == '\n')) {
790 /* Skip empty lines if reading locally. */
791 if (!reading_remotely && s == fname)
792 continue;
793 break;
794 }
795 if (s < eob)
796 *s++ = ch;
797 }
798 *s = '\0';
799
800 /* Dump comments. */
801 if (*fname == '#' || *fname == ';')
802 goto start;
803
804 return s - fname;
805}
806
807int io_start_buffering_out(int f_out)
808{
809 if (iobuf_out) {
810 assert(f_out == iobuf_f_out);
811 return 0;
812 }
813 if (!(iobuf_out = new_array(char, IO_BUFFER_SIZE)))
814 out_of_memory("io_start_buffering_out");
815 iobuf_out_cnt = 0;
816 iobuf_f_out = f_out;
817 return 1;
818}
819
820int io_start_buffering_in(int f_in)
821{
822 if (iobuf_in) {
823 assert(f_in == iobuf_f_in);
824 return 0;
825 }
826 iobuf_in_siz = 2 * IO_BUFFER_SIZE;
827 if (!(iobuf_in = new_array(char, iobuf_in_siz)))
828 out_of_memory("io_start_buffering_in");
829 iobuf_f_in = f_in;
830 return 1;
831}
832
833void io_end_buffering_in(void)
834{
835 if (!iobuf_in)
836 return;
837 free(iobuf_in);
838 iobuf_in = NULL;
839 iobuf_in_ndx = 0;
840 iobuf_in_remaining = 0;
841 iobuf_f_in = -1;
842}
843
844void io_end_buffering_out(void)
845{
846 if (!iobuf_out)
847 return;
848 io_flush(FULL_FLUSH);
849 free(iobuf_out);
850 iobuf_out = NULL;
851 iobuf_f_out = -1;
852}
853
854void maybe_flush_socket(int important)
855{
856 if (iobuf_out && iobuf_out_cnt
857 && (important || time(NULL) - last_io_out >= 5))
858 io_flush(NORMAL_FLUSH);
859}
860
861void maybe_send_keepalive(void)
862{
863 if (time(NULL) - last_io_out >= allowed_lull) {
864 if (!iobuf_out || !iobuf_out_cnt) {
865 if (protocol_version < 29)
866 return; /* there's nothing we can do */
867 if (protocol_version >= 30)
868 send_msg(MSG_NOOP, "", 0, 0);
869 else {
870 write_int(sock_f_out, cur_flist->used);
871 write_shortint(sock_f_out, ITEM_IS_NEW);
872 }
873 }
874 if (iobuf_out)
875 io_flush(NORMAL_FLUSH);
876 }
877}
878
879void start_flist_forward(int f_in)
880{
881 assert(iobuf_out != NULL);
882 assert(iobuf_f_out == msg_fd_out);
883 flist_forward_from = f_in;
884}
885
886void stop_flist_forward()
887{
888 flist_forward_from = -1;
889 io_flush(FULL_FLUSH);
890}
891
892/**
893 * Continue trying to read len bytes - don't return until len has been
894 * read.
895 **/
896static void read_loop(int fd, char *buf, size_t len)
897{
898 while (len) {
899 int n = read_timeout(fd, buf, len);
900
901 buf += n;
902 len -= n;
903 }
904}
905
906/**
907 * Read from the file descriptor handling multiplexing - return number
908 * of bytes read.
909 *
910 * Never returns <= 0.
911 */
912static int readfd_unbuffered(int fd, char *buf, size_t len)
913{
914 size_t msg_bytes;
915 int tag, cnt = 0;
916 char line[BIGPATHBUFLEN];
917
918 if (!iobuf_in || fd != iobuf_f_in)
919 return read_timeout(fd, buf, len);
920
921 if (!io_multiplexing_in && iobuf_in_remaining == 0) {
922 iobuf_in_remaining = read_timeout(fd, iobuf_in, iobuf_in_siz);
923 iobuf_in_ndx = 0;
924 }
925
926 while (cnt == 0) {
927 if (iobuf_in_remaining) {
928 len = MIN(len, iobuf_in_remaining);
929 memcpy(buf, iobuf_in + iobuf_in_ndx, len);
930 iobuf_in_ndx += len;
931 iobuf_in_remaining -= len;
932 cnt = len;
933 break;
934 }
935
936 read_loop(fd, line, 4);
937 tag = IVAL(line, 0);
938
939 msg_bytes = tag & 0xFFFFFF;
940 tag = (tag >> 24) - MPLEX_BASE;
941
942 switch (tag) {
943 case MSG_DATA:
944 if (msg_bytes > iobuf_in_siz) {
945 if (!(iobuf_in = realloc_array(iobuf_in, char,
946 msg_bytes)))
947 out_of_memory("readfd_unbuffered");
948 iobuf_in_siz = msg_bytes;
949 }
950 read_loop(fd, iobuf_in, msg_bytes);
951 iobuf_in_remaining = msg_bytes;
952 iobuf_in_ndx = 0;
953 break;
954 case MSG_NOOP:
955 if (am_sender)
956 maybe_send_keepalive();
957 break;
958 case MSG_IO_ERROR:
959 if (msg_bytes != 4)
960 goto invalid_msg;
961 read_loop(fd, line, msg_bytes);
962 io_error |= IVAL(line, 0);
963 break;
964 case MSG_DELETED:
965 if (msg_bytes >= sizeof line)
966 goto overflow;
967#ifdef ICONV_OPTION
968 if (ic_recv != (iconv_t)-1) {
969 ICONV_CONST char *ibuf;
970 char *obuf = line;
971 size_t icnt, ocnt = sizeof line - 1;
972 int add_null = 0;
973 iconv(ic_send, NULL, 0, NULL, 0);
974 while (msg_bytes) {
975 icnt = msg_bytes > sizeof iconv_buf
976 ? sizeof iconv_buf : msg_bytes;
977 read_loop(fd, iconv_buf, icnt);
978 if (!(msg_bytes -= icnt) && !iconv_buf[icnt-1])
979 icnt--, add_null = 1;
980 ibuf = (ICONV_CONST char *)iconv_buf;
981 if (iconv(ic_send, &ibuf,&icnt,
982 &obuf,&ocnt) == (size_t)-1)
983 goto overflow; // XXX
984 }
985 if (add_null)
986 *obuf++ = '\0';
987 msg_bytes = obuf - line;
988 } else
989#endif
990 read_loop(fd, line, msg_bytes);
991 /* A directory name was sent with the trailing null */
992 if (msg_bytes > 0 && !line[msg_bytes-1])
993 log_delete(line, S_IFDIR);
994 else {
995 line[msg_bytes] = '\0';
996 log_delete(line, S_IFREG);
997 }
998 break;
999 case MSG_SUCCESS:
1000 if (msg_bytes != 4) {
1001 invalid_msg:
1002 rprintf(FERROR, "invalid multi-message %d:%ld [%s]\n",
1003 tag, (long)msg_bytes, who_am_i());
1004 exit_cleanup(RERR_STREAMIO);
1005 }
1006 read_loop(fd, line, msg_bytes);
1007 successful_send(IVAL(line, 0));
1008 break;
1009 case MSG_NO_SEND:
1010 if (msg_bytes != 4)
1011 goto invalid_msg;
1012 read_loop(fd, line, msg_bytes);
1013 send_msg_int(MSG_NO_SEND, IVAL(line, 0));
1014 break;
1015 case MSG_INFO:
1016 case MSG_ERROR:
1017 if (msg_bytes >= sizeof line) {
1018 overflow:
1019 rprintf(FERROR,
1020 "multiplexing overflow %d:%ld [%s]\n",
1021 tag, (long)msg_bytes, who_am_i());
1022 exit_cleanup(RERR_STREAMIO);
1023 }
1024 read_loop(fd, line, msg_bytes);
1025 rwrite((enum logcode)tag, line, msg_bytes, 1);
1026 break;
1027 default:
1028 rprintf(FERROR, "unexpected tag %d [%s]\n",
1029 tag, who_am_i());
1030 exit_cleanup(RERR_STREAMIO);
1031 }
1032 }
1033
1034 if (iobuf_in_remaining == 0)
1035 io_flush(NORMAL_FLUSH);
1036
1037 return cnt;
1038}
1039
1040/* Do a buffered read from fd. Don't return until all N bytes have
1041 * been read. If all N can't be read then exit with an error. */
1042static void readfd(int fd, char *buffer, size_t N)
1043{
1044 int cnt;
1045 size_t total = 0;
1046
1047 while (total < N) {
1048 cnt = readfd_unbuffered(fd, buffer + total, N-total);
1049 total += cnt;
1050 }
1051
1052 if (fd == write_batch_monitor_in) {
1053 if ((size_t)write(batch_fd, buffer, total) != total)
1054 exit_cleanup(RERR_FILEIO);
1055 }
1056
1057 if (fd == flist_forward_from)
1058 writefd(iobuf_f_out, buffer, total);
1059
1060 if (fd == sock_f_in)
1061 stats.total_read += total;
1062}
1063
1064unsigned short read_shortint(int f)
1065{
1066 char b[2];
1067 readfd(f, b, 2);
1068 return (UVAL(b, 1) << 8) + UVAL(b, 0);
1069}
1070
1071int32 read_int(int f)
1072{
1073 char b[4];
1074 int32 num;
1075
1076 readfd(f, b, 4);
1077 num = IVAL(b, 0);
1078#if SIZEOF_INT32 > 4
1079 if (num & (int32)0x80000000)
1080 num |= ~(int32)0xffffffff;
1081#endif
1082 return num;
1083}
1084
1085int32 read_varint(int f)
1086{
1087 union {
1088 char b[5];
1089 int32 x;
1090 } u;
1091 uchar ch;
1092 int extra;
1093
1094 u.x = 0;
1095 readfd(f, (char*)&ch, 1);
1096 extra = int_byte_extra[ch / 4];
1097 if (extra) {
1098 uchar bit = ((uchar)1<<(8-extra));
1099 if (extra >= (int)sizeof u.b) {
1100 rprintf(FERROR, "Overflow in read_varint()\n");
1101 exit_cleanup(RERR_STREAMIO);
1102 }
1103 readfd(f, u.b, extra);
1104 u.b[extra] = ch & (bit-1);
1105 } else
1106 u.b[0] = ch;
1107#if CAREFUL_ALIGNMENT
1108 u.x = IVAL(u.b,0);
1109#endif
1110#if SIZEOF_INT32 > 4
1111 if (u.x & (int32)0x80000000)
1112 u.x |= ~(int32)0xffffffff;
1113#endif
1114 return u.x;
1115}
1116
1117int64 read_varlong(int f, uchar min_bytes)
1118{
1119 union {
1120 char b[9];
1121 int64 x;
1122 } u;
1123 char b2[8];
1124 int extra;
1125
1126#if SIZEOF_INT64 < 8
1127 memset(u.b, 0, 8);
1128#else
1129 u.x = 0;
1130#endif
1131 readfd(f, b2, min_bytes);
1132 memcpy(u.b, b2+1, min_bytes-1);
1133 extra = int_byte_extra[CVAL(b2, 0) / 4];
1134 if (extra) {
1135 uchar bit = ((uchar)1<<(8-extra));
1136 if (min_bytes + extra > (int)sizeof u.b) {
1137 rprintf(FERROR, "Overflow in read_varlong()\n");
1138 exit_cleanup(RERR_STREAMIO);
1139 }
1140 readfd(f, u.b + min_bytes - 1, extra);
1141 u.b[min_bytes + extra - 1] = CVAL(b2, 0) & (bit-1);
1142#if SIZEOF_INT64 < 8
1143 if (min_bytes + extra > 5 || u.b[4] || CVAL(u.b,3) & 0x80) {
1144 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
1145 exit_cleanup(RERR_UNSUPPORTED);
1146 }
1147#endif
1148 } else
1149 u.b[min_bytes + extra - 1] = CVAL(b2, 0);
1150#if SIZEOF_INT64 < 8
1151 u.x = IVAL(u.b,0);
1152#elif CAREFUL_ALIGNMENT
1153 u.x = IVAL(u.b,0) | (((int64)IVAL(u.b,4))<<32);
1154#endif
1155 return u.x;
1156}
1157
1158int64 read_longint(int f)
1159{
1160#if SIZEOF_INT64 >= 8
1161 char b[9];
1162#endif
1163 int32 num = read_int(f);
1164
1165 if (num != (int32)0xffffffff)
1166 return num;
1167
1168#if SIZEOF_INT64 < 8
1169 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
1170 exit_cleanup(RERR_UNSUPPORTED);
1171#else
1172 readfd(f, b, 8);
1173 return IVAL(b,0) | (((int64)IVAL(b,4))<<32);
1174#endif
1175}
1176
1177void read_buf(int f, char *buf, size_t len)
1178{
1179 readfd(f,buf,len);
1180}
1181
1182void read_sbuf(int f, char *buf, size_t len)
1183{
1184 readfd(f, buf, len);
1185 buf[len] = '\0';
1186}
1187
1188uchar read_byte(int f)
1189{
1190 uchar c;
1191 readfd(f, (char *)&c, 1);
1192 return c;
1193}
1194
1195int read_vstring(int f, char *buf, int bufsize)
1196{
1197 int len = read_byte(f);
1198
1199 if (len & 0x80)
1200 len = (len & ~0x80) * 0x100 + read_byte(f);
1201
1202 if (len >= bufsize) {
1203 rprintf(FERROR, "over-long vstring received (%d > %d)\n",
1204 len, bufsize - 1);
1205 return -1;
1206 }
1207
1208 if (len)
1209 readfd(f, buf, len);
1210 buf[len] = '\0';
1211 return len;
1212}
1213
1214/* Populate a sum_struct with values from the socket. This is
1215 * called by both the sender and the receiver. */
1216void read_sum_head(int f, struct sum_struct *sum)
1217{
1218 sum->count = read_int(f);
1219 if (sum->count < 0) {
1220 rprintf(FERROR, "Invalid checksum count %ld [%s]\n",
1221 (long)sum->count, who_am_i());
1222 exit_cleanup(RERR_PROTOCOL);
1223 }
1224 sum->blength = read_int(f);
1225 if (sum->blength < 0 || sum->blength > MAX_BLOCK_SIZE) {
1226 rprintf(FERROR, "Invalid block length %ld [%s]\n",
1227 (long)sum->blength, who_am_i());
1228 exit_cleanup(RERR_PROTOCOL);
1229 }
1230 sum->s2length = protocol_version < 27 ? csum_length : (int)read_int(f);
1231 if (sum->s2length < 0 || sum->s2length > MAX_DIGEST_LEN) {
1232 rprintf(FERROR, "Invalid checksum length %d [%s]\n",
1233 sum->s2length, who_am_i());
1234 exit_cleanup(RERR_PROTOCOL);
1235 }
1236 sum->remainder = read_int(f);
1237 if (sum->remainder < 0 || sum->remainder > sum->blength) {
1238 rprintf(FERROR, "Invalid remainder length %ld [%s]\n",
1239 (long)sum->remainder, who_am_i());
1240 exit_cleanup(RERR_PROTOCOL);
1241 }
1242}
1243
1244/* Send the values from a sum_struct over the socket. Set sum to
1245 * NULL if there are no checksums to send. This is called by both
1246 * the generator and the sender. */
1247void write_sum_head(int f, struct sum_struct *sum)
1248{
1249 static struct sum_struct null_sum;
1250
1251 if (sum == NULL)
1252 sum = &null_sum;
1253
1254 write_int(f, sum->count);
1255 write_int(f, sum->blength);
1256 if (protocol_version >= 27)
1257 write_int(f, sum->s2length);
1258 write_int(f, sum->remainder);
1259}
1260
1261/**
1262 * Sleep after writing to limit I/O bandwidth usage.
1263 *
1264 * @todo Rather than sleeping after each write, it might be better to
1265 * use some kind of averaging. The current algorithm seems to always
1266 * use a bit less bandwidth than specified, because it doesn't make up
1267 * for slow periods. But arguably this is a feature. In addition, we
1268 * ought to take the time used to write the data into account.
1269 *
1270 * During some phases of big transfers (file FOO is uptodate) this is
1271 * called with a small bytes_written every time. As the kernel has to
1272 * round small waits up to guarantee that we actually wait at least the
1273 * requested number of microseconds, this can become grossly inaccurate.
1274 * We therefore keep track of the bytes we've written over time and only
1275 * sleep when the accumulated delay is at least 1 tenth of a second.
1276 **/
1277static void sleep_for_bwlimit(int bytes_written)
1278{
1279 static struct timeval prior_tv;
1280 static long total_written = 0;
1281 struct timeval tv, start_tv;
1282 long elapsed_usec, sleep_usec;
1283
1284#define ONE_SEC 1000000L /* # of microseconds in a second */
1285
1286 if (!bwlimit_writemax)
1287 return;
1288
1289 total_written += bytes_written;
1290
1291 gettimeofday(&start_tv, NULL);
1292 if (prior_tv.tv_sec) {
1293 elapsed_usec = (start_tv.tv_sec - prior_tv.tv_sec) * ONE_SEC
1294 + (start_tv.tv_usec - prior_tv.tv_usec);
1295 total_written -= elapsed_usec * bwlimit / (ONE_SEC/1024);
1296 if (total_written < 0)
1297 total_written = 0;
1298 }
1299
1300 sleep_usec = total_written * (ONE_SEC/1024) / bwlimit;
1301 if (sleep_usec < ONE_SEC / 10) {
1302 prior_tv = start_tv;
1303 return;
1304 }
1305
1306 tv.tv_sec = sleep_usec / ONE_SEC;
1307 tv.tv_usec = sleep_usec % ONE_SEC;
1308 select(0, NULL, NULL, NULL, &tv);
1309
1310 gettimeofday(&prior_tv, NULL);
1311 elapsed_usec = (prior_tv.tv_sec - start_tv.tv_sec) * ONE_SEC
1312 + (prior_tv.tv_usec - start_tv.tv_usec);
1313 total_written = (sleep_usec - elapsed_usec) * bwlimit / (ONE_SEC/1024);
1314}
1315
1316/* Write len bytes to the file descriptor fd, looping as necessary to get
1317 * the job done and also (in certain circumstances) reading any data on
1318 * msg_fd_in to avoid deadlock.
1319 *
1320 * This function underlies the multiplexing system. The body of the
1321 * application never calls this function directly. */
1322static void writefd_unbuffered(int fd, const char *buf, size_t len)
1323{
1324 size_t n, total = 0;
1325 fd_set w_fds, r_fds, e_fds;
1326 int maxfd, count, cnt, using_r_fds;
1327 int defer_inc = 0;
1328 struct timeval tv;
1329
1330 if (no_flush++)
1331 defer_forwarding_messages++, defer_inc++;
1332
1333 while (total < len) {
1334 FD_ZERO(&w_fds);
1335 FD_SET(fd, &w_fds);
1336 FD_ZERO(&e_fds);
1337 FD_SET(fd, &e_fds);
1338 maxfd = fd;
1339
1340 if (msg_fd_in >= 0) {
1341 FD_ZERO(&r_fds);
1342 FD_SET(msg_fd_in, &r_fds);
1343 if (msg_fd_in > maxfd)
1344 maxfd = msg_fd_in;
1345 using_r_fds = 1;
1346 } else
1347 using_r_fds = 0;
1348
1349 tv.tv_sec = select_timeout;
1350 tv.tv_usec = 0;
1351
1352 errno = 0;
1353 count = select(maxfd + 1, using_r_fds ? &r_fds : NULL,
1354 &w_fds, &e_fds, &tv);
1355
1356 if (count <= 0) {
1357 if (count < 0 && errno == EBADF)
1358 exit_cleanup(RERR_SOCKETIO);
1359 check_timeout();
1360 continue;
1361 }
1362
1363 if (FD_ISSET(fd, &e_fds)) {
1364 rsyserr(FINFO, errno,
1365 "select exception on fd %d", fd);
1366 }
1367
1368 if (using_r_fds && FD_ISSET(msg_fd_in, &r_fds))
1369 read_msg_fd();
1370
1371 if (!FD_ISSET(fd, &w_fds))
1372 continue;
1373
1374 n = len - total;
1375 if (bwlimit_writemax && n > bwlimit_writemax)
1376 n = bwlimit_writemax;
1377 cnt = write(fd, buf + total, n);
1378
1379 if (cnt <= 0) {
1380 if (cnt < 0) {
1381 if (errno == EINTR)
1382 continue;
1383 if (errno == EWOULDBLOCK || errno == EAGAIN) {
1384 msleep(1);
1385 continue;
1386 }
1387 }
1388
1389 /* Don't try to write errors back across the stream. */
1390 if (fd == sock_f_out)
1391 io_end_multiplex_out();
1392 /* Don't try to write errors down a failing msg pipe. */
1393 if (am_server && fd == msg_fd_out)
1394 exit_cleanup(RERR_STREAMIO);
1395 rsyserr(FERROR, errno,
1396 "writefd_unbuffered failed to write %ld bytes [%s]",
1397 (long)len, who_am_i());
1398 /* If the other side is sending us error messages, try
1399 * to grab any messages they sent before they died. */
1400 while (fd == sock_f_out && io_multiplexing_in) {
1401 set_io_timeout(30);
1402 ignore_timeout = 0;
1403 readfd_unbuffered(sock_f_in, io_filesfrom_buf,
1404 sizeof io_filesfrom_buf);
1405 }
1406 exit_cleanup(RERR_STREAMIO);
1407 }
1408
1409 total += cnt;
1410 defer_forwarding_messages++, defer_inc++;
1411
1412 if (fd == sock_f_out) {
1413 if (io_timeout || am_generator)
1414 last_io_out = time(NULL);
1415 sleep_for_bwlimit(cnt);
1416 }
1417 }
1418
1419 no_flush--;
1420 if (!(defer_forwarding_messages -= defer_inc))
1421 msg_flush();
1422}
1423
1424void io_flush(int flush_it_all)
1425{
1426 if (!iobuf_out_cnt || no_flush)
1427 return;
1428
1429 if (io_multiplexing_out)
1430 mplex_write(sock_f_out, MSG_DATA, iobuf_out, iobuf_out_cnt, 0);
1431 else
1432 writefd_unbuffered(iobuf_f_out, iobuf_out, iobuf_out_cnt);
1433 iobuf_out_cnt = 0;
1434
1435 if (flush_it_all && !defer_forwarding_messages)
1436 msg_flush();
1437}
1438
1439static void writefd(int fd, const char *buf, size_t len)
1440{
1441 if (fd == sock_f_out)
1442 stats.total_written += len;
1443
1444 if (fd == write_batch_monitor_out) {
1445 if ((size_t)write(batch_fd, buf, len) != len)
1446 exit_cleanup(RERR_FILEIO);
1447 }
1448
1449 if (!iobuf_out || fd != iobuf_f_out) {
1450 writefd_unbuffered(fd, buf, len);
1451 return;
1452 }
1453
1454 while (len) {
1455 int n = MIN((int)len, IO_BUFFER_SIZE - iobuf_out_cnt);
1456 if (n > 0) {
1457 memcpy(iobuf_out+iobuf_out_cnt, buf, n);
1458 buf += n;
1459 len -= n;
1460 iobuf_out_cnt += n;
1461 }
1462
1463 if (iobuf_out_cnt == IO_BUFFER_SIZE)
1464 io_flush(NORMAL_FLUSH);
1465 }
1466}
1467
1468void write_shortint(int f, unsigned short x)
1469{
1470 char b[2];
1471 b[0] = (char)x;
1472 b[1] = (char)(x >> 8);
1473 writefd(f, b, 2);
1474}
1475
1476void write_int(int f, int32 x)
1477{
1478 char b[4];
1479 SIVAL(b, 0, x);
1480 writefd(f, b, 4);
1481}
1482
1483void write_varint(int f, int32 x)
1484{
1485 char b[5];
1486 uchar bit;
1487 int cnt = 4;
1488
1489 SIVAL(b, 1, x);
1490
1491 while (cnt > 1 && b[cnt] == 0)
1492 cnt--;
1493 bit = ((uchar)1<<(7-cnt+1));
1494 if (CVAL(b, cnt) >= bit) {
1495 cnt++;
1496 *b = ~(bit-1);
1497 } else if (cnt > 1)
1498 *b = b[cnt] | ~(bit*2-1);
1499 else
1500 *b = b[cnt];
1501
1502 writefd(f, b, cnt);
1503}
1504
1505void write_varlong(int f, int64 x, uchar min_bytes)
1506{
1507 char b[9];
1508 uchar bit;
1509 int cnt = 8;
1510
1511 SIVAL(b, 1, x);
1512#if SIZEOF_INT64 >= 8
1513 SIVAL(b, 5, x >> 32);
1514#else
1515 if (x <= 0x7FFFFFFF && x >= 0)
1516 memset(b + 5, 0, 4);
1517 else {
1518 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
1519 exit_cleanup(RERR_UNSUPPORTED);
1520 }
1521#endif
1522
1523 while (cnt > min_bytes && b[cnt] == 0)
1524 cnt--;
1525 bit = ((uchar)1<<(7-cnt+min_bytes));
1526 if (CVAL(b, cnt) >= bit) {
1527 cnt++;
1528 *b = ~(bit-1);
1529 } else if (cnt > min_bytes)
1530 *b = b[cnt] | ~(bit*2-1);
1531 else
1532 *b = b[cnt];
1533
1534 writefd(f, b, cnt);
1535}
1536
1537/*
1538 * Note: int64 may actually be a 32-bit type if ./configure couldn't find any
1539 * 64-bit types on this platform.
1540 */
1541void write_longint(int f, int64 x)
1542{
1543 char b[12], * const s = b+4;
1544
1545 SIVAL(s, 0, x);
1546 if (x <= 0x7FFFFFFF && x >= 0) {
1547 writefd(f, s, 4);
1548 return;
1549 }
1550
1551#if SIZEOF_INT64 < 8
1552 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
1553 exit_cleanup(RERR_UNSUPPORTED);
1554#else
1555 memset(b, 0xFF, 4);
1556 SIVAL(s, 4, x >> 32);
1557 writefd(f, b, 12);
1558#endif
1559}
1560
1561void write_buf(int f, const char *buf, size_t len)
1562{
1563 writefd(f,buf,len);
1564}
1565
1566/** Write a string to the connection */
1567void write_sbuf(int f, const char *buf)
1568{
1569 writefd(f, buf, strlen(buf));
1570}
1571
1572void write_byte(int f, uchar c)
1573{
1574 writefd(f, (char *)&c, 1);
1575}
1576
1577void write_vstring(int f, const char *str, int len)
1578{
1579 uchar lenbuf[3], *lb = lenbuf;
1580
1581 if (len > 0x7F) {
1582 if (len > 0x7FFF) {
1583 rprintf(FERROR,
1584 "attempting to send over-long vstring (%d > %d)\n",
1585 len, 0x7FFF);
1586 exit_cleanup(RERR_PROTOCOL);
1587 }
1588 *lb++ = len / 0x100 + 0x80;
1589 }
1590 *lb = len;
1591
1592 writefd(f, (char*)lenbuf, lb - lenbuf + 1);
1593 if (len)
1594 writefd(f, str, len);
1595}
1596
1597/* Send a file-list index using a byte-reduction method. */
1598void write_ndx(int f, int32 ndx)
1599{
1600 static int32 prev_positive = -1, prev_negative = 1;
1601 int32 diff, cnt = 0;
1602 char b[6];
1603
1604 if (protocol_version < 30 || read_batch) {
1605 write_int(f, ndx);
1606 return;
1607 }
1608
1609 /* Send NDX_DONE as a single-byte 0 with no side effects. Send
1610 * negative nums as a positive after sending a leading 0xFF. */
1611 if (ndx >= 0) {
1612 diff = ndx - prev_positive;
1613 prev_positive = ndx;
1614 } else if (ndx == NDX_DONE) {
1615 *b = 0;
1616 writefd(f, b, 1);
1617 return;
1618 } else {
1619 b[cnt++] = (char)0xFF;
1620 ndx = -ndx;
1621 diff = ndx - prev_negative;
1622 prev_negative = ndx;
1623 }
1624
1625 /* A diff of 1 - 253 is sent as a one-byte diff; a diff of 254 - 32767
1626 * or 0 is sent as a 0xFE + a two-byte diff; otherwise we send 0xFE
1627 * & all 4 bytes of the (non-negative) num with the high-bit set. */
1628 if (diff < 0xFE && diff > 0)
1629 b[cnt++] = (char)diff;
1630 else if (diff < 0 || diff > 0x7FFF) {
1631 b[cnt++] = (char)0xFE;
1632 b[cnt++] = (char)((ndx >> 24) | 0x80);
1633 b[cnt++] = (char)ndx;
1634 b[cnt++] = (char)(ndx >> 8);
1635 b[cnt++] = (char)(ndx >> 16);
1636 } else {
1637 b[cnt++] = (char)0xFE;
1638 b[cnt++] = (char)(diff >> 8);
1639 b[cnt++] = (char)diff;
1640 }
1641 writefd(f, b, cnt);
1642}
1643
1644/* Receive a file-list index using a byte-reduction method. */
1645int32 read_ndx(int f)
1646{
1647 static int32 prev_positive = -1, prev_negative = 1;
1648 int32 *prev_ptr, num;
1649 char b[4];
1650
1651 if (protocol_version < 30)
1652 return read_int(f);
1653
1654 readfd(f, b, 1);
1655 if (CVAL(b, 0) == 0xFF) {
1656 readfd(f, b, 1);
1657 prev_ptr = &prev_negative;
1658 } else if (CVAL(b, 0) == 0)
1659 return NDX_DONE;
1660 else
1661 prev_ptr = &prev_positive;
1662 if (CVAL(b, 0) == 0xFE) {
1663 readfd(f, b, 2);
1664 if (CVAL(b, 0) & 0x80) {
1665 b[3] = CVAL(b, 0) & ~0x80;
1666 b[0] = b[1];
1667 readfd(f, b+1, 2);
1668 num = IVAL(b, 0);
1669 } else
1670 num = (UVAL(b,0)<<8) + UVAL(b,1) + *prev_ptr;
1671 } else
1672 num = UVAL(b, 0) + *prev_ptr;
1673 *prev_ptr = num;
1674 if (prev_ptr == &prev_negative)
1675 num = -num;
1676 return num;
1677}
1678
1679/**
1680 * Read a line of up to @p maxlen characters into @p buf (not counting
1681 * the trailing null). Strips the (required) trailing newline and all
1682 * carriage returns.
1683 *
1684 * @return 1 for success; 0 for I/O error or truncation.
1685 **/
1686int read_line(int f, char *buf, size_t maxlen)
1687{
1688 while (maxlen) {
1689 buf[0] = 0;
1690 read_buf(f, buf, 1);
1691 if (buf[0] == 0)
1692 return 0;
1693 if (buf[0] == '\n')
1694 break;
1695 if (buf[0] != '\r') {
1696 buf++;
1697 maxlen--;
1698 }
1699 }
1700 *buf = '\0';
1701 return maxlen > 0;
1702}
1703
1704void io_printf(int fd, const char *format, ...)
1705{
1706 va_list ap;
1707 char buf[BIGPATHBUFLEN];
1708 int len;
1709
1710 va_start(ap, format);
1711 len = vsnprintf(buf, sizeof buf, format, ap);
1712 va_end(ap);
1713
1714 if (len < 0)
1715 exit_cleanup(RERR_STREAMIO);
1716
1717 if (len > (int)sizeof buf) {
1718 rprintf(FERROR, "io_printf() was too long for the buffer.\n");
1719 exit_cleanup(RERR_STREAMIO);
1720 }
1721
1722 write_sbuf(fd, buf);
1723}
1724
1725/** Setup for multiplexing a MSG_* stream with the data stream. */
1726void io_start_multiplex_out(void)
1727{
1728 io_flush(NORMAL_FLUSH);
1729 io_start_buffering_out(sock_f_out);
1730 io_multiplexing_out = 1;
1731}
1732
1733/** Setup for multiplexing a MSG_* stream with the data stream. */
1734void io_start_multiplex_in(void)
1735{
1736 io_flush(NORMAL_FLUSH);
1737 io_start_buffering_in(sock_f_in);
1738 io_multiplexing_in = 1;
1739}
1740
1741/** Write an message to the multiplexed data stream. */
1742int io_multiplex_write(enum msgcode code, const char *buf, size_t len, int convert)
1743{
1744 if (!io_multiplexing_out)
1745 return 0;
1746 io_flush(NORMAL_FLUSH);
1747 stats.total_written += (len+4);
1748 mplex_write(sock_f_out, code, buf, len, convert);
1749 return 1;
1750}
1751
1752void io_end_multiplex_in(void)
1753{
1754 io_multiplexing_in = 0;
1755 io_end_buffering_in();
1756}
1757
1758/** Stop output multiplexing. */
1759void io_end_multiplex_out(void)
1760{
1761 io_multiplexing_out = 0;
1762 io_end_buffering_out();
1763}
1764
1765void start_write_batch(int fd)
1766{
1767 /* Some communication has already taken place, but we don't
1768 * enable batch writing until here so that we can write a
1769 * canonical record of the communication even though the
1770 * actual communication so far depends on whether a daemon
1771 * is involved. */
1772 write_int(batch_fd, protocol_version);
1773 write_int(batch_fd, checksum_seed);
1774
1775 if (am_sender)
1776 write_batch_monitor_out = fd;
1777 else
1778 write_batch_monitor_in = fd;
1779}
1780
1781void stop_write_batch(void)
1782{
1783 write_batch_monitor_out = -1;
1784 write_batch_monitor_in = -1;
1785}