Updated patches to work with the current trunk.
[rsync/rsync-patches.git] / xattrs.diff
1 This patch adds backward-compatibility support for the --xattrs option.
2 Since the main release has never had xattr support, the trunk doesn't
3 need this code.  If you want to make rsync 3.0.x communicate with an
4 older (patched) release, use this.
5
6 To use this patch, run these commands for a successful build:
7
8     patch -p1 <patches/acls.diff
9     patch -p1 <patches/xattrs.diff
10     ./configure                         (optional if already run)
11     make
12
13 diff --git a/compat.c b/compat.c
14 index 1b66069..fb46fa5 100644
15 --- a/compat.c
16 +++ b/compat.c
17 @@ -189,13 +189,6 @@ void setup_protocol(int f_out,int f_in)
18         if (protocol_version < 30) {
19                 if (append_mode == 1)
20                         append_mode = 2;
21 -               if (preserve_xattrs && !local_server) {
22 -                       rprintf(FERROR,
23 -                           "--xattrs requires protocol 30 or higher"
24 -                           " (negotiated %d).\n",
25 -                           protocol_version);
26 -                       exit_cleanup(RERR_PROTOCOL);
27 -               }
28         }
29  
30         if (delete_mode && !(delete_before+delete_during+delete_after)) {
31 diff --git a/xattrs.c b/xattrs.c
32 index 2d0e050..b2017ed 100644
33 --- a/xattrs.c
34 +++ b/xattrs.c
35 @@ -22,6 +22,7 @@
36  #include "rsync.h"
37  #include "ifuncs.h"
38  #include "inums.h"
39 +#include "io.h"
40  #include "lib/sysxattrs.h"
41  
42  #ifdef SUPPORT_XATTRS
43 @@ -34,6 +35,7 @@ extern int read_only;
44  extern int list_only;
45  extern int preserve_xattrs;
46  extern int checksum_seed;
47 +extern int protocol_version;
48  
49  #define RSYNC_XAL_INITIAL 5
50  #define RSYNC_XAL_LIST_INITIAL 100
51 @@ -247,7 +249,7 @@ static int rsync_xal_get(const char *fname, item_list *xalp)
52                 if (!(ptr = get_xattr_data(fname, name, &datum_len, 0)))
53                         return -1;
54  
55 -               if (datum_len > MAX_FULL_DATUM) {
56 +               if (datum_len > MAX_FULL_DATUM && protocol_version >= 30) {
57                         /* For large datums, we store a flag and a checksum. */
58                         name_offset = 1 + MAX_DIGEST_LEN;
59                         sum_init(checksum_seed);
60 @@ -349,7 +351,7 @@ static int find_matching_xattr(item_list *xalp)
61                          || rxas1[j].datum_len != rxas2[j].datum_len
62                          || strcmp(rxas1[j].name, rxas2[j].name))
63                                 break;
64 -                       if (rxas1[j].datum_len > MAX_FULL_DATUM) {
65 +                       if (rxas1[j].datum_len > MAX_FULL_DATUM && protocol_version >= 30) {
66                                 if (memcmp(rxas1[j].datum + 1,
67                                            rxas2[j].datum + 1,
68                                            MAX_DIGEST_LEN) != 0)
69 @@ -386,13 +388,22 @@ int send_xattr(stat_x *sxp, int f)
70  {
71         int ndx = find_matching_xattr(sxp->xattr);
72  
73 -       /* Send 0 (-1 + 1) to indicate that literal xattr data follows. */
74 -       write_varint(f, ndx + 1);
75 +       if (protocol_version < 30) {
76 +               if (ndx < 0)
77 +                       write_byte(f, 'X');
78 +               else {
79 +                       write_byte(f, 'x');
80 +                       write_int(f, ndx);
81 +               }
82 +       } else {
83 +               /* Send 0 (-1 + 1) to indicate that literal xattr data follows. */
84 +               write_varint(f, ndx + 1);
85 +       }
86  
87         if (ndx < 0) {
88                 rsync_xa *rxa;
89                 int count = sxp->xattr->count;
90 -               write_varint(f, count);
91 +               write_varint30(f, count);
92                 for (rxa = sxp->xattr->items; count--; rxa++) {
93                         size_t name_len = rxa->name_len;
94                         const char *name = rxa->name;
95 @@ -411,8 +422,8 @@ int send_xattr(stat_x *sxp, int f)
96                                 name_len += UPRE_LEN;
97                         }
98  #endif
99 -                       write_varint(f, name_len);
100 -                       write_varint(f, rxa->datum_len);
101 +                       write_varint30(f, name_len);
102 +                       write_varint30(f, rxa->datum_len);
103  #ifndef HAVE_LINUX_XATTRS
104                         if (name_len > rxa->name_len) {
105                                 write_buf(f, USER_PREFIX, UPRE_LEN);
106 @@ -420,7 +431,7 @@ int send_xattr(stat_x *sxp, int f)
107                         }
108  #endif
109                         write_buf(f, name, name_len);
110 -                       if (rxa->datum_len > MAX_FULL_DATUM)
111 +                       if (rxa->datum_len > MAX_FULL_DATUM && protocol_version >= 30)
112                                 write_buf(f, rxa->datum + 1, MAX_DIGEST_LEN);
113                         else
114                                 write_buf(f, rxa->datum, rxa->datum_len);
115 @@ -470,7 +481,7 @@ int xattr_diff(struct file_struct *file, stat_x *sxp, int find_all)
116                 cmp = rec_cnt ? strcmp(snd_rxa->name, rec_rxa->name) : -1;
117                 if (cmp > 0)
118                         same = 0;
119 -               else if (snd_rxa->datum_len > MAX_FULL_DATUM) {
120 +               else if (snd_rxa->datum_len > MAX_FULL_DATUM && protocol_version >= 30) {
121                         same = cmp == 0 && snd_rxa->datum_len == rec_rxa->datum_len
122                             && memcmp(snd_rxa->datum + 1, rec_rxa->datum + 1,
123                                       MAX_DIGEST_LEN) == 0;
124 @@ -515,6 +526,9 @@ void send_xattr_request(const char *fname, struct file_struct *file, int f_out)
125         int cnt, prior_req = 0;
126         rsync_xa *rxa;
127  
128 +       if (protocol_version < 30)
129 +               return;
130 +
131         lst += F_XATTR(file);
132         for (rxa = lst->items, cnt = lst->count; cnt--; rxa++) {
133                 if (rxa->datum_len <= MAX_FULL_DATUM)
134 @@ -571,6 +585,9 @@ int recv_xattr_request(struct file_struct *file, int f_in)
135         rsync_xa *rxa;
136         int rel_pos, cnt, num, got_xattr_data = 0;
137  
138 +       if (protocol_version < 30)
139 +               return 0;
140 +
141         if (F_XATTR(file) < 0) {
142                 rprintf(FERROR, "recv_xattr_request: internal data error!\n");
143                 exit_cleanup(RERR_STREAMIO);
144 @@ -633,7 +650,22 @@ void receive_xattr(struct file_struct *file, int f)
145  #else
146         int need_sort = 1;
147  #endif
148 -       int ndx = read_varint(f);
149 +       int ndx;
150 +
151 +       if (protocol_version >= 30)
152 +               ndx = read_varint(f);
153 +       else {
154 +               int tag = read_byte(f);
155 +               if (tag == 'x')
156 +                       ndx = read_int(f) + 1;
157 +               else if (tag == 'X')
158 +                       ndx = 0;
159 +               else {
160 +                       rprintf(FERROR, "receive_xattr: unknown extended attribute"
161 +                               " type tag (%02x) for %s\n", tag, f_name(file, NULL));
162 +                       exit_cleanup(RERR_STREAMIO);
163 +               }
164 +       }
165  
166         if (ndx < 0 || (size_t)ndx > rsync_xal_l.count) {
167                 rprintf(FERROR, "receive_xattr: xa index %d out of"
168 @@ -646,7 +678,7 @@ void receive_xattr(struct file_struct *file, int f)
169                 return;
170         }
171         
172 -       if ((count = read_varint(f)) != 0) {
173 +       if ((count = read_varint30(f)) != 0) {
174                 (void)EXPAND_ITEM_LIST(&temp_xattr, rsync_xa, count);
175                 temp_xattr.count = 0;
176         }
177 @@ -654,9 +686,10 @@ void receive_xattr(struct file_struct *file, int f)
178         for (num = 1; num <= count; num++) {
179                 char *ptr, *name;
180                 rsync_xa *rxa;
181 -               size_t name_len = read_varint(f);
182 -               size_t datum_len = read_varint(f);
183 -               size_t dget_len = datum_len > MAX_FULL_DATUM ? 1 + MAX_DIGEST_LEN : datum_len;
184 +               size_t name_len = read_varint30(f);
185 +               size_t datum_len = read_varint30(f);
186 +               size_t dget_len = datum_len > MAX_FULL_DATUM && protocol_version >= 30
187 +                               ? 1 + MAX_DIGEST_LEN : datum_len;
188                 size_t extra_len = MIGHT_NEED_RPRE ? RPRE_LEN : 0;
189                 if ((dget_len + extra_len < dget_len)
190                  || (dget_len + extra_len + name_len < dget_len))