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