Tweaking the license text a bit more.
[rsync/rsync.git] / receiver.c
... / ...
CommitLineData
1/*
2 * Routines only used by the receiving process.
3 *
4 * Copyright (C) 1996-2000 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 do_progress;
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 read_batch;
35extern int write_batch;
36extern int batch_gen_fd;
37extern int protocol_version;
38extern int relative_paths;
39extern int preserve_hard_links;
40extern int preserve_perms;
41extern int preserve_xattrs;
42extern int basis_dir_cnt;
43extern int make_backups;
44extern int cleanup_got_literal;
45extern int remove_source_files;
46extern int append_mode;
47extern int sparse_files;
48extern int keep_partial;
49extern int checksum_seed;
50extern int inplace;
51extern int delay_updates;
52extern mode_t orig_umask;
53extern struct stats stats;
54extern char *tmpdir;
55extern char *partial_dir;
56extern char *basis_dir[];
57extern struct file_list *cur_flist, *first_flist, *dir_flist;
58extern struct filter_list_struct server_filter_list;
59
60static struct bitbag *delayed_bits = NULL;
61static int phase = 0, redoing = 0;
62/* We're either updating the basis file or an identical copy: */
63static int updating_basis;
64
65/*
66 * get_tmpname() - create a tmp filename for a given filename
67 *
68 * If a tmpdir is defined, use that as the directory to
69 * put it in. Otherwise, the tmp filename is in the same
70 * directory as the given name. Note that there may be no
71 * directory at all in the given name!
72 *
73 * The tmp filename is basically the given filename with a
74 * dot prepended, and .XXXXXX appended (for mkstemp() to
75 * put its unique gunk in). Take care to not exceed
76 * either the MAXPATHLEN or NAME_MAX, esp. the last, as
77 * the basename basically becomes 8 chars longer. In that
78 * case, the original name is shortened sufficiently to
79 * make it all fit.
80 *
81 * Of course, there's no real reason for the tmp name to
82 * look like the original, except to satisfy us humans.
83 * As long as it's unique, rsync will work.
84 */
85
86int get_tmpname(char *fnametmp, char *fname)
87{
88 int maxname, added, length = 0;
89 char *f;
90
91 if (tmpdir) {
92 /* Note: this can't overflow, so the return value is safe */
93 length = strlcpy(fnametmp, tmpdir, MAXPATHLEN - 2);
94 fnametmp[length++] = '/';
95 }
96
97 if ((f = strrchr(fname, '/')) != NULL) {
98 ++f;
99 if (!tmpdir) {
100 length = f - fname;
101 /* copy up to and including the slash */
102 strlcpy(fnametmp, fname, length + 1);
103 }
104 } else
105 f = fname;
106 fnametmp[length++] = '.';
107
108 /* The maxname value is bufsize, and includes space for the '\0'.
109 * (Note that NAME_MAX get -8 for the leading '.' above.) */
110 maxname = MIN(MAXPATHLEN - 7 - length, NAME_MAX - 8);
111
112 if (maxname < 1) {
113 rprintf(FERROR, "temporary filename too long: %s\n", fname);
114 fnametmp[0] = '\0';
115 return 0;
116 }
117
118 added = strlcpy(fnametmp + length, f, maxname);
119 if (added >= maxname)
120 added = maxname - 1;
121 memcpy(fnametmp + length + added, ".XXXXXX", 8);
122
123 return 1;
124}
125
126
127static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r,
128 const char *fname, int fd, OFF_T total_size)
129{
130 static char file_sum1[MAX_DIGEST_LEN];
131 static char file_sum2[MAX_DIGEST_LEN];
132 struct map_struct *mapbuf;
133 struct sum_struct sum;
134 int32 len, sum_len;
135 OFF_T offset = 0;
136 OFF_T offset2;
137 char *data;
138 int32 i;
139 char *map = NULL;
140
141 read_sum_head(f_in, &sum);
142
143 if (fd_r >= 0 && size_r > 0) {
144 int32 read_size = MAX(sum.blength * 2, 16*1024);
145 mapbuf = map_file(fd_r, size_r, read_size, sum.blength);
146 if (verbose > 2) {
147 rprintf(FINFO, "recv mapped %s of size %.0f\n",
148 fname_r, (double)size_r);
149 }
150 } else
151 mapbuf = NULL;
152
153 sum_init(checksum_seed);
154
155 if (append_mode > 0) {
156 OFF_T j;
157 sum.flength = (OFF_T)sum.count * sum.blength;
158 if (sum.remainder)
159 sum.flength -= sum.blength - sum.remainder;
160 for (j = CHUNK_SIZE; j < sum.flength; j += CHUNK_SIZE) {
161 if (do_progress)
162 show_progress(offset, total_size);
163 sum_update(map_ptr(mapbuf, offset, CHUNK_SIZE),
164 CHUNK_SIZE);
165 offset = j;
166 }
167 if (offset < sum.flength) {
168 int32 len = (int32)(sum.flength - offset);
169 if (do_progress)
170 show_progress(offset, total_size);
171 sum_update(map_ptr(mapbuf, offset, len), len);
172 offset = sum.flength;
173 }
174 if (fd != -1 && (j = do_lseek(fd, offset, SEEK_SET)) != offset) {
175 rsyserr(FERROR, errno, "lseek of %s returned %.0f, not %.0f",
176 full_fname(fname), (double)j, (double)offset);
177 exit_cleanup(RERR_FILEIO);
178 }
179 }
180
181 while ((i = recv_token(f_in, &data)) != 0) {
182 if (do_progress)
183 show_progress(offset, total_size);
184
185 if (i > 0) {
186 if (verbose > 3) {
187 rprintf(FINFO,"data recv %d at %.0f\n",
188 i,(double)offset);
189 }
190
191 stats.literal_data += i;
192 cleanup_got_literal = 1;
193
194 sum_update(data, i);
195
196 if (fd != -1 && write_file(fd,data,i) != i)
197 goto report_write_error;
198 offset += i;
199 continue;
200 }
201
202 i = -(i+1);
203 offset2 = i * (OFF_T)sum.blength;
204 len = sum.blength;
205 if (i == (int)sum.count-1 && sum.remainder != 0)
206 len = sum.remainder;
207
208 stats.matched_data += len;
209
210 if (verbose > 3) {
211 rprintf(FINFO,
212 "chunk[%d] of size %ld at %.0f offset=%.0f\n",
213 i, (long)len, (double)offset2, (double)offset);
214 }
215
216 if (mapbuf) {
217 map = map_ptr(mapbuf,offset2,len);
218
219 see_token(map, len);
220 sum_update(map, len);
221 }
222
223 if (updating_basis) {
224 if (offset == offset2 && fd != -1) {
225 OFF_T pos;
226 if (flush_write_file(fd) < 0)
227 goto report_write_error;
228 offset += len;
229 if ((pos = do_lseek(fd, len, SEEK_CUR)) != offset) {
230 rsyserr(FERROR, errno,
231 "lseek of %s returned %.0f, not %.0f",
232 full_fname(fname),
233 (double)pos, (double)offset);
234 exit_cleanup(RERR_FILEIO);
235 }
236 continue;
237 }
238 }
239 if (fd != -1 && map && write_file(fd, map, len) != (int)len)
240 goto report_write_error;
241 offset += len;
242 }
243
244 if (flush_write_file(fd) < 0)
245 goto report_write_error;
246
247#ifdef HAVE_FTRUNCATE
248 if (inplace && fd != -1)
249 ftruncate(fd, offset);
250#endif
251
252 if (do_progress)
253 end_progress(total_size);
254
255 if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
256 report_write_error:
257 rsyserr(FERROR, errno, "write failed on %s",
258 full_fname(fname));
259 exit_cleanup(RERR_FILEIO);
260 }
261
262 sum_len = sum_end(file_sum1);
263
264 if (mapbuf)
265 unmap_file(mapbuf);
266
267 read_buf(f_in, file_sum2, sum_len);
268 if (verbose > 2)
269 rprintf(FINFO,"got file_sum\n");
270 if (fd != -1 && memcmp(file_sum1, file_sum2, sum_len) != 0)
271 return 0;
272 return 1;
273}
274
275
276static void discard_receive_data(int f_in, OFF_T length)
277{
278 receive_data(f_in, NULL, -1, 0, NULL, -1, length);
279}
280
281static void handle_delayed_updates(char *local_name)
282{
283 char *fname, *partialptr;
284 int ndx;
285
286 for (ndx = -1; (ndx = bitbag_next_bit(delayed_bits, ndx)) >= 0; ) {
287 struct file_struct *file = cur_flist->files[ndx];
288 fname = local_name ? local_name : f_name(file, NULL);
289 if ((partialptr = partial_dir_fname(fname)) != NULL) {
290 if (make_backups > 0 && !make_backup(fname))
291 continue;
292 if (verbose > 2) {
293 rprintf(FINFO, "renaming %s to %s\n",
294 partialptr, fname);
295 }
296 /* We don't use robust_rename() here because the
297 * partial-dir must be on the same drive. */
298 if (do_rename(partialptr, fname) < 0) {
299 rsyserr(FERROR, errno,
300 "rename failed for %s (from %s)",
301 full_fname(fname), partialptr);
302 } else {
303 if (remove_source_files
304 || (preserve_hard_links && F_IS_HLINKED(file)))
305 send_msg_int(MSG_SUCCESS, ndx);
306 handle_partial_dir(partialptr, PDIR_DELETE);
307 }
308 }
309 }
310}
311
312static int get_next_gen_ndx(int fd, int next_gen_ndx, int desired_ndx)
313{
314 while (next_gen_ndx < desired_ndx) {
315 if (next_gen_ndx >= 0) {
316 rprintf(FINFO,
317 "(No batched update for%s \"%s\")\n",
318 redoing ? " resend of" : "",
319 f_name(cur_flist->files[next_gen_ndx], NULL));
320 }
321 next_gen_ndx = read_int(fd);
322 if (next_gen_ndx == -1) {
323 if (inc_recurse)
324 next_gen_ndx = first_flist->prev->used + first_flist->prev->ndx_start;
325 else
326 next_gen_ndx = cur_flist->used;
327 }
328 }
329 return next_gen_ndx;
330}
331
332/**
333 * main routine for receiver process.
334 *
335 * Receiver process runs on the same host as the generator process. */
336int recv_files(int f_in, char *local_name)
337{
338 int next_gen_ndx = -1;
339 int fd1,fd2;
340 STRUCT_STAT st;
341 int iflags, xlen;
342 char *fname, fbuf[MAXPATHLEN];
343 char xname[MAXPATHLEN];
344 char fnametmp[MAXPATHLEN];
345 char *fnamecmp, *partialptr;
346 char fnamecmpbuf[MAXPATHLEN];
347 uchar fnamecmp_type;
348 struct file_struct *file;
349 struct stats initial_stats;
350 int itemizing = am_server ? logfile_format_has_i : stdout_format_has_i;
351 enum logcode log_code = log_before_transfer ? FLOG : FINFO;
352 int max_phase = protocol_version >= 29 ? 2 : 1;
353 int dflt_perms = (ACCESSPERMS & ~orig_umask);
354#ifdef SUPPORT_ACLS
355 const char *parent_dirname = "";
356#endif
357 int ndx, recv_ok;
358
359 if (verbose > 2)
360 rprintf(FINFO, "recv_files(%d) starting\n", cur_flist->used);
361
362 if (delay_updates)
363 delayed_bits = bitbag_create(cur_flist->used + 1);
364
365 updating_basis = inplace;
366
367 while (1) {
368 cleanup_disable();
369
370 /* This call also sets cur_flist. */
371 ndx = read_ndx_and_attrs(f_in, &iflags, &fnamecmp_type,
372 xname, &xlen);
373 if (ndx == NDX_DONE) {
374 if (inc_recurse && first_flist) {
375 flist_free(first_flist);
376 if (first_flist)
377 continue;
378 }
379 if (read_batch && cur_flist) {
380 int high = inc_recurse
381 ? first_flist->prev->used + first_flist->prev->ndx_start
382 : cur_flist->used;
383 get_next_gen_ndx(batch_gen_fd, next_gen_ndx, high);
384 next_gen_ndx = -1;
385 }
386 if (++phase > max_phase)
387 break;
388 if (verbose > 2)
389 rprintf(FINFO, "recv_files phase=%d\n", phase);
390 if (phase == 2 && delay_updates)
391 handle_delayed_updates(local_name);
392 send_msg(MSG_DONE, "", 0, 0);
393 continue;
394 }
395
396 if (ndx - cur_flist->ndx_start >= 0)
397 file = cur_flist->files[ndx - cur_flist->ndx_start];
398 else
399 file = dir_flist->files[cur_flist->parent_ndx];
400 fname = local_name ? local_name : f_name(file, fbuf);
401
402 if (verbose > 2)
403 rprintf(FINFO, "recv_files(%s)\n", fname);
404
405#ifdef SUPPORT_XATTRS
406 if (iflags & ITEM_REPORT_XATTR && !dry_run)
407 recv_xattr_request(file, f_in);
408#endif
409
410 if (!(iflags & ITEM_TRANSFER)) {
411 maybe_log_item(file, iflags, itemizing, xname);
412#ifdef SUPPORT_XATTRS
413 if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && !dry_run)
414 set_file_attrs(fname, file, NULL, fname, 0);
415#endif
416 continue;
417 }
418 if (phase == 2) {
419 rprintf(FERROR,
420 "got transfer request in phase 2 [%s]\n",
421 who_am_i());
422 exit_cleanup(RERR_PROTOCOL);
423 }
424
425 if (file->flags & FLAG_FILE_SENT) {
426 if (csum_length == SHORT_SUM_LENGTH) {
427 if (keep_partial && !partial_dir)
428 make_backups = -make_backups; /* prevents double backup */
429 append_mode = -append_mode;
430 sparse_files = -sparse_files;
431 csum_length = SUM_LENGTH;
432 redoing = 1;
433 }
434 } else {
435 if (csum_length != SHORT_SUM_LENGTH) {
436 if (keep_partial && !partial_dir)
437 make_backups = -make_backups;
438 append_mode = -append_mode;
439 sparse_files = -sparse_files;
440 csum_length = SHORT_SUM_LENGTH;
441 redoing = 0;
442 }
443 }
444
445 stats.current_file_index = ndx;
446 stats.num_transferred_files++;
447 stats.total_transferred_size += F_LENGTH(file);
448 cleanup_got_literal = 0;
449
450 if (server_filter_list.head
451 && check_filter(&server_filter_list, fname, 0) < 0) {
452 rprintf(FERROR, "attempt to hack rsync failed.\n");
453 exit_cleanup(RERR_PROTOCOL);
454 }
455
456 if (!do_xfers) { /* log the transfer */
457 log_item(FCLIENT, file, &stats, iflags, NULL);
458 if (read_batch)
459 discard_receive_data(f_in, F_LENGTH(file));
460 continue;
461 }
462 if (write_batch < 0) {
463 log_item(FINFO, file, &stats, iflags, NULL);
464 if (!am_server)
465 discard_receive_data(f_in, F_LENGTH(file));
466 continue;
467 }
468
469 if (read_batch) {
470 next_gen_ndx = get_next_gen_ndx(batch_gen_fd, next_gen_ndx, ndx);
471 if (ndx < next_gen_ndx) {
472 rprintf(FINFO,
473 "(Skipping batched update for \"%s\")\n",
474 fname);
475 discard_receive_data(f_in, F_LENGTH(file));
476 if (inc_recurse)
477 send_msg_int(MSG_NO_SEND, ndx);
478 continue;
479 }
480 next_gen_ndx = -1;
481 }
482
483 partialptr = partial_dir ? partial_dir_fname(fname) : fname;
484
485 if (protocol_version >= 29) {
486 switch (fnamecmp_type) {
487 case FNAMECMP_FNAME:
488 fnamecmp = fname;
489 break;
490 case FNAMECMP_PARTIAL_DIR:
491 fnamecmp = partialptr;
492 break;
493 case FNAMECMP_BACKUP:
494 fnamecmp = get_backup_name(fname);
495 break;
496 case FNAMECMP_FUZZY:
497 updating_basis = 0;
498 if (file->dirname) {
499 pathjoin(fnamecmpbuf, MAXPATHLEN,
500 file->dirname, xname);
501 fnamecmp = fnamecmpbuf;
502 } else
503 fnamecmp = xname;
504 break;
505 default:
506 updating_basis = 0;
507 if (fnamecmp_type >= basis_dir_cnt) {
508 rprintf(FERROR,
509 "invalid basis_dir index: %d.\n",
510 fnamecmp_type);
511 exit_cleanup(RERR_PROTOCOL);
512 }
513 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
514 basis_dir[fnamecmp_type], fname);
515 fnamecmp = fnamecmpbuf;
516 break;
517 }
518 if (!fnamecmp || (server_filter_list.head
519 && check_filter(&server_filter_list, fname, 0) < 0))
520 fnamecmp = fname;
521 } else {
522 /* Reminder: --inplace && --partial-dir are never
523 * enabled at the same time. */
524 if (inplace && make_backups > 0) {
525 if (!(fnamecmp = get_backup_name(fname)))
526 fnamecmp = fname;
527 } else if (partial_dir && partialptr)
528 fnamecmp = partialptr;
529 else
530 fnamecmp = fname;
531 }
532
533 initial_stats = stats;
534
535 /* open the file */
536 fd1 = do_open(fnamecmp, O_RDONLY, 0);
537
538 if (fd1 == -1 && protocol_version < 29) {
539 if (fnamecmp != fname) {
540 fnamecmp = fname;
541 fd1 = do_open(fnamecmp, O_RDONLY, 0);
542 }
543
544 if (fd1 == -1 && basis_dir[0]) {
545 /* pre-29 allowed only one alternate basis */
546 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
547 basis_dir[0], fname);
548 fnamecmp = fnamecmpbuf;
549 fd1 = do_open(fnamecmp, O_RDONLY, 0);
550 }
551 }
552
553 if (fd1 == -1) {
554 st.st_mode = 0;
555 st.st_size = 0;
556 } else if (do_fstat(fd1,&st) != 0) {
557 rsyserr(FERROR, errno, "fstat %s failed",
558 full_fname(fnamecmp));
559 discard_receive_data(f_in, F_LENGTH(file));
560 close(fd1);
561 if (inc_recurse)
562 send_msg_int(MSG_NO_SEND, ndx);
563 continue;
564 }
565
566 if (fd1 != -1 && S_ISDIR(st.st_mode) && fnamecmp == fname) {
567 /* this special handling for directories
568 * wouldn't be necessary if robust_rename()
569 * and the underlying robust_unlink could cope
570 * with directories
571 */
572 rprintf(FERROR,"recv_files: %s is a directory\n",
573 full_fname(fnamecmp));
574 discard_receive_data(f_in, F_LENGTH(file));
575 close(fd1);
576 if (inc_recurse)
577 send_msg_int(MSG_NO_SEND, ndx);
578 continue;
579 }
580
581 if (fd1 != -1 && !S_ISREG(st.st_mode)) {
582 close(fd1);
583 fd1 = -1;
584 }
585
586 /* If we're not preserving permissions, change the file-list's
587 * mode based on the local permissions and some heuristics. */
588 if (!preserve_perms) {
589 int exists = fd1 != -1;
590#ifdef SUPPORT_ACLS
591 const char *dn = file->dirname ? file->dirname : ".";
592 if (parent_dirname != dn
593 && strcmp(parent_dirname, dn) != 0) {
594 dflt_perms = default_perms_for_dir(dn);
595 parent_dirname = dn;
596 }
597#endif
598 file->mode = dest_mode(file->mode, st.st_mode,
599 dflt_perms, exists);
600 }
601
602 /* We now check to see if we are writing the file "inplace" */
603 if (inplace) {
604 fd2 = do_open(fname, O_WRONLY|O_CREAT, 0600);
605 if (fd2 == -1) {
606 rsyserr(FERROR, errno, "open %s failed",
607 full_fname(fname));
608 discard_receive_data(f_in, F_LENGTH(file));
609 if (fd1 != -1)
610 close(fd1);
611 if (inc_recurse)
612 send_msg_int(MSG_NO_SEND, ndx);
613 continue;
614 }
615 } else {
616 if (!get_tmpname(fnametmp,fname)) {
617 discard_receive_data(f_in, F_LENGTH(file));
618 if (fd1 != -1)
619 close(fd1);
620 if (inc_recurse)
621 send_msg_int(MSG_NO_SEND, ndx);
622 continue;
623 }
624
625 /* we initially set the perms without the
626 * setuid/setgid bits to ensure that there is no race
627 * condition. They are then correctly updated after
628 * the lchown. Thanks to snabb@epipe.fi for pointing
629 * this out. We also set it initially without group
630 * access because of a similar race condition. */
631 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
632
633 /* in most cases parent directories will already exist
634 * because their information should have been previously
635 * transferred, but that may not be the case with -R */
636 if (fd2 == -1 && relative_paths && errno == ENOENT
637 && create_directory_path(fnametmp) == 0) {
638 /* Get back to name with XXXXXX in it. */
639 get_tmpname(fnametmp, fname);
640 fd2 = do_mkstemp(fnametmp, file->mode & INITACCESSPERMS);
641 }
642 if (fd2 == -1) {
643 rsyserr(FERROR, errno, "mkstemp %s failed",
644 full_fname(fnametmp));
645 discard_receive_data(f_in, F_LENGTH(file));
646 if (fd1 != -1)
647 close(fd1);
648 if (inc_recurse)
649 send_msg_int(MSG_NO_SEND, ndx);
650 continue;
651 }
652
653 cleanup_set(fnametmp, partialptr, file, fd1, fd2);
654 }
655
656 /* log the transfer */
657 if (log_before_transfer)
658 log_item(FCLIENT, file, &initial_stats, iflags, NULL);
659 else if (!am_server && verbose && do_progress)
660 rprintf(FINFO, "%s\n", fname);
661
662 /* recv file data */
663 recv_ok = receive_data(f_in, fnamecmp, fd1, st.st_size,
664 fname, fd2, F_LENGTH(file));
665
666 log_item(log_code, file, &initial_stats, iflags, NULL);
667
668 if (fd1 != -1)
669 close(fd1);
670 if (close(fd2) < 0) {
671 rsyserr(FERROR, errno, "close failed on %s",
672 full_fname(fnametmp));
673 exit_cleanup(RERR_FILEIO);
674 }
675
676 if ((recv_ok && (!delay_updates || !partialptr)) || inplace) {
677 char *temp_copy_name;
678 if (partialptr == fname)
679 partialptr = temp_copy_name = NULL;
680 else if (*partial_dir == '/')
681 temp_copy_name = NULL;
682 else
683 temp_copy_name = partialptr;
684 finish_transfer(fname, fnametmp, fnamecmp,
685 temp_copy_name, file, recv_ok, 1);
686 if (fnamecmp == partialptr) {
687 do_unlink(partialptr);
688 handle_partial_dir(partialptr, PDIR_DELETE);
689 }
690 } else if (keep_partial && partialptr
691 && handle_partial_dir(partialptr, PDIR_CREATE)) {
692 finish_transfer(partialptr, fnametmp, fnamecmp, NULL,
693 file, recv_ok, !partial_dir);
694 if (delay_updates && recv_ok) {
695 bitbag_set_bit(delayed_bits, ndx);
696 recv_ok = -1;
697 }
698 } else {
699 partialptr = NULL;
700 do_unlink(fnametmp);
701 }
702
703 cleanup_disable();
704
705 if (recv_ok > 0) {
706 if (remove_source_files || inc_recurse
707 || (preserve_hard_links && F_IS_HLINKED(file)))
708 send_msg_int(MSG_SUCCESS, ndx);
709 } else if (!recv_ok) {
710 enum logcode msgtype = redoing || read_batch ? FERROR : FINFO;
711 if (msgtype == FERROR || verbose) {
712 char *errstr, *redostr, *keptstr;
713 if (!(keep_partial && partialptr) && !inplace)
714 keptstr = "discarded";
715 else if (partial_dir)
716 keptstr = "put into partial-dir";
717 else
718 keptstr = "retained";
719 if (msgtype == FERROR) {
720 errstr = "ERROR";
721 redostr = "";
722 } else {
723 errstr = "WARNING";
724 redostr = " (will try again)";
725 }
726 rprintf(msgtype,
727 "%s: %s failed verification -- update %s%s.\n",
728 errstr, fname, keptstr, redostr);
729 }
730 if (!redoing) {
731 send_msg_int(MSG_REDO, ndx);
732 file->flags |= FLAG_FILE_SENT;
733 } else if (inc_recurse)
734 send_msg_int(MSG_NO_SEND, ndx);
735 }
736 }
737 if (make_backups < 0)
738 make_backups = -make_backups;
739
740 if (phase == 2 && delay_updates) /* for protocol_version < 29 */
741 handle_delayed_updates(local_name);
742
743 if (verbose > 2)
744 rprintf(FINFO,"recv_files finished\n");
745
746 return 0;
747}