X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/3d19b4c83edab707de2ddf91b1469befc12de54e..66203a982b3d249bafda9b9272c4c103c19e4a9b:/rsync.c diff --git a/rsync.c b/rsync.c index 5a02979e..039e1cd5 100644 --- a/rsync.c +++ b/rsync.c @@ -152,7 +152,6 @@ int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st, int updated = 0; STRUCT_STAT st2; int change_uid, change_gid; - extern int am_daemon; if (dry_run) return 0; @@ -179,7 +178,7 @@ int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st, } change_uid = am_root && preserve_uid && st->st_uid != file->uid; - change_gid = !am_daemon && preserve_gid && file->gid != (gid_t) -1 && \ + change_gid = preserve_gid && file->gid != (gid_t) -1 && \ st->st_gid != file->gid; if (change_gid && !am_root) { /* enforce bsd-style group semantics: non-root can only @@ -195,19 +194,20 @@ int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st, rprintf(FERROR,"chown %s : %s\n", fname,strerror(errno)); return 0; } + /* a lchown had been done - we have to re-stat if the + destination had the setuid or setgid bits set due + to the side effect of the chown call */ + if (st->st_mode & (S_ISUID | S_ISGID)) { + link_stat(fname, st); + } updated = 1; } #ifdef HAVE_CHMOD if (!S_ISLNK(st->st_mode)) { - int file_mode; - if (preserve_perms) - file_mode = file->mode; - else - file_mode = file->mode & ACCESSPERMS; if (st->st_mode != file->mode) { updated = 1; - if (do_chmod(fname,file_mode) != 0) { + if (do_chmod(fname,file->mode) != 0) { rprintf(FERROR,"failed to set permissions on %s : %s\n", fname,strerror(errno)); return 0; @@ -259,6 +259,3 @@ void finish_transfer(char *fname, char *fnametmp, struct file_struct *file) set_perms(fname,file,NULL,0); } } - - -