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