Handle --delay-updates at the end of the first phase.
[rsync/rsync.git] / sender.c
... / ...
CommitLineData
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
22extern int verbose;
23extern int dry_run;
24extern int am_server;
25extern int am_daemon;
26extern int log_before_transfer;
27extern int log_format_has_i;
28extern int daemon_log_format_has_i;
29extern int csum_length;
30extern int io_error;
31extern int protocol_version;
32extern int remove_sent_files;
33extern int updating_basis_file;
34extern int make_backups;
35extern int do_progress;
36extern int inplace;
37extern struct stats stats;
38extern struct file_list *the_file_list;
39extern 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 **/
53static 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
103void 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
128static 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. */
142int 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 int isave = iflags; /* XXX remove soon */
150
151 /* Handle the new keep-alive (no-op) packet. */
152 if (ndx == the_file_list->count && iflags == ITEM_IS_NEW)
153 ;
154 else if (ndx < 0 || ndx >= the_file_list->count) {
155 rprintf(FERROR, "Invalid file index: %d (count=%d) [%s]\n",
156 ndx, the_file_list->count, who_am_i());
157 exit_cleanup(RERR_PROTOCOL);
158 } else if (iflags == ITEM_IS_NEW) {
159 rprintf(FERROR, "Invalid itemized flag word: %x [%s]\n",
160 iflags, who_am_i());
161 exit_cleanup(RERR_PROTOCOL);
162 }
163
164 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
165 fnamecmp_type = read_byte(f_in);
166 *type_ptr = fnamecmp_type;
167
168 if (iflags & ITEM_XNAME_FOLLOWS) {
169 if ((len = read_vstring(f_in, buf, MAXPATHLEN)) < 0)
170 exit_cleanup(RERR_PROTOCOL);
171 } else {
172 *buf = '\0';
173 len = -1;
174 }
175 *len_ptr = len;
176
177 /* XXX Temporary backward compatibility when talking to 2.6.4pre[12] */
178 if (protocol_version >= 29 && iflags & ITEM_TRANSFER
179 && !S_ISREG(the_file_list->files[ndx]->mode)) {
180 iflags &= ~ITEM_TRANSFER;
181 iflags |= ITEM_LOCAL_CHANGE;
182 }
183
184 if (iflags & ITEM_TRANSFER) {
185 if (!S_ISREG(the_file_list->files[ndx]->mode)) {
186 rprintf(FERROR,
187 "received request to transfer non-regular file: %d [%s]\n",
188 ndx, who_am_i());
189 exit_cleanup(RERR_PROTOCOL);
190 }
191 } else if (f_out >= 0) {
192 write_ndx_and_attrs(f_out, ndx, isave /*XXX iflags */,
193 fnamecmp_type, buf, len);
194 }
195
196 return iflags;
197}
198
199void send_files(struct file_list *flist, int f_out, int f_in)
200{
201 int fd = -1;
202 struct sum_struct *s;
203 struct map_struct *mbuf = NULL;
204 STRUCT_STAT st;
205 char *fname2, fname[MAXPATHLEN];
206 char xname[MAXPATHLEN];
207 uchar fnamecmp_type;
208 int iflags, xlen;
209 struct file_struct *file;
210 int phase = 0;
211 struct stats initial_stats;
212 int save_make_backups = make_backups;
213 int itemizing = am_daemon ? daemon_log_format_has_i
214 : !am_server && log_format_has_i;
215 int i, j;
216
217 if (verbose > 2)
218 rprintf(FINFO, "send_files starting\n");
219
220 while (1) {
221 unsigned int offset;
222
223 i = read_int(f_in);
224 if (i == -1) {
225 if (phase == 0) {
226 phase++;
227 csum_length = SUM_LENGTH;
228 write_int(f_out, -1);
229 if (verbose > 2)
230 rprintf(FINFO, "send_files phase=%d\n", phase);
231 /* For inplace: redo phase turns off the backup
232 * flag so that we do a regular inplace send. */
233 make_backups = 0;
234 continue;
235 }
236 break;
237 }
238
239 iflags = read_item_attrs(f_in, f_out, i, &fnamecmp_type,
240 xname, &xlen);
241 if (iflags == ITEM_IS_NEW) /* no-op packet */
242 continue;
243
244 file = flist->files[i];
245 if (file->dir.root) {
246 /* N.B. We're sure that this fits, so offset is OK. */
247 offset = strlcpy(fname, file->dir.root, sizeof fname);
248 if (!offset || fname[offset-1] != '/')
249 fname[offset++] = '/';
250 } else
251 offset = 0;
252 fname2 = f_name_to(file, fname + offset);
253
254 if (verbose > 2)
255 rprintf(FINFO, "send_files(%d, %s)\n", i, fname);
256
257 if (!(iflags & ITEM_TRANSFER)) {
258 maybe_log_item(file, iflags, itemizing, xname);
259 continue;
260 }
261
262 updating_basis_file = inplace && (protocol_version >= 29
263 ? fnamecmp_type == FNAMECMP_FNAME : !make_backups);
264
265 stats.current_file_index = i;
266 stats.num_transferred_files++;
267 stats.total_transferred_size += file->length;
268
269 if (dry_run) { /* log the transfer */
270 if (!am_server && log_format)
271 log_item(file, &stats, iflags, NULL);
272 write_ndx_and_attrs(f_out, i, iflags, fnamecmp_type,
273 xname, xlen);
274 continue;
275 }
276
277 initial_stats = stats;
278
279 if (!(s = receive_sums(f_in))) {
280 io_error |= IOERR_GENERAL;
281 rprintf(FERROR, "receive_sums failed\n");
282 return;
283 }
284
285 fd = do_open(fname, O_RDONLY, 0);
286 if (fd == -1) {
287 if (errno == ENOENT) {
288 enum logcode c = am_daemon
289 && protocol_version < 28 ? FERROR
290 : FINFO;
291 io_error |= IOERR_VANISHED;
292 rprintf(c, "file has vanished: %s\n",
293 full_fname(fname));
294 } else {
295 io_error |= IOERR_GENERAL;
296 rsyserr(FERROR, errno,
297 "send_files failed to open %s",
298 full_fname(fname));
299 }
300 free_sums(s);
301 continue;
302 }
303
304 /* map the local file */
305 if (do_fstat(fd, &st) != 0) {
306 io_error |= IOERR_GENERAL;
307 rsyserr(FERROR, errno, "fstat failed");
308 free_sums(s);
309 close(fd);
310 return;
311 }
312
313 if (st.st_size) {
314 int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
315 mbuf = map_file(fd, st.st_size, read_size, s->blength);
316 } else
317 mbuf = NULL;
318
319 if (verbose > 2) {
320 rprintf(FINFO, "send_files mapped %s of size %.0f\n",
321 safe_fname(fname), (double)st.st_size);
322 }
323
324 write_ndx_and_attrs(f_out, i, iflags, fnamecmp_type,
325 xname, xlen);
326 write_sum_head(f_out, s);
327
328 if (verbose > 2) {
329 rprintf(FINFO, "calling match_sums %s\n",
330 safe_fname(fname));
331 }
332
333 if (log_before_transfer)
334 log_item(file, &initial_stats, iflags, NULL);
335 else if (!am_server && verbose && do_progress)
336 rprintf(FINFO, "%s\n", safe_fname(fname2));
337
338 set_compression(fname);
339
340 match_sums(f_out, s, mbuf, st.st_size);
341 if (do_progress)
342 end_progress(st.st_size);
343
344 if (!log_before_transfer)
345 log_item(file, &initial_stats, iflags, NULL);
346
347 if (mbuf) {
348 j = unmap_file(mbuf);
349 if (j) {
350 io_error |= IOERR_GENERAL;
351 rsyserr(FERROR, j,
352 "read errors mapping %s",
353 full_fname(fname));
354 }
355 }
356 close(fd);
357
358 free_sums(s);
359
360 if (verbose > 2) {
361 rprintf(FINFO, "sender finished %s\n",
362 safe_fname(fname));
363 }
364
365 /* Flag that we actually sent this entry. */
366 file->flags |= FLAG_SENT;
367 }
368 make_backups = save_make_backups;
369
370 if (verbose > 2)
371 rprintf(FINFO, "send files finished\n");
372
373 match_report();
374
375 write_int(f_out, -1);
376}