We need VA_COPY() defined more. Fix dangling #endif.
[rsync/rsync.git] / sender.c
CommitLineData
e6e3f12f 1/*
0f78b815
WD
2 * Routines only used by the sending process.
3 *
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
b3bf9b9d 6 * Copyright (C) 2003-2009 Wayne Davison
0f78b815
WD
7 *
8 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
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.
0f78b815
WD
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 *
e7c67065 18 * You should have received a copy of the GNU General Public License along
4fd842f9 19 * with this program; if not, visit the http://fsf.org website.
0f78b815 20 */
2f03f956
AT
21
22#include "rsync.h"
5dd14f0c 23#include "inums.h"
2f03f956 24
a0545709 25extern int do_xfers;
8715db2c
WD
26extern int am_server;
27extern int am_daemon;
3ea6e0e7 28extern int inc_recurse;
8a9cfb24 29extern int log_before_transfer;
2fedf3d5 30extern int stdout_format_has_i;
ecc7623e 31extern int logfile_format_has_i;
2f03f956 32extern int csum_length;
6cc11982 33extern int append_mode;
2f03f956 34extern int io_error;
7a7810aa 35extern int flist_eof;
605fed4b 36extern int allowed_lull;
16edf865 37extern int preserve_xattrs;
d6631cf3 38extern int protocol_version;
47c11975 39extern int remove_source_files;
53f8519a 40extern int updating_basis_file;
8b115ac8 41extern int make_backups;
53f8519a 42extern int inplace;
a0545709
WD
43extern int batch_fd;
44extern int write_batch;
fe16d9a6 45extern int file_old_total;
a3221d2a 46extern struct stats stats;
6755a7d7 47extern struct file_list *cur_flist, *first_flist, *dir_flist;
2f03f956 48
7a7810aa
WD
49BOOL extra_flist_sending_enabled;
50
0f9c48b1
MP
51/**
52 * @file
53 *
54 * The sender gets checksums from the generator, calculates deltas,
55 * and transmits them to the receiver. The sender process runs on the
56 * machine holding the source files.
57 **/
fc0257c9 58
ce8149b6
MP
59/**
60 * Receive the checksums for a buffer
61 **/
2f03f956
AT
62static struct sum_struct *receive_sums(int f)
63{
64 struct sum_struct *s;
a1cbe76e 65 int32 i;
05c36015 66 int lull_mod = protocol_version >= 31 ? 0 : allowed_lull * 5;
2f03f956
AT
67 OFF_T offset = 0;
68
a3221d2a
WD
69 if (!(s = new(struct sum_struct)))
70 out_of_memory("receive_sums");
2f03f956 71
fc0257c9
S
72 read_sum_head(f, s);
73
2f03f956
AT
74 s->sums = NULL;
75
5a18b34d 76 if (DEBUG_GTE(DELTASUM, 3)) {
6d56efa6 77 rprintf(FINFO, "count=%s n=%ld rem=%ld\n",
adc2476f 78 big_num(s->count), (long)s->blength, (long)s->remainder);
da9d12f5 79 }
2f03f956 80
f3d6d480 81 if (append_mode > 0) {
6cc11982
WD
82 s->flength = (OFF_T)s->count * s->blength;
83 if (s->remainder)
84 s->flength -= s->blength - s->remainder;
85 return s;
86 }
87
e6e3f12f 88 if (s->count == 0)
2f03f956
AT
89 return(s);
90
a3221d2a
WD
91 if (!(s->sums = new_array(struct sum_buf, s->count)))
92 out_of_memory("receive_sums");
2f03f956 93
eed47b6b 94 for (i = 0; i < s->count; i++) {
2f03f956 95 s->sums[i].sum1 = read_int(f);
e6e3f12f 96 read_buf(f, s->sums[i].sum2, s->s2length);
2f03f956
AT
97
98 s->sums[i].offset = offset;
a3221d2a 99 s->sums[i].flags = 0;
2f03f956 100
eed47b6b 101 if (i == s->count-1 && s->remainder != 0)
2f03f956 102 s->sums[i].len = s->remainder;
a3221d2a 103 else
fc0257c9 104 s->sums[i].len = s->blength;
2f03f956
AT
105 offset += s->sums[i].len;
106
05c36015 107 if (lull_mod && !(i % lull_mod))
92d02148 108 maybe_send_keepalive(time(NULL), True);
605fed4b 109
5a18b34d 110 if (DEBUG_GTE(DELTASUM, 3)) {
a3221d2a 111 rprintf(FINFO,
6d56efa6 112 "chunk[%d] len=%d offset=%s sum1=%08x\n",
adc2476f 113 i, s->sums[i].len, big_num(s->sums[i].offset),
a3221d2a
WD
114 s->sums[i].sum1);
115 }
2f03f956
AT
116 }
117
118 s->flength = offset;
119
120 return s;
121}
122
5f40615c 123void successful_send(int ndx)
95306d9d
WD
124{
125 char fname[MAXPATHLEN];
126 struct file_struct *file;
f3d6d480 127 struct file_list *flist;
95306d9d 128
f3d6d480 129 if (!remove_source_files)
95306d9d
WD
130 return;
131
e982d591 132 flist = flist_for_ndx(ndx, "successful_send");
f3d6d480 133 file = flist->files[ndx - flist->ndx_start];
29a89172 134 if (!change_pathname(file, NULL, 0))
f3d6d480
WD
135 return;
136 f_name(file, fname);
137
138 if (do_unlink(fname) == 0) {
951e826b 139 if (INFO_GTE(REMOVE, 1))
f3d6d480
WD
140 rprintf(FINFO, "sender removed %s\n", fname);
141 } else
142 rsyserr(FERROR, errno, "sender failed to remove %s", fname);
95306d9d 143}
2f03f956 144
16edf865
WD
145static void write_ndx_and_attrs(int f_out, int ndx, int iflags,
146 const char *fname, struct file_struct *file,
147 uchar fnamecmp_type, char *buf, int len)
d144e43b 148{
9ae7a2cd 149 write_ndx(f_out, ndx);
d144e43b
WD
150 if (protocol_version < 29)
151 return;
152 write_shortint(f_out, iflags);
153 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
154 write_byte(f_out, fnamecmp_type);
155 if (iflags & ITEM_XNAME_FOLLOWS)
156 write_vstring(f_out, buf, len);
16edf865 157#ifdef SUPPORT_XATTRS
78286a03
WD
158 if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && do_xfers
159 && (protocol_version < 31 || !BITS_SET(iflags, ITEM_XNAME_FOLLOWS|ITEM_LOCAL_CHANGE)))
16edf865
WD
160 send_xattr_request(fname, file, f_out);
161#endif
d144e43b
WD
162}
163
f3d6d480 164void send_files(int f_in, int f_out)
e6e3f12f 165{
c1659c79 166 int fd = -1;
2f03f956 167 struct sum_struct *s;
41cc97ae 168 struct map_struct *mbuf = NULL;
2f03f956 169 STRUCT_STAT st;
f3d6d480
WD
170 char fname[MAXPATHLEN], xname[MAXPATHLEN];
171 const char *path, *slash;
4d53c4dd 172 uchar fnamecmp_type;
6087ef2a 173 int iflags, xlen;
2f03f956 174 struct file_struct *file;
11290705 175 int phase = 0, max_phase = protocol_version >= 29 ? 2 : 1;
2fedf3d5
WD
176 int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
177 enum logcode log_code = log_before_transfer ? FLOG : FINFO;
a0545709 178 int f_xfer = write_batch < 0 ? batch_fd : f_out;
59924aa8 179 int save_io_error = io_error;
f3d6d480 180 int ndx, j;
2f03f956 181
951e826b 182 if (DEBUG_GTE(SEND, 1))
e6e3f12f 183 rprintf(FINFO, "send_files starting\n");
2f03f956 184
2f03f956 185 while (1) {
7a7810aa 186 if (inc_recurse) {
ce827c3e 187 send_extra_file_list(f_out, MIN_FILECNT_LOOKAHEAD);
7a7810aa
WD
188 extra_flist_sending_enabled = !flist_eof;
189 }
f3d6d480
WD
190
191 /* This call also sets cur_flist. */
20caffd2 192 ndx = read_ndx_and_attrs(f_in, f_out, &iflags, &fnamecmp_type,
16edf865 193 xname, &xlen);
7a7810aa
WD
194 extra_flist_sending_enabled = False;
195
f3d6d480 196 if (ndx == NDX_DONE) {
951e826b
WD
197 if (!am_server && INFO_GTE(PROGRESS, 2) && cur_flist) {
198 set_current_file_index(NULL, 0);
199 end_progress(0);
200 }
3ea6e0e7 201 if (inc_recurse && first_flist) {
fe16d9a6 202 file_old_total -= first_flist->used;
f3d6d480
WD
203 flist_free(first_flist);
204 if (first_flist) {
fe16d9a6
WD
205 if (first_flist == cur_flist)
206 file_old_total = cur_flist->used;
9ae7a2cd 207 write_ndx(f_out, NDX_DONE);
f3d6d480
WD
208 continue;
209 }
210 }
11290705 211 if (++phase > max_phase)
8b48bf11 212 break;
951e826b 213 if (DEBUG_GTE(SEND, 1))
8b48bf11 214 rprintf(FINFO, "send_files phase=%d\n", phase);
9ae7a2cd 215 write_ndx(f_out, NDX_DONE);
8b48bf11 216 continue;
2f03f956
AT
217 }
218
16edf865 219 if (inc_recurse)
ce827c3e 220 send_extra_file_list(f_out, MIN_FILECNT_LOOKAHEAD);
16edf865 221
6755a7d7
WD
222 if (ndx - cur_flist->ndx_start >= 0)
223 file = cur_flist->files[ndx - cur_flist->ndx_start];
224 else
225 file = dir_flist->files[cur_flist->parent_ndx];
8fc4033e
WD
226 if (F_PATHNAME(file)) {
227 path = F_PATHNAME(file);
f3d6d480
WD
228 slash = "/";
229 } else {
230 path = slash = "";
231 }
29a89172 232 if (!change_pathname(file, NULL, 0))
f3d6d480
WD
233 continue;
234 f_name(file, fname);
7f37167d 235
951e826b 236 if (DEBUG_GTE(SEND, 1))
f3d6d480 237 rprintf(FINFO, "send_files(%d, %s%s%s)\n", ndx, path,slash,fname);
8a9cfb24 238
16edf865 239#ifdef SUPPORT_XATTRS
78286a03
WD
240 if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && do_xfers
241 && (protocol_version < 31 || !BITS_SET(iflags, ITEM_XNAME_FOLLOWS|ITEM_LOCAL_CHANGE)))
16edf865
WD
242 recv_xattr_request(file, f_in);
243#endif
244
fad3dc42 245 if (!(iflags & ITEM_TRANSFER)) {
6087ef2a 246 maybe_log_item(file, iflags, itemizing, xname);
16edf865
WD
247 write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
248 fnamecmp_type, xname, xlen);
e366e530
WD
249 if (iflags & ITEM_IS_NEW) {
250 stats.created_files++;
251 if (S_ISREG(file->mode)) {
252 /* Nothing further to count. */
253 } else if (S_ISDIR(file->mode))
254 stats.created_dirs++;
255#ifdef SUPPORT_LINKS
256 else if (S_ISLNK(file->mode))
257 stats.created_symlinks++;
258#endif
259 else if (IS_DEVICE(file->mode))
260 stats.created_devices++;
261 else
262 stats.created_specials++;
263 }
165e6d44
WD
264 continue;
265 }
11290705
WD
266 if (phase == 2) {
267 rprintf(FERROR,
268 "got transfer request in phase 2 [%s]\n",
269 who_am_i());
270 exit_cleanup(RERR_PROTOCOL);
271 }
8a9cfb24 272
f3d6d480
WD
273 if (file->flags & FLAG_FILE_SENT) {
274 if (csum_length == SHORT_SUM_LENGTH) {
275 /* For inplace: redo phase turns off the backup
276 * flag so that we do a regular inplace send. */
277 make_backups = -make_backups;
278 append_mode = -append_mode;
279 csum_length = SUM_LENGTH;
280 }
281 } else {
282 if (csum_length != SHORT_SUM_LENGTH) {
283 make_backups = -make_backups;
284 append_mode = -append_mode;
285 csum_length = SHORT_SUM_LENGTH;
286 }
e366e530
WD
287 if (iflags & ITEM_IS_NEW)
288 stats.created_files++;
f3d6d480
WD
289 }
290
6087ef2a 291 updating_basis_file = inplace && (protocol_version >= 29
f3d6d480 292 ? fnamecmp_type == FNAMECMP_FNAME : make_backups <= 0);
b951e023 293
951e826b 294 if (!am_server && INFO_GTE(PROGRESS, 1))
65b4e4b2 295 set_current_file_index(file, ndx);
e366e530 296 stats.xferred_files++;
112d728f 297 stats.total_transferred_size += F_LENGTH(file);
2f03f956 298
4dde3347
WD
299 if (!log_before_transfer)
300 remember_initial_stats();
301
a0545709 302 if (!do_xfers) { /* log the transfer */
4dde3347 303 log_item(FCLIENT, file, iflags, NULL);
16edf865
WD
304 write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
305 fnamecmp_type, xname, xlen);
2f03f956
AT
306 continue;
307 }
308
efa95a18 309 if (!(s = receive_sums(f_in))) {
06c28400 310 io_error |= IOERR_GENERAL;
342bfb5e 311 rprintf(FERROR_XFER, "receive_sums failed\n");
f3d6d480 312 exit_cleanup(RERR_PROTOCOL);
2f03f956 313 }
76f79ba7 314
b9f592fb
WD
315 fd = do_open(fname, O_RDONLY, 0);
316 if (fd == -1) {
317 if (errno == ENOENT) {
318 enum logcode c = am_daemon
319 && protocol_version < 28 ? FERROR
3f0211b6 320 : FWARNING;
b9f592fb
WD
321 io_error |= IOERR_VANISHED;
322 rprintf(c, "file has vanished: %s\n",
323 full_fname(fname));
324 } else {
06c28400 325 io_error |= IOERR_GENERAL;
3f0211b6 326 rsyserr(FERROR_XFER, errno,
b9f592fb
WD
327 "send_files failed to open %s",
328 full_fname(fname));
41cc97ae 329 }
b9f592fb 330 free_sums(s);
f3d6d480
WD
331 if (protocol_version >= 30)
332 send_msg_int(MSG_NO_SEND, ndx);
b9f592fb
WD
333 continue;
334 }
e6e3f12f 335
b9f592fb
WD
336 /* map the local file */
337 if (do_fstat(fd, &st) != 0) {
338 io_error |= IOERR_GENERAL;
342bfb5e 339 rsyserr(FERROR_XFER, errno, "fstat failed");
b9f592fb
WD
340 free_sums(s);
341 close(fd);
f397616e 342 exit_cleanup(RERR_FILEIO);
b9f592fb 343 }
11a5a3c7 344
96d910c7 345 if (st.st_size) {
9b919d59
WD
346 int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
347 mbuf = map_file(fd, st.st_size, read_size, s->blength);
96d910c7
WD
348 } else
349 mbuf = NULL;
6902ed17 350
5a18b34d 351 if (DEBUG_GTE(DELTASUM, 2)) {
6d56efa6 352 rprintf(FINFO, "send_files mapped %s%s%s of size %s\n",
adc2476f 353 path,slash,fname, big_num(st.st_size));
6902ed17 354 }
e6e3f12f 355
16edf865
WD
356 write_ndx_and_attrs(f_out, ndx, iflags, fname, file,
357 fnamecmp_type, xname, xlen);
a0545709 358 write_sum_head(f_xfer, s);
b9f592fb 359
5a18b34d 360 if (DEBUG_GTE(DELTASUM, 2))
f3d6d480 361 rprintf(FINFO, "calling match_sums %s%s%s\n", path,slash,fname);
83fff1aa 362
8a9cfb24 363 if (log_before_transfer)
4dde3347 364 log_item(FCLIENT, file, iflags, NULL);
951e826b 365 else if (!am_server && INFO_GTE(NAME, 1) && INFO_EQ(PROGRESS, 1))
f3d6d480 366 rprintf(FCLIENT, "%s\n", fname);
ecc81fce 367
83fff1aa 368 set_compression(fname);
1b7c47cb 369
a0545709 370 match_sums(f_xfer, s, mbuf, st.st_size);
951e826b 371 if (INFO_GTE(PROGRESS, 1))
0394e34a
WD
372 end_progress(st.st_size);
373
4dde3347 374 log_item(log_code, file, iflags, NULL);
6902ed17 375
b9f592fb
WD
376 if (mbuf) {
377 j = unmap_file(mbuf);
378 if (j) {
379 io_error |= IOERR_GENERAL;
3f0211b6 380 rsyserr(FERROR_XFER, j,
b9f592fb
WD
381 "read errors mapping %s",
382 full_fname(fname));
6a7cc46c 383 }
6902ed17 384 }
b9f592fb 385 close(fd);
e6e3f12f 386
2f03f956 387 free_sums(s);
e6e3f12f 388
951e826b 389 if (DEBUG_GTE(SEND, 1))
f3d6d480 390 rprintf(FINFO, "sender finished %s%s%s\n", path,slash,fname);
95306d9d
WD
391
392 /* Flag that we actually sent this entry. */
f3d6d480 393 file->flags |= FLAG_FILE_SENT;
2f03f956 394 }
f3d6d480
WD
395 if (make_backups < 0)
396 make_backups = -make_backups;
2f03f956 397
59924aa8
WD
398 if (io_error != save_io_error && protocol_version >= 30)
399 send_msg_int(MSG_IO_ERROR, io_error);
400
951e826b 401 if (DEBUG_GTE(SEND, 1))
e6e3f12f 402 rprintf(FINFO, "send files finished\n");
2f03f956
AT
403
404 match_report();
405
9ae7a2cd 406 write_ndx(f_out, NDX_DONE);
2f03f956 407}