From: Wayne Davison Date: Sat, 4 Nov 2006 18:05:27 +0000 (+0000) Subject: Moved the %-name preserving code into the regular xattr patch. X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/commitdiff_plain/14738d3edb2297330d01c67b062cb3d098b92990 Moved the %-name preserving code into the regular xattr patch. --- diff --git a/fake-super.diff b/fake-super.diff index f64f1d0..77a26dd 100644 --- a/fake-super.diff +++ b/fake-super.diff @@ -478,19 +478,7 @@ above: rxas = EXPAND_ITEM_LIST(xalp, rsync_xa, RSYNC_XAL_INITIAL); rxas->name = ptr + datum_len; rxas->datum = ptr; -@@ -263,7 +279,10 @@ void send_xattr(statx *sxp, int f) - #else - /* We strip the rsync prefix from disguised namespaces - * and put everything else in the user namespace. */ -- if (HAS_PREFIX(rxa->name, RSYNC_PREFIX)) { -+ if (HAS_PREFIX(rxa->name, RSYNC_PREFIX) -+ && (am_root < 0 || rxa->name_len != XSTAT_LEN + 1 -+ || rxa->name[CENT_POS] != '%' -+ || strcmp(rxa->name, XSTAT_ATTR) != 0)) { - write_int(f, rxa->name_len - RPRE_LEN); - write_int(f, rxa->datum_len); - write_buf(f, rxa->name + RPRE_LEN, rxa->name_len - RPRE_LEN); -@@ -298,10 +317,8 @@ void receive_xattr(struct file_struct *f +@@ -299,10 +315,8 @@ void receive_xattr(struct file_struct *f size_t name_len = read_int(f); size_t datum_len = read_int(f); size_t extra_len = am_root < 0 ? RPRE_LEN : 0; @@ -501,7 +489,7 @@ above: if (name_len + datum_len + extra_len < name_len) out_of_memory("receive_xattr"); /* overflow */ ptr = new_array(char, name_len + datum_len + extra_len); -@@ -312,6 +329,10 @@ void receive_xattr(struct file_struct *f +@@ -313,6 +327,10 @@ void receive_xattr(struct file_struct *f read_buf(f, ptr, datum_len); #ifdef HAVE_LINUX_XATTRS /* Non-root can only save the user namespace. */ @@ -512,7 +500,7 @@ above: if (!am_root && !HAS_PREFIX(name, USER_PREFIX)) { free(ptr); continue; -@@ -332,6 +353,11 @@ void receive_xattr(struct file_struct *f +@@ -333,6 +351,11 @@ void receive_xattr(struct file_struct *f continue; } #endif @@ -524,7 +512,7 @@ above: rxa = EXPAND_ITEM_LIST(&temp_xattr, rsync_xa, count); rxa->name = name; rxa->datum = ptr; -@@ -411,4 +437,146 @@ int set_xattr(const char *fname, const s +@@ -412,4 +435,146 @@ int set_xattr(const char *fname, const s return rsync_xal_set(fname, lst + ndx); /* TODO: This needs to return 1 if no xattrs changed! */ }