Changed the chksum debug flag to deltasum.
[rsync/rsync.git] / sender.c
... / ...
CommitLineData
1/*
2 * Routines only used by the sending process.
3 *
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2003-2008 Wayne Davison
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, visit the http://fsf.org website.
20 */
21
22#include "rsync.h"
23
24extern int dry_run;
25extern int do_xfers;
26extern int am_server;
27extern int am_daemon;
28extern int inc_recurse;
29extern int log_before_transfer;
30extern int stdout_format_has_i;
31extern int logfile_format_has_i;
32extern int csum_length;
33extern int append_mode;
34extern int io_error;
35extern int allowed_lull;
36extern int preserve_xattrs;
37extern int protocol_version;
38extern int remove_source_files;
39extern int updating_basis_file;
40extern int make_backups;
41extern int inplace;
42extern int batch_fd;
43extern int write_batch;
44extern struct stats stats;
45extern struct file_list *cur_flist, *first_flist, *dir_flist;
46
47/**
48 * @file
49 *
50 * The sender gets checksums from the generator, calculates deltas,
51 * and transmits them to the receiver. The sender process runs on the
52 * machine holding the source files.
53 **/
54
55/**
56 * Receive the checksums for a buffer
57 **/
58static struct sum_struct *receive_sums(int f)
59{
60 struct sum_struct *s;
61 int32 i;
62 int lull_mod = allowed_lull * 5;
63 OFF_T offset = 0;
64
65 if (!(s = new(struct sum_struct)))
66 out_of_memory("receive_sums");
67
68 read_sum_head(f, s);
69
70 s->sums = NULL;
71
72 if (DEBUG_GTE(DELTASUM, 3)) {
73 rprintf(FINFO, "count=%s n=%ld rem=%ld\n",
74 big_num(s->count, 0), (long)s->blength, (long)s->remainder);
75 }
76
77 if (append_mode > 0) {
78 s->flength = (OFF_T)s->count * s->blength;
79 if (s->remainder)
80 s->flength -= s->blength - s->remainder;
81 return s;
82 }
83
84 if (s->count == 0)
85 return(s);
86
87 if (!(s->sums = new_array(struct sum_buf, s->count)))
88 out_of_memory("receive_sums");
89
90 for (i = 0; i < s->count; i++) {
91 s->sums[i].sum1 = read_int(f);
92 read_buf(f, s->sums[i].sum2, s->s2length);
93
94 s->sums[i].offset = offset;
95 s->sums[i].flags = 0;
96
97 if (i == s->count-1 && s->remainder != 0)
98 s->sums[i].len = s->remainder;
99 else
100 s->sums[i].len = s->blength;
101 offset += s->sums[i].len;
102
103 if (allowed_lull && !(i % lull_mod))
104 maybe_send_keepalive();
105
106 if (DEBUG_GTE(DELTASUM, 3)) {
107 rprintf(FINFO,
108 "chunk[%d] len=%d offset=%s sum1=%08x\n",
109 i, s->sums[i].len, big_num(s->sums[i].offset, 0),
110 s->sums[i].sum1);
111 }
112 }
113
114 s->flength = offset;
115
116 return s;
117}
118
119void successful_send(int ndx)
120{
121 char fname[MAXPATHLEN];
122 struct file_struct *file;
123 struct file_list *flist;
124
125 if (!remove_source_files)
126 return;
127
128 if (!(flist = flist_for_ndx(ndx))) {
129 rprintf(FERROR,
130 "INTERNAL ERROR: unable to find flist for item %d\n",
131 ndx);
132 return;
133 }
134
135 file = flist->files[ndx - flist->ndx_start];
136 if (!change_pathname(file, NULL, 0))
137 return;
138 f_name(file, fname);
139
140 if (do_unlink(fname) == 0) {
141 if (INFO_GTE(REMOVE, 1))
142 rprintf(FINFO, "sender removed %s\n", fname);
143 } else
144 rsyserr(FERROR, errno, "sender failed to remove %s", fname);
145}
146
147static void write_ndx_and_attrs(int f_out, int ndx, int iflags,
148 const char *fname, struct file_struct *file,
149 uchar fnamecmp_type, char *buf, int len)
150{
151 write_ndx(f_out, ndx);
152 if (protocol_version < 29)
153 return;
154 write_shortint(f_out, iflags);
155 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
156 write_byte(f_out, fnamecmp_type);
157 if (iflags & ITEM_XNAME_FOLLOWS)
158 write_vstring(f_out, buf, len);
159#ifdef SUPPORT_XATTRS
160 if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && !dry_run)
161 send_xattr_request(fname, file, f_out);
162#endif
163}
164
165void send_files(int f_in, int f_out)
166{
167 int fd = -1;
168 struct sum_struct *s;
169 struct map_struct *mbuf = NULL;
170 STRUCT_STAT st;
171 char fname[MAXPATHLEN], xname[MAXPATHLEN];
172 const char *path, *slash;
173 uchar fnamecmp_type;
174 int iflags, xlen;
175 struct file_struct *file;
176 int phase = 0, max_phase = protocol_version >= 29 ? 2 : 1;
177 struct stats initial_stats;
178 int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
179 enum logcode log_code = log_before_transfer ? FLOG : FINFO;
180 int f_xfer = write_batch < 0 ? batch_fd : f_out;
181 int ndx, j;
182
183 if (DEBUG_GTE(SEND, 1))
184 rprintf(FINFO, "send_files starting\n");
185
186 while (1) {
187 if (inc_recurse)
188 send_extra_file_list(f_out, FILECNT_LOOKAHEAD);
189
190 /* This call also sets cur_flist. */
191 ndx = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
192 xname, &xlen);
193 if (ndx == NDX_DONE) {
194 if (!am_server && INFO_GTE(PROGRESS, 2) && cur_flist) {
195 set_current_file_index(NULL, 0);
196 end_progress(0);
197 }
198 if (inc_recurse && first_flist) {
199 flist_free(first_flist);
200 if (first_flist) {
201 write_ndx(f_out, NDX_DONE);
202 continue;
203 }
204 }
205 if (++phase > max_phase)
206 break;
207 if (DEBUG_GTE(SEND, 1))
208 rprintf(FINFO, "send_files phase=%d\n", phase);
209 write_ndx(f_out, NDX_DONE);
210 continue;
211 }
212
213 if (inc_recurse)
214 send_extra_file_list(f_out, FILECNT_LOOKAHEAD);
215
216 if (ndx - cur_flist->ndx_start >= 0)
217 file = cur_flist->files[ndx - cur_flist->ndx_start];
218 else
219 file = dir_flist->files[cur_flist->parent_ndx];
220 if (F_PATHNAME(file)) {
221 path = F_PATHNAME(file);
222 slash = "/";
223 } else {
224 path = slash = "";
225 }
226 if (!change_pathname(file, NULL, 0))
227 continue;
228 f_name(file, fname);
229
230 if (DEBUG_GTE(SEND, 1))
231 rprintf(FINFO, "send_files(%d, %s%s%s)\n", ndx, path,slash,fname);
232
233#ifdef SUPPORT_XATTRS
234 if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && !dry_run)
235 recv_xattr_request(file, f_in);
236#endif
237
238 if (!(iflags & ITEM_TRANSFER)) {
239 maybe_log_item(file, iflags, itemizing, xname);
240 write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
241 fnamecmp_type, xname, xlen);
242 continue;
243 }
244 if (phase == 2) {
245 rprintf(FERROR,
246 "got transfer request in phase 2 [%s]\n",
247 who_am_i());
248 exit_cleanup(RERR_PROTOCOL);
249 }
250
251 if (file->flags & FLAG_FILE_SENT) {
252 if (csum_length == SHORT_SUM_LENGTH) {
253 /* For inplace: redo phase turns off the backup
254 * flag so that we do a regular inplace send. */
255 make_backups = -make_backups;
256 append_mode = -append_mode;
257 csum_length = SUM_LENGTH;
258 }
259 } else {
260 if (csum_length != SHORT_SUM_LENGTH) {
261 make_backups = -make_backups;
262 append_mode = -append_mode;
263 csum_length = SHORT_SUM_LENGTH;
264 }
265 }
266
267 updating_basis_file = inplace && (protocol_version >= 29
268 ? fnamecmp_type == FNAMECMP_FNAME : make_backups <= 0);
269
270 if (!am_server && INFO_GTE(PROGRESS, 1))
271 set_current_file_index(file, ndx);
272 stats.num_transferred_files++;
273 stats.total_transferred_size += F_LENGTH(file);
274
275 if (!do_xfers) { /* log the transfer */
276 log_item(FCLIENT, file, &stats, iflags, NULL);
277 write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
278 fnamecmp_type, xname, xlen);
279 continue;
280 }
281
282 initial_stats = stats;
283
284 if (!(s = receive_sums(f_in))) {
285 io_error |= IOERR_GENERAL;
286 rprintf(FERROR, "receive_sums failed\n");
287 exit_cleanup(RERR_PROTOCOL);
288 }
289
290 fd = do_open(fname, O_RDONLY, 0);
291 if (fd == -1) {
292 if (errno == ENOENT) {
293 enum logcode c = am_daemon
294 && protocol_version < 28 ? FERROR
295 : FWARNING;
296 io_error |= IOERR_VANISHED;
297 rprintf(c, "file has vanished: %s\n",
298 full_fname(fname));
299 } else {
300 io_error |= IOERR_GENERAL;
301 rsyserr(FERROR_XFER, errno,
302 "send_files failed to open %s",
303 full_fname(fname));
304 }
305 free_sums(s);
306 if (protocol_version >= 30)
307 send_msg_int(MSG_NO_SEND, ndx);
308 continue;
309 }
310
311 /* map the local file */
312 if (do_fstat(fd, &st) != 0) {
313 io_error |= IOERR_GENERAL;
314 rsyserr(FERROR, errno, "fstat failed");
315 free_sums(s);
316 close(fd);
317 exit_cleanup(RERR_PROTOCOL);
318 }
319
320 if (st.st_size) {
321 int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
322 mbuf = map_file(fd, st.st_size, read_size, s->blength);
323 } else
324 mbuf = NULL;
325
326 if (DEBUG_GTE(DELTASUM, 2)) {
327 rprintf(FINFO, "send_files mapped %s%s%s of size %s\n",
328 path,slash,fname, big_num(st.st_size, 0));
329 }
330
331 write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
332 fnamecmp_type, xname, xlen);
333 write_sum_head(f_xfer, s);
334
335 if (DEBUG_GTE(DELTASUM, 2))
336 rprintf(FINFO, "calling match_sums %s%s%s\n", path,slash,fname);
337
338 if (log_before_transfer)
339 log_item(FCLIENT, file, &initial_stats, iflags, NULL);
340 else if (!am_server && INFO_GTE(NAME, 1) && INFO_EQ(PROGRESS, 1))
341 rprintf(FCLIENT, "%s\n", fname);
342
343 set_compression(fname);
344
345 match_sums(f_xfer, s, mbuf, st.st_size);
346 if (INFO_GTE(PROGRESS, 1))
347 end_progress(st.st_size);
348
349 log_item(log_code, file, &initial_stats, iflags, NULL);
350
351 if (mbuf) {
352 j = unmap_file(mbuf);
353 if (j) {
354 io_error |= IOERR_GENERAL;
355 rsyserr(FERROR_XFER, j,
356 "read errors mapping %s",
357 full_fname(fname));
358 }
359 }
360 close(fd);
361
362 free_sums(s);
363
364 if (DEBUG_GTE(SEND, 1))
365 rprintf(FINFO, "sender finished %s%s%s\n", path,slash,fname);
366
367 /* Flag that we actually sent this entry. */
368 file->flags |= FLAG_FILE_SENT;
369 }
370 if (make_backups < 0)
371 make_backups = -make_backups;
372
373 if (DEBUG_GTE(SEND, 1))
374 rprintf(FINFO, "send files finished\n");
375
376 match_report();
377
378 write_ndx(f_out, NDX_DONE);
379}