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