X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e6e3f12ffc8b5a77b18af9498a045a43a7d58928..d17e1dd2dae6bfd9e2e147a0dd3039848dd43abc:/sender.c diff --git a/sender.c b/sender.c index 841e81fa..1d9a132b 100644 --- a/sender.c +++ b/sender.c @@ -34,19 +34,21 @@ extern int am_server; * and transmits them to the receiver. The sender process runs on the * machine holding the source files. **/ - - 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,22 +62,22 @@ 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); s->sums = NULL; - if (verbose > 3) - rprintf(FINFO, "count=%ld n=%ld rem=%ld\n", - (long) s->count, (long) s->blength, - (long) s->remainder); + if (verbose > 3) { + rprintf(FINFO, "count=%ld n=%u rem=%u\n", + (long)s->count, s->blength, s->remainder); + } 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++) { @@ -116,13 +118,13 @@ void send_files(struct file_list *flist, int f_out, int f_in) int phase = 0; extern struct stats stats; struct stats initial_stats; - extern int write_batch; /* dw */ - extern int read_batch; /* dw */ - int checksums_match; /* dw */ - int buff_len; /* dw */ - char buff[CHUNK_SIZE]; /* dw */ - int j; /* dw */ - int done; /* dw */ + extern int write_batch; + extern int read_batch; + int checksums_match; + int buff_len; + char buff[CHUNK_SIZE]; + int j; + int done; if (verbose > 2) rprintf(FINFO, "send_files starting\n"); @@ -151,6 +153,7 @@ void send_files(struct file_list *flist, int f_out, int f_in) file = flist->files[i]; + stats.current_file_index = i; stats.num_transferred_files++; stats.total_transferred_size += file->length; @@ -158,15 +161,15 @@ 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); offset = strlen(file->basedir)+1; } - strlcat(fname, f_name(file), MAXPATHLEN); + f_name_to(file, fname + offset, MAXPATHLEN - offset); if (verbose > 2) rprintf(FINFO, "send_files(%d, %s)\n", i, fname); @@ -183,28 +186,34 @@ 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; } if (write_batch) - write_batch_csum_info(&i, flist->count, s); + write_batch_csum_info(&i, s); 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; @@ -237,11 +246,11 @@ void send_files(struct file_list *flist, int f_out, int f_in) set_compression(fname); - if (read_batch) { /* dw */ + if (read_batch) { /* read checksums originally computed on sender side */ read_batch_csum_info(i, s, &checksums_match); if (checksums_match) { - read_batch_delta_file( (char *) &j, sizeof(int) ); + read_batch_delta_file((char*)&j, sizeof (int)); if (j != i) { /* if flist index entries don't match*/ rprintf(FINFO, "index mismatch in send_files\n"); rprintf(FINFO, "read index = %d flist ndx = %d\n", j, i); @@ -253,7 +262,7 @@ void send_files(struct file_list *flist, int f_out, int f_in) write_sum_head(f_out, s); done = 0; while (!done) { - read_batch_delta_file( (char *) &buff_len, sizeof(int) ); + read_batch_delta_file((char*)&buff_len, sizeof (int)); write_int(f_out, buff_len); if (buff_len == 0) { done = 1; @@ -278,8 +287,16 @@ void send_files(struct file_list *flist, int f_out, int f_in) log_send(file, &initial_stats); } - if (!read_batch) { /* dw */ - if (buf) unmap_file(buf); + if (!read_batch) { + 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); } @@ -295,7 +312,7 @@ void send_files(struct file_list *flist, int f_out, int f_in) match_report(); write_int(f_out, -1); - if (write_batch || read_batch) { /* dw */ + if (write_batch || read_batch) { close_batch_csums_file(); close_batch_delta_file(); }