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