]> git.ipfire.org Git - thirdparty/rsync.git/blame - io.c
More tweaks for Actions.
[thirdparty/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>
3e44bbd3 7 * Copyright (C) 2003-2022 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"
5dd14f0c 32#include "inums.h"
720b47f2 33
880da007 34/** If no timeout is specified then use a 60 second select timeout */
8cd9fd4e
AT
35#define SELECT_TIMEOUT 60
36
7a55d06e 37extern int bwlimit;
71e58630 38extern size_t bwlimit_writemax;
6ba9279f 39extern int io_timeout;
d17e1dd2 40extern int am_server;
d17e1dd2 41extern int am_sender;
92d02148 42extern int am_receiver;
98f8c9a5 43extern int am_generator;
5183c0d6 44extern int local_server;
20caffd2 45extern int msgs2stderr;
3ea6e0e7 46extern int inc_recurse;
8ef246e0 47extern int io_error;
87f2984d 48extern int batch_fd;
e626b29e 49extern int eol_nulls;
8ef246e0 50extern int flist_eof;
ce827c3e
WD
51extern int file_total;
52extern int file_old_total;
7f9bf6b7 53extern int list_only;
3b0a30eb 54extern int read_batch;
5d8dcd1e 55extern int compat_flags;
ba525f77 56extern int protect_args;
b9f592fb 57extern int checksum_seed;
f9bb8f76 58extern int daemon_connection;
b9f592fb 59extern int protocol_version;
47c11975 60extern int remove_source_files;
cdf236aa 61extern int preserve_hard_links;
7a7810aa 62extern BOOL extra_flist_sending_enabled;
d4070db6 63extern BOOL flush_ok_after_signal;
a800434a 64extern struct stats stats;
af531cf7 65extern time_t stop_at_utime;
19531e1f 66extern struct file_list *cur_flist;
332cf6df 67#ifdef ICONV_OPTION
ba525f77 68extern int filesfrom_convert;
332cf6df
WD
69extern iconv_t ic_send, ic_recv;
70#endif
720b47f2 71
93465f51
WD
72int csum_length = SHORT_SUM_LENGTH; /* initial value */
73int allowed_lull = 0;
04c722d5 74int msgdone_cnt = 0;
20caffd2 75int forward_flist_data = 0;
2885270b 76BOOL flist_receiving_enabled = False;
805edf9d 77
cb2e1f18 78/* Ignore an EOF error if non-zero. See whine_about_eof(). */
574c2500 79int kluge_around_eof = 0;
d4070db6 80int got_kill_signal = -1; /* is set to 0 only after multiplexed I/O starts */
7a55d06e 81
cdf236aa
WD
82int sock_f_in = -1;
83int sock_f_out = -1;
7a55d06e 84
4dde3347
WD
85int64 total_data_read = 0;
86int64 total_data_written = 0;
87
5183c0d6
WD
88char num_dev_ino_buf[4 + 8 + 8];
89
20caffd2
WD
90static struct {
91 xbuf in, out, msg;
92 int in_fd;
93 int out_fd; /* Both "out" and "msg" go to this fd. */
ac32cdd7 94 int in_multiplexed;
20caffd2
WD
95 unsigned out_empty_len;
96 size_t raw_data_header_pos; /* in the out xbuf */
97 size_t raw_flushing_ends_before; /* in the out xbuf */
98 size_t raw_input_ends_before; /* in the in xbuf */
99} iobuf = { .in_fd = -1, .out_fd = -1 };
8ef246e0 100
3b0a30eb
WD
101static time_t last_io_in;
102static time_t last_io_out;
1f75bb10 103
b9f592fb
WD
104static int write_batch_monitor_in = -1;
105static int write_batch_monitor_out = -1;
106
20caffd2 107static int ff_forward_fd = -1;
8e6b4ddb
WD
108static int ff_reenable_multiplex = -1;
109static char ff_lastchar = '\0';
cbc63a09 110static xbuf ff_xb = EMPTY_XBUF;
332cf6df 111#ifdef ICONV_OPTION
ba525f77 112static xbuf iconv_buf = EMPTY_XBUF;
332cf6df 113#endif
3b0a30eb 114static int select_timeout = SELECT_TIMEOUT;
d6081c82
WD
115static int active_filecnt = 0;
116static OFF_T active_bytecnt = 0;
7f9bf6b7 117static int first_message = 1;
720b47f2 118
351e23ad
WD
119static char int_byte_extra[64] = {
120 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* (00 - 3F)/4 */
121 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* (40 - 7F)/4 */
122 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* (80 - BF)/4 */
123 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 5, 6, /* (C0 - FF)/4 */
482f48cc
WD
124};
125
907e6a32
WD
126/* Our I/O buffers are sized with no bits on in the lowest byte of the "size"
127 * (indeed, our rounding of sizes in 1024-byte units assures more than this).
128 * This allows the code that is storing bytes near the physical end of a
129 * circular buffer to temporarily reduce the buffer's size (in order to make
130 * some storing idioms easier), while also making it simple to restore the
131 * buffer's actual size when the buffer's "pos" wraps around to the start (we
132 * just round the buffer's size up again). */
133
134#define IOBUF_WAS_REDUCED(siz) ((siz) & 0xFF)
135#define IOBUF_RESTORE_SIZE(siz) (((siz) | 0xFF) + 1)
136
ac32cdd7
WD
137#define IN_MULTIPLEXED (iobuf.in_multiplexed != 0)
138#define IN_MULTIPLEXED_AND_READY (iobuf.in_multiplexed > 0)
20caffd2 139#define OUT_MULTIPLEXED (iobuf.out_empty_len != 0)
29349024 140
20caffd2
WD
141#define PIO_NEED_INPUT (1<<0) /* The *_NEED_* flags are mutually exclusive. */
142#define PIO_NEED_OUTROOM (1<<1)
143#define PIO_NEED_MSGROOM (1<<2)
ff41a59f 144
20caffd2 145#define PIO_CONSUME_INPUT (1<<4) /* Must becombined with PIO_NEED_INPUT. */
d17e1dd2 146
20caffd2
WD
147#define PIO_INPUT_AND_CONSUME (PIO_NEED_INPUT | PIO_CONSUME_INPUT)
148#define PIO_NEED_FLAGS (PIO_NEED_INPUT | PIO_NEED_OUTROOM | PIO_NEED_MSGROOM)
d17e1dd2 149
20caffd2
WD
150#define REMOTE_OPTION_ERROR "rsync: on remote machine: -"
151#define REMOTE_OPTION_ERROR2 ": unknown option"
08c88178 152
20caffd2 153#define FILESFROM_BUFLEN 2048
d17e1dd2 154
20caffd2 155enum festatus { FES_SUCCESS, FES_REDO, FES_NO_SEND };
29349024 156
20caffd2 157static flist_ndx_list redo_list, hlink_list;
29349024 158
2885270b 159static void read_a_msg(void);
ae598f38 160static void drain_multiplex_messages(void);
20caffd2 161static void sleep_for_bwlimit(int bytes_written);
29349024 162
18217a94 163static void check_timeout(BOOL allow_keepalive, int keepalive_flags)
8d9dc9f9 164{
92d02148 165 time_t t, chk;
90ba34e2 166
05c36015
WD
167 /* On the receiving side, the generator is now the one that decides
168 * when a timeout has occurred. When it is sifting through a lot of
169 * files looking for work, it will be sending keep-alive messages to
170 * the sender, and even though the receiver won't be sending/receiving
171 * anything (not even keep-alive messages), the successful writes to
172 * the sender will keep things going. If the receiver is actively
173 * receiving data, it will ensure that the generator knows that it is
174 * not idle by sending the generator keep-alive messages (since the
175 * generator might be blocked trying to send checksums, it needs to
176 * know that the receiver is active). Thus, as long as one or the
177 * other is successfully doing work, the generator will not timeout. */
178 if (!io_timeout)
d17e1dd2 179 return;
8d9dc9f9 180
92d02148
WD
181 t = time(NULL);
182
05c36015 183 if (allow_keepalive) {
92d02148 184 /* This may put data into iobuf.msg w/o flushing. */
18217a94 185 maybe_send_keepalive(t, keepalive_flags);
8d9dc9f9
AT
186 }
187
92d02148
WD
188 if (!last_io_in)
189 last_io_in = t;
8d9dc9f9 190
05c36015
WD
191 if (am_receiver)
192 return;
193
92d02148
WD
194 chk = MAX(last_io_out, last_io_in);
195 if (t - chk >= io_timeout) {
c5130bc1
WD
196 if (am_server)
197 msgs2stderr = 1;
198 rprintf(FERROR, "[%s] io timeout after %d seconds -- exiting\n",
92d02148 199 who_am_i(), (int)(t-chk));
65417579 200 exit_cleanup(RERR_TIMEOUT);
8d9dc9f9
AT
201 }
202}
203
20caffd2
WD
204/* It's almost always an error to get an EOF when we're trying to read from the
205 * network, because the protocol is (for the most part) self-terminating.
206 *
207 * There is one case for the receiver when it is at the end of the transfer
208 * (hanging around reading any keep-alive packets that might come its way): if
209 * the sender dies before the generator's kill-signal comes through, we can end
210 * up here needing to loop until the kill-signal arrives. In this situation,
211 * kluge_around_eof will be < 0.
212 *
213 * There is another case for older protocol versions (< 24) where the module
214 * listing was not terminated, so we must ignore an EOF error in that case and
215 * exit. In this situation, kluge_around_eof will be > 0. */
ae598f38 216static NORETURN void whine_about_eof(BOOL allow_kluge)
d17e1dd2 217{
ae598f38 218 if (kluge_around_eof && allow_kluge) {
20caffd2
WD
219 int i;
220 if (kluge_around_eof > 0)
221 exit_cleanup(0);
222 /* If we're still here after 10 seconds, exit with an error. */
223 for (i = 10*1000/20; i--; )
224 msleep(20);
225 }
d17e1dd2 226
20caffd2
WD
227 rprintf(FERROR, RSYNC_NAME ": connection unexpectedly closed "
228 "(%s bytes received so far) [%s]\n",
229 big_num(stats.total_read), who_am_i());
d17e1dd2 230
20caffd2 231 exit_cleanup(RERR_STREAMIO);
554e0a8d
AT
232}
233
20caffd2
WD
234/* Do a safe read, handling any needed looping and error handling.
235 * Returns the count of the bytes read, which will only be different
236 * from "len" if we encountered an EOF. This routine is not used on
237 * the socket except very early in the transfer. */
238static size_t safe_read(int fd, char *buf, size_t len)
0b789446 239{
090ef59b 240 size_t got = 0;
0b789446 241
20caffd2 242 assert(fd != iobuf.in_fd);
0b789446 243
20caffd2
WD
244 while (1) {
245 struct timeval tv;
246 fd_set r_fds, e_fds;
247 int cnt;
7f9bf6b7 248
20caffd2
WD
249 FD_ZERO(&r_fds);
250 FD_SET(fd, &r_fds);
251 FD_ZERO(&e_fds);
252 FD_SET(fd, &e_fds);
253 tv.tv_sec = select_timeout;
254 tv.tv_usec = 0;
7f9bf6b7 255
20caffd2
WD
256 cnt = select(fd+1, &r_fds, NULL, &e_fds, &tv);
257 if (cnt <= 0) {
258 if (cnt < 0 && errno == EBADF) {
ff272503 259 rsyserr(FERROR, errno, "safe_read select failed");
20caffd2
WD
260 exit_cleanup(RERR_FILEIO);
261 }
18217a94 262 check_timeout(1, MSK_ALLOW_FLUSH);
20caffd2
WD
263 continue;
264 }
7f9bf6b7 265
20caffd2
WD
266 /*if (FD_ISSET(fd, &e_fds))
267 rprintf(FINFO, "select exception on fd %d\n", fd); */
7f9bf6b7 268
20caffd2 269 if (FD_ISSET(fd, &r_fds)) {
512acd12
WD
270 ssize_t n = read(fd, buf + got, len - got);
271 if (DEBUG_GTE(IO, 2)) {
272 rprintf(FINFO, "[%s] safe_read(%d)=%" SIZE_T_FMT_MOD "d\n",
273 who_am_i(), fd, (SIZE_T_FMT_CAST)n);
274 }
20caffd2
WD
275 if (n == 0)
276 break;
277 if (n < 0) {
278 if (errno == EINTR)
279 continue;
512acd12
WD
280 rsyserr(FERROR, errno, "safe_read failed to read %" SIZE_T_FMT_MOD "d bytes",
281 (SIZE_T_FMT_CAST)len);
090ef59b 282 exit_cleanup(RERR_STREAMIO);
20caffd2
WD
283 }
284 if ((got += (size_t)n) == len)
285 break;
286 }
7f9bf6b7 287 }
20caffd2
WD
288
289 return got;
7f9bf6b7
WD
290}
291
20caffd2 292static const char *what_fd_is(int fd)
d6081c82 293{
20caffd2 294 static char buf[20];
d6081c82 295
20caffd2
WD
296 if (fd == sock_f_out)
297 return "socket";
298 else if (fd == iobuf.out_fd)
299 return "message fd";
300 else if (fd == batch_fd)
301 return "batch file";
302 else {
303 snprintf(buf, sizeof buf, "fd %d", fd);
304 return buf;
305 }
d6081c82
WD
306}
307
20caffd2
WD
308/* Do a safe write, handling any needed looping and error handling.
309 * Returns only if everything was successfully written. This routine
310 * is not used on the socket except very early in the transfer. */
311static void safe_write(int fd, const char *buf, size_t len)
d17e1dd2 312{
512acd12 313 ssize_t n;
ee6e80c7 314
20caffd2 315 assert(fd != iobuf.out_fd);
332cf6df 316
20caffd2
WD
317 n = write(fd, buf, len);
318 if ((size_t)n == len)
319 return;
320 if (n < 0) {
321 if (errno != EINTR && errno != EWOULDBLOCK && errno != EAGAIN) {
322 write_failed:
323 rsyserr(FERROR, errno,
512acd12
WD
324 "safe_write failed to write %" SIZE_T_FMT_MOD "d bytes to %s",
325 (SIZE_T_FMT_CAST)len, what_fd_is(fd));
20caffd2 326 exit_cleanup(RERR_STREAMIO);
ee6e80c7 327 }
20caffd2
WD
328 } else {
329 buf += n;
330 len -= n;
331 }
ee6e80c7 332
20caffd2
WD
333 while (len) {
334 struct timeval tv;
335 fd_set w_fds;
336 int cnt;
3be97bf9 337
20caffd2
WD
338 FD_ZERO(&w_fds);
339 FD_SET(fd, &w_fds);
340 tv.tv_sec = select_timeout;
341 tv.tv_usec = 0;
17a4977b 342
20caffd2
WD
343 cnt = select(fd + 1, NULL, &w_fds, NULL, &tv);
344 if (cnt <= 0) {
345 if (cnt < 0 && errno == EBADF) {
ff272503 346 rsyserr(FERROR, errno, "safe_write select failed on %s", what_fd_is(fd));
20caffd2
WD
347 exit_cleanup(RERR_FILEIO);
348 }
05c36015
WD
349 if (io_timeout)
350 maybe_send_keepalive(time(NULL), MSK_ALLOW_FLUSH);
20caffd2
WD
351 continue;
352 }
d17e1dd2 353
20caffd2
WD
354 if (FD_ISSET(fd, &w_fds)) {
355 n = write(fd, buf, len);
356 if (n < 0) {
357 if (errno == EINTR)
358 continue;
359 goto write_failed;
360 }
361 buf += n;
362 len -= n;
363 }
37f35d89 364 }
37f35d89
WD
365}
366
20caffd2
WD
367/* This is only called when files-from data is known to be available. We read
368 * a chunk of data and put it into the output buffer. */
369static void forward_filesfrom_data(void)
155d9206 370{
512acd12 371 ssize_t len;
20caffd2 372
cbc63a09 373 len = read(ff_forward_fd, ff_xb.buf + ff_xb.len, ff_xb.size - ff_xb.len);
20caffd2
WD
374 if (len <= 0) {
375 if (len == 0 || errno != EINTR) {
376 /* Send end-of-file marker */
20caffd2 377 ff_forward_fd = -1;
cbc63a09
WD
378 write_buf(iobuf.out_fd, "\0\0", ff_lastchar ? 2 : 1);
379 free_xbuf(&ff_xb);
8e6b4ddb
WD
380 if (ff_reenable_multiplex >= 0)
381 io_start_multiplex_out(ff_reenable_multiplex);
685bf580 382 free_implied_include_partial_string();
20caffd2 383 }
0b789446 384 return;
20caffd2 385 }
554e0a8d 386
512acd12
WD
387 if (DEBUG_GTE(IO, 2)) {
388 rprintf(FINFO, "[%s] files-from read=%" SIZE_T_FMT_MOD "d\n",
389 who_am_i(), (SIZE_T_FMT_CAST)len);
390 }
554e0a8d 391
cbc63a09
WD
392#ifdef ICONV_OPTION
393 len += ff_xb.len;
394#endif
395
20caffd2 396 if (!eol_nulls) {
cbc63a09 397 char *s = ff_xb.buf + len;
20caffd2 398 /* Transform CR and/or LF into '\0' */
cbc63a09 399 while (s-- > ff_xb.buf) {
20caffd2
WD
400 if (*s == '\n' || *s == '\r')
401 *s = '\0';
402 }
403 }
cbc63a09 404
20caffd2 405 if (ff_lastchar)
cbc63a09 406 ff_xb.pos = 0;
20caffd2 407 else {
cbc63a09 408 char *s = ff_xb.buf;
20caffd2
WD
409 /* Last buf ended with a '\0', so don't let this buf start with one. */
410 while (len && *s == '\0')
411 s++, len--;
cbc63a09 412 ff_xb.pos = s - ff_xb.buf;
20caffd2 413 }
cbc63a09
WD
414
415#ifdef ICONV_OPTION
416 if (filesfrom_convert && len) {
417 char *sob = ff_xb.buf + ff_xb.pos, *s = sob;
418 char *eob = sob + len;
419 int flags = ICB_INCLUDE_BAD | ICB_INCLUDE_INCOMPLETE | ICB_CIRCULAR_OUT;
420 if (ff_lastchar == '\0')
421 flags |= ICB_INIT;
422 /* Convert/send each null-terminated string separately, skipping empties. */
423 while (s != eob) {
424 if (*s++ == '\0') {
425 ff_xb.len = s - sob - 1;
c86763dc 426 add_implied_include(sob, 0);
cbc63a09
WD
427 if (iconvbufs(ic_send, &ff_xb, &iobuf.out, flags) < 0)
428 exit_cleanup(RERR_PROTOCOL); /* impossible? */
429 write_buf(iobuf.out_fd, s-1, 1); /* Send the '\0'. */
430 while (s != eob && *s == '\0')
431 s++;
432 sob = s;
433 ff_xb.pos = sob - ff_xb.buf;
434 flags |= ICB_INIT;
435 }
436 }
437
438 if ((ff_xb.len = s - sob) == 0)
439 ff_lastchar = '\0';
440 else {
441 /* Handle a partial string specially, saving any incomplete chars. */
685bf580 442 implied_include_partial_string(sob, s);
cbc63a09
WD
443 flags &= ~ICB_INCLUDE_INCOMPLETE;
444 if (iconvbufs(ic_send, &ff_xb, &iobuf.out, flags) < 0) {
445 if (errno == E2BIG)
446 exit_cleanup(RERR_PROTOCOL); /* impossible? */
447 if (ff_xb.pos)
448 memmove(ff_xb.buf, ff_xb.buf + ff_xb.pos, ff_xb.len);
449 }
450 ff_lastchar = 'x'; /* Anything non-zero. */
451 }
452 } else
453#endif
454
20caffd2 455 if (len) {
cbc63a09
WD
456 char *f = ff_xb.buf + ff_xb.pos;
457 char *t = ff_xb.buf;
20caffd2 458 char *eob = f + len;
b7231c7d 459 char *cur = t;
20caffd2
WD
460 /* Eliminate any multi-'\0' runs. */
461 while (f != eob) {
462 if (!(*t++ = *f++)) {
c86763dc 463 add_implied_include(cur, 0);
b7231c7d 464 cur = t;
cbc63a09
WD
465 while (f != eob && *f == '\0')
466 f++;
20caffd2
WD
467 }
468 }
685bf580 469 implied_include_partial_string(cur, t);
20caffd2 470 ff_lastchar = f[-1];
cbc63a09
WD
471 if ((len = t - ff_xb.buf) != 0) {
472 /* This will not circle back to perform_io() because we only get
473 * called when there is plenty of room in the output buffer. */
474 write_buf(iobuf.out_fd, ff_xb.buf, len);
475 }
20caffd2 476 }
56014c8c 477}
720b47f2 478
907e6a32
WD
479void reduce_iobuf_size(xbuf *out, size_t new_size)
480{
481 if (new_size < out->size) {
1a270451 482 /* Avoid weird buffer interactions by only outputting this to stderr. */
592059c8 483 if (msgs2stderr == 1 && DEBUG_GTE(IO, 4)) {
907e6a32
WD
484 const char *name = out == &iobuf.out ? "iobuf.out"
485 : out == &iobuf.msg ? "iobuf.msg"
486 : NULL;
487 if (name) {
488 rprintf(FINFO, "[%s] reduced size of %s (-%d)\n",
489 who_am_i(), name, (int)(out->size - new_size));
490 }
491 }
492 out->size = new_size;
493 }
494}
495
496void restore_iobuf_size(xbuf *out)
497{
498 if (IOBUF_WAS_REDUCED(out->size)) {
499 size_t new_size = IOBUF_RESTORE_SIZE(out->size);
1a270451 500 /* Avoid weird buffer interactions by only outputting this to stderr. */
592059c8 501 if (msgs2stderr == 1 && DEBUG_GTE(IO, 4)) {
907e6a32
WD
502 const char *name = out == &iobuf.out ? "iobuf.out"
503 : out == &iobuf.msg ? "iobuf.msg"
504 : NULL;
505 if (name) {
506 rprintf(FINFO, "[%s] restored size of %s (+%d)\n",
507 who_am_i(), name, (int)(new_size - out->size));
508 }
509 }
510 out->size = new_size;
511 }
512}
513
1e9ee19a
WD
514static void handle_kill_signal(BOOL flush_ok)
515{
516 got_kill_signal = -1;
517 flush_ok_after_signal = flush_ok;
518 exit_cleanup(RERR_SIGNAL);
519}
520
eeea1bbd
WD
521/* Perform buffered input and/or output until specified conditions are met.
522 * When given a "needed" read or write request, this returns without doing any
523 * I/O if the needed input bytes or write space is already available. Once I/O
524 * is needed, this will try to do whatever reading and/or writing is currently
525 * possible, up to the maximum buffer allowances, no matter if this is a read
526 * or write request. However, the I/O stops as soon as the required input
527 * bytes or output space is available. If this is not a read request, the
528 * routine may also do some advantageous reading of messages from a multiplexed
529 * input source (which ensures that we don't jam up with everyone in their
530 * "need to write" code and nobody reading the accumulated data that would make
531 * writing possible).
880da007 532 *
eeea1bbd
WD
533 * The iobuf.in, .out and .msg buffers are all circular. Callers need to be
534 * aware that some data copies will need to be split when the bytes wrap around
535 * from the end to the start. In order to help make writing into the output
536 * buffers easier for some operations (such as the use of SIVAL() into the
537 * buffer) a buffer may be temporarily shortened by a small amount, but the
538 * original size will be automatically restored when the .pos wraps to the
539 * start. See also the 3 raw_* iobuf vars that are used in the handling of
763880ba 540 * MSG_DATA bytes as they are read-from/written-into the buffers.
cb2e1f18 541 *
20caffd2
WD
542 * When writing, we flush data in the following priority order:
543 *
544 * 1. Finish writing any in-progress MSG_DATA sequence from iobuf.out.
545 *
546 * 2. Write out all the messages from the message buf (if iobuf.msg is active).
547 * Yes, this means that a PIO_NEED_OUTROOM call will completely flush any
548 * messages before getting to the iobuf.out flushing (except for rule 1).
549 *
550 * 3. Write out the raw data from iobuf.out, possibly filling in the multiplexed
551 * MSG_DATA header that was pre-allocated (when output is multiplexed).
552 *
553 * TODO: items for possible future work:
554 *
555 * - Make this routine able to read the generator-to-receiver batch flow?
556 *
20caffd2
WD
557 * Unlike the old routines that this replaces, it is OK to read ahead as far as
558 * we can because the read_a_msg() routine now reads its bytes out of the input
559 * buffer. In the old days, only raw data was in the input buffer, and any
560 * unused raw data in the buf would prevent the reading of socket data. */
561static char *perform_io(size_t needed, int flags)
7a55d06e 562{
20caffd2
WD
563 fd_set r_fds, e_fds, w_fds;
564 struct timeval tv;
565 int cnt, max_fd;
566 size_t empty_buf_len = 0;
567 xbuf *out;
568 char *data;
569
570 if (iobuf.in.len == 0 && iobuf.in.pos != 0) {
571 if (iobuf.raw_input_ends_before)
572 iobuf.raw_input_ends_before -= iobuf.in.pos;
573 iobuf.in.pos = 0;
574c2500 574 }
3151cbae 575
20caffd2
WD
576 switch (flags & PIO_NEED_FLAGS) {
577 case PIO_NEED_INPUT:
763880ba
WD
578 /* We never resize the circular input buffer. */
579 if (iobuf.in.size < needed) {
512acd12
WD
580 rprintf(FERROR, "need to read %" SIZE_T_FMT_MOD "d bytes,"
581 " iobuf.in.buf is only %" SIZE_T_FMT_MOD "d bytes.\n",
582 (SIZE_T_FMT_CAST)needed, (SIZE_T_FMT_CAST)iobuf.in.size);
763880ba
WD
583 exit_cleanup(RERR_PROTOCOL);
584 }
585
592059c8 586 if (msgs2stderr == 1 && DEBUG_GTE(IO, 3)) {
512acd12
WD
587 rprintf(FINFO, "[%s] perform_io(%" SIZE_T_FMT_MOD "d, %sinput)\n",
588 who_am_i(), (SIZE_T_FMT_CAST)needed, flags & PIO_CONSUME_INPUT ? "consume&" : "");
20caffd2 589 }
20caffd2 590 break;
720b47f2 591
20caffd2
WD
592 case PIO_NEED_OUTROOM:
593 /* We never resize the circular output buffer. */
594 if (iobuf.out.size - iobuf.out_empty_len < needed) {
512acd12
WD
595 fprintf(stderr, "need to write %" SIZE_T_FMT_MOD "d bytes,"
596 " iobuf.out.buf is only %" SIZE_T_FMT_MOD "d bytes.\n",
597 (SIZE_T_FMT_CAST)needed, (SIZE_T_FMT_CAST)(iobuf.out.size - iobuf.out_empty_len));
20caffd2
WD
598 exit_cleanup(RERR_PROTOCOL);
599 }
4c36ddbe 600
592059c8 601 if (msgs2stderr == 1 && DEBUG_GTE(IO, 3)) {
512acd12
WD
602 rprintf(FINFO, "[%s] perform_io(%" SIZE_T_FMT_MOD "d,"
603 " outroom) needs to flush %" SIZE_T_FMT_MOD "d\n",
604 who_am_i(), (SIZE_T_FMT_CAST)needed,
b82d8c9d 605 iobuf.out.len + needed > iobuf.out.size
512acd12 606 ? (SIZE_T_FMT_CAST)(iobuf.out.len + needed - iobuf.out.size) : (SIZE_T_FMT_CAST)0);
20caffd2
WD
607 }
608 break;
ea2111d1 609
20caffd2
WD
610 case PIO_NEED_MSGROOM:
611 /* We never resize the circular message buffer. */
612 if (iobuf.msg.size < needed) {
512acd12
WD
613 fprintf(stderr, "need to write %" SIZE_T_FMT_MOD "d bytes,"
614 " iobuf.msg.buf is only %" SIZE_T_FMT_MOD "d bytes.\n",
615 (SIZE_T_FMT_CAST)needed, (SIZE_T_FMT_CAST)iobuf.msg.size);
20caffd2
WD
616 exit_cleanup(RERR_PROTOCOL);
617 }
618
592059c8 619 if (msgs2stderr == 1 && DEBUG_GTE(IO, 3)) {
512acd12
WD
620 rprintf(FINFO, "[%s] perform_io(%" SIZE_T_FMT_MOD "d,"
621 " msgroom) needs to flush %" SIZE_T_FMT_MOD "d\n",
622 who_am_i(), (SIZE_T_FMT_CAST)needed,
b82d8c9d 623 iobuf.msg.len + needed > iobuf.msg.size
512acd12 624 ? (SIZE_T_FMT_CAST)(iobuf.msg.len + needed - iobuf.msg.size) : (SIZE_T_FMT_CAST)0);
20caffd2
WD
625 }
626 break;
627
628 case 0:
512acd12
WD
629 if (msgs2stderr == 1 && DEBUG_GTE(IO, 3)) {
630 rprintf(FINFO, "[%s] perform_io(%" SIZE_T_FMT_MOD "d, %d)\n",
631 who_am_i(), (SIZE_T_FMT_CAST)needed, flags);
632 }
20caffd2
WD
633 break;
634
635 default:
636 exit_cleanup(RERR_UNSUPPORTED);
637 }
638
639 while (1) {
640 switch (flags & PIO_NEED_FLAGS) {
641 case PIO_NEED_INPUT:
642 if (iobuf.in.len >= needed)
643 goto double_break;
644 break;
645 case PIO_NEED_OUTROOM:
b82d8c9d
WD
646 /* Note that iobuf.out_empty_len doesn't factor into this check
647 * because iobuf.out.len already holds any needed header len. */
648 if (iobuf.out.len + needed <= iobuf.out.size)
20caffd2
WD
649 goto double_break;
650 break;
651 case PIO_NEED_MSGROOM:
b82d8c9d 652 if (iobuf.msg.len + needed <= iobuf.msg.size)
20caffd2
WD
653 goto double_break;
654 break;
655 }
656
657 max_fd = -1;
4c36ddbe 658
56014c8c 659 FD_ZERO(&r_fds);
20caffd2 660 FD_ZERO(&e_fds);
763880ba 661 if (iobuf.in_fd >= 0 && iobuf.in.size - iobuf.in.len) {
20caffd2
WD
662 if (!read_batch || batch_fd >= 0) {
663 FD_SET(iobuf.in_fd, &r_fds);
664 FD_SET(iobuf.in_fd, &e_fds);
665 }
666 if (iobuf.in_fd > max_fd)
667 max_fd = iobuf.in_fd;
668 }
669
670 /* Only do more filesfrom processing if there is enough room in the out buffer. */
671 if (ff_forward_fd >= 0 && iobuf.out.size - iobuf.out.len > FILESFROM_BUFLEN*2) {
672 FD_SET(ff_forward_fd, &r_fds);
673 if (ff_forward_fd > max_fd)
674 max_fd = ff_forward_fd;
675 }
676
a7026ba9 677 FD_ZERO(&w_fds);
20caffd2
WD
678 if (iobuf.out_fd >= 0) {
679 if (iobuf.raw_flushing_ends_before
680 || (!iobuf.msg.len && iobuf.out.len > iobuf.out_empty_len && !(flags & PIO_NEED_MSGROOM))) {
681 if (OUT_MULTIPLEXED && !iobuf.raw_flushing_ends_before) {
20caffd2
WD
682 /* The iobuf.raw_flushing_ends_before value can point off the end
683 * of the iobuf.out buffer for a while, for easier subtracting. */
684 iobuf.raw_flushing_ends_before = iobuf.out.pos + iobuf.out.len;
685
686 SIVAL(iobuf.out.buf + iobuf.raw_data_header_pos, 0,
687 ((MPLEX_BASE + (int)MSG_DATA)<<24) + iobuf.out.len - 4);
20caffd2 688
592059c8 689 if (msgs2stderr == 1 && DEBUG_GTE(IO, 1)) {
512acd12
WD
690 rprintf(FINFO, "[%s] send_msg(%d, %" SIZE_T_FMT_MOD "d)\n",
691 who_am_i(), (int)MSG_DATA, (SIZE_T_FMT_CAST)iobuf.out.len - 4);
20caffd2
WD
692 }
693
694 /* reserve room for the next MSG_DATA header */
695 iobuf.raw_data_header_pos = iobuf.raw_flushing_ends_before;
696 if (iobuf.raw_data_header_pos >= iobuf.out.size)
697 iobuf.raw_data_header_pos -= iobuf.out.size;
907e6a32
WD
698 else if (iobuf.raw_data_header_pos + 4 > iobuf.out.size) {
699 /* The 4-byte header won't fit at the end of the buffer,
700 * so we'll temporarily reduce the output buffer's size
701 * and put the header at the start of the buffer. */
702 reduce_iobuf_size(&iobuf.out, iobuf.raw_data_header_pos);
703 iobuf.raw_data_header_pos = 0;
704 }
75ea8459 705 /* Yes, it is possible for this to make len > size for a while. */
20caffd2 706 iobuf.out.len += 4;
56014c8c 707 }
20caffd2
WD
708
709 empty_buf_len = iobuf.out_empty_len;
710 out = &iobuf.out;
711 } else if (iobuf.msg.len) {
712 empty_buf_len = 0;
713 out = &iobuf.msg;
714 } else
715 out = NULL;
716 if (out) {
717 FD_SET(iobuf.out_fd, &w_fds);
718 if (iobuf.out_fd > max_fd)
719 max_fd = iobuf.out_fd;
720 }
721 } else
722 out = NULL;
723
724 if (max_fd < 0) {
725 switch (flags & PIO_NEED_FLAGS) {
726 case PIO_NEED_INPUT:
ae598f38
WD
727 iobuf.in.len = 0;
728 if (kluge_around_eof == 2)
729 exit_cleanup(0);
730 if (iobuf.in_fd == -2)
731 whine_about_eof(True);
20caffd2
WD
732 rprintf(FERROR, "error in perform_io: no fd for input.\n");
733 exit_cleanup(RERR_PROTOCOL);
734 case PIO_NEED_OUTROOM:
735 case PIO_NEED_MSGROOM:
736 msgs2stderr = 1;
ae598f38
WD
737 drain_multiplex_messages();
738 if (iobuf.out_fd == -2)
739 whine_about_eof(True);
20caffd2
WD
740 rprintf(FERROR, "error in perform_io: no fd for output.\n");
741 exit_cleanup(RERR_PROTOCOL);
742 default:
743 /* No stated needs, so I guess this is OK. */
744 break;
56014c8c 745 }
20caffd2 746 break;
554e0a8d
AT
747 }
748
1e9ee19a
WD
749 if (got_kill_signal > 0)
750 handle_kill_signal(True);
751
20caffd2 752 if (extra_flist_sending_enabled) {
1a270451 753 if (file_total - file_old_total < MAX_FILECNT_LOOKAHEAD && IN_MULTIPLEXED_AND_READY)
7a7810aa
WD
754 tv.tv_sec = 0;
755 else {
756 extra_flist_sending_enabled = False;
757 tv.tv_sec = select_timeout;
758 }
759 } else
ce827c3e 760 tv.tv_sec = select_timeout;
4c36ddbe
AT
761 tv.tv_usec = 0;
762
20caffd2 763 cnt = select(max_fd + 1, &r_fds, &w_fds, &e_fds, &tv);
554e0a8d 764
20caffd2
WD
765 if (cnt <= 0) {
766 if (cnt < 0 && errno == EBADF) {
767 msgs2stderr = 1;
554e0a8d 768 exit_cleanup(RERR_SOCKETIO);
2a5df862 769 }
20caffd2 770 if (extra_flist_sending_enabled) {
7a7810aa 771 extra_flist_sending_enabled = False;
ce827c3e 772 send_extra_file_list(sock_f_out, -1);
7a7810aa
WD
773 extra_flist_sending_enabled = !flist_eof;
774 } else
18217a94 775 check_timeout((flags & PIO_NEED_INPUT) != 0, 0);
20caffd2
WD
776 FD_ZERO(&r_fds); /* Just in case... */
777 FD_ZERO(&w_fds);
4c36ddbe
AT
778 }
779
20caffd2 780 if (iobuf.in_fd >= 0 && FD_ISSET(iobuf.in_fd, &r_fds)) {
763880ba 781 size_t len, pos = iobuf.in.pos + iobuf.in.len;
512acd12 782 ssize_t n;
763880ba
WD
783 if (pos >= iobuf.in.size) {
784 pos -= iobuf.in.size;
785 len = iobuf.in.size - iobuf.in.len;
786 } else
787 len = iobuf.in.size - pos;
20caffd2
WD
788 if ((n = read(iobuf.in_fd, iobuf.in.buf + pos, len)) <= 0) {
789 if (n == 0) {
ae598f38 790 /* Signal that input has become invalid. */
20caffd2 791 if (!read_batch || batch_fd < 0 || am_generator)
ae598f38 792 iobuf.in_fd = -2;
20caffd2
WD
793 batch_fd = -1;
794 continue;
795 }
796 if (errno == EINTR || errno == EWOULDBLOCK || errno == EAGAIN)
797 n = 0;
798 else {
799 /* Don't write errors on a dead socket. */
800 if (iobuf.in_fd == sock_f_in) {
801 if (am_sender)
802 msgs2stderr = 1;
803 rsyserr(FERROR_SOCKET, errno, "read error");
804 } else
805 rsyserr(FERROR, errno, "read error");
e4c598c8 806 exit_cleanup(RERR_SOCKETIO);
56014c8c 807 }
20caffd2 808 }
512acd12
WD
809 if (msgs2stderr == 1 && DEBUG_GTE(IO, 2)) {
810 rprintf(FINFO, "[%s] recv=%" SIZE_T_FMT_MOD "d\n",
811 who_am_i(), (SIZE_T_FMT_CAST)n);
812 }
20caffd2 813
ffbca80c 814 if (io_timeout) {
20caffd2 815 last_io_in = time(NULL);
af531cf7 816 if (io_timeout && flags & PIO_NEED_INPUT)
05c36015
WD
817 maybe_send_keepalive(last_io_in, 0);
818 }
20caffd2
WD
819 stats.total_read += n;
820
821 iobuf.in.len += n;
822 }
823
ffbca80c
RO
824 if (stop_at_utime && time(NULL) >= stop_at_utime) {
825 rprintf(FERROR, "stopping at requested limit\n");
826 exit_cleanup(RERR_TIMEOUT);
827 }
828
dc2a0923 829 if (out && FD_ISSET(iobuf.out_fd, &w_fds)) {
20caffd2 830 size_t len = iobuf.raw_flushing_ends_before ? iobuf.raw_flushing_ends_before - out->pos : out->len;
512acd12 831 ssize_t n;
20caffd2
WD
832
833 if (bwlimit_writemax && len > bwlimit_writemax)
834 len = bwlimit_writemax;
835
836 if (out->pos + len > out->size)
837 len = out->size - out->pos;
838 if ((n = write(iobuf.out_fd, out->buf + out->pos, len)) <= 0) {
839 if (errno == EINTR || errno == EWOULDBLOCK || errno == EAGAIN)
840 n = 0;
841 else {
842 /* Don't write errors on a dead socket. */
843 msgs2stderr = 1;
ae598f38
WD
844 iobuf.out_fd = -2;
845 iobuf.out.len = iobuf.msg.len = iobuf.raw_flushing_ends_before = 0;
ff272503 846 rsyserr(FERROR_SOCKET, errno, "write error");
ae598f38 847 drain_multiplex_messages();
e4c598c8 848 exit_cleanup(RERR_SOCKETIO);
20caffd2
WD
849 }
850 }
592059c8 851 if (msgs2stderr == 1 && DEBUG_GTE(IO, 2)) {
512acd12
WD
852 rprintf(FINFO, "[%s] %s sent=%" SIZE_T_FMT_MOD "d\n",
853 who_am_i(), out == &iobuf.out ? "out" : "msg", (SIZE_T_FMT_CAST)n);
20caffd2
WD
854 }
855
856 if (io_timeout)
857 last_io_out = time(NULL);
858 stats.total_written += n;
859
860 if (bwlimit_writemax)
861 sleep_for_bwlimit(n);
862
863 if ((out->pos += n) == out->size) {
864 if (iobuf.raw_flushing_ends_before)
865 iobuf.raw_flushing_ends_before -= out->size;
866 out->pos = 0;
907e6a32 867 restore_iobuf_size(out);
d620b907 868 } else if (out->pos == iobuf.raw_flushing_ends_before)
20caffd2
WD
869 iobuf.raw_flushing_ends_before = 0;
870 if ((out->len -= n) == empty_buf_len) {
871 out->pos = 0;
907e6a32 872 restore_iobuf_size(out);
20caffd2
WD
873 if (empty_buf_len)
874 iobuf.raw_data_header_pos = 0;
875 }
876 }
877
1e9ee19a
WD
878 if (got_kill_signal > 0)
879 handle_kill_signal(True);
d4070db6 880
2885270b
WD
881 /* We need to help prevent deadlock by doing what reading
882 * we can whenever we are here trying to write. */
ac32cdd7 883 if (IN_MULTIPLEXED_AND_READY && !(flags & PIO_NEED_INPUT)) {
2885270b
WD
884 while (!iobuf.raw_input_ends_before && iobuf.in.len > 512)
885 read_a_msg();
886 if (flist_receiving_enabled && iobuf.in.len > 512)
887 wait_for_receiver(); /* generator only */
888 }
889
20caffd2
WD
890 if (ff_forward_fd >= 0 && FD_ISSET(ff_forward_fd, &r_fds)) {
891 /* This can potentially flush all output and enable
892 * multiplexed output, so keep this last in the loop
893 * and be sure to not cache anything that would break
894 * such a change. */
895 forward_filesfrom_data();
896 }
897 }
898 double_break:
899
1e9ee19a
WD
900 if (got_kill_signal > 0)
901 handle_kill_signal(True);
902
20caffd2
WD
903 data = iobuf.in.buf + iobuf.in.pos;
904
905 if (flags & PIO_CONSUME_INPUT) {
906 iobuf.in.len -= needed;
907 iobuf.in.pos += needed;
763880ba
WD
908 if (iobuf.in.pos == iobuf.raw_input_ends_before)
909 iobuf.raw_input_ends_before = 0;
910 if (iobuf.in.pos >= iobuf.in.size) {
911 iobuf.in.pos -= iobuf.in.size;
912 if (iobuf.raw_input_ends_before)
913 iobuf.raw_input_ends_before -= iobuf.in.size;
914 }
20caffd2
WD
915 }
916
917 return data;
918}
919
763880ba
WD
920static void raw_read_buf(char *buf, size_t len)
921{
922 size_t pos = iobuf.in.pos;
923 char *data = perform_io(len, PIO_INPUT_AND_CONSUME);
924 if (iobuf.in.pos <= pos && len) {
925 size_t siz = len - iobuf.in.pos;
926 memcpy(buf, data, siz);
927 memcpy(buf + siz, iobuf.in.buf, iobuf.in.pos);
928 } else
929 memcpy(buf, data, len);
930}
931
932static int32 raw_read_int(void)
933{
934 char *data, buf[4];
935 if (iobuf.in.size - iobuf.in.pos >= 4)
936 data = perform_io(4, PIO_INPUT_AND_CONSUME);
937 else
938 raw_read_buf(data = buf, 4);
939 return IVAL(data, 0);
940}
941
f9185203
WD
942void noop_io_until_death(void)
943{
944 char buf[1024];
945
f9bb8f76
WD
946 if (!iobuf.in.buf || !iobuf.out.buf || iobuf.in_fd < 0 || iobuf.out_fd < 0 || kluge_around_eof)
947 return;
948
949 /* If we're talking to a daemon over a socket, don't short-circuit this logic */
950 if (msgs2stderr && daemon_connection >= 0)
de407c03
WD
951 return;
952
ae598f38 953 kluge_around_eof = 2;
e4c598c8
WD
954 /* Setting an I/O timeout ensures that if something inexplicably weird
955 * happens, we won't hang around forever. */
956 if (!io_timeout)
957 set_io_timeout(60);
f9185203
WD
958
959 while (1)
960 read_buf(iobuf.in_fd, buf, sizeof buf);
961}
962
aa3999d6 963/* Buffer a message for the multiplexed output stream. Is not used for (normal) MSG_DATA. */
20caffd2
WD
964int send_msg(enum msgcode code, const char *buf, size_t len, int convert)
965{
966 char *hdr;
907e6a32 967 size_t needed, pos;
592059c8 968 BOOL want_debug = DEBUG_GTE(IO, 1) && convert >= 0 && (msgs2stderr == 1 || code != MSG_INFO);
20caffd2
WD
969
970 if (!OUT_MULTIPLEXED)
971 return 0;
972
512acd12
WD
973 if (want_debug) {
974 rprintf(FINFO, "[%s] send_msg(%d, %" SIZE_T_FMT_MOD "d)\n",
975 who_am_i(), (int)code, (SIZE_T_FMT_CAST)len);
976 }
20caffd2 977
907e6a32
WD
978 /* When checking for enough free space for this message, we need to
979 * make sure that there is space for the 4-byte header, plus we'll
980 * assume that we may waste up to 3 bytes (if the header doesn't fit
981 * at the physical end of the buffer). */
22955408 982#ifdef ICONV_OPTION
20caffd2
WD
983 if (convert > 0 && ic_send == (iconv_t)-1)
984 convert = 0;
985 if (convert > 0) {
d620b907 986 /* Ensuring double-size room leaves space for maximal conversion expansion. */
907e6a32 987 needed = len*2 + 4 + 3;
20caffd2 988 } else
22955408 989#endif
907e6a32 990 needed = len + 4 + 3;
01b9bbb0 991 if (iobuf.msg.len + needed > iobuf.msg.size) {
ead44adc 992 if (am_sender)
01b9bbb0 993 perform_io(needed, PIO_NEED_MSGROOM);
ead44adc 994 else { /* We sometimes allow the iobuf.msg size to increase to avoid a deadlock. */
01b9bbb0
WD
995 size_t old_size = iobuf.msg.size;
996 restore_iobuf_size(&iobuf.msg);
997 realloc_xbuf(&iobuf.msg, iobuf.msg.size * 2);
998 if (iobuf.msg.pos + iobuf.msg.len > old_size)
999 memcpy(iobuf.msg.buf + old_size, iobuf.msg.buf, iobuf.msg.pos + iobuf.msg.len - old_size);
1000 }
1001 }
20caffd2
WD
1002
1003 pos = iobuf.msg.pos + iobuf.msg.len; /* Must be set after any flushing. */
1004 if (pos >= iobuf.msg.size)
1005 pos -= iobuf.msg.size;
907e6a32
WD
1006 else if (pos + 4 > iobuf.msg.size) {
1007 /* The 4-byte header won't fit at the end of the buffer,
1008 * so we'll temporarily reduce the message buffer's size
1009 * and put the header at the start of the buffer. */
1010 reduce_iobuf_size(&iobuf.msg, pos);
1011 pos = 0;
1012 }
20caffd2
WD
1013 hdr = iobuf.msg.buf + pos;
1014
d620b907 1015 iobuf.msg.len += 4; /* Allocate room for the coming header bytes. */
20caffd2 1016
22955408 1017#ifdef ICONV_OPTION
20caffd2
WD
1018 if (convert > 0) {
1019 xbuf inbuf;
1020
1021 INIT_XBUF(inbuf, (char*)buf, len, (size_t)-1);
1022
1023 len = iobuf.msg.len;
1024 iconvbufs(ic_send, &inbuf, &iobuf.msg,
d8a7290f 1025 ICB_INCLUDE_BAD | ICB_INCLUDE_INCOMPLETE | ICB_CIRCULAR_OUT | ICB_INIT);
20caffd2
WD
1026 if (inbuf.len > 0) {
1027 rprintf(FERROR, "overflowed iobuf.msg buffer in send_msg");
1028 exit_cleanup(RERR_UNSUPPORTED);
1029 }
1030 len = iobuf.msg.len - len;
1031 } else
22955408 1032#endif
20caffd2
WD
1033 {
1034 size_t siz;
1035
aa3999d6
WD
1036 if ((pos += 4) == iobuf.msg.size)
1037 pos = 0;
20caffd2
WD
1038
1039 /* Handle a split copy if we wrap around the end of the circular buffer. */
1040 if (pos >= iobuf.msg.pos && (siz = iobuf.msg.size - pos) < len) {
1041 memcpy(iobuf.msg.buf + pos, buf, siz);
1042 memcpy(iobuf.msg.buf, buf + siz, len - siz);
1043 } else
1044 memcpy(iobuf.msg.buf + pos, buf, len);
1045
1046 iobuf.msg.len += len;
1047 }
1048
1049 SIVAL(hdr, 0, ((MPLEX_BASE + (int)code)<<24) + len);
20caffd2 1050
512acd12
WD
1051 if (want_debug && convert > 0) {
1052 rprintf(FINFO, "[%s] converted msg len=%" SIZE_T_FMT_MOD "d\n",
1053 who_am_i(), (SIZE_T_FMT_CAST)len);
1054 }
20caffd2
WD
1055
1056 return 1;
1057}
1058
1059void send_msg_int(enum msgcode code, int num)
1060{
1061 char numbuf[4];
1062
1063 if (DEBUG_GTE(IO, 1))
1064 rprintf(FINFO, "[%s] send_msg_int(%d, %d)\n", who_am_i(), (int)code, num);
1065
1066 SIVAL(numbuf, 0, num);
1067 send_msg(code, numbuf, 4, -1);
1068}
1069
5183c0d6
WD
1070void send_msg_success(const char *fname, int num)
1071{
1072 if (local_server) {
1073 STRUCT_STAT st;
1074
1075 if (DEBUG_GTE(IO, 1))
1076 rprintf(FINFO, "[%s] send_msg_success(%d)\n", who_am_i(), num);
1077
1078 if (stat(fname, &st) < 0)
1079 memset(&st, 0, sizeof (STRUCT_STAT));
1080 SIVAL(num_dev_ino_buf, 0, num);
1081 SIVAL64(num_dev_ino_buf, 4, st.st_dev);
1082 SIVAL64(num_dev_ino_buf, 4+8, st.st_ino);
1083 send_msg(MSG_SUCCESS, num_dev_ino_buf, sizeof num_dev_ino_buf, -1);
1084 } else
1085 send_msg_int(MSG_SUCCESS, num);
1086}
1087
20caffd2
WD
1088static void got_flist_entry_status(enum festatus status, int ndx)
1089{
1090 struct file_list *flist = flist_for_ndx(ndx, "got_flist_entry_status");
1091
1092 if (remove_source_files) {
1093 active_filecnt--;
1094 active_bytecnt -= F_LENGTH(flist->files[ndx - flist->ndx_start]);
1095 }
1096
1097 if (inc_recurse)
1098 flist->in_progress--;
1099
1100 switch (status) {
1101 case FES_SUCCESS:
5183c0d6
WD
1102 if (remove_source_files) {
1103 if (local_server)
1104 send_msg(MSG_SUCCESS, num_dev_ino_buf, sizeof num_dev_ino_buf, -1);
1105 else
1106 send_msg_int(MSG_SUCCESS, ndx);
1107 }
03cd1ae4
WD
1108 /* FALL THROUGH */
1109 case FES_NO_SEND:
1110#ifdef SUPPORT_HARD_LINKS
20caffd2
WD
1111 if (preserve_hard_links) {
1112 struct file_struct *file = flist->files[ndx - flist->ndx_start];
1113 if (F_IS_HLINKED(file)) {
03cd1ae4
WD
1114 if (status == FES_NO_SEND)
1115 flist_ndx_push(&hlink_list, -2); /* indicates a failure follows */
20caffd2 1116 flist_ndx_push(&hlink_list, ndx);
41c5ba64
WD
1117 if (inc_recurse)
1118 flist->in_progress++;
56014c8c
WD
1119 }
1120 }
03cd1ae4 1121#endif
20caffd2
WD
1122 break;
1123 case FES_REDO:
1124 if (read_batch) {
1125 if (inc_recurse)
1126 flist->in_progress++;
1127 break;
1128 }
1129 if (inc_recurse)
1130 flist->to_redo++;
1131 flist_ndx_push(&redo_list, ndx);
1132 break;
20caffd2
WD
1133 }
1134}
1135
1136/* Note the fds used for the main socket (which might really be a pipe
1137 * for a local transfer, but we can ignore that). */
1138void io_set_sock_fds(int f_in, int f_out)
1139{
1140 sock_f_in = f_in;
1141 sock_f_out = f_out;
1142}
1143
1144void set_io_timeout(int secs)
1145{
1146 io_timeout = secs;
05c36015 1147 allowed_lull = (io_timeout + 1) / 2;
20caffd2 1148
05c36015 1149 if (!io_timeout || allowed_lull > SELECT_TIMEOUT)
20caffd2
WD
1150 select_timeout = SELECT_TIMEOUT;
1151 else
05c36015 1152 select_timeout = allowed_lull;
20caffd2 1153
05c36015
WD
1154 if (read_batch)
1155 allowed_lull = 0;
20caffd2
WD
1156}
1157
1158static void check_for_d_option_error(const char *msg)
1159{
1160 static char rsync263_opts[] = "BCDHIKLPRSTWabceghlnopqrtuvxz";
1161 char *colon;
1162 int saw_d = 0;
1163
1164 if (*msg != 'r'
1165 || strncmp(msg, REMOTE_OPTION_ERROR, sizeof REMOTE_OPTION_ERROR - 1) != 0)
1166 return;
56014c8c 1167
20caffd2
WD
1168 msg += sizeof REMOTE_OPTION_ERROR - 1;
1169 if (*msg == '-' || (colon = strchr(msg, ':')) == NULL
1170 || strncmp(colon, REMOTE_OPTION_ERROR2, sizeof REMOTE_OPTION_ERROR2 - 1) != 0)
1171 return;
554e0a8d 1172
20caffd2
WD
1173 for ( ; *msg != ':'; msg++) {
1174 if (*msg == 'd')
1175 saw_d = 1;
1176 else if (*msg == 'e')
1177 break;
1178 else if (strchr(rsync263_opts, *msg) == NULL)
1179 return;
1180 }
4c36ddbe 1181
20caffd2 1182 if (saw_d) {
e63ff70e 1183 rprintf(FWARNING, "*** Try using \"--old-d\" if remote rsync is <= 2.6.3 ***\n");
20caffd2
WD
1184 }
1185}
1f75bb10 1186
20caffd2
WD
1187/* This is used by the generator to limit how many file transfers can
1188 * be active at once when --remove-source-files is specified. Without
1189 * this, sender-side deletions were mostly happening at the end. */
1190void increment_active_files(int ndx, int itemizing, enum logcode code)
1191{
1192 while (1) {
1193 /* TODO: tune these limits? */
1194 int limit = active_bytecnt >= 128*1024 ? 10 : 50;
1195 if (active_filecnt < limit)
1196 break;
1197 check_for_finished_files(itemizing, code, 0);
1198 if (active_filecnt < limit)
1199 break;
1200 wait_for_receiver();
1201 }
00bdf899 1202
20caffd2
WD
1203 active_filecnt++;
1204 active_bytecnt += F_LENGTH(cur_flist->files[ndx - cur_flist->ndx_start]);
1205}
1f75bb10 1206
20caffd2
WD
1207int get_redo_num(void)
1208{
1209 return flist_ndx_pop(&redo_list);
1210}
1211
1212int get_hlink_num(void)
1213{
1214 return flist_ndx_pop(&hlink_list);
1215}
8d9dc9f9 1216
20caffd2
WD
1217/* When we're the receiver and we have a local --files-from list of names
1218 * that needs to be sent over the socket to the sender, we have to do two
1219 * things at the same time: send the sender a list of what files we're
1220 * processing and read the incoming file+info list from the sender. We do
1221 * this by making recv_file_list() call forward_filesfrom_data(), which
1222 * will ensure that we forward data to the sender until we get some data
1223 * for recv_file_list() to use. */
1224void start_filesfrom_forwarding(int fd)
1225{
8e6b4ddb
WD
1226 if (protocol_version < 31 && OUT_MULTIPLEXED) {
1227 /* Older protocols send the files-from data w/o packaging
1228 * it in multiplexed I/O packets, so temporarily switch
705132bc
WD
1229 * to buffered I/O to match this behavior. */
1230 iobuf.msg.pos = iobuf.msg.len = 0; /* Be extra sure no messages go out. */
8e6b4ddb 1231 ff_reenable_multiplex = io_end_multiplex_out(MPLX_TO_BUFFERED);
20caffd2 1232 }
705132bc 1233 ff_forward_fd = fd;
cbc63a09
WD
1234
1235 alloc_xbuf(&ff_xb, FILESFROM_BUFLEN);
4c36ddbe 1236}
8d9dc9f9 1237
67b8f3df 1238/* Read a line into the "buf" buffer. */
ba525f77 1239int read_line(int fd, char *buf, size_t bufsiz, int flags)
56014c8c 1240{
ba525f77 1241 char ch, *s, *eob;
56014c8c 1242
ba525f77
WD
1243#ifdef ICONV_OPTION
1244 if (flags & RL_CONVERT && iconv_buf.size < bufsiz)
01b9bbb0 1245 realloc_xbuf(&iconv_buf, ROUND_UP_1024(bufsiz) + 1024);
ba525f77
WD
1246#endif
1247
56014c8c 1248 start:
22955408 1249#ifdef ICONV_OPTION
ba525f77 1250 s = flags & RL_CONVERT ? iconv_buf.buf : buf;
22955408
WD
1251#else
1252 s = buf;
1253#endif
ba525f77 1254 eob = s + bufsiz - 1;
56014c8c 1255 while (1) {
20caffd2
WD
1256 /* We avoid read_byte() for files because files can return an EOF. */
1257 if (fd == iobuf.in_fd)
1258 ch = read_byte(fd);
1259 else if (safe_read(fd, &ch, 1) == 0)
56014c8c 1260 break;
ba525f77 1261 if (flags & RL_EOL_NULLS ? ch == '\0' : (ch == '\r' || ch == '\n')) {
67b8f3df 1262 /* Skip empty lines if dumping comments. */
ba525f77 1263 if (flags & RL_DUMP_COMMENTS && s == buf)
56014c8c
WD
1264 continue;
1265 break;
1266 }
1267 if (s < eob)
1268 *s++ = ch;
1269 }
1270 *s = '\0';
7a55d06e 1271
ba525f77 1272 if (flags & RL_DUMP_COMMENTS && (*buf == '#' || *buf == ';'))
56014c8c
WD
1273 goto start;
1274
ba525f77
WD
1275#ifdef ICONV_OPTION
1276 if (flags & RL_CONVERT) {
1277 xbuf outbuf;
1278 INIT_XBUF(outbuf, buf, 0, bufsiz);
1279 iconv_buf.pos = 0;
1280 iconv_buf.len = s - iconv_buf.buf;
1281 iconvbufs(ic_recv, &iconv_buf, &outbuf,
d8a7290f 1282 ICB_INCLUDE_BAD | ICB_INCLUDE_INCOMPLETE | ICB_INIT);
ba525f77
WD
1283 outbuf.buf[outbuf.len] = '\0';
1284 return outbuf.len;
1285 }
1286#endif
1287
67b8f3df
WD
1288 return s - buf;
1289}
1290
53936ef9
WD
1291void read_args(int f_in, char *mod_name, char *buf, size_t bufsiz, int rl_nulls,
1292 char ***argv_p, int *argc_p, char **request_p)
67b8f3df
WD
1293{
1294 int maxargs = MAX_ARGS;
ee51a745 1295 int dot_pos = 0, argc = 0, request_len = 0;
67b8f3df 1296 char **argv, *p;
22955408
WD
1297 int rl_flags = (rl_nulls ? RL_EOL_NULLS : 0);
1298
1299#ifdef ICONV_OPTION
1300 rl_flags |= (protect_args && ic_recv != (iconv_t)-1 ? RL_CONVERT : 0);
1301#endif
67b8f3df 1302
11eb67ee 1303 argv = new_array(char *, maxargs);
53936ef9 1304 if (mod_name && !protect_args)
67b8f3df
WD
1305 argv[argc++] = "rsyncd";
1306
7cefbf10
WD
1307 if (request_p)
1308 *request_p = NULL;
ee51a745 1309
67b8f3df 1310 while (1) {
ba525f77 1311 if (read_line(f_in, buf, bufsiz, rl_flags) == 0)
67b8f3df
WD
1312 break;
1313
53936ef9 1314 if (argc == maxargs-1) {
67b8f3df 1315 maxargs += MAX_ARGS;
11eb67ee 1316 argv = realloc_array(argv, char *, maxargs);
67b8f3df
WD
1317 }
1318
1319 if (dot_pos) {
ee51a745 1320 if (request_p && request_len < 1024) {
7cefbf10
WD
1321 int len = strlen(buf);
1322 if (request_len)
1323 request_p[0][request_len++] = ' ';
11eb67ee 1324 *request_p = realloc_array(*request_p, char, request_len + len + 1);
7cefbf10
WD
1325 memcpy(*request_p + request_len, buf, len + 1);
1326 request_len += len;
67b8f3df
WD
1327 }
1328 if (mod_name)
1329 glob_expand_module(mod_name, buf, &argv, &argc, &maxargs);
1330 else
1331 glob_expand(buf, &argv, &argc, &maxargs);
1332 } else {
11eb67ee 1333 p = strdup(buf);
67b8f3df
WD
1334 argv[argc++] = p;
1335 if (*p == '.' && p[1] == '\0')
1336 dot_pos = argc;
1337 }
1338 }
53936ef9 1339 argv[argc] = NULL;
67b8f3df 1340
987a5467
WD
1341 glob_expand(NULL, NULL, NULL, NULL);
1342
67b8f3df
WD
1343 *argc_p = argc;
1344 *argv_p = argv;
56014c8c 1345}
7a55d06e 1346
8e6b4ddb 1347BOOL io_start_buffering_out(int f_out)
1f75bb10 1348{
592059c8 1349 if (msgs2stderr == 1 && DEBUG_GTE(IO, 2))
20caffd2
WD
1350 rprintf(FINFO, "[%s] io_start_buffering_out(%d)\n", who_am_i(), f_out);
1351
20caffd2
WD
1352 if (iobuf.out.buf) {
1353 if (iobuf.out_fd == -1)
1354 iobuf.out_fd = f_out;
d620b907
WD
1355 else
1356 assert(f_out == iobuf.out_fd);
8e6b4ddb 1357 return False;
8ef246e0 1358 }
20caffd2 1359
907e6a32 1360 alloc_xbuf(&iobuf.out, ROUND_UP_1024(IO_BUFFER_SIZE * 2));
20caffd2
WD
1361 iobuf.out_fd = f_out;
1362
8e6b4ddb 1363 return True;
1f75bb10
WD
1364}
1365
8e6b4ddb 1366BOOL io_start_buffering_in(int f_in)
1f75bb10 1367{
592059c8 1368 if (msgs2stderr == 1 && DEBUG_GTE(IO, 2))
20caffd2
WD
1369 rprintf(FINFO, "[%s] io_start_buffering_in(%d)\n", who_am_i(), f_in);
1370
1371 if (iobuf.in.buf) {
1372 if (iobuf.in_fd == -1)
1373 iobuf.in_fd = f_in;
d620b907
WD
1374 else
1375 assert(f_in == iobuf.in_fd);
8e6b4ddb 1376 return False;
8ef246e0 1377 }
20caffd2 1378
907e6a32 1379 alloc_xbuf(&iobuf.in, ROUND_UP_1024(IO_BUFFER_SIZE));
20caffd2
WD
1380 iobuf.in_fd = f_in;
1381
8e6b4ddb 1382 return True;
1f75bb10
WD
1383}
1384
20caffd2 1385void io_end_buffering_in(BOOL free_buffers)
8ef246e0 1386{
592059c8 1387 if (msgs2stderr == 1 && DEBUG_GTE(IO, 2)) {
705132bc
WD
1388 rprintf(FINFO, "[%s] io_end_buffering_in(IOBUF_%s_BUFS)\n",
1389 who_am_i(), free_buffers ? "FREE" : "KEEP");
20caffd2
WD
1390 }
1391
1392 if (free_buffers)
1393 free_xbuf(&iobuf.in);
1394 else
1395 iobuf.in.pos = iobuf.in.len = 0;
1396
1397 iobuf.in_fd = -1;
1398}
1399
1400void io_end_buffering_out(BOOL free_buffers)
1401{
592059c8 1402 if (msgs2stderr == 1 && DEBUG_GTE(IO, 2)) {
705132bc
WD
1403 rprintf(FINFO, "[%s] io_end_buffering_out(IOBUF_%s_BUFS)\n",
1404 who_am_i(), free_buffers ? "FREE" : "KEEP");
20caffd2
WD
1405 }
1406
8ef246e0 1407 io_flush(FULL_FLUSH);
20caffd2
WD
1408
1409 if (free_buffers) {
1410 free_xbuf(&iobuf.out);
1411 free_xbuf(&iobuf.msg);
20caffd2
WD
1412 }
1413
1414 iobuf.out_fd = -1;
1f75bb10
WD
1415}
1416
be91bd81 1417void maybe_flush_socket(int important)
626bec8e 1418{
1ec57e4d
WD
1419 if (flist_eof && iobuf.out.buf && iobuf.out.len > iobuf.out_empty_len
1420 && (important || time(NULL) - last_io_out >= 5))
626bec8e
WD
1421 io_flush(NORMAL_FLUSH);
1422}
1423
92d02148
WD
1424/* Older rsync versions used to send either a MSG_NOOP (protocol 30) or a
1425 * raw-data-based keep-alive (protocol 29), both of which implied forwarding of
1426 * the message through the sender. Since the new timeout method does not need
1427 * any forwarding, we just send an empty MSG_DATA message, which works with all
1428 * rsync versions. This avoids any message forwarding, and leaves the raw-data
1429 * stream alone (since we can never be quite sure if that stream is in the
1430 * right state for a keep-alive message). */
05c36015 1431void maybe_send_keepalive(time_t now, int flags)
9e2409ab 1432{
05c36015
WD
1433 if (flags & MSK_ACTIVE_RECEIVER)
1434 last_io_in = now; /* Fudge things when we're working hard on the files. */
1435
e461cefb
WD
1436 /* Early in the transfer (before the receiver forks) the receiving side doesn't
1437 * care if it hasn't sent data in a while as long as it is receiving data (in
1438 * fact, a pre-3.1.0 rsync would die if we tried to send it a keep alive during
1439 * this time). So, if we're an early-receiving proc, just return and let the
1440 * incoming data determine if we timeout. */
1441 if (!am_sender && !am_receiver && !am_generator)
1442 return;
1443
92d02148 1444 if (now - last_io_out >= allowed_lull) {
05c36015
WD
1445 /* The receiver is special: it only sends keep-alive messages if it is
1446 * actively receiving data. Otherwise, it lets the generator timeout. */
1447 if (am_receiver && now - last_io_in >= io_timeout)
1448 return;
1449
92d02148
WD
1450 if (!iobuf.msg.len && iobuf.out.len == iobuf.out_empty_len)
1451 send_msg(MSG_DATA, "", 0, 0);
05c36015 1452 if (!(flags & MSK_ALLOW_FLUSH)) {
92d02148
WD
1453 /* Let the caller worry about writing out the data. */
1454 } else if (iobuf.msg.len)
20caffd2
WD
1455 perform_io(iobuf.msg.size - iobuf.msg.len + 1, PIO_NEED_MSGROOM);
1456 else if (iobuf.out.len > iobuf.out_empty_len)
9e2409ab
WD
1457 io_flush(NORMAL_FLUSH);
1458 }
1459}
1460
20caffd2 1461void start_flist_forward(int ndx)
8ef246e0 1462{
20caffd2
WD
1463 write_int(iobuf.out_fd, ndx);
1464 forward_flist_data = 1;
8ef246e0
WD
1465}
1466
20caffd2 1467void stop_flist_forward(void)
4c36ddbe 1468{
20caffd2 1469 forward_flist_data = 0;
8d9dc9f9
AT
1470}
1471
d8587b46 1472/* Read a message from a multiplexed source. */
20caffd2 1473static void read_a_msg(void)
8d9dc9f9 1474{
6d952fdb 1475 char data[BIGPATHBUFLEN];
a0f1ed55 1476 int tag, val;
d8587b46 1477 size_t msg_bytes;
d8587b46 1478
ac32cdd7
WD
1479 /* This ensures that perform_io() does not try to do any message reading
1480 * until we've read all of the data for this message. We should also
1481 * try to avoid calling things that will cause data to be written via
1482 * perform_io() prior to this being reset to 1. */
1483 iobuf.in_multiplexed = -1;
1484
763880ba 1485 tag = raw_read_int();
d8587b46
WD
1486
1487 msg_bytes = tag & 0xFFFFFF;
1488 tag = (tag >> 24) - MPLEX_BASE;
1489
512acd12
WD
1490 if (msgs2stderr == 1 && DEBUG_GTE(IO, 1)) {
1491 rprintf(FINFO, "[%s] got msg=%d, len=%" SIZE_T_FMT_MOD "d\n",
1492 who_am_i(), (int)tag, (SIZE_T_FMT_CAST)msg_bytes);
1493 }
d8587b46
WD
1494
1495 switch (tag) {
1496 case MSG_DATA:
20caffd2
WD
1497 assert(iobuf.raw_input_ends_before == 0);
1498 /* Though this does not yet read the data, we do mark where in
1499 * the buffer the msg data will end once it is read. It is
1500 * possible that this points off the end of the buffer, in
1501 * which case the gradual reading of the input stream will
eeea1bbd 1502 * cause this value to wrap around and eventually become real. */
aa3999d6
WD
1503 if (msg_bytes)
1504 iobuf.raw_input_ends_before = iobuf.in.pos + msg_bytes;
ac32cdd7 1505 iobuf.in_multiplexed = 1;
d8587b46 1506 break;
20caffd2
WD
1507 case MSG_STATS:
1508 if (msg_bytes != sizeof stats.total_read || !am_generator)
d8587b46 1509 goto invalid_msg;
763880ba 1510 raw_read_buf((char*)&stats.total_read, sizeof stats.total_read);
ac32cdd7 1511 iobuf.in_multiplexed = 1;
d8587b46
WD
1512 break;
1513 case MSG_REDO:
1514 if (msg_bytes != 4 || !am_generator)
1515 goto invalid_msg;
ac32cdd7
WD
1516 val = raw_read_int();
1517 iobuf.in_multiplexed = 1;
1518 got_flist_entry_status(FES_REDO, val);
d8587b46
WD
1519 break;
1520 case MSG_IO_ERROR:
164faae8 1521 if (msg_bytes != 4)
d8587b46 1522 goto invalid_msg;
763880ba 1523 val = raw_read_int();
ac32cdd7 1524 iobuf.in_multiplexed = 1;
4e2a7e59 1525 io_error |= val;
164faae8 1526 if (am_receiver)
4e2a7e59 1527 send_msg_int(MSG_IO_ERROR, val);
d8587b46 1528 break;
a0f1ed55 1529 case MSG_IO_TIMEOUT:
84c11e85 1530 if (msg_bytes != 4 || am_server || am_generator)
a0f1ed55 1531 goto invalid_msg;
763880ba 1532 val = raw_read_int();
ac32cdd7 1533 iobuf.in_multiplexed = 1;
a0f1ed55
WD
1534 if (!io_timeout || io_timeout > val) {
1535 if (INFO_GTE(MISC, 2))
1536 rprintf(FINFO, "Setting --timeout=%d to match server\n", val);
4655dcf2 1537 set_io_timeout(val);
a0f1ed55
WD
1538 }
1539 break;
d8587b46 1540 case MSG_NOOP:
92d02148 1541 /* Support protocol-30 keep-alive method. */
aa3999d6
WD
1542 if (msg_bytes != 0)
1543 goto invalid_msg;
1544 iobuf.in_multiplexed = 1;
d8587b46 1545 if (am_sender)
05c36015 1546 maybe_send_keepalive(time(NULL), MSK_ALLOW_FLUSH);
d8587b46 1547 break;
d8587b46 1548 case MSG_DELETED:
6d952fdb 1549 if (msg_bytes >= sizeof data)
d8587b46
WD
1550 goto overflow;
1551 if (am_generator) {
6d952fdb 1552 raw_read_buf(data, msg_bytes);
ac32cdd7 1553 iobuf.in_multiplexed = 1;
6d952fdb 1554 send_msg(MSG_DELETED, data, msg_bytes, 1);
d8587b46
WD
1555 break;
1556 }
1557#ifdef ICONV_OPTION
1558 if (ic_recv != (iconv_t)-1) {
1559 xbuf outbuf, inbuf;
1560 char ibuf[512];
1561 int add_null = 0;
cbc63a09 1562 int flags = ICB_INCLUDE_BAD | ICB_INIT;
d8587b46 1563
6d952fdb 1564 INIT_CONST_XBUF(outbuf, data);
d8587b46
WD
1565 INIT_XBUF(inbuf, ibuf, 0, (size_t)-1);
1566
1567 while (msg_bytes) {
cbc63a09 1568 size_t len = msg_bytes > sizeof ibuf - inbuf.len ? sizeof ibuf - inbuf.len : msg_bytes;
763880ba 1569 raw_read_buf(ibuf + inbuf.len, len);
d8a7290f 1570 inbuf.pos = 0;
cbc63a09
WD
1571 inbuf.len += len;
1572 if (!(msg_bytes -= len) && !ibuf[inbuf.len-1])
d8587b46 1573 inbuf.len--, add_null = 1;
cbc63a09
WD
1574 if (iconvbufs(ic_send, &inbuf, &outbuf, flags) < 0) {
1575 if (errno == E2BIG)
1576 goto overflow;
1577 /* Buffer ended with an incomplete char, so move the
1578 * bytes to the start of the buffer and continue. */
1579 memmove(ibuf, ibuf + inbuf.pos, inbuf.len);
1580 }
1581 flags &= ~ICB_INIT;
d8587b46
WD
1582 }
1583 if (add_null) {
1584 if (outbuf.len == outbuf.size)
1585 goto overflow;
1586 outbuf.buf[outbuf.len++] = '\0';
1587 }
1588 msg_bytes = outbuf.len;
1589 } else
1590#endif
6d952fdb 1591 raw_read_buf(data, msg_bytes);
ac32cdd7 1592 iobuf.in_multiplexed = 1;
d8587b46 1593 /* A directory name was sent with the trailing null */
6d952fdb
WD
1594 if (msg_bytes > 0 && !data[msg_bytes-1])
1595 log_delete(data, S_IFDIR);
d8587b46 1596 else {
6d952fdb
WD
1597 data[msg_bytes] = '\0';
1598 log_delete(data, S_IFREG);
d8587b46
WD
1599 }
1600 break;
1601 case MSG_SUCCESS:
5183c0d6 1602 if (msg_bytes != (local_server ? 4+8+8 : 4)) {
d8587b46
WD
1603 invalid_msg:
1604 rprintf(FERROR, "invalid multi-message %d:%lu [%s%s]\n",
1605 tag, (unsigned long)msg_bytes, who_am_i(),
1606 inc_recurse ? "/inc" : "");
1607 exit_cleanup(RERR_STREAMIO);
1608 }
5183c0d6
WD
1609 raw_read_buf(num_dev_ino_buf, msg_bytes);
1610 val = IVAL(num_dev_ino_buf, 0);
ac32cdd7 1611 iobuf.in_multiplexed = 1;
d8587b46 1612 if (am_generator)
4e2a7e59 1613 got_flist_entry_status(FES_SUCCESS, val);
d8587b46 1614 else
4e2a7e59 1615 successful_send(val);
d8587b46
WD
1616 break;
1617 case MSG_NO_SEND:
1618 if (msg_bytes != 4)
1619 goto invalid_msg;
763880ba 1620 val = raw_read_int();
ac32cdd7 1621 iobuf.in_multiplexed = 1;
d8587b46 1622 if (am_generator)
4e2a7e59 1623 got_flist_entry_status(FES_NO_SEND, val);
d8587b46 1624 else
4e2a7e59 1625 send_msg_int(MSG_NO_SEND, val);
d8587b46
WD
1626 break;
1627 case MSG_ERROR_SOCKET:
1628 case MSG_ERROR_UTF8:
1629 case MSG_CLIENT:
1630 case MSG_LOG:
1631 if (!am_generator)
1632 goto invalid_msg;
1633 if (tag == MSG_ERROR_SOCKET)
20caffd2 1634 msgs2stderr = 1;
d8587b46
WD
1635 /* FALL THROUGH */
1636 case MSG_INFO:
1637 case MSG_ERROR:
1638 case MSG_ERROR_XFER:
1639 case MSG_WARNING:
6d952fdb 1640 if (msg_bytes >= sizeof data) {
d8587b46
WD
1641 overflow:
1642 rprintf(FERROR,
1643 "multiplexing overflow %d:%lu [%s%s]\n",
1644 tag, (unsigned long)msg_bytes, who_am_i(),
1645 inc_recurse ? "/inc" : "");
1646 exit_cleanup(RERR_STREAMIO);
1647 }
6d952fdb 1648 raw_read_buf(data, msg_bytes);
1a270451
WD
1649 /* We don't set in_multiplexed value back to 1 before writing this message
1650 * because the write might loop back and read yet another message, over and
1651 * over again, while waiting for room to put the message in the msg buffer. */
6d952fdb 1652 rwrite((enum logcode)tag, data, msg_bytes, !am_generator);
1a270451 1653 iobuf.in_multiplexed = 1;
d8587b46 1654 if (first_message) {
6d952fdb
WD
1655 if (list_only && !am_sender && tag == 1 && msg_bytes < sizeof data) {
1656 data[msg_bytes] = '\0';
1657 check_for_d_option_error(data);
d8587b46
WD
1658 }
1659 first_message = 0;
1660 }
1661 break;
f9185203 1662 case MSG_ERROR_EXIT:
ac32cdd7
WD
1663 if (msg_bytes == 4)
1664 val = raw_read_int();
1665 else if (msg_bytes == 0)
1666 val = 0;
1667 else
1668 goto invalid_msg;
1669 iobuf.in_multiplexed = 1;
512acd12
WD
1670 if (DEBUG_GTE(EXIT, 3)) {
1671 rprintf(FINFO, "[%s] got MSG_ERROR_EXIT with %" SIZE_T_FMT_MOD "d bytes\n",
1672 who_am_i(), (SIZE_T_FMT_CAST)msg_bytes);
1673 }
304d7b58
WD
1674 if (msg_bytes == 0) {
1675 if (!am_sender && !am_generator) {
0c2e8f93
WD
1676 if (DEBUG_GTE(EXIT, 3)) {
1677 rprintf(FINFO, "[%s] sending MSG_ERROR_EXIT (len 0)\n",
1678 who_am_i());
1679 }
304d7b58
WD
1680 send_msg(MSG_ERROR_EXIT, "", 0, 0);
1681 io_flush(FULL_FLUSH);
1682 }
aa3999d6 1683 } else if (protocol_version >= 31) {
5b464543 1684 if (am_generator || am_receiver) {
aa3999d6
WD
1685 if (DEBUG_GTE(EXIT, 3)) {
1686 rprintf(FINFO, "[%s] sending MSG_ERROR_EXIT with exit_code %d\n",
1687 who_am_i(), val);
1688 }
1689 send_msg_int(MSG_ERROR_EXIT, val);
1690 } else {
1691 if (DEBUG_GTE(EXIT, 3)) {
1692 rprintf(FINFO, "[%s] sending MSG_ERROR_EXIT (len 0)\n",
1693 who_am_i());
0c2e8f93 1694 }
aa3999d6 1695 send_msg(MSG_ERROR_EXIT, "", 0, 0);
304d7b58 1696 }
ac32cdd7 1697 }
304d7b58
WD
1698 /* Send a negative linenum so that we don't end up
1699 * with a duplicate exit message. */
1700 _exit_cleanup(val, __FILE__, 0 - __LINE__);
d8587b46
WD
1701 default:
1702 rprintf(FERROR, "unexpected tag %d [%s%s]\n",
1703 tag, who_am_i(), inc_recurse ? "/inc" : "");
1704 exit_cleanup(RERR_STREAMIO);
1705 }
ac32cdd7
WD
1706
1707 assert(iobuf.in_multiplexed > 0);
d8587b46
WD
1708}
1709
ae598f38
WD
1710static void drain_multiplex_messages(void)
1711{
ac32cdd7 1712 while (IN_MULTIPLEXED_AND_READY && iobuf.in.len) {
ae598f38
WD
1713 if (iobuf.raw_input_ends_before) {
1714 size_t raw_len = iobuf.raw_input_ends_before - iobuf.in.pos;
1715 iobuf.raw_input_ends_before = 0;
1716 if (raw_len >= iobuf.in.len) {
1717 iobuf.in.len = 0;
1718 break;
1719 }
ae598f38 1720 iobuf.in.len -= raw_len;
763880ba
WD
1721 if ((iobuf.in.pos += raw_len) >= iobuf.in.size)
1722 iobuf.in.pos -= iobuf.in.size;
ae598f38
WD
1723 }
1724 read_a_msg();
1725 }
1726}
1727
20caffd2 1728void wait_for_receiver(void)
d8587b46 1729{
20caffd2
WD
1730 if (!iobuf.raw_input_ends_before)
1731 read_a_msg();
1732
1733 if (iobuf.raw_input_ends_before) {
1734 int ndx = read_int(iobuf.in_fd);
1735 if (ndx < 0) {
1736 switch (ndx) {
1737 case NDX_FLIST_EOF:
1738 flist_eof = 1;
1739 if (DEBUG_GTE(FLIST, 3))
1740 rprintf(FINFO, "[%s] flist_eof=1\n", who_am_i());
1741 break;
1742 case NDX_DONE:
1743 msgdone_cnt++;
1744 break;
1745 default:
1746 exit_cleanup(RERR_STREAMIO);
1747 }
1748 } else {
1749 struct file_list *flist;
2885270b 1750 flist_receiving_enabled = False;
20caffd2
WD
1751 if (DEBUG_GTE(FLIST, 2)) {
1752 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
1753 who_am_i(), ndx);
1754 }
962f8b90 1755 flist = recv_file_list(iobuf.in_fd, ndx);
20caffd2
WD
1756 flist->parent_ndx = ndx;
1757#ifdef SUPPORT_HARD_LINKS
1758 if (preserve_hard_links)
1759 match_hard_links(flist);
1760#endif
2885270b 1761 flist_receiving_enabled = True;
8d9dc9f9 1762 }
b9f592fb 1763 }
720b47f2
AT
1764}
1765
3a993aa4 1766unsigned short read_shortint(int f)
9361f839 1767{
482f48cc 1768 char b[2];
20caffd2 1769 read_buf(f, b, 2);
482f48cc 1770 return (UVAL(b, 1) << 8) + UVAL(b, 0);
9361f839
WD
1771}
1772
b7922338 1773int32 read_int(int f)
720b47f2 1774{
4c36ddbe 1775 char b[4];
d8aeda1e 1776 int32 num;
d730b113 1777
20caffd2 1778 read_buf(f, b, 4);
482f48cc
WD
1779 num = IVAL(b, 0);
1780#if SIZEOF_INT32 > 4
1781 if (num & (int32)0x80000000)
1782 num |= ~(int32)0xffffffff;
1783#endif
d8aeda1e 1784 return num;
720b47f2
AT
1785}
1786
fdf5e577
WD
1787uint32 read_uint(int f)
1788{
1789 char b[4];
1790 read_buf(f, b, 4);
1791 return IVAL(b, 0);
1792}
1793
351e23ad 1794int32 read_varint(int f)
3a6a366f 1795{
351e23ad 1796 union {
20caffd2
WD
1797 char b[5];
1798 int32 x;
351e23ad
WD
1799 } u;
1800 uchar ch;
1801 int extra;
1802
1803 u.x = 0;
20caffd2 1804 ch = read_byte(f);
351e23ad
WD
1805 extra = int_byte_extra[ch / 4];
1806 if (extra) {
1807 uchar bit = ((uchar)1<<(8-extra));
1808 if (extra >= (int)sizeof u.b) {
1809 rprintf(FERROR, "Overflow in read_varint()\n");
1810 exit_cleanup(RERR_STREAMIO);
1811 }
20caffd2 1812 read_buf(f, u.b, extra);
351e23ad
WD
1813 u.b[extra] = ch & (bit-1);
1814 } else
1815 u.b[0] = ch;
1816#if CAREFUL_ALIGNMENT
1817 u.x = IVAL(u.b,0);
1818#endif
1819#if SIZEOF_INT32 > 4
1820 if (u.x & (int32)0x80000000)
1821 u.x |= ~(int32)0xffffffff;
1822#endif
1823 return u.x;
1824}
71c46176 1825
351e23ad
WD
1826int64 read_varlong(int f, uchar min_bytes)
1827{
1828 union {
20caffd2
WD
1829 char b[9];
1830 int64 x;
351e23ad
WD
1831 } u;
1832 char b2[8];
1833 int extra;
71c46176 1834
031fa9ad 1835#if SIZEOF_INT64 < 8
351e23ad 1836 memset(u.b, 0, 8);
031fa9ad 1837#else
351e23ad 1838 u.x = 0;
031fa9ad 1839#endif
20caffd2 1840 read_buf(f, b2, min_bytes);
351e23ad
WD
1841 memcpy(u.b, b2+1, min_bytes-1);
1842 extra = int_byte_extra[CVAL(b2, 0) / 4];
1843 if (extra) {
1844 uchar bit = ((uchar)1<<(8-extra));
1845 if (min_bytes + extra > (int)sizeof u.b) {
1846 rprintf(FERROR, "Overflow in read_varlong()\n");
1847 exit_cleanup(RERR_STREAMIO);
1848 }
20caffd2 1849 read_buf(f, u.b + min_bytes - 1, extra);
351e23ad 1850 u.b[min_bytes + extra - 1] = CVAL(b2, 0) & (bit-1);
4ea4acf1 1851#if SIZEOF_INT64 < 8
351e23ad 1852 if (min_bytes + extra > 5 || u.b[4] || CVAL(u.b,3) & 0x80) {
4ea4acf1
WD
1853 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
1854 exit_cleanup(RERR_UNSUPPORTED);
1855 }
1856#endif
351e23ad
WD
1857 } else
1858 u.b[min_bytes + extra - 1] = CVAL(b2, 0);
1859#if SIZEOF_INT64 < 8
1860 u.x = IVAL(u.b,0);
1861#elif CAREFUL_ALIGNMENT
5dcef7c6 1862 u.x = IVAL64(u.b,0);
351e23ad
WD
1863#endif
1864 return u.x;
1865}
1866
1867int64 read_longint(int f)
1868{
4ea4acf1 1869#if SIZEOF_INT64 >= 8
351e23ad 1870 char b[9];
4ea4acf1 1871#endif
351e23ad 1872 int32 num = read_int(f);
71c46176 1873
351e23ad
WD
1874 if (num != (int32)0xffffffff)
1875 return num;
1876
1877#if SIZEOF_INT64 < 8
1878 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
1879 exit_cleanup(RERR_UNSUPPORTED);
1880#else
20caffd2 1881 read_buf(f, b, 8);
351e23ad
WD
1882 return IVAL(b,0) | (((int64)IVAL(b,4))<<32);
1883#endif
3a6a366f
AT
1884}
1885
10aeb75c 1886/* Debugging note: this will be named read_buf_() when using an external zlib. */
4a19c3b2 1887void read_buf(int f, char *buf, size_t len)
720b47f2 1888{
20caffd2
WD
1889 if (f != iobuf.in_fd) {
1890 if (safe_read(f, buf, len) != len)
ae598f38 1891 whine_about_eof(False); /* Doesn't return. */
20caffd2
WD
1892 goto batch_copy;
1893 }
1894
1895 if (!IN_MULTIPLEXED) {
763880ba 1896 raw_read_buf(buf, len);
4dde3347 1897 total_data_read += len;
20caffd2
WD
1898 if (forward_flist_data)
1899 write_buf(iobuf.out_fd, buf, len);
1900 batch_copy:
1901 if (f == write_batch_monitor_in)
1902 safe_write(batch_fd, buf, len);
1903 return;
1904 }
1905
1906 while (1) {
20caffd2
WD
1907 size_t siz;
1908
1909 while (!iobuf.raw_input_ends_before)
1910 read_a_msg();
1911
1912 siz = MIN(len, iobuf.raw_input_ends_before - iobuf.in.pos);
763880ba
WD
1913 if (siz >= iobuf.in.size)
1914 siz = iobuf.in.size;
1915 raw_read_buf(buf, siz);
4dde3347 1916 total_data_read += siz;
20caffd2
WD
1917
1918 if (forward_flist_data)
1919 write_buf(iobuf.out_fd, buf, siz);
1920
1921 if (f == write_batch_monitor_in)
1922 safe_write(batch_fd, buf, siz);
1923
1924 if ((len -= siz) == 0)
1925 break;
1926 buf += siz;
1927 }
720b47f2
AT
1928}
1929
4a19c3b2 1930void read_sbuf(int f, char *buf, size_t len)
575f2fca 1931{
20caffd2 1932 read_buf(f, buf, len);
af436313 1933 buf[len] = '\0';
575f2fca
AT
1934}
1935
9361f839 1936uchar read_byte(int f)
182dca5c 1937{
9361f839 1938 uchar c;
20caffd2 1939 read_buf(f, (char*)&c, 1);
4c36ddbe 1940 return c;
182dca5c 1941}
720b47f2 1942
46e99b09
WD
1943int read_vstring(int f, char *buf, int bufsize)
1944{
1945 int len = read_byte(f);
1946
1947 if (len & 0x80)
1948 len = (len & ~0x80) * 0x100 + read_byte(f);
1949
1950 if (len >= bufsize) {
1951 rprintf(FERROR, "over-long vstring received (%d > %d)\n",
1952 len, bufsize - 1);
9a6ed83f 1953 return -1;
46e99b09
WD
1954 }
1955
1956 if (len)
20caffd2 1957 read_buf(f, buf, len);
46e99b09
WD
1958 buf[len] = '\0';
1959 return len;
1960}
1961
188fed95
WD
1962/* Populate a sum_struct with values from the socket. This is
1963 * called by both the sender and the receiver. */
1964void read_sum_head(int f, struct sum_struct *sum)
1965{
8bd77e70 1966 int32 max_blength = protocol_version < 30 ? OLD_MAX_BLOCK_SIZE : MAX_BLOCK_SIZE;
188fed95 1967 sum->count = read_int(f);
c638caa6
WD
1968 if (sum->count < 0) {
1969 rprintf(FERROR, "Invalid checksum count %ld [%s]\n",
1970 (long)sum->count, who_am_i());
1971 exit_cleanup(RERR_PROTOCOL);
1972 }
188fed95 1973 sum->blength = read_int(f);
8bd77e70 1974 if (sum->blength < 0 || sum->blength > max_blength) {
cdf236aa
WD
1975 rprintf(FERROR, "Invalid block length %ld [%s]\n",
1976 (long)sum->blength, who_am_i());
188fed95
WD
1977 exit_cleanup(RERR_PROTOCOL);
1978 }
1979 sum->s2length = protocol_version < 27 ? csum_length : (int)read_int(f);
a0456b9c 1980 if (sum->s2length < 0 || sum->s2length > MAX_DIGEST_LEN) {
cdf236aa
WD
1981 rprintf(FERROR, "Invalid checksum length %d [%s]\n",
1982 sum->s2length, who_am_i());
188fed95
WD
1983 exit_cleanup(RERR_PROTOCOL);
1984 }
1985 sum->remainder = read_int(f);
1986 if (sum->remainder < 0 || sum->remainder > sum->blength) {
cdf236aa
WD
1987 rprintf(FERROR, "Invalid remainder length %ld [%s]\n",
1988 (long)sum->remainder, who_am_i());
188fed95
WD
1989 exit_cleanup(RERR_PROTOCOL);
1990 }
1991}
1992
c207d7ec
WD
1993/* Send the values from a sum_struct over the socket. Set sum to
1994 * NULL if there are no checksums to send. This is called by both
1995 * the generator and the sender. */
1996void write_sum_head(int f, struct sum_struct *sum)
1997{
1998 static struct sum_struct null_sum;
1999
2000 if (sum == NULL)
2001 sum = &null_sum;
2002
2003 write_int(f, sum->count);
2004 write_int(f, sum->blength);
2005 if (protocol_version >= 27)
2006 write_int(f, sum->s2length);
2007 write_int(f, sum->remainder);
2008}
2009
20caffd2 2010/* Sleep after writing to limit I/O bandwidth usage.
08571358
MP
2011 *
2012 * @todo Rather than sleeping after each write, it might be better to
2013 * use some kind of averaging. The current algorithm seems to always
2014 * use a bit less bandwidth than specified, because it doesn't make up
2015 * for slow periods. But arguably this is a feature. In addition, we
2016 * ought to take the time used to write the data into account.
71e58630
WD
2017 *
2018 * During some phases of big transfers (file FOO is uptodate) this is
2019 * called with a small bytes_written every time. As the kernel has to
2020 * round small waits up to guarantee that we actually wait at least the
2021 * requested number of microseconds, this can become grossly inaccurate.
2022 * We therefore keep track of the bytes we've written over time and only
20caffd2 2023 * sleep when the accumulated delay is at least 1 tenth of a second. */
08571358
MP
2024static void sleep_for_bwlimit(int bytes_written)
2025{
71e58630 2026 static struct timeval prior_tv;
0f78b815 2027 static long total_written = 0;
71e58630
WD
2028 struct timeval tv, start_tv;
2029 long elapsed_usec, sleep_usec;
2030
2031#define ONE_SEC 1000000L /* # of microseconds in a second */
08571358 2032
0f78b815 2033 total_written += bytes_written;
71e58630
WD
2034
2035 gettimeofday(&start_tv, NULL);
2036 if (prior_tv.tv_sec) {
2037 elapsed_usec = (start_tv.tv_sec - prior_tv.tv_sec) * ONE_SEC
2038 + (start_tv.tv_usec - prior_tv.tv_usec);
18749579 2039 total_written -= (int64)elapsed_usec * bwlimit / (ONE_SEC/1024);
71e58630
WD
2040 if (total_written < 0)
2041 total_written = 0;
2042 }
3151cbae 2043
71e58630
WD
2044 sleep_usec = total_written * (ONE_SEC/1024) / bwlimit;
2045 if (sleep_usec < ONE_SEC / 10) {
2046 prior_tv = start_tv;
2047 return;
2048 }
08571358 2049
71e58630
WD
2050 tv.tv_sec = sleep_usec / ONE_SEC;
2051 tv.tv_usec = sleep_usec % ONE_SEC;
98b332ed 2052 select(0, NULL, NULL, NULL, &tv);
71e58630
WD
2053
2054 gettimeofday(&prior_tv, NULL);
2055 elapsed_usec = (prior_tv.tv_sec - start_tv.tv_sec) * ONE_SEC
2056 + (prior_tv.tv_usec - start_tv.tv_usec);
2057 total_written = (sleep_usec - elapsed_usec) * bwlimit / (ONE_SEC/1024);
08571358
MP
2058}
2059
f60bd811 2060void io_flush(int flush_type)
d6dead6b 2061{
20caffd2 2062 if (iobuf.out.len > iobuf.out_empty_len) {
f60bd811 2063 if (flush_type == FULL_FLUSH) /* flush everything in the output buffers */
20caffd2 2064 perform_io(iobuf.out.size - iobuf.out_empty_len, PIO_NEED_OUTROOM);
f60bd811 2065 else if (flush_type == NORMAL_FLUSH) /* flush at least 1 byte */
20caffd2 2066 perform_io(iobuf.out.size - iobuf.out.len + 1, PIO_NEED_OUTROOM);
f60bd811 2067 /* MSG_FLUSH: flush iobuf.msg only */
d6dead6b 2068 }
20caffd2
WD
2069 if (iobuf.msg.len)
2070 perform_io(iobuf.msg.size, PIO_NEED_MSGROOM);
d6dead6b 2071}
720b47f2 2072
3a993aa4 2073void write_shortint(int f, unsigned short x)
9361f839 2074{
3a993aa4
WD
2075 char b[2];
2076 b[0] = (char)x;
2077 b[1] = (char)(x >> 8);
20caffd2 2078 write_buf(f, b, 2);
9361f839
WD
2079}
2080
351e23ad
WD
2081void write_int(int f, int32 x)
2082{
2083 char b[4];
2084 SIVAL(b, 0, x);
20caffd2 2085 write_buf(f, b, 4);
351e23ad
WD
2086}
2087
f31514ad 2088void write_varint(int f, int32 x)
1c3344a1
WD
2089{
2090 char b[5];
351e23ad 2091 uchar bit;
62427861 2092 int cnt;
351e23ad
WD
2093
2094 SIVAL(b, 1, x);
2095
62427861 2096 for (cnt = 4; cnt > 1 && b[cnt] == 0; cnt--) {}
351e23ad 2097 bit = ((uchar)1<<(7-cnt+1));
62427861 2098
351e23ad
WD
2099 if (CVAL(b, cnt) >= bit) {
2100 cnt++;
2101 *b = ~(bit-1);
2102 } else if (cnt > 1)
2103 *b = b[cnt] | ~(bit*2-1);
2104 else
b430ceec 2105 *b = b[1];
351e23ad 2106
20caffd2 2107 write_buf(f, b, cnt);
1c3344a1
WD
2108}
2109
351e23ad 2110void write_varlong(int f, int64 x, uchar min_bytes)
720b47f2 2111{
351e23ad
WD
2112 char b[9];
2113 uchar bit;
2114 int cnt = 8;
2115
351e23ad 2116#if SIZEOF_INT64 >= 8
5dcef7c6 2117 SIVAL64(b, 1, x);
351e23ad 2118#else
5dcef7c6 2119 SIVAL(b, 1, x);
351e23ad
WD
2120 if (x <= 0x7FFFFFFF && x >= 0)
2121 memset(b + 5, 0, 4);
2122 else {
2123 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
2124 exit_cleanup(RERR_UNSUPPORTED);
2125 }
2126#endif
2127
2128 while (cnt > min_bytes && b[cnt] == 0)
2129 cnt--;
2130 bit = ((uchar)1<<(7-cnt+min_bytes));
2131 if (CVAL(b, cnt) >= bit) {
2132 cnt++;
2133 *b = ~(bit-1);
2134 } else if (cnt > min_bytes)
2135 *b = b[cnt] | ~(bit*2-1);
2136 else
2137 *b = b[cnt];
2138
20caffd2 2139 write_buf(f, b, cnt);
720b47f2
AT
2140}
2141
7a24c346
MP
2142/*
2143 * Note: int64 may actually be a 32-bit type if ./configure couldn't find any
2144 * 64-bit types on this platform.
2145 */
71c46176 2146void write_longint(int f, int64 x)
3a6a366f 2147{
351e23ad 2148 char b[12], * const s = b+4;
3a6a366f 2149
351e23ad
WD
2150 SIVAL(s, 0, x);
2151 if (x <= 0x7FFFFFFF && x >= 0) {
20caffd2 2152 write_buf(f, s, 4);
351e23ad
WD
2153 return;
2154 }
3a6a366f 2155
4ea4acf1 2156#if SIZEOF_INT64 < 8
351e23ad
WD
2157 rprintf(FERROR, "Integer overflow: attempted 64-bit offset\n");
2158 exit_cleanup(RERR_UNSUPPORTED);
4ea4acf1 2159#else
351e23ad
WD
2160 memset(b, 0xFF, 4);
2161 SIVAL(s, 4, x >> 32);
20caffd2 2162 write_buf(f, b, 12);
4ea4acf1 2163#endif
3a6a366f
AT
2164}
2165
836e0c5d
WD
2166void write_bigbuf(int f, const char *buf, size_t len)
2167{
2168 size_t half_max = (iobuf.out.size - iobuf.out_empty_len) / 2;
2169
2170 while (len > half_max + 1024) {
2171 write_buf(f, buf, half_max);
2172 buf += half_max;
2173 len -= half_max;
2174 }
2175
2176 write_buf(f, buf, len);
2177}
2178
4a19c3b2 2179void write_buf(int f, const char *buf, size_t len)
720b47f2 2180{
20caffd2
WD
2181 size_t pos, siz;
2182
2183 if (f != iobuf.out_fd) {
2184 safe_write(f, buf, len);
2185 goto batch_copy;
2186 }
2187
75ea8459 2188 if (iobuf.out.len + len > iobuf.out.size)
20caffd2
WD
2189 perform_io(len, PIO_NEED_OUTROOM);
2190
2191 pos = iobuf.out.pos + iobuf.out.len; /* Must be set after any flushing. */
2192 if (pos >= iobuf.out.size)
2193 pos -= iobuf.out.size;
2194
2195 /* Handle a split copy if we wrap around the end of the circular buffer. */
2196 if (pos >= iobuf.out.pos && (siz = iobuf.out.size - pos) < len) {
2197 memcpy(iobuf.out.buf + pos, buf, siz);
2198 memcpy(iobuf.out.buf, buf + siz, len - siz);
2199 } else
2200 memcpy(iobuf.out.buf + pos, buf, len);
2201
2202 iobuf.out.len += len;
4dde3347 2203 total_data_written += len;
20caffd2
WD
2204
2205 batch_copy:
2206 if (f == write_batch_monitor_out)
2207 safe_write(batch_fd, buf, len);
720b47f2
AT
2208}
2209
20caffd2 2210/* Write a string to the connection */
4a19c3b2 2211void write_sbuf(int f, const char *buf)
f0fca04e 2212{
20caffd2 2213 write_buf(f, buf, strlen(buf));
f0fca04e
AT
2214}
2215
9361f839 2216void write_byte(int f, uchar c)
182dca5c 2217{
20caffd2 2218 write_buf(f, (char *)&c, 1);
182dca5c
AT
2219}
2220
4a19c3b2 2221void write_vstring(int f, const char *str, int len)
46e99b09
WD
2222{
2223 uchar lenbuf[3], *lb = lenbuf;
2224
2225 if (len > 0x7F) {
2226 if (len > 0x7FFF) {
2227 rprintf(FERROR,
2228 "attempting to send over-long vstring (%d > %d)\n",
2229 len, 0x7FFF);
2230 exit_cleanup(RERR_PROTOCOL);
2231 }
2232 *lb++ = len / 0x100 + 0x80;
2233 }
2234 *lb = len;
2235
20caffd2 2236 write_buf(f, (char*)lenbuf, lb - lenbuf + 1);
46e99b09 2237 if (len)
20caffd2 2238 write_buf(f, str, len);
46e99b09
WD
2239}
2240
8a65e0ce
WD
2241/* Send a file-list index using a byte-reduction method. */
2242void write_ndx(int f, int32 ndx)
2243{
2244 static int32 prev_positive = -1, prev_negative = 1;
2245 int32 diff, cnt = 0;
2246 char b[6];
2247
2248 if (protocol_version < 30 || read_batch) {
2249 write_int(f, ndx);
2250 return;
2251 }
2252
2253 /* Send NDX_DONE as a single-byte 0 with no side effects. Send
2254 * negative nums as a positive after sending a leading 0xFF. */
2255 if (ndx >= 0) {
2256 diff = ndx - prev_positive;
2257 prev_positive = ndx;
2258 } else if (ndx == NDX_DONE) {
2259 *b = 0;
20caffd2 2260 write_buf(f, b, 1);
8a65e0ce
WD
2261 return;
2262 } else {
2263 b[cnt++] = (char)0xFF;
2264 ndx = -ndx;
2265 diff = ndx - prev_negative;
2266 prev_negative = ndx;
2267 }
2268
2269 /* A diff of 1 - 253 is sent as a one-byte diff; a diff of 254 - 32767
2270 * or 0 is sent as a 0xFE + a two-byte diff; otherwise we send 0xFE
2271 * & all 4 bytes of the (non-negative) num with the high-bit set. */
2272 if (diff < 0xFE && diff > 0)
2273 b[cnt++] = (char)diff;
2274 else if (diff < 0 || diff > 0x7FFF) {
2275 b[cnt++] = (char)0xFE;
2276 b[cnt++] = (char)((ndx >> 24) | 0x80);
8a65e0ce 2277 b[cnt++] = (char)ndx;
351e23ad
WD
2278 b[cnt++] = (char)(ndx >> 8);
2279 b[cnt++] = (char)(ndx >> 16);
8a65e0ce
WD
2280 } else {
2281 b[cnt++] = (char)0xFE;
2282 b[cnt++] = (char)(diff >> 8);
2283 b[cnt++] = (char)diff;
2284 }
20caffd2 2285 write_buf(f, b, cnt);
8a65e0ce
WD
2286}
2287
2288/* Receive a file-list index using a byte-reduction method. */
2289int32 read_ndx(int f)
2290{
2291 static int32 prev_positive = -1, prev_negative = 1;
2292 int32 *prev_ptr, num;
2293 char b[4];
2294
2295 if (protocol_version < 30)
2296 return read_int(f);
2297
20caffd2 2298 read_buf(f, b, 1);
8a65e0ce 2299 if (CVAL(b, 0) == 0xFF) {
20caffd2 2300 read_buf(f, b, 1);
8a65e0ce
WD
2301 prev_ptr = &prev_negative;
2302 } else if (CVAL(b, 0) == 0)
2303 return NDX_DONE;
2304 else
2305 prev_ptr = &prev_positive;
2306 if (CVAL(b, 0) == 0xFE) {
20caffd2 2307 read_buf(f, b, 2);
8a65e0ce 2308 if (CVAL(b, 0) & 0x80) {
351e23ad
WD
2309 b[3] = CVAL(b, 0) & ~0x80;
2310 b[0] = b[1];
20caffd2 2311 read_buf(f, b+1, 2);
351e23ad 2312 num = IVAL(b, 0);
8a65e0ce 2313 } else
351e23ad 2314 num = (UVAL(b,0)<<8) + UVAL(b,1) + *prev_ptr;
8a65e0ce 2315 } else
351e23ad 2316 num = UVAL(b, 0) + *prev_ptr;
8a65e0ce
WD
2317 *prev_ptr = num;
2318 if (prev_ptr == &prev_negative)
2319 num = -num;
2320 return num;
2321}
2322
67b8f3df
WD
2323/* Read a line of up to bufsiz-1 characters into buf. Strips
2324 * the (required) trailing newline and all carriage returns.
2325 * Returns 1 for success; 0 for I/O error or truncation. */
5ebe9a46 2326int read_line_old(int fd, char *buf, size_t bufsiz, int eof_ok)
f0fca04e 2327{
5ebe9a46 2328 assert(fd != iobuf.in_fd);
67b8f3df
WD
2329 bufsiz--; /* leave room for the null */
2330 while (bufsiz > 0) {
5ebe9a46
WD
2331 if (safe_read(fd, buf, 1) == 0) {
2332 if (eof_ok)
2333 break;
20caffd2 2334 return 0;
5ebe9a46 2335 }
20caffd2 2336 if (*buf == '\0')
914cc65c 2337 return 0;
20caffd2 2338 if (*buf == '\n')
f0fca04e 2339 break;
20caffd2 2340 if (*buf != '\r') {
f0fca04e 2341 buf++;
67b8f3df 2342 bufsiz--;
f0fca04e
AT
2343 }
2344 }
6ed6d7f5 2345 *buf = '\0';
67b8f3df 2346 return bufsiz > 0;
f0fca04e
AT
2347}
2348
f0fca04e
AT
2349void io_printf(int fd, const char *format, ...)
2350{
d62bcc17 2351 va_list ap;
33544bf4 2352 char buf[BIGPATHBUFLEN];
f0fca04e 2353 int len;
3151cbae 2354
f0fca04e 2355 va_start(ap, format);
3151cbae 2356 len = vsnprintf(buf, sizeof buf, format, ap);
f0fca04e
AT
2357 va_end(ap);
2358
f89b9368 2359 if (len < 0)
e4c598c8 2360 exit_cleanup(RERR_PROTOCOL);
f0fca04e 2361
3ea74eb3 2362 if (len >= (int)sizeof buf) {
33544bf4 2363 rprintf(FERROR, "io_printf() was too long for the buffer.\n");
e4c598c8 2364 exit_cleanup(RERR_PROTOCOL);
33544bf4
WD
2365 }
2366
f0fca04e
AT
2367 write_sbuf(fd, buf);
2368}
8d9dc9f9 2369
20caffd2
WD
2370/* Setup for multiplexing a MSG_* stream with the data stream. */
2371void io_start_multiplex_out(int fd)
8d9dc9f9 2372{
705132bc
WD
2373 io_flush(FULL_FLUSH);
2374
592059c8 2375 if (msgs2stderr == 1 && DEBUG_GTE(IO, 2))
20caffd2 2376 rprintf(FINFO, "[%s] io_start_multiplex_out(%d)\n", who_am_i(), fd);
8d9dc9f9 2377
907e6a32
WD
2378 if (!iobuf.msg.buf)
2379 alloc_xbuf(&iobuf.msg, ROUND_UP_1024(IO_BUFFER_SIZE));
2380
20caffd2
WD
2381 iobuf.out_empty_len = 4; /* See also OUT_MULTIPLEXED */
2382 io_start_buffering_out(fd);
d4070db6 2383 got_kill_signal = 0;
20caffd2
WD
2384
2385 iobuf.raw_data_header_pos = iobuf.out.pos + iobuf.out.len;
2386 iobuf.out.len += 4;
8d9dc9f9
AT
2387}
2388
20caffd2
WD
2389/* Setup for multiplexing a MSG_* stream with the data stream. */
2390void io_start_multiplex_in(int fd)
8d9dc9f9 2391{
592059c8 2392 if (msgs2stderr == 1 && DEBUG_GTE(IO, 2))
20caffd2
WD
2393 rprintf(FINFO, "[%s] io_start_multiplex_in(%d)\n", who_am_i(), fd);
2394
ac32cdd7 2395 iobuf.in_multiplexed = 1; /* See also IN_MULTIPLEXED */
20caffd2 2396 io_start_buffering_in(fd);
8d9dc9f9
AT
2397}
2398
8e6b4ddb 2399int io_end_multiplex_in(int mode)
7f459268 2400{
8e6b4ddb
WD
2401 int ret = iobuf.in_multiplexed ? iobuf.in_fd : -1;
2402
592059c8 2403 if (msgs2stderr == 1 && DEBUG_GTE(IO, 2))
705132bc 2404 rprintf(FINFO, "[%s] io_end_multiplex_in(mode=%d)\n", who_am_i(), mode);
20caffd2 2405
ac32cdd7 2406 iobuf.in_multiplexed = 0;
705132bc
WD
2407 if (mode == MPLX_SWITCHING)
2408 iobuf.raw_input_ends_before = 0;
2409 else
2410 assert(iobuf.raw_input_ends_before == 0);
2411 if (mode != MPLX_TO_BUFFERED)
2412 io_end_buffering_in(mode);
8e6b4ddb
WD
2413
2414 return ret;
7f459268
WD
2415}
2416
8e6b4ddb 2417int io_end_multiplex_out(int mode)
554e0a8d 2418{
8e6b4ddb
WD
2419 int ret = iobuf.out_empty_len ? iobuf.out_fd : -1;
2420
592059c8 2421 if (msgs2stderr == 1 && DEBUG_GTE(IO, 2))
705132bc
WD
2422 rprintf(FINFO, "[%s] io_end_multiplex_out(mode=%d)\n", who_am_i(), mode);
2423
2424 if (mode != MPLX_TO_BUFFERED)
2425 io_end_buffering_out(mode);
2426 else
2427 io_flush(FULL_FLUSH);
20caffd2 2428
705132bc 2429 iobuf.out.len = 0;
20caffd2 2430 iobuf.out_empty_len = 0;
d4070db6 2431 if (got_kill_signal > 0) /* Just in case... */
1e9ee19a 2432 handle_kill_signal(False);
d4070db6 2433 got_kill_signal = -1;
8e6b4ddb
WD
2434
2435 return ret;
554e0a8d
AT
2436}
2437
b9f592fb
WD
2438void start_write_batch(int fd)
2439{
2440 /* Some communication has already taken place, but we don't
2441 * enable batch writing until here so that we can write a
2442 * canonical record of the communication even though the
2443 * actual communication so far depends on whether a daemon
2444 * is involved. */
2445 write_int(batch_fd, protocol_version);
71456d30 2446 if (protocol_version >= 30)
4f6c8c66 2447 write_varint(batch_fd, compat_flags);
55bb4dab 2448 write_int(batch_fd, checksum_seed);
b9f592fb
WD
2449
2450 if (am_sender)
2451 write_batch_monitor_out = fd;
2452 else
2453 write_batch_monitor_in = fd;
2454}
2455
2456void stop_write_batch(void)
2457{
2458 write_batch_monitor_out = -1;
2459 write_batch_monitor_in = -1;
2460}