X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e6e3f12ffc8b5a77b18af9498a045a43a7d58928..ef5075e092af8c94324b29c5e19bd63f9d3154cb:/sender.c diff --git a/sender.c b/sender.c index 841e81fa..22d67abf 100644 --- a/sender.c +++ b/sender.c @@ -38,15 +38,19 @@ extern int am_server; void read_sum_head(int f, struct sum_struct *sum) { - extern int remote_version; + extern int protocol_version; sum->count = read_int(f); sum->blength = read_int(f); - if (remote_version < 27) - { + if (protocol_version < 27) { sum->s2length = csum_length; } else { sum->s2length = read_int(f); + if (sum->s2length > MD4_SUM_LENGTH) { + rprintf(FERROR, "Invalid checksum length %ld\n", + (long)sum->s2length); + exit_cleanup(RERR_PROTOCOL); + } } sum->remainder = read_int(f); } @@ -60,7 +64,7 @@ static struct sum_struct *receive_sums(int f) int i; OFF_T offset = 0; - s = (struct sum_struct *)malloc(sizeof(*s)); + s = new(struct sum_struct); if (!s) out_of_memory("receive_sums"); read_sum_head(f, s); @@ -75,7 +79,7 @@ static struct sum_struct *receive_sums(int f) if (s->count == 0) return(s); - s->sums = (struct sum_buf *)malloc(sizeof(s->sums[0])*s->count); + s->sums = new_array(struct sum_buf, s->count); if (!s->sums) out_of_memory("receive_sums"); for (i = 0; i < (int) s->count; i++) { @@ -158,9 +162,9 @@ void send_files(struct file_list *flist, int f_out, int f_in) if (file->basedir) { strlcpy(fname, file->basedir, MAXPATHLEN); if (strlen(fname) == MAXPATHLEN-1) { - io_error = 1; + io_error |= IOERR_GENERAL; rprintf(FERROR, "send_files failed on long-named directory %s\n", - fname); + full_fname(fname)); return; } strlcat(fname, "/", MAXPATHLEN); @@ -183,7 +187,7 @@ void send_files(struct file_list *flist, int f_out, int f_in) s = receive_sums(f_in); if (!s) { - io_error = 1; + io_error |= IOERR_GENERAL; rprintf(FERROR, "receive_sums failed\n"); return; } @@ -194,17 +198,23 @@ void send_files(struct file_list *flist, int f_out, int f_in) if (!read_batch) { fd = do_open(fname, O_RDONLY, 0); if (fd == -1) { - io_error = 1; - rprintf(FERROR, "send_files failed to open %s: %s\n", - fname, strerror(errno)); + if (errno == ENOENT) { + io_error |= IOERR_VANISHED; + rprintf(FINFO, "file has vanished: %s\n", + full_fname(fname)); + } else { + io_error |= IOERR_GENERAL; + rprintf(FERROR, "send_files failed to open %s: %s\n", + full_fname(fname), strerror(errno)); + } free_sums(s); continue; } /* map the local file */ if (do_fstat(fd, &st) != 0) { - io_error = 1; - rprintf(FERROR, "fstat failed : %s\n", strerror(errno)); + io_error |= IOERR_GENERAL; + rprintf(FERROR, "fstat failed: %s\n", strerror(errno)); free_sums(s); close(fd); return; @@ -279,7 +289,15 @@ void send_files(struct file_list *flist, int f_out, int f_in) } if (!read_batch) { /* dw */ - if (buf) unmap_file(buf); + if (buf) { + j = unmap_file(buf); + if (j) { + io_error |= IOERR_GENERAL; + rprintf(FERROR, + "read errors mapping %s: (%d) %s\n", + full_fname(fname), j, strerror(j)); + } + } close(fd); }