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