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