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