aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2009-11-08 11:43:16 -0800
committerWayne Davison <wayned@samba.org>2009-11-08 11:45:55 -0800
commit304d7b5817d6e1d3cf59b9edae2213433d901cdc (patch)
tree8cbabc0678c530326a69c09bc679f238d709716c /io.c
parent9270e88d76d3ea9e94d48977fbea57b997545577 (diff)
downloadandroid_external_rsync-304d7b5817d6e1d3cf59b9edae2213433d901cdc.tar.gz
android_external_rsync-304d7b5817d6e1d3cf59b9edae2213433d901cdc.tar.bz2
android_external_rsync-304d7b5817d6e1d3cf59b9edae2213433d901cdc.zip
More improvements for abnormal exits.
Diffstat (limited to 'io.c')
-rw-r--r--io.c29
1 files changed, 20 insertions, 9 deletions
diff --git a/io.c b/io.c
index b5fd3776..d79ec1eb 100644
--- a/io.c
+++ b/io.c
@@ -807,7 +807,7 @@ void noop_io_until_death(void)
char buf[1024];
kluge_around_eof = 1;
- set_io_timeout(10);
+ set_io_timeout(protocol_version >= 31 ? 10 : 1);
while (1)
read_buf(iobuf.in_fd, buf, sizeof buf);
@@ -1438,15 +1438,26 @@ static void read_a_msg(void)
}
break;
case MSG_ERROR_EXIT:
- if (msg_bytes != 4)
+ if (msg_bytes == 0) {
+ if (!am_sender && !am_generator) {
+ send_msg(MSG_ERROR_EXIT, "", 0, 0);
+ io_flush(FULL_FLUSH);
+ }
+ val = 0;
+ } else if (msg_bytes == 4) {
+ data = perform_io(4, PIO_INPUT_AND_CONSUME);
+ val = IVAL(data, 0);
+ if (protocol_version >= 31) {
+ if (am_generator)
+ send_msg_int(MSG_ERROR_EXIT, val);
+ else
+ send_msg(MSG_ERROR_EXIT, "", 0, 0);
+ }
+ } else
goto invalid_msg;
- data = perform_io(4, PIO_INPUT_AND_CONSUME);
- val = IVAL(data, 0);
- if (am_generator && protocol_version >= 31)
- send_msg_int(MSG_ERROR_EXIT, val);
- if (am_generator)
- val = RERR_RCVR_ERROR; /* avoids duplicate errors */
- exit_cleanup(val);
+ /* Send a negative linenum so that we don't end up
+ * with a duplicate exit message. */
+ _exit_cleanup(val, __FILE__, 0 - __LINE__);
default:
rprintf(FERROR, "unexpected tag %d [%s%s]\n",
tag, who_am_i(), inc_recurse ? "/inc" : "");