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