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