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