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