updated version.h
[rsync/rsync.git] / io.c
CommitLineData
720b47f2
AT
1/*
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20/*
21 Utilities used in rsync
22
23 tridge, June 1996
24 */
25#include "rsync.h"
26
8cd9fd4e
AT
27/* if no timeout is specified then use a 60 second select timeout */
28#define SELECT_TIMEOUT 60
29
8d9dc9f9
AT
30static int io_multiplexing_out;
31static int io_multiplexing_in;
679e7657
AT
32static int multiplex_in_fd;
33static int multiplex_out_fd;
8d9dc9f9 34static time_t last_io;
528bfcd7 35static int eof_error=1;
720b47f2 36extern int verbose;
6ba9279f 37extern int io_timeout;
a800434a 38extern struct stats stats;
720b47f2
AT
39
40static int buffer_f_in = -1;
554e0a8d
AT
41static int io_error_fd = -1;
42static int in_read_check;
720b47f2 43
4c36ddbe 44void setup_readbuffer(int f_in)
720b47f2 45{
22d6234e 46 buffer_f_in = f_in;
720b47f2
AT
47}
48
8d9dc9f9
AT
49static void check_timeout(void)
50{
51 time_t t;
52
53 if (!io_timeout) return;
54
55 if (!last_io) {
56 last_io = time(NULL);
57 return;
58 }
59
60 t = time(NULL);
61
86ffe37f
AT
62 if (last_io && io_timeout && (t-last_io) >= io_timeout) {
63 rprintf(FERROR,"io timeout after %d second - exiting\n",
8d9dc9f9 64 (int)(t-last_io));
65417579 65 exit_cleanup(RERR_TIMEOUT);
8d9dc9f9
AT
66 }
67}
68
554e0a8d
AT
69/* setup the fd used to propogate errors */
70void io_set_error_fd(int fd)
71{
72 io_error_fd = fd;
73}
74
75/* read some data from the error fd and write it to FERROR */
76static void read_error_fd(void)
77{
78 char buf[200];
79 int n;
80 int fd = io_error_fd;
81 io_error_fd = -1;
82
83 n = read(fd, buf, sizeof(buf)-1);
84 if (n > 0) {
85 rwrite(FERROR, buf, n);
86 }
87
88 io_error_fd = fd;
89}
90
720b47f2 91
3a6a366f
AT
92static char *read_buffer;
93static char *read_buffer_p;
94static int read_buffer_len;
95static int read_buffer_size;
e44f9a12 96static int no_flush;
c46ded46 97static int no_flush_read;
720b47f2 98
4c36ddbe
AT
99/* read from a socket with IO timeout. return the number of
100 bytes read. If no bytes can be read then exit, never return
101 a number <= 0 */
102static int read_timeout(int fd, char *buf, int len)
8d9dc9f9 103{
4c36ddbe
AT
104 int n, ret=0;
105
c46ded46 106 no_flush_read++;
ea2111d1 107 io_flush();
c46ded46 108 no_flush_read--;
ea2111d1 109
4c36ddbe
AT
110 while (ret == 0) {
111 fd_set fds;
112 struct timeval tv;
554e0a8d 113 int fd_count = fd+1;
4c36ddbe
AT
114
115 FD_ZERO(&fds);
116 FD_SET(fd, &fds);
554e0a8d
AT
117 if (io_error_fd != -1) {
118 FD_SET(io_error_fd, &fds);
119 if (io_error_fd > fd) fd_count = io_error_fd+1;
120 }
121
8cd9fd4e 122 tv.tv_sec = io_timeout?io_timeout:SELECT_TIMEOUT;
4c36ddbe
AT
123 tv.tv_usec = 0;
124
554e0a8d
AT
125 errno = 0;
126
127 if (select(fd_count, &fds, NULL, NULL, &tv) < 1) {
128 if (errno == EBADF) {
129 exit_cleanup(RERR_SOCKETIO);
130 }
4c36ddbe
AT
131 check_timeout();
132 continue;
133 }
134
554e0a8d
AT
135 if (io_error_fd != -1 && FD_ISSET(io_error_fd, &fds)) {
136 read_error_fd();
137 }
138
139 if (!FD_ISSET(fd, &fds)) continue;
140
4c36ddbe
AT
141 n = read(fd, buf, len);
142
8d9dc9f9
AT
143 if (n > 0) {
144 buf += n;
145 len -= n;
4c36ddbe
AT
146 ret += n;
147 if (io_timeout)
148 last_io = time(NULL);
149 continue;
8d9dc9f9 150 }
4c36ddbe
AT
151
152 if (n == -1 && errno == EINTR) {
153 continue;
154 }
155
5d1e1dcf 156
8d9dc9f9 157 if (n == 0) {
528bfcd7 158 if (eof_error) {
ca8e9694 159 rprintf(FERROR,"unexpected EOF in read_timeout\n");
528bfcd7 160 }
65417579 161 exit_cleanup(RERR_STREAMIO);
8d9dc9f9 162 }
8d9dc9f9 163
5d1e1dcf 164 /* this prevents us trying to write errors on a dead socket */
554e0a8d 165 io_multiplexing_close();
5d1e1dcf 166
4c36ddbe 167 rprintf(FERROR,"read error: %s\n", strerror(errno));
65417579 168 exit_cleanup(RERR_STREAMIO);
4c36ddbe 169 }
8d9dc9f9 170
4c36ddbe
AT
171 return ret;
172}
8d9dc9f9 173
4c36ddbe
AT
174/* continue trying to read len bytes - don't return until len
175 has been read */
176static void read_loop(int fd, char *buf, int len)
177{
178 while (len) {
179 int n = read_timeout(fd, buf, len);
180
181 buf += n;
182 len -= n;
8d9dc9f9
AT
183 }
184}
185
cad2bba7 186/* read from the file descriptor handling multiplexing -
4c36ddbe
AT
187 return number of bytes read
188 never return <= 0 */
8d9dc9f9
AT
189static int read_unbuffered(int fd, char *buf, int len)
190{
191 static int remaining;
192 char ibuf[4];
193 int tag, ret=0;
194 char line[1024];
195
679e7657 196 if (!io_multiplexing_in || fd != multiplex_in_fd)
4c36ddbe 197 return read_timeout(fd, buf, len);
8d9dc9f9
AT
198
199 while (ret == 0) {
200 if (remaining) {
201 len = MIN(len, remaining);
202 read_loop(fd, buf, len);
203 remaining -= len;
204 ret = len;
205 continue;
206 }
207
208 read_loop(fd, ibuf, 4);
209 tag = IVAL(ibuf, 0);
679e7657 210
8d9dc9f9
AT
211 remaining = tag & 0xFFFFFF;
212 tag = tag >> 24;
213
214 if (tag == MPLEX_BASE) continue;
215
216 tag -= MPLEX_BASE;
217
218 if (tag != FERROR && tag != FINFO) {
219 rprintf(FERROR,"unexpected tag %d\n", tag);
65417579 220 exit_cleanup(RERR_STREAMIO);
8d9dc9f9
AT
221 }
222
223 if (remaining > sizeof(line)-1) {
224 rprintf(FERROR,"multiplexing overflow %d\n\n",
225 remaining);
65417579 226 exit_cleanup(RERR_STREAMIO);
8d9dc9f9
AT
227 }
228
229 read_loop(fd, line, remaining);
230 line[remaining] = 0;
231
232 rprintf(tag,"%s", line);
233 remaining = 0;
554e0a8d
AT
234
235 if (in_read_check) break;
8d9dc9f9
AT
236 }
237
238 return ret;
239}
240
241
4c36ddbe 242
720b47f2
AT
243/* This function was added to overcome a deadlock problem when using
244 * ssh. It looks like we can't allow our receive queue to get full or
245 * ssh will clag up. Uggh. */
246static void read_check(int f)
247{
4c36ddbe 248 int n = 8192;
554e0a8d
AT
249
250 in_read_check = 1;
720b47f2 251
5dd7e031 252 if (f == -1) return;
05c629f7 253
5dd7e031
AT
254 if (read_buffer_len == 0) {
255 read_buffer_p = read_buffer;
256 }
720b47f2 257
5dd7e031
AT
258 if (read_buffer_p != read_buffer) {
259 memmove(read_buffer,read_buffer_p,read_buffer_len);
260 read_buffer_p = read_buffer;
261 }
720b47f2 262
5dd7e031
AT
263 if (n > (read_buffer_size - read_buffer_len)) {
264 read_buffer_size += n;
fe8c0a98 265 read_buffer = (char *)Realloc(read_buffer,read_buffer_size);
5dd7e031
AT
266 if (!read_buffer) out_of_memory("read check");
267 read_buffer_p = read_buffer;
268 }
269
8d9dc9f9 270 n = read_unbuffered(f,read_buffer+read_buffer_len,n);
4c36ddbe 271 read_buffer_len += n;
554e0a8d
AT
272
273 in_read_check = 0;
720b47f2
AT
274}
275
4c36ddbe
AT
276
277/* do a buffered read from fd. don't return until all N bytes
278 have been read. If all N can't be read then exit with an error */
279static void readfd(int fd,char *buffer,int N)
720b47f2 280{
6ba9279f
AT
281 int ret;
282 int total=0;
6ba9279f 283
eb601ffe 284 if ((read_buffer_len < N) && (N < 1024)) {
6ba9279f 285 read_check(buffer_f_in);
4c36ddbe 286 }
6ba9279f
AT
287
288 while (total < N) {
289 if (read_buffer_len > 0 && buffer_f_in == fd) {
290 ret = MIN(read_buffer_len,N-total);
291 memcpy(buffer+total,read_buffer_p,ret);
292 read_buffer_p += ret;
293 read_buffer_len -= ret;
a070c37b 294 total += ret;
6ba9279f
AT
295 continue;
296 }
297
c46ded46 298 no_flush_read++;
8d9dc9f9 299 io_flush();
c46ded46 300 no_flush_read--;
8d9dc9f9 301
4c36ddbe 302 ret = read_unbuffered(fd,buffer + total,N-total);
6ba9279f 303 total += ret;
7f28dbee 304 }
1b7c47cb
AT
305
306 stats.total_read += total;
720b47f2
AT
307}
308
309
b7922338 310int32 read_int(int f)
720b47f2 311{
4c36ddbe 312 char b[4];
d730b113
AT
313 int32 ret;
314
4c36ddbe 315 readfd(f,b,4);
d730b113
AT
316 ret = IVAL(b,0);
317 if (ret == (int32)0xffffffff) return -1;
318 return ret;
720b47f2
AT
319}
320
71c46176 321int64 read_longint(int f)
3a6a366f
AT
322{
323 extern int remote_version;
71c46176 324 int64 ret;
3a6a366f
AT
325 char b[8];
326 ret = read_int(f);
71c46176 327
8de330a3
AT
328 if ((int32)ret != (int32)0xffffffff) {
329 return ret;
330 }
71c46176 331
3bee6733 332#ifdef NO_INT64
9486289c 333 rprintf(FERROR,"Integer overflow - attempted 64 bit offset\n");
65417579 334 exit_cleanup(RERR_UNSUPPORTED);
71c46176
AT
335#else
336 if (remote_version >= 16) {
4c36ddbe 337 readfd(f,b,8);
71c46176 338 ret = IVAL(b,0) | (((int64)IVAL(b,4))<<32);
3a6a366f 339 }
71c46176
AT
340#endif
341
3a6a366f
AT
342 return ret;
343}
344
720b47f2
AT
345void read_buf(int f,char *buf,int len)
346{
4c36ddbe 347 readfd(f,buf,len);
720b47f2
AT
348}
349
575f2fca
AT
350void read_sbuf(int f,char *buf,int len)
351{
352 read_buf(f,buf,len);
353 buf[len] = 0;
354}
355
182dca5c
AT
356unsigned char read_byte(int f)
357{
4c36ddbe
AT
358 unsigned char c;
359 read_buf(f,(char *)&c,1);
360 return c;
182dca5c 361}
720b47f2 362
7bec6a5c 363
7bec6a5c 364
4c36ddbe
AT
365/* write len bytes to fd, possibly reading from buffer_f_in if set
366 in order to unclog the pipe. don't return until all len
367 bytes have been written */
368static void writefd_unbuffered(int fd,char *buf,int len)
720b47f2 369{
8d9dc9f9
AT
370 int total = 0;
371 fd_set w_fds, r_fds;
4c36ddbe 372 int fd_count, count;
8d9dc9f9 373 struct timeval tv;
c46ded46 374 int reading=0;
720b47f2 375
e44f9a12
AT
376 no_flush++;
377
4c36ddbe 378 while (total < len) {
8d9dc9f9
AT
379 FD_ZERO(&w_fds);
380 FD_ZERO(&r_fds);
381 FD_SET(fd,&w_fds);
554e0a8d 382 fd_count = fd;
4c36ddbe 383
c46ded46 384 if (!no_flush_read) {
cbce490e
AT
385 reading = (buffer_f_in != -1) &&
386 (read_buffer_len < MAX_READ_BUFFER);
c46ded46 387 }
c95f1aa9 388
4c36ddbe 389 if (reading) {
8d9dc9f9 390 FD_SET(buffer_f_in,&r_fds);
554e0a8d
AT
391 if (buffer_f_in > fd_count)
392 fd_count = buffer_f_in;
393 }
394
395 if (io_error_fd != -1) {
396 FD_SET(io_error_fd,&r_fds);
397 if (io_error_fd > fd_count)
398 fd_count = io_error_fd;
8d9dc9f9
AT
399 }
400
8cd9fd4e 401 tv.tv_sec = io_timeout?io_timeout:SELECT_TIMEOUT;
8d9dc9f9 402 tv.tv_usec = 0;
4c36ddbe 403
554e0a8d
AT
404 errno = 0;
405
406 count = select(fd_count+1,
407 (reading || io_error_fd != -1)?&r_fds:NULL,
4c36ddbe 408 &w_fds,NULL,
8cd9fd4e 409 &tv);
4c36ddbe
AT
410
411 if (count <= 0) {
554e0a8d
AT
412 if (errno == EBADF) {
413 exit_cleanup(RERR_SOCKETIO);
414 }
8d9dc9f9
AT
415 check_timeout();
416 continue;
417 }
4c36ddbe 418
c95f1aa9
AT
419 if (reading && FD_ISSET(buffer_f_in, &r_fds)) {
420 read_check(buffer_f_in);
421 }
422
554e0a8d
AT
423 if (io_error_fd != -1 && FD_ISSET(io_error_fd, &r_fds)) {
424 read_error_fd();
425 }
426
8d9dc9f9 427 if (FD_ISSET(fd, &w_fds)) {
07b7c86c
AT
428 int ret, n = len-total;
429
430 if (n > PIPE_BUF) n = PIPE_BUF;
431
432 ret = write(fd,buf+total,n?n:1);
4c36ddbe
AT
433
434 if (ret == -1 && errno == EINTR) {
435 continue;
436 }
437
438 if (ret <= 0) {
439 rprintf(FERROR,"erroring writing %d bytes - exiting\n", len);
65417579 440 exit_cleanup(RERR_STREAMIO);
4c36ddbe
AT
441 }
442
443 total += ret;
a800434a 444
4c36ddbe
AT
445 if (io_timeout)
446 last_io = time(NULL);
8d9dc9f9 447 }
4c36ddbe 448 }
e44f9a12
AT
449
450 no_flush--;
720b47f2
AT
451}
452
8d9dc9f9 453
d6dead6b
AT
454static char *io_buffer;
455static int io_buffer_count;
456
457void io_start_buffering(int fd)
458{
8d9dc9f9 459 if (io_buffer) return;
679e7657 460 multiplex_out_fd = fd;
8d9dc9f9 461 io_buffer = (char *)malloc(IO_BUFFER_SIZE+4);
d6dead6b
AT
462 if (!io_buffer) out_of_memory("writefd");
463 io_buffer_count = 0;
8d9dc9f9
AT
464
465 /* leave room for the multiplex header in case it's needed */
466 io_buffer += 4;
d6dead6b
AT
467}
468
8d9dc9f9 469void io_flush(void)
d6dead6b 470{
679e7657 471 int fd = multiplex_out_fd;
e44f9a12 472 if (!io_buffer_count || no_flush) return;
8d9dc9f9
AT
473
474 if (io_multiplexing_out) {
475 SIVAL(io_buffer-4, 0, (MPLEX_BASE<<24) + io_buffer_count);
4c36ddbe 476 writefd_unbuffered(fd, io_buffer-4, io_buffer_count+4);
8d9dc9f9 477 } else {
4c36ddbe 478 writefd_unbuffered(fd, io_buffer, io_buffer_count);
d6dead6b 479 }
8d9dc9f9
AT
480 io_buffer_count = 0;
481}
482
483void io_end_buffering(int fd)
484{
485 io_flush();
486 if (!io_multiplexing_out) {
487 free(io_buffer-4);
488 io_buffer = NULL;
489 }
d6dead6b
AT
490}
491
4c36ddbe 492static void writefd(int fd,char *buf,int len)
d6dead6b 493{
1b7c47cb
AT
494 stats.total_written += len;
495
554e0a8d 496 if (!io_buffer || fd != multiplex_out_fd) {
4c36ddbe
AT
497 writefd_unbuffered(fd, buf, len);
498 return;
499 }
d6dead6b
AT
500
501 while (len) {
502 int n = MIN(len, IO_BUFFER_SIZE-io_buffer_count);
503 if (n > 0) {
504 memcpy(io_buffer+io_buffer_count, buf, n);
505 buf += n;
506 len -= n;
507 io_buffer_count += n;
508 }
509
8d9dc9f9 510 if (io_buffer_count == IO_BUFFER_SIZE) io_flush();
d6dead6b 511 }
d6dead6b 512}
720b47f2
AT
513
514
b7922338 515void write_int(int f,int32 x)
720b47f2 516{
8d9dc9f9
AT
517 char b[4];
518 SIVAL(b,0,x);
4c36ddbe 519 writefd(f,b,4);
720b47f2
AT
520}
521
71c46176 522void write_longint(int f, int64 x)
3a6a366f
AT
523{
524 extern int remote_version;
525 char b[8];
3a6a366f
AT
526
527 if (remote_version < 16 || x <= 0x7FFFFFFF) {
528 write_int(f, (int)x);
529 return;
530 }
531
8de330a3 532 write_int(f, (int32)0xFFFFFFFF);
3a6a366f
AT
533 SIVAL(b,0,(x&0xFFFFFFFF));
534 SIVAL(b,4,((x>>32)&0xFFFFFFFF));
535
4c36ddbe 536 writefd(f,b,8);
3a6a366f
AT
537}
538
720b47f2
AT
539void write_buf(int f,char *buf,int len)
540{
4c36ddbe 541 writefd(f,buf,len);
720b47f2
AT
542}
543
f0fca04e 544/* write a string to the connection */
6e4fb64e 545static void write_sbuf(int f,char *buf)
f0fca04e
AT
546{
547 write_buf(f, buf, strlen(buf));
548}
549
720b47f2 550
182dca5c
AT
551void write_byte(int f,unsigned char c)
552{
f0fca04e 553 write_buf(f,(char *)&c,1);
182dca5c
AT
554}
555
f0fca04e
AT
556int read_line(int f, char *buf, int maxlen)
557{
528bfcd7
AT
558 eof_error = 0;
559
f0fca04e 560 while (maxlen) {
528bfcd7 561 buf[0] = 0;
f0fca04e 562 read_buf(f, buf, 1);
528bfcd7 563 if (buf[0] == 0) return 0;
f0fca04e
AT
564 if (buf[0] == '\n') {
565 buf[0] = 0;
566 break;
567 }
568 if (buf[0] != '\r') {
569 buf++;
570 maxlen--;
571 }
572 }
573 if (maxlen == 0) {
574 *buf = 0;
575 return 0;
576 }
528bfcd7
AT
577
578 eof_error = 1;
579
f0fca04e
AT
580 return 1;
581}
582
583
584void io_printf(int fd, const char *format, ...)
585{
586 va_list ap;
587 char buf[1024];
588 int len;
589
590 va_start(ap, format);
37f9805d 591 len = vslprintf(buf, sizeof(buf), format, ap);
f0fca04e
AT
592 va_end(ap);
593
65417579 594 if (len < 0) exit_cleanup(RERR_STREAMIO);
f0fca04e
AT
595
596 write_sbuf(fd, buf);
597}
8d9dc9f9
AT
598
599
600/* setup for multiplexing an error stream with the data stream */
601void io_start_multiplex_out(int fd)
602{
679e7657
AT
603 multiplex_out_fd = fd;
604 io_flush();
8d9dc9f9
AT
605 io_start_buffering(fd);
606 io_multiplexing_out = 1;
607}
608
609/* setup for multiplexing an error stream with the data stream */
610void io_start_multiplex_in(int fd)
611{
679e7657
AT
612 multiplex_in_fd = fd;
613 io_flush();
8d9dc9f9 614 if (read_buffer_len) {
65417579 615 exit_cleanup(RERR_STREAMIO);
8d9dc9f9
AT
616 }
617
618 io_multiplexing_in = 1;
619}
620
554e0a8d 621/* write an message to the multiplexed error stream */
8d9dc9f9
AT
622int io_multiplex_write(int f, char *buf, int len)
623{
624 if (!io_multiplexing_out) return 0;
625
626 io_flush();
627
628 SIVAL(io_buffer-4, 0, ((MPLEX_BASE + f)<<24) + len);
629 memcpy(io_buffer, buf, len);
630
1b7c47cb
AT
631 stats.total_written += (len+4);
632
679e7657 633 writefd_unbuffered(multiplex_out_fd, io_buffer-4, len+4);
8d9dc9f9
AT
634 return 1;
635}
636
554e0a8d
AT
637/* write a message to the special error fd */
638int io_error_write(int f, char *buf, int len)
639{
640 if (f == -1) return 0;
641 writefd_unbuffered(f, buf, len);
642 return 1;
643}
644
645/* stop output multiplexing */
646void io_multiplexing_close(void)
647{
648 io_multiplexing_out = 0;
649}
650
8d9dc9f9
AT
651void io_close_input(int fd)
652{
653 buffer_f_in = -1;
654}