Changed error message for incompatible 2.6.4 pre-release versions.
[rsync/rsync.git] / sender.c
1 /*
2    Copyright (C) Andrew Tridgell 1996
3    Copyright (C) Paul Mackerras 1996
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include "rsync.h"
21
22 extern int verbose;
23 extern int dry_run;
24 extern int am_server;
25 extern int am_daemon;
26 extern int log_before_transfer;
27 extern int log_format_has_i;
28 extern int daemon_log_format_has_i;
29 extern int csum_length;
30 extern int io_error;
31 extern int protocol_version;
32 extern int remove_sent_files;
33 extern int updating_basis_file;
34 extern int make_backups;
35 extern int do_progress;
36 extern int inplace;
37 extern struct stats stats;
38 extern struct file_list *the_file_list;
39 extern char *log_format;
40
41
42 /**
43  * @file
44  *
45  * The sender gets checksums from the generator, calculates deltas,
46  * and transmits them to the receiver.  The sender process runs on the
47  * machine holding the source files.
48  **/
49
50 /**
51  * Receive the checksums for a buffer
52  **/
53 static struct sum_struct *receive_sums(int f)
54 {
55         struct sum_struct *s;
56         int32 i;
57         OFF_T offset = 0;
58
59         if (!(s = new(struct sum_struct)))
60                 out_of_memory("receive_sums");
61
62         read_sum_head(f, s);
63
64         s->sums = NULL;
65
66         if (verbose > 3) {
67                 rprintf(FINFO, "count=%.0f n=%ld rem=%ld\n",
68                         (double)s->count, (long)s->blength, (long)s->remainder);
69         }
70
71         if (s->count == 0)
72                 return(s);
73
74         if (!(s->sums = new_array(struct sum_buf, s->count)))
75                 out_of_memory("receive_sums");
76
77         for (i = 0; i < s->count; i++) {
78                 s->sums[i].sum1 = read_int(f);
79                 read_buf(f, s->sums[i].sum2, s->s2length);
80
81                 s->sums[i].offset = offset;
82                 s->sums[i].flags = 0;
83
84                 if (i == s->count-1 && s->remainder != 0)
85                         s->sums[i].len = s->remainder;
86                 else
87                         s->sums[i].len = s->blength;
88                 offset += s->sums[i].len;
89
90                 if (verbose > 3) {
91                         rprintf(FINFO,
92                                 "chunk[%d] len=%d offset=%.0f sum1=%08x\n",
93                                 i, s->sums[i].len, (double)s->sums[i].offset,
94                                 s->sums[i].sum1);
95                 }
96         }
97
98         s->flength = offset;
99
100         return s;
101 }
102
103 void successful_send(int ndx)
104 {
105         char fname[MAXPATHLEN];
106         struct file_struct *file;
107         unsigned int offset;
108
109         if (ndx < 0 || ndx >= the_file_list->count)
110                 return;
111
112         file = the_file_list->files[ndx];
113         /* The generator might tell us about symlinks we didn't send. */
114         if (!(file->flags & FLAG_SENT) && !S_ISLNK(file->mode))
115                 return;
116         if (file->dir.root) {
117                 offset = stringjoin(fname, sizeof fname,
118                                     file->dir.root, "/", NULL);
119         } else
120                 offset = 0;
121         f_name_to(file, fname + offset);
122         if (remove_sent_files && do_unlink(fname) == 0 && verbose > 1) {
123                 rprintf(FINFO, "sender removed %s\n",
124                         safe_fname(fname + offset));
125         }
126 }
127
128 static void write_ndx_and_attrs(int f_out, int ndx, int iflags,
129                                 uchar fnamecmp_type, char *buf, int len)
130 {
131         write_int(f_out, ndx);
132         if (protocol_version < 29)
133                 return;
134         write_shortint(f_out, iflags);
135         if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
136                 write_byte(f_out, fnamecmp_type);
137         if (iflags & ITEM_XNAME_FOLLOWS)
138                 write_vstring(f_out, buf, len);
139 }
140
141 /* This is also used by receive.c with f_out = -1. */
142 int read_item_attrs(int f_in, int f_out, int ndx, uchar *type_ptr,
143                     char *buf, int *len_ptr)
144 {
145         int len;
146         uchar fnamecmp_type = FNAMECMP_FNAME;
147         int iflags = protocol_version >= 29 ? read_shortint(f_in)
148                    : ITEM_TRANSFER | ITEM_MISSING_DATA;
149
150         /* Handle the new keep-alive (no-op) packet. */
151         if (ndx == the_file_list->count && iflags == ITEM_IS_NEW)
152                 ;
153         else if (ndx < 0 || ndx >= the_file_list->count) {
154                 rprintf(FERROR, "Invalid file index: %d (count=%d) [%s]\n",
155                         ndx, the_file_list->count, who_am_i());
156                 exit_cleanup(RERR_PROTOCOL);
157         } else if (iflags == ITEM_IS_NEW) {
158                 rprintf(FERROR, "Invalid itemized flag word: %x [%s]\n",
159                         iflags, who_am_i());
160                 exit_cleanup(RERR_PROTOCOL);
161         }
162
163         if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
164                 fnamecmp_type = read_byte(f_in);
165         *type_ptr = fnamecmp_type;
166
167         if (iflags & ITEM_XNAME_FOLLOWS) {
168                 if ((len = read_vstring(f_in, buf, MAXPATHLEN)) < 0)
169                         exit_cleanup(RERR_PROTOCOL);
170         } else {
171                 *buf = '\0';
172                 len = -1;
173         }
174         *len_ptr = len;
175
176         /* XXX Temporary rejection of 2.6.4pre1 & pre2 */
177         if (iflags & ITEM_DUMMY_BIT) {
178                 extern int am_sender;
179                 if (!am_sender || !(iflags & (ITEM_LOCAL_CHANGE|ITEM_TRANSFER))) {
180                         rprintf(FERROR,
181                                 "Incompatible 2.6.4 pre-release on %s -- upgrade it or use --protocol=28!\n",
182                                 am_sender ? "receiver" : "sender");
183                         exit_cleanup(RERR_PROTOCOL);
184                 }
185                 iflags &= ~ITEM_DUMMY_BIT;
186         } /* XXX */
187
188         if (iflags & ITEM_TRANSFER) {
189                 if (!S_ISREG(the_file_list->files[ndx]->mode)) {
190                         rprintf(FERROR,
191                                 "received request to transfer non-regular file: %d [%s]\n",
192                                 ndx, who_am_i());
193                         exit_cleanup(RERR_PROTOCOL);
194                 }
195         } else if (f_out >= 0) {
196                 write_ndx_and_attrs(f_out, ndx, iflags,
197                                     fnamecmp_type, buf, len);
198         }
199
200         return iflags;
201 }
202
203 void send_files(struct file_list *flist, int f_out, int f_in)
204 {
205         int fd = -1;
206         struct sum_struct *s;
207         struct map_struct *mbuf = NULL;
208         STRUCT_STAT st;
209         char *fname2, fname[MAXPATHLEN];
210         char xname[MAXPATHLEN];
211         uchar fnamecmp_type;
212         int iflags, xlen;
213         struct file_struct *file;
214         int phase = 0, max_phase = protocol_version >= 29 ? 2 : 1;
215         struct stats initial_stats;
216         int save_make_backups = make_backups;
217         int itemizing = am_daemon ? daemon_log_format_has_i
218                       : !am_server && log_format_has_i;
219         int i, j;
220
221         if (verbose > 2)
222                 rprintf(FINFO, "send_files starting\n");
223
224         while (1) {
225                 unsigned int offset;
226
227                 i = read_int(f_in);
228                 if (i == -1) {
229                         if (++phase > max_phase)
230                                 break;
231                         csum_length = SUM_LENGTH;
232                         if (verbose > 2)
233                                 rprintf(FINFO, "send_files phase=%d\n", phase);
234                         write_int(f_out, -1);
235                         /* For inplace: redo phase turns off the backup
236                          * flag so that we do a regular inplace send. */
237                         make_backups = 0;
238                         continue;
239                 }
240
241                 iflags = read_item_attrs(f_in, f_out, i, &fnamecmp_type,
242                                          xname, &xlen);
243                 if (iflags == ITEM_IS_NEW) /* no-op packet */
244                         continue;
245
246                 file = flist->files[i];
247                 if (file->dir.root) {
248                         /* N.B. We're sure that this fits, so offset is OK. */
249                         offset = strlcpy(fname, file->dir.root, sizeof fname);
250                         if (!offset || fname[offset-1] != '/')
251                                 fname[offset++] = '/';
252                 } else
253                         offset = 0;
254                 fname2 = f_name_to(file, fname + offset);
255
256                 if (verbose > 2)
257                         rprintf(FINFO, "send_files(%d, %s)\n", i, fname);
258
259                 if (!(iflags & ITEM_TRANSFER)) {
260                         maybe_log_item(file, iflags, itemizing, xname);
261                         continue;
262                 }
263                 if (phase == 2) {
264                         rprintf(FERROR,
265                                 "got transfer request in phase 2 [%s]\n",
266                                 who_am_i());
267                         exit_cleanup(RERR_PROTOCOL);
268                 }
269
270                 updating_basis_file = inplace && (protocol_version >= 29
271                         ? fnamecmp_type == FNAMECMP_FNAME : !make_backups);
272
273                 stats.current_file_index = i;
274                 stats.num_transferred_files++;
275                 stats.total_transferred_size += file->length;
276
277                 if (dry_run) { /* log the transfer */
278                         if (!am_server && log_format)
279                                 log_item(file, &stats, iflags, NULL);
280                         write_ndx_and_attrs(f_out, i, iflags, fnamecmp_type,
281                                             xname, xlen);
282                         continue;
283                 }
284
285                 initial_stats = stats;
286
287                 if (!(s = receive_sums(f_in))) {
288                         io_error |= IOERR_GENERAL;
289                         rprintf(FERROR, "receive_sums failed\n");
290                         return;
291                 }
292
293                 fd = do_open(fname, O_RDONLY, 0);
294                 if (fd == -1) {
295                         if (errno == ENOENT) {
296                                 enum logcode c = am_daemon
297                                     && protocol_version < 28 ? FERROR
298                                                              : FINFO;
299                                 io_error |= IOERR_VANISHED;
300                                 rprintf(c, "file has vanished: %s\n",
301                                         full_fname(fname));
302                         } else {
303                                 io_error |= IOERR_GENERAL;
304                                 rsyserr(FERROR, errno,
305                                         "send_files failed to open %s",
306                                         full_fname(fname));
307                         }
308                         free_sums(s);
309                         continue;
310                 }
311
312                 /* map the local file */
313                 if (do_fstat(fd, &st) != 0) {
314                         io_error |= IOERR_GENERAL;
315                         rsyserr(FERROR, errno, "fstat failed");
316                         free_sums(s);
317                         close(fd);
318                         return;
319                 }
320
321                 if (st.st_size) {
322                         int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
323                         mbuf = map_file(fd, st.st_size, read_size, s->blength);
324                 } else
325                         mbuf = NULL;
326
327                 if (verbose > 2) {
328                         rprintf(FINFO, "send_files mapped %s of size %.0f\n",
329                                 safe_fname(fname), (double)st.st_size);
330                 }
331
332                 write_ndx_and_attrs(f_out, i, iflags, fnamecmp_type,
333                                     xname, xlen);
334                 write_sum_head(f_out, s);
335
336                 if (verbose > 2) {
337                         rprintf(FINFO, "calling match_sums %s\n",
338                                 safe_fname(fname));
339                 }
340
341                 if (log_before_transfer)
342                         log_item(file, &initial_stats, iflags, NULL);
343                 else if (!am_server && verbose && do_progress)
344                         rprintf(FINFO, "%s\n", safe_fname(fname2));
345
346                 set_compression(fname);
347
348                 match_sums(f_out, s, mbuf, st.st_size);
349                 if (do_progress)
350                         end_progress(st.st_size);
351
352                 if (!log_before_transfer)
353                         log_item(file, &initial_stats, iflags, NULL);
354
355                 if (mbuf) {
356                         j = unmap_file(mbuf);
357                         if (j) {
358                                 io_error |= IOERR_GENERAL;
359                                 rsyserr(FERROR, j,
360                                         "read errors mapping %s",
361                                         full_fname(fname));
362                         }
363                 }
364                 close(fd);
365
366                 free_sums(s);
367
368                 if (verbose > 2) {
369                         rprintf(FINFO, "sender finished %s\n",
370                                 safe_fname(fname));
371                 }
372
373                 /* Flag that we actually sent this entry. */
374                 file->flags |= FLAG_SENT;
375         }
376         make_backups = save_make_backups;
377
378         if (verbose > 2)
379                 rprintf(FINFO, "send files finished\n");
380
381         match_report();
382
383         write_int(f_out, -1);
384 }