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