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