- document the rsync:// URL format
[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;
41
4c36ddbe 42void setup_readbuffer(int f_in)
720b47f2 43{
22d6234e 44 buffer_f_in = f_in;
720b47f2
AT
45}
46
8d9dc9f9
AT
47static void check_timeout(void)
48{
49 time_t t;
50
51 if (!io_timeout) return;
52
53 if (!last_io) {
54 last_io = time(NULL);
55 return;
56 }
57
58 t = time(NULL);
59
86ffe37f
AT
60 if (last_io && io_timeout && (t-last_io) >= io_timeout) {
61 rprintf(FERROR,"io timeout after %d second - exiting\n",
8d9dc9f9
AT
62 (int)(t-last_io));
63 exit_cleanup(1);
64 }
65}
66
720b47f2 67
3a6a366f
AT
68static char *read_buffer;
69static char *read_buffer_p;
70static int read_buffer_len;
71static int read_buffer_size;
e44f9a12 72static int no_flush;
c46ded46 73static int no_flush_read;
720b47f2 74
4c36ddbe
AT
75/* read from a socket with IO timeout. return the number of
76 bytes read. If no bytes can be read then exit, never return
77 a number <= 0 */
78static int read_timeout(int fd, char *buf, int len)
8d9dc9f9 79{
4c36ddbe
AT
80 int n, ret=0;
81
c46ded46 82 no_flush_read++;
ea2111d1 83 io_flush();
c46ded46 84 no_flush_read--;
ea2111d1 85
4c36ddbe
AT
86 while (ret == 0) {
87 fd_set fds;
88 struct timeval tv;
89
90 FD_ZERO(&fds);
91 FD_SET(fd, &fds);
8cd9fd4e 92 tv.tv_sec = io_timeout?io_timeout:SELECT_TIMEOUT;
4c36ddbe
AT
93 tv.tv_usec = 0;
94
8cd9fd4e 95 if (select(fd+1, &fds, NULL, NULL, &tv) != 1) {
4c36ddbe
AT
96 check_timeout();
97 continue;
98 }
99
100 n = read(fd, buf, len);
101
8d9dc9f9 102 if (n > 0) {
a800434a 103 stats.total_read += n;
8d9dc9f9
AT
104 buf += n;
105 len -= n;
4c36ddbe
AT
106 ret += n;
107 if (io_timeout)
108 last_io = time(NULL);
109 continue;
8d9dc9f9 110 }
4c36ddbe
AT
111
112 if (n == -1 && errno == EINTR) {
113 continue;
114 }
115
f7b93778
AT
116 if (n == -1 &&
117 (errno == EAGAIN || errno == EWOULDBLOCK)) {
118 /* this shouldn't happen, if it does then
119 sleep for a short time to prevent us
120 chewing too much CPU */
121 u_sleep(100);
122 continue;
123 }
124
8d9dc9f9 125 if (n == 0) {
528bfcd7 126 if (eof_error) {
ca8e9694 127 rprintf(FERROR,"unexpected EOF in read_timeout\n");
528bfcd7 128 }
8d9dc9f9
AT
129 exit_cleanup(1);
130 }
8d9dc9f9 131
4c36ddbe
AT
132 rprintf(FERROR,"read error: %s\n", strerror(errno));
133 exit_cleanup(1);
134 }
8d9dc9f9 135
4c36ddbe
AT
136 return ret;
137}
8d9dc9f9 138
4c36ddbe
AT
139/* continue trying to read len bytes - don't return until len
140 has been read */
141static void read_loop(int fd, char *buf, int len)
142{
143 while (len) {
144 int n = read_timeout(fd, buf, len);
145
146 buf += n;
147 len -= n;
8d9dc9f9
AT
148 }
149}
150
cad2bba7 151/* read from the file descriptor handling multiplexing -
4c36ddbe
AT
152 return number of bytes read
153 never return <= 0 */
8d9dc9f9
AT
154static int read_unbuffered(int fd, char *buf, int len)
155{
156 static int remaining;
157 char ibuf[4];
158 int tag, ret=0;
159 char line[1024];
160
679e7657 161 if (!io_multiplexing_in || fd != multiplex_in_fd)
4c36ddbe 162 return read_timeout(fd, buf, len);
8d9dc9f9
AT
163
164 while (ret == 0) {
165 if (remaining) {
166 len = MIN(len, remaining);
167 read_loop(fd, buf, len);
168 remaining -= len;
169 ret = len;
170 continue;
171 }
172
173 read_loop(fd, ibuf, 4);
174 tag = IVAL(ibuf, 0);
679e7657 175
8d9dc9f9
AT
176 remaining = tag & 0xFFFFFF;
177 tag = tag >> 24;
178
179 if (tag == MPLEX_BASE) continue;
180
181 tag -= MPLEX_BASE;
182
183 if (tag != FERROR && tag != FINFO) {
184 rprintf(FERROR,"unexpected tag %d\n", tag);
185 exit_cleanup(1);
186 }
187
188 if (remaining > sizeof(line)-1) {
189 rprintf(FERROR,"multiplexing overflow %d\n\n",
190 remaining);
191 exit_cleanup(1);
192 }
193
194 read_loop(fd, line, remaining);
195 line[remaining] = 0;
196
197 rprintf(tag,"%s", line);
198 remaining = 0;
199 }
200
201 return ret;
202}
203
204
4c36ddbe 205
720b47f2
AT
206/* This function was added to overcome a deadlock problem when using
207 * ssh. It looks like we can't allow our receive queue to get full or
208 * ssh will clag up. Uggh. */
209static void read_check(int f)
210{
4c36ddbe 211 int n = 8192;
720b47f2 212
5dd7e031 213 if (f == -1) return;
05c629f7 214
5dd7e031
AT
215 if (read_buffer_len == 0) {
216 read_buffer_p = read_buffer;
217 }
720b47f2 218
5dd7e031
AT
219 if (n > MAX_READ_BUFFER/4)
220 n = MAX_READ_BUFFER/4;
720b47f2 221
5dd7e031
AT
222 if (read_buffer_p != read_buffer) {
223 memmove(read_buffer,read_buffer_p,read_buffer_len);
224 read_buffer_p = read_buffer;
225 }
720b47f2 226
5dd7e031
AT
227 if (n > (read_buffer_size - read_buffer_len)) {
228 read_buffer_size += n;
fe8c0a98 229 read_buffer = (char *)Realloc(read_buffer,read_buffer_size);
5dd7e031
AT
230 if (!read_buffer) out_of_memory("read check");
231 read_buffer_p = read_buffer;
232 }
233
8d9dc9f9 234 n = read_unbuffered(f,read_buffer+read_buffer_len,n);
4c36ddbe 235 read_buffer_len += n;
720b47f2
AT
236}
237
4c36ddbe
AT
238
239/* do a buffered read from fd. don't return until all N bytes
240 have been read. If all N can't be read then exit with an error */
241static void readfd(int fd,char *buffer,int N)
720b47f2 242{
6ba9279f
AT
243 int ret;
244 int total=0;
6ba9279f 245
eb601ffe 246 if ((read_buffer_len < N) && (N < 1024)) {
6ba9279f 247 read_check(buffer_f_in);
4c36ddbe 248 }
6ba9279f
AT
249
250 while (total < N) {
251 if (read_buffer_len > 0 && buffer_f_in == fd) {
252 ret = MIN(read_buffer_len,N-total);
253 memcpy(buffer+total,read_buffer_p,ret);
254 read_buffer_p += ret;
255 read_buffer_len -= ret;
a070c37b 256 total += ret;
6ba9279f
AT
257 continue;
258 }
259
c46ded46 260 no_flush_read++;
8d9dc9f9 261 io_flush();
c46ded46 262 no_flush_read--;
8d9dc9f9 263
4c36ddbe 264 ret = read_unbuffered(fd,buffer + total,N-total);
6ba9279f 265 total += ret;
7f28dbee 266 }
720b47f2
AT
267}
268
269
b7922338 270int32 read_int(int f)
720b47f2 271{
4c36ddbe 272 char b[4];
d730b113
AT
273 int32 ret;
274
4c36ddbe 275 readfd(f,b,4);
d730b113
AT
276 ret = IVAL(b,0);
277 if (ret == (int32)0xffffffff) return -1;
278 return ret;
720b47f2
AT
279}
280
71c46176 281int64 read_longint(int f)
3a6a366f
AT
282{
283 extern int remote_version;
71c46176 284 int64 ret;
3a6a366f
AT
285 char b[8];
286 ret = read_int(f);
71c46176 287
8de330a3
AT
288 if ((int32)ret != (int32)0xffffffff) {
289 return ret;
290 }
71c46176 291
3bee6733 292#ifdef NO_INT64
9486289c 293 rprintf(FERROR,"Integer overflow - attempted 64 bit offset\n");
71c46176
AT
294 exit_cleanup(1);
295#else
296 if (remote_version >= 16) {
4c36ddbe 297 readfd(f,b,8);
71c46176 298 ret = IVAL(b,0) | (((int64)IVAL(b,4))<<32);
3a6a366f 299 }
71c46176
AT
300#endif
301
3a6a366f
AT
302 return ret;
303}
304
720b47f2
AT
305void read_buf(int f,char *buf,int len)
306{
4c36ddbe 307 readfd(f,buf,len);
720b47f2
AT
308}
309
575f2fca
AT
310void read_sbuf(int f,char *buf,int len)
311{
312 read_buf(f,buf,len);
313 buf[len] = 0;
314}
315
182dca5c
AT
316unsigned char read_byte(int f)
317{
4c36ddbe
AT
318 unsigned char c;
319 read_buf(f,(char *)&c,1);
320 return c;
182dca5c 321}
720b47f2 322
7bec6a5c 323
7bec6a5c 324
4c36ddbe
AT
325/* write len bytes to fd, possibly reading from buffer_f_in if set
326 in order to unclog the pipe. don't return until all len
327 bytes have been written */
328static void writefd_unbuffered(int fd,char *buf,int len)
720b47f2 329{
8d9dc9f9
AT
330 int total = 0;
331 fd_set w_fds, r_fds;
4c36ddbe 332 int fd_count, count;
8d9dc9f9 333 struct timeval tv;
c46ded46 334 int reading=0;
bf9f0168 335 int blocked=0;
720b47f2 336
e44f9a12
AT
337 no_flush++;
338
4c36ddbe 339 while (total < len) {
8d9dc9f9
AT
340 FD_ZERO(&w_fds);
341 FD_ZERO(&r_fds);
342 FD_SET(fd,&w_fds);
4c36ddbe
AT
343 fd_count = fd+1;
344
c46ded46 345 if (!no_flush_read) {
2f9af901 346 reading = (buffer_f_in != -1);
c46ded46 347 }
c95f1aa9 348
4c36ddbe 349 if (reading) {
8d9dc9f9
AT
350 FD_SET(buffer_f_in,&r_fds);
351 if (buffer_f_in > fd)
352 fd_count = buffer_f_in+1;
353 }
354
8cd9fd4e 355 tv.tv_sec = io_timeout?io_timeout:SELECT_TIMEOUT;
8d9dc9f9 356 tv.tv_usec = 0;
4c36ddbe
AT
357
358 count = select(fd_count,
359 reading?&r_fds:NULL,
360 &w_fds,NULL,
8cd9fd4e 361 &tv);
4c36ddbe
AT
362
363 if (count <= 0) {
8d9dc9f9
AT
364 check_timeout();
365 continue;
366 }
4c36ddbe 367
c95f1aa9
AT
368 if (reading && FD_ISSET(buffer_f_in, &r_fds)) {
369 read_check(buffer_f_in);
370 }
371
8d9dc9f9 372 if (FD_ISSET(fd, &w_fds)) {
bf9f0168
AT
373 int n = (len-total)>>blocked;
374 int ret = write(fd,buf+total,n?n:1);
4c36ddbe
AT
375
376 if (ret == -1 && errno == EINTR) {
377 continue;
378 }
379
f7b93778
AT
380 if (ret == -1 &&
381 (errno == EAGAIN || errno == EWOULDBLOCK)) {
bf9f0168 382 blocked++;
f7b93778
AT
383 continue;
384 }
385
4c36ddbe
AT
386 if (ret <= 0) {
387 rprintf(FERROR,"erroring writing %d bytes - exiting\n", len);
388 exit_cleanup(1);
389 }
390
bf9f0168 391 blocked = 0;
4c36ddbe 392 total += ret;
a800434a
AT
393 stats.total_written += ret;
394
4c36ddbe
AT
395 if (io_timeout)
396 last_io = time(NULL);
8d9dc9f9 397 }
4c36ddbe 398 }
e44f9a12
AT
399
400 no_flush--;
720b47f2
AT
401}
402
8d9dc9f9 403
d6dead6b
AT
404static char *io_buffer;
405static int io_buffer_count;
406
407void io_start_buffering(int fd)
408{
8d9dc9f9 409 if (io_buffer) return;
679e7657 410 multiplex_out_fd = fd;
8d9dc9f9 411 io_buffer = (char *)malloc(IO_BUFFER_SIZE+4);
d6dead6b
AT
412 if (!io_buffer) out_of_memory("writefd");
413 io_buffer_count = 0;
8d9dc9f9
AT
414
415 /* leave room for the multiplex header in case it's needed */
416 io_buffer += 4;
d6dead6b
AT
417}
418
8d9dc9f9 419void io_flush(void)
d6dead6b 420{
679e7657 421 int fd = multiplex_out_fd;
e44f9a12 422 if (!io_buffer_count || no_flush) return;
8d9dc9f9
AT
423
424 if (io_multiplexing_out) {
425 SIVAL(io_buffer-4, 0, (MPLEX_BASE<<24) + io_buffer_count);
4c36ddbe 426 writefd_unbuffered(fd, io_buffer-4, io_buffer_count+4);
8d9dc9f9 427 } else {
4c36ddbe 428 writefd_unbuffered(fd, io_buffer, io_buffer_count);
d6dead6b 429 }
8d9dc9f9
AT
430 io_buffer_count = 0;
431}
432
433void io_end_buffering(int fd)
434{
435 io_flush();
436 if (!io_multiplexing_out) {
437 free(io_buffer-4);
438 io_buffer = NULL;
439 }
d6dead6b
AT
440}
441
4c36ddbe 442static void writefd(int fd,char *buf,int len)
d6dead6b 443{
4c36ddbe
AT
444 if (!io_buffer) {
445 writefd_unbuffered(fd, buf, len);
446 return;
447 }
d6dead6b
AT
448
449 while (len) {
450 int n = MIN(len, IO_BUFFER_SIZE-io_buffer_count);
451 if (n > 0) {
452 memcpy(io_buffer+io_buffer_count, buf, n);
453 buf += n;
454 len -= n;
455 io_buffer_count += n;
456 }
457
8d9dc9f9 458 if (io_buffer_count == IO_BUFFER_SIZE) io_flush();
d6dead6b 459 }
d6dead6b 460}
720b47f2
AT
461
462
b7922338 463void write_int(int f,int32 x)
720b47f2 464{
8d9dc9f9
AT
465 char b[4];
466 SIVAL(b,0,x);
4c36ddbe 467 writefd(f,b,4);
720b47f2
AT
468}
469
71c46176 470void write_longint(int f, int64 x)
3a6a366f
AT
471{
472 extern int remote_version;
473 char b[8];
3a6a366f
AT
474
475 if (remote_version < 16 || x <= 0x7FFFFFFF) {
476 write_int(f, (int)x);
477 return;
478 }
479
8de330a3 480 write_int(f, (int32)0xFFFFFFFF);
3a6a366f
AT
481 SIVAL(b,0,(x&0xFFFFFFFF));
482 SIVAL(b,4,((x>>32)&0xFFFFFFFF));
483
4c36ddbe 484 writefd(f,b,8);
3a6a366f
AT
485}
486
720b47f2
AT
487void write_buf(int f,char *buf,int len)
488{
4c36ddbe 489 writefd(f,buf,len);
720b47f2
AT
490}
491
f0fca04e 492/* write a string to the connection */
6e4fb64e 493static void write_sbuf(int f,char *buf)
f0fca04e
AT
494{
495 write_buf(f, buf, strlen(buf));
496}
497
720b47f2 498
182dca5c
AT
499void write_byte(int f,unsigned char c)
500{
f0fca04e 501 write_buf(f,(char *)&c,1);
182dca5c
AT
502}
503
f0fca04e
AT
504int read_line(int f, char *buf, int maxlen)
505{
528bfcd7
AT
506 eof_error = 0;
507
f0fca04e 508 while (maxlen) {
528bfcd7 509 buf[0] = 0;
f0fca04e 510 read_buf(f, buf, 1);
528bfcd7 511 if (buf[0] == 0) return 0;
f0fca04e
AT
512 if (buf[0] == '\n') {
513 buf[0] = 0;
514 break;
515 }
516 if (buf[0] != '\r') {
517 buf++;
518 maxlen--;
519 }
520 }
521 if (maxlen == 0) {
522 *buf = 0;
523 return 0;
524 }
528bfcd7
AT
525
526 eof_error = 1;
527
f0fca04e
AT
528 return 1;
529}
530
531
532void io_printf(int fd, const char *format, ...)
533{
534 va_list ap;
535 char buf[1024];
536 int len;
537
538 va_start(ap, format);
e42c9458 539 len = vslprintf(buf, sizeof(buf)-1, format, ap);
f0fca04e
AT
540 va_end(ap);
541
542 if (len < 0) exit_cleanup(1);
543
544 write_sbuf(fd, buf);
545}
8d9dc9f9
AT
546
547
548/* setup for multiplexing an error stream with the data stream */
549void io_start_multiplex_out(int fd)
550{
679e7657
AT
551 multiplex_out_fd = fd;
552 io_flush();
8d9dc9f9
AT
553 io_start_buffering(fd);
554 io_multiplexing_out = 1;
555}
556
557/* setup for multiplexing an error stream with the data stream */
558void io_start_multiplex_in(int fd)
559{
679e7657
AT
560 multiplex_in_fd = fd;
561 io_flush();
8d9dc9f9
AT
562 if (read_buffer_len) {
563 fprintf(stderr,"ERROR: data in read buffer at mplx start\n");
564 exit_cleanup(1);
565 }
566
567 io_multiplexing_in = 1;
568}
569
570/* write an message to the error stream */
571int io_multiplex_write(int f, char *buf, int len)
572{
573 if (!io_multiplexing_out) return 0;
574
575 io_flush();
576
577 SIVAL(io_buffer-4, 0, ((MPLEX_BASE + f)<<24) + len);
578 memcpy(io_buffer, buf, len);
579
679e7657 580 writefd_unbuffered(multiplex_out_fd, io_buffer-4, len+4);
8d9dc9f9
AT
581 return 1;
582}
583
584void io_close_input(int fd)
585{
586 buffer_f_in = -1;
587}