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