X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/9439c0cb5a4b020b9bfcfe0351e33c17b9c53b54..524eaa8245e3d9314055759403ead1fee9e136cc:/xattrs.c diff --git a/xattrs.c b/xattrs.c index f662cf7a..48a630fd 100644 --- a/xattrs.c +++ b/xattrs.c @@ -30,6 +30,7 @@ extern int am_sender; extern int am_generator; extern int read_only; extern int list_only; +extern int preserve_xattrs; extern int checksum_seed; #define RSYNC_XAL_INITIAL 5 @@ -62,7 +63,6 @@ extern int checksum_seed; #define RPRE_LEN ((int)sizeof RSYNC_PREFIX - 1) #define XSTAT_ATTR RSYNC_PREFIX "%stat" -#define XSTAT_LEN ((int)sizeof XSTAT_ATTR - 1) typedef struct { char *datum, *name; @@ -223,8 +223,9 @@ static int rsync_xal_get(const char *fname, item_list *xalp) continue; #endif - if (am_root < 0 && name_len == XSTAT_LEN + 1 - && name[RPRE_LEN] == '%' && strcmp(name, XSTAT_ATTR) == 0) + /* No rsync.%FOO attributes are copied w/o 2 -X options. */ + if (preserve_xattrs < 2 && name_len > RPRE_LEN + && name[RPRE_LEN] == '%' && HAS_PREFIX(name, RSYNC_PREFIX)) continue; datum_len = name_len; /* Pass extra size to get_xattr_data() */ @@ -636,8 +637,9 @@ void receive_xattr(struct file_struct *file, int f) continue; } #endif - if (am_root < 0 && name_len == XSTAT_LEN + 1 - && name[RPRE_LEN] == '%' && strcmp(name, XSTAT_ATTR) == 0) { + /* No rsync.%FOO attributes are copied w/o 2 -X options. */ + if (preserve_xattrs < 2 && name_len > RPRE_LEN + && name[RPRE_LEN] == '%' && HAS_PREFIX(name, RSYNC_PREFIX)) { free(ptr); continue; } @@ -886,7 +888,7 @@ int set_stat_xattr(const char *fname, struct file_struct *file) fst.st_rdev = 0; /* just in case */ if (mode == fmode && fst.st_rdev == rdev - && fst.st_uid == F_UID(file) && fst.st_gid == F_GID(file)) { + && fst.st_uid == F_OWNER(file) && fst.st_gid == F_GROUP(file)) { /* xst.st_mode will be 0 if there's no current stat xattr */ if (xst.st_mode && sys_lremovexattr(fname, XSTAT_ATTR) < 0) { rsyserr(FERROR, errno, @@ -898,12 +900,12 @@ int set_stat_xattr(const char *fname, struct file_struct *file) } if (xst.st_mode != fmode || xst.st_rdev != rdev - || xst.st_uid != F_UID(file) || xst.st_gid != F_GID(file)) { + || xst.st_uid != F_OWNER(file) || xst.st_gid != F_GROUP(file)) { char buf[256]; int len = snprintf(buf, sizeof buf, "%o %u,%u %u:%u", to_wire_mode(fmode), (int)major(rdev), (int)minor(rdev), - (int)F_UID(file), (int)F_GID(file)); + F_OWNER(file), F_GROUP(file)); if (sys_lsetxattr(fname, XSTAT_ATTR, buf, len) < 0) { if (errno == EPERM && S_ISLNK(fst.st_mode)) return 0;