X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/70d794dce9ba8fbf978185ea36f2ad4198b269ee..8bf737494f17ca384b30db13b4bc31a5158f3646:/rsync.c diff --git a/rsync.c b/rsync.c index 73589d05..b19681ca 100644 --- a/rsync.c +++ b/rsync.c @@ -26,6 +26,8 @@ extern int am_server; extern int always_checksum; extern time_t starttime; +extern int remote_version; + extern char *backup_suffix; extern int block_size; @@ -43,6 +45,7 @@ extern int ignore_times; extern int recurse; extern int delete_mode; extern int cvs_exclude; +extern int am_root; /* free a sums struct @@ -81,7 +84,7 @@ static void send_sums(struct sum_struct *s,int f_out) generate approximately one checksum every n bytes */ -static struct sum_struct *generate_sums(char *buf,off_t len,int n) +static struct sum_struct *generate_sums(struct map_struct *buf,off_t len,int n) { int i; struct sum_struct *s; @@ -190,18 +193,18 @@ static struct sum_struct *receive_sums(int f) } -static void set_perms(char *fname,struct file_struct *file,struct stat *st, - int report) +static int set_perms(char *fname,struct file_struct *file,struct stat *st, + int report) { int updated = 0; struct stat st2; - if (dry_run) return; + if (dry_run) return 0; if (!st) { - if (stat(fname,&st2) != 0) { + if (lstat(fname,&st2) != 0) { fprintf(FERROR,"stat %s : %s\n",fname,strerror(errno)); - return; + return 0; } st = &st2; } @@ -212,7 +215,7 @@ static void set_perms(char *fname,struct file_struct *file,struct stat *st, if (set_modtime(fname,file->modtime) != 0) { fprintf(FERROR,"failed to set times on %s : %s\n", fname,strerror(errno)); - return; + return 0; } } @@ -223,20 +226,20 @@ static void set_perms(char *fname,struct file_struct *file,struct stat *st, if (chmod(fname,file->mode) != 0) { fprintf(FERROR,"failed to set permissions on %s : %s\n", fname,strerror(errno)); - return; + return 0; } } #endif - if ((preserve_uid && st->st_uid != file->uid) || + if ((am_root && preserve_uid && st->st_uid != file->uid) || (preserve_gid && st->st_gid != file->gid)) { updated = 1; - if (chown(fname, - preserve_uid?file->uid:-1, - preserve_gid?file->gid:-1) != 0) { + if (lchown(fname, + (am_root&&preserve_uid)?file->uid:-1, + preserve_gid?file->gid:-1) != 0) { if (verbose>1 || preserve_uid) fprintf(FERROR,"chown %s : %s\n",fname,strerror(errno)); - return; + return updated; } } @@ -246,6 +249,7 @@ static void set_perms(char *fname,struct file_struct *file,struct stat *st, else fprintf(FINFO,"%s is uptodate\n",fname); } + return updated; } @@ -253,17 +257,33 @@ void recv_generator(char *fname,struct file_list *flist,int i,int f_out) { int fd; struct stat st; - char *buf; + struct map_struct *buf; struct sum_struct *s; - char sum[SUM_LENGTH]; + char sum[MD4_SUM_LENGTH]; int statret; struct file_struct *file = &flist->files[i]; if (verbose > 2) - fprintf(FERROR,"recv_generator(%s)\n",fname); + fprintf(FERROR,"recv_generator(%s,%d)\n",fname,i); statret = lstat(fname,&st); + if (S_ISDIR(file->mode)) { + if (dry_run) return; + if (statret == 0 && !S_ISDIR(st.st_mode)) { + if (unlink(fname) != 0) { + fprintf(FERROR,"unlink %s : %s\n",fname,strerror(errno)); + return; + } + statret = -1; + } + if (statret != 0 && mkdir(fname,file->mode) != 0 && errno != EEXIST) + fprintf(FERROR,"mkdir %s : %s\n",fname,strerror(errno)); + if (set_perms(fname,file,NULL,0) && verbose) + fprintf(FINFO,"%s/\n",fname); + return; + } + #if SUPPORT_LINKS if (preserve_links && S_ISLNK(file->mode)) { char lnk[MAXPATHLEN]; @@ -293,7 +313,7 @@ void recv_generator(char *fname,struct file_list *flist,int i,int f_out) #endif #ifdef HAVE_MKNOD - if (preserve_devices && IS_DEVICE(file->mode)) { + if (am_root && preserve_devices && IS_DEVICE(file->mode)) { if (statret != 0 || st.st_mode != file->mode || st.st_rdev != file->rdev) { @@ -339,7 +359,21 @@ void recv_generator(char *fname,struct file_list *flist,int i,int f_out) } if (!S_ISREG(st.st_mode)) { - fprintf(FERROR,"%s : not a regular file\n",fname); + /* its not a regular file on the receiving end, but it is on the + sending end. If its a directory then skip it (too dangerous to + do a recursive deletion??) otherwise try to unlink it */ + if (S_ISDIR(st.st_mode)) { + fprintf(FERROR,"ERROR: %s is a directory\n",fname); + return; + } + if (unlink(fname) != 0) { + fprintf(FERROR,"%s : not a regular file (generator)\n",fname); + return; + } + + /* now pretend the file didn't exist */ + write_int(f_out,i); + if (!dry_run) send_sums(NULL,f_out); return; } @@ -381,39 +415,49 @@ void recv_generator(char *fname,struct file_list *flist,int i,int f_out) } if (verbose > 3) - fprintf(FERROR,"mapped %s of size %d\n",fname,(int)st.st_size); + fprintf(FERROR,"gen mapped %s of size %d\n",fname,(int)st.st_size); s = generate_sums(buf,st.st_size,block_size); + if (verbose > 2) + fprintf(FERROR,"sending sums for %d\n",i); + write_int(f_out,i); send_sums(s,f_out); write_flush(f_out); close(fd); - unmap_file(buf,st.st_size); + if (buf) unmap_file(buf); free_sums(s); } -static void receive_data(int f_in,char *buf,int fd,char *fname) +static int receive_data(int f_in,struct map_struct *buf,int fd,char *fname) { int i,n,remainder,len,count; off_t offset = 0; off_t offset2; char *data; + static char file_sum1[MD4_SUM_LENGTH]; + static char file_sum2[MD4_SUM_LENGTH]; + char *map=NULL; count = read_int(f_in); n = read_int(f_in); remainder = read_int(f_in); + sum_init(); + for (i=recv_token(f_in,&data); i != 0; i=recv_token(f_in,&data)) { if (i > 0) { if (verbose > 3) fprintf(FERROR,"data recv %d at %d\n",i,(int)offset); - if (write_sparse(fd,data,i) != i) { + sum_update(data,i); + + if (fd != -1 && write_sparse(fd,data,i) != i) { fprintf(FERROR,"write failed on %s : %s\n",fname,strerror(errno)); exit_cleanup(1); } @@ -429,7 +473,12 @@ static void receive_data(int f_in,char *buf,int fd,char *fname) fprintf(FERROR,"chunk[%d] of size %d at %d offset=%d\n", i,len,(int)offset2,(int)offset); - if (write_sparse(fd,map_ptr(buf,offset2,len),len) != len) { + map = map_ptr(buf,offset2,len); + + see_token(map, len); + sum_update(map,len); + + if (fd != -1 && write_sparse(fd,map,len) != len) { fprintf(FERROR,"write failed on %s : %s\n",fname,strerror(errno)); exit_cleanup(1); } @@ -437,10 +486,21 @@ static void receive_data(int f_in,char *buf,int fd,char *fname) } } - if (offset > 0 && sparse_end(fd) != 0) { + if (fd != -1 && offset > 0 && sparse_end(fd) != 0) { fprintf(FERROR,"write failed on %s : %s\n",fname,strerror(errno)); exit_cleanup(1); } + + sum_end(file_sum1); + + if (remote_version >= 14) { + read_buf(f_in,file_sum2,MD4_SUM_LENGTH); + if (verbose > 2) + fprintf(FERROR,"got file_sum\n"); + if (fd != -1 && memcmp(file_sum1,file_sum2,MD4_SUM_LENGTH) != 0) + return 0; + } + return 1; } @@ -472,7 +532,7 @@ static void delete_files(struct file_list *flist) if (cvs_exclude) add_cvs_excludes(); - if (!(local_file_list = send_file_list(-1,recurse,1,&dot))) + if (!(local_file_list = send_file_list(-1,1,&dot))) return; for (i=local_file_list->count;i>=0;i--) { @@ -498,15 +558,17 @@ void sig_int(void) } -int recv_files(int f_in,struct file_list *flist,char *local_name) +int recv_files(int f_in,struct file_list *flist,char *local_name,int f_gen) { int fd1,fd2; struct stat st; char *fname; char fnametmp[MAXPATHLEN]; - char *buf; + struct map_struct *buf; int i; struct file_struct *file; + int phase=0; + int recv_ok; if (verbose > 2) { fprintf(FERROR,"recv_files(%d) starting\n",flist->count); @@ -517,9 +579,20 @@ int recv_files(int f_in,struct file_list *flist,char *local_name) } while (1) - { + { i = read_int(f_in); - if (i == -1) break; + if (i == -1) { + if (phase==0 && remote_version >= 13) { + phase++; + csum_length = SUM_LENGTH; + if (verbose > 2) + fprintf(FERROR,"recv_files phase=%d\n",phase); + write_int(f_gen,-1); + write_flush(f_gen); + continue; + } + break; + } file = &flist->files[i]; fname = file->name; @@ -541,35 +614,42 @@ int recv_files(int f_in,struct file_list *flist,char *local_name) if (fd1 != -1 && fstat(fd1,&st) != 0) { fprintf(FERROR,"fstat %s : %s\n",fname,strerror(errno)); + receive_data(f_in,NULL,-1,NULL); close(fd1); - return -1; + continue; } if (fd1 != -1 && !S_ISREG(st.st_mode)) { - fprintf(FERROR,"%s : not a regular file\n",fname); + fprintf(FERROR,"%s : not a regular file (recv_files)\n",fname); + receive_data(f_in,NULL,-1,NULL); close(fd1); - return -1; + continue; } if (fd1 != -1 && st.st_size > 0) { buf = map_file(fd1,st.st_size); + if (verbose > 2) + fprintf(FERROR,"recv mapped %s of size %d\n",fname,(int)st.st_size); } else { buf = NULL; } - if (verbose > 2) - fprintf(FERROR,"mapped %s of size %d\n",fname,(int)st.st_size); - /* open tmp file */ sprintf(fnametmp,"%s.XXXXXX",fname); if (NULL == mktemp(fnametmp)) { fprintf(FERROR,"mktemp %s failed\n",fnametmp); - return -1; + receive_data(f_in,buf,-1,NULL); + if (buf) unmap_file(buf); + close(fd1); + continue; } fd2 = open(fnametmp,O_WRONLY|O_CREAT,file->mode); if (fd2 == -1) { fprintf(FERROR,"open %s : %s\n",fnametmp,strerror(errno)); - return -1; + receive_data(f_in,buf,-1,NULL); + if (buf) unmap_file(buf); + close(fd1); + continue; } cleanup_fname = fnametmp; @@ -578,10 +658,10 @@ int recv_files(int f_in,struct file_list *flist,char *local_name) printf("%s\n",fname); /* recv file data */ - receive_data(f_in,buf,fd2,fname); + recv_ok = receive_data(f_in,buf,fd2,fname); if (fd1 != -1) { - unmap_file(buf,st.st_size); + if (buf) unmap_file(buf); close(fd1); } close(fd2); @@ -594,7 +674,7 @@ int recv_files(int f_in,struct file_list *flist,char *local_name) sprintf(fnamebak,"%s%s",fname,backup_suffix); if (rename(fname,fnamebak) != 0 && errno != ENOENT) { fprintf(FERROR,"rename %s %s : %s\n",fname,fnamebak,strerror(errno)); - exit_cleanup(1); + continue; } } @@ -602,12 +682,32 @@ int recv_files(int f_in,struct file_list *flist,char *local_name) if (rename(fnametmp,fname) != 0) { fprintf(FERROR,"rename %s -> %s : %s\n", fnametmp,fname,strerror(errno)); + unlink(fnametmp); } cleanup_fname = NULL; set_perms(fname,file,NULL,0); + + if (!recv_ok) { + if (verbose > 1) + fprintf(FERROR,"redoing %s(%d)\n",fname,i); + if (csum_length == SUM_LENGTH) + fprintf(FERROR,"ERROR: file corruption in %s\n",fname); + write_int(f_gen,i); + } + } + + /* now we need to fix any directory permissions that were + modified during the transfer */ + if (!am_root) { + for (i = 0; i < flist->count; i++) { + struct file_struct *file = &flist->files[i]; + if (!file->name || !S_ISDIR(file->mode)) continue; + recv_generator(file->name,flist,i,-1); } + } + if (verbose > 2) fprintf(FERROR,"recv_files finished\n"); @@ -621,12 +721,13 @@ off_t send_files(struct file_list *flist,int f_out,int f_in) { int fd; struct sum_struct *s; - char *buf; + struct map_struct *buf; struct stat st; char fname[MAXPATHLEN]; off_t total=0; int i; struct file_struct *file; + int phase = 0; if (verbose > 2) fprintf(FERROR,"send_files starting\n"); @@ -636,7 +737,18 @@ off_t send_files(struct file_list *flist,int f_out,int f_in) while (1) { i = read_int(f_in); - if (i == -1) break; + if (i == -1) { + if (phase==0 && remote_version >= 13) { + phase++; + csum_length = SUM_LENGTH; + write_int(f_out,-1); + write_flush(f_out); + if (verbose > 2) + fprintf(FERROR,"send_files phase=%d\n",phase); + continue; + } + break; + } file = &flist->files[i]; @@ -701,7 +813,7 @@ off_t send_files(struct file_list *flist,int f_out,int f_in) match_sums(f_out,s,buf,st.st_size); write_flush(f_out); - unmap_file(buf,st.st_size); + if (buf) unmap_file(buf); close(fd); free_sums(s); @@ -725,9 +837,10 @@ off_t send_files(struct file_list *flist,int f_out,int f_in) -void generate_files(int f,struct file_list *flist,char *local_name) +void generate_files(int f,struct file_list *flist,char *local_name,int f_recv) { int i; + int phase=0; if (verbose > 2) fprintf(FERROR,"generator starting pid=%d count=%d\n", @@ -735,21 +848,50 @@ void generate_files(int f,struct file_list *flist,char *local_name) for (i = 0; i < flist->count; i++) { struct file_struct *file = &flist->files[i]; + mode_t saved_mode = file->mode; if (!file->name) continue; - if (S_ISDIR(file->mode)) { - if (dry_run) continue; - if (mkdir(file->name,file->mode) != 0 && - errno != EEXIST) { - fprintf(FERROR,"mkdir %s : %s\n", - file->name,strerror(errno)); - } - continue; + + /* we need to ensure that any directories we create have writeable + permissions initially so that we can create the files within + them. This is then fixed after the files are transferred */ + if (!am_root && S_ISDIR(file->mode)) { + file->mode |= S_IWUSR; /* user write */ } + recv_generator(local_name?local_name:file->name, flist,i,f); + + file->mode = saved_mode; } + + phase++; + csum_length = SUM_LENGTH; + ignore_times=1; + + if (verbose > 2) + fprintf(FERROR,"generate_files phase=%d\n",phase); + write_int(f,-1); write_flush(f); + + if (remote_version >= 13) { + /* in newer versions of the protocol the files can cycle through + the system more than once to catch initial checksum errors */ + for (i=read_int(f_recv); i != -1; i=read_int(f_recv)) { + struct file_struct *file = &flist->files[i]; + recv_generator(local_name?local_name:file->name, + flist,i,f); + } + + phase++; + if (verbose > 2) + fprintf(FERROR,"generate_files phase=%d\n",phase); + + write_int(f,-1); + write_flush(f); + } + + if (verbose > 2) fprintf(FERROR,"generator wrote %d\n",write_total()); }