If we get an ndx that is 1 entry prior to an incremental flist's
[rsync/rsync.git] / generator.c
... / ...
CommitLineData
1/*
2 * Routines that are exclusive to the generator process.
3 *
4 * Copyright (C) 1996-2000 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2002 Martin Pool <mbp@samba.org>
7 * Copyright (C) 2003-2007 Wayne Davison
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 3 as
11 * published by the Free Software Foundation.
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 stdout_format_has_i;
28extern int logfile_format_has_i;
29extern int am_root;
30extern int am_server;
31extern int am_daemon;
32extern int inc_recurse;
33extern int do_progress;
34extern int relative_paths;
35extern int implied_dirs;
36extern int keep_dirlinks;
37extern int preserve_acls;
38extern int preserve_xattrs;
39extern int preserve_links;
40extern int preserve_devices;
41extern int preserve_specials;
42extern int preserve_hard_links;
43extern int preserve_perms;
44extern int preserve_times;
45extern int omit_dir_times;
46extern int uid_ndx;
47extern int gid_ndx;
48extern int delete_mode;
49extern int delete_before;
50extern int delete_during;
51extern int delete_after;
52extern int msgdone_cnt;
53extern int ignore_errors;
54extern int remove_source_files;
55extern int delay_updates;
56extern int update_only;
57extern int ignore_existing;
58extern int ignore_non_existing;
59extern int inplace;
60extern int append_mode;
61extern int make_backups;
62extern int csum_length;
63extern int ignore_times;
64extern int size_only;
65extern OFF_T max_size;
66extern OFF_T min_size;
67extern int io_error;
68extern int flist_eof;
69extern int allowed_lull;
70extern int sock_f_out;
71extern int ignore_timeout;
72extern int protocol_version;
73extern int file_total;
74extern int fuzzy_basis;
75extern int always_checksum;
76extern int checksum_len;
77extern char *partial_dir;
78extern char *basis_dir[];
79extern int compare_dest;
80extern int copy_dest;
81extern int link_dest;
82extern int whole_file;
83extern int list_only;
84extern int new_root_dir;
85extern int read_batch;
86extern int safe_symlinks;
87extern long block_size; /* "long" because popt can't set an int32. */
88extern int max_delete;
89extern int force_delete;
90extern int one_file_system;
91extern struct stats stats;
92extern dev_t filesystem_dev;
93extern mode_t orig_umask;
94extern char *backup_dir;
95extern char *backup_suffix;
96extern int backup_suffix_len;
97extern struct file_list *cur_flist, *first_flist, *dir_flist;
98extern struct filter_list_struct server_filter_list;
99#ifdef ICONV_OPTION
100extern int ic_ndx;
101#endif
102
103int ignore_perishable = 0;
104int non_perishable_cnt = 0;
105int maybe_ATTRS_REPORT = 0;
106
107static dev_t dev_zero;
108static int deletion_count = 0; /* used to implement --max-delete */
109static int deldelay_size = 0, deldelay_cnt = 0;
110static char *deldelay_buf = NULL;
111static int deldelay_fd = -1;
112static int lull_mod;
113static int dir_tweaking;
114static int need_retouch_dir_times;
115static const char *solo_file = NULL;
116
117/* For calling delete_item() and delete_dir_contents(). */
118#define DEL_RECURSE (1<<1) /* recurse */
119#define DEL_DIR_IS_EMPTY (1<<2) /* internal delete_FUNCTIONS use only */
120
121enum nonregtype {
122 TYPE_DIR, TYPE_SPECIAL, TYPE_DEVICE, TYPE_SYMLINK
123};
124
125enum delret {
126 DR_SUCCESS = 0, DR_FAILURE, DR_AT_LIMIT, DR_NOT_EMPTY
127};
128
129/* Forward declaration for delete_item(). */
130static enum delret delete_dir_contents(char *fname, int flags);
131
132
133static int is_backup_file(char *fn)
134{
135 int k = strlen(fn) - backup_suffix_len;
136 return k > 0 && strcmp(fn+k, backup_suffix) == 0;
137}
138
139/* Delete a file or directory. If DEL_RECURSE is set in the flags, this will
140 * delete recursively.
141 *
142 * Note that fbuf must point to a MAXPATHLEN buffer if the mode indicates it's
143 * a directory! (The buffer is used for recursion, but returned unchanged.)
144 */
145static enum delret delete_item(char *fbuf, int mode, char *replace, int flags)
146{
147 enum delret ret;
148 char *what;
149 int ok;
150
151 if (verbose > 2) {
152 rprintf(FINFO, "delete_item(%s) mode=%o flags=%d\n",
153 fbuf, mode, flags);
154 }
155
156 if (S_ISDIR(mode) && !(flags & DEL_DIR_IS_EMPTY)) {
157 ignore_perishable = 1;
158 /* If DEL_RECURSE is not set, this just reports emptiness. */
159 ret = delete_dir_contents(fbuf, flags);
160 ignore_perishable = 0;
161 if (ret == DR_NOT_EMPTY || ret == DR_AT_LIMIT)
162 goto check_ret;
163 /* OK: try to delete the directory. */
164 }
165
166 if (!replace && max_delete >= 0 && ++deletion_count > max_delete)
167 return DR_AT_LIMIT;
168
169 if (S_ISDIR(mode)) {
170 what = "rmdir";
171 ok = do_rmdir(fbuf) == 0;
172 } else if (make_backups > 0 && (backup_dir || !is_backup_file(fbuf))) {
173 what = "make_backup";
174 ok = make_backup(fbuf);
175 } else {
176 what = "unlink";
177 ok = robust_unlink(fbuf) == 0;
178 }
179
180 if (ok) {
181 if (!replace)
182 log_delete(fbuf, mode);
183 ret = DR_SUCCESS;
184 } else {
185 if (S_ISDIR(mode) && errno == ENOTEMPTY) {
186 rprintf(FINFO, "cannot delete non-empty directory: %s\n",
187 fbuf);
188 ret = DR_NOT_EMPTY;
189 } else if (errno != ENOENT) {
190 rsyserr(FERROR, errno, "delete_file: %s(%s) failed",
191 what, fbuf);
192 ret = DR_FAILURE;
193 } else {
194 deletion_count--;
195 ret = DR_SUCCESS;
196 }
197 }
198
199 check_ret:
200 if (replace && ret != DR_SUCCESS) {
201 rprintf(FERROR, "could not make way for new %s: %s\n",
202 replace, fbuf);
203 }
204 return ret;
205}
206
207/* The directory is about to be deleted: if DEL_RECURSE is given, delete all
208 * its contents, otherwise just checks for content. Returns DR_SUCCESS or
209 * DR_NOT_EMPTY. Note that fname must point to a MAXPATHLEN buffer! (The
210 * buffer is used for recursion, but returned unchanged.)
211 */
212static enum delret delete_dir_contents(char *fname, int flags)
213{
214 struct file_list *dirlist;
215 enum delret ret;
216 unsigned remainder;
217 void *save_filters;
218 int j, dlen;
219 char *p;
220
221 if (verbose > 3) {
222 rprintf(FINFO, "delete_dir_contents(%s) flags=%d\n",
223 fname, flags);
224 }
225
226 dlen = strlen(fname);
227 save_filters = push_local_filters(fname, dlen);
228
229 non_perishable_cnt = 0;
230 dirlist = get_dirlist(fname, dlen, 0);
231 ret = non_perishable_cnt ? DR_NOT_EMPTY : DR_SUCCESS;
232
233 if (!dirlist->used)
234 goto done;
235
236 if (!(flags & DEL_RECURSE)) {
237 ret = DR_NOT_EMPTY;
238 goto done;
239 }
240
241 p = fname + dlen;
242 if (dlen != 1 || *fname != '/')
243 *p++ = '/';
244 remainder = MAXPATHLEN - (p - fname);
245
246 /* We do our own recursion, so make delete_item() non-recursive. */
247 flags = (flags & ~DEL_RECURSE) | DEL_DIR_IS_EMPTY;
248
249 for (j = dirlist->used; j--; ) {
250 struct file_struct *fp = dirlist->files[j];
251
252 if (fp->flags & FLAG_MOUNT_DIR) {
253 if (verbose > 1) {
254 rprintf(FINFO,
255 "mount point, %s, pins parent directory\n",
256 f_name(fp, NULL));
257 }
258 ret = DR_NOT_EMPTY;
259 continue;
260 }
261
262 strlcpy(p, fp->basename, remainder);
263 /* Save stack by recursing to ourself directly. */
264 if (S_ISDIR(fp->mode)
265 && delete_dir_contents(fname, flags | DEL_RECURSE) != DR_SUCCESS)
266 ret = DR_NOT_EMPTY;
267 if (delete_item(fname, fp->mode, NULL, flags) != DR_SUCCESS)
268 ret = DR_NOT_EMPTY;
269 }
270
271 fname[dlen] = '\0';
272
273 done:
274 flist_free(dirlist);
275 pop_local_filters(save_filters);
276
277 if (ret == DR_NOT_EMPTY) {
278 rprintf(FINFO, "cannot delete non-empty directory: %s\n",
279 fname);
280 }
281 return ret;
282}
283
284static int start_delete_delay_temp(void)
285{
286 char fnametmp[MAXPATHLEN];
287 int save_dry_run = dry_run;
288
289 dry_run = 0;
290 if (!get_tmpname(fnametmp, "deldelay")
291 || (deldelay_fd = do_mkstemp(fnametmp, 0600)) < 0) {
292 rprintf(FINFO, "NOTE: Unable to create delete-delay temp file%s.\n",
293 inc_recurse ? "" : " -- switching to --delete-after");
294 delete_during = 0;
295 delete_after = !inc_recurse;
296 dry_run = save_dry_run;
297 return 0;
298 }
299 unlink(fnametmp);
300 dry_run = save_dry_run;
301 return 1;
302}
303
304static int flush_delete_delay(void)
305{
306 if (write(deldelay_fd, deldelay_buf, deldelay_cnt) != deldelay_cnt) {
307 rsyserr(FERROR, errno, "flush of delete-delay buffer");
308 delete_during = 0;
309 delete_after = 1;
310 close(deldelay_fd);
311 return 0;
312 }
313 deldelay_cnt = 0;
314 return 1;
315}
316
317static int remember_delete(struct file_struct *file, const char *fname)
318{
319 int len;
320
321 while (1) {
322 len = snprintf(deldelay_buf + deldelay_cnt,
323 deldelay_size - deldelay_cnt,
324 "%x %s%c", (int)file->mode, fname, '\0');
325 if ((deldelay_cnt += len) <= deldelay_size)
326 break;
327 if (deldelay_fd < 0 && !start_delete_delay_temp())
328 return 0;
329 deldelay_cnt -= len;
330 if (!flush_delete_delay())
331 return 0;
332 }
333
334 return 1;
335}
336
337static int read_delay_line(char *buf)
338{
339 static int read_pos = 0;
340 int j, len, mode;
341 char *bp, *past_space;
342
343 while (1) {
344 for (j = read_pos; j < deldelay_cnt && deldelay_buf[j]; j++) {}
345 if (j < deldelay_cnt)
346 break;
347 if (deldelay_fd < 0) {
348 if (j > read_pos)
349 goto invalid_data;
350 return -1;
351 }
352 deldelay_cnt -= read_pos;
353 if (deldelay_cnt == deldelay_size)
354 goto invalid_data;
355 if (deldelay_cnt && read_pos) {
356 memmove(deldelay_buf, deldelay_buf + read_pos,
357 deldelay_cnt);
358 }
359 len = read(deldelay_fd, deldelay_buf + deldelay_cnt,
360 deldelay_size - deldelay_cnt);
361 if (len == 0) {
362 if (deldelay_cnt) {
363 rprintf(FERROR,
364 "ERROR: unexpected EOF in delete-delay file.\n");
365 }
366 return -1;
367 }
368 if (len < 0) {
369 rsyserr(FERROR, errno,
370 "reading delete-delay file");
371 return -1;
372 }
373 deldelay_cnt += len;
374 read_pos = 0;
375 }
376
377 bp = deldelay_buf + read_pos;
378
379 if (sscanf(bp, "%x ", &mode) != 1) {
380 invalid_data:
381 rprintf(FERROR, "ERROR: invalid data in delete-delay file.\n");
382 return -1;
383 }
384 past_space = strchr(bp, ' ') + 1;
385 len = j - read_pos - (past_space - bp) + 1; /* count the '\0' */
386 read_pos = j + 1;
387
388 if (len > MAXPATHLEN) {
389 rprintf(FERROR, "ERROR: filename too long in delete-delay file.\n");
390 return -1;
391 }
392
393 /* The caller needs the name in a MAXPATHLEN buffer, so we copy it
394 * instead of returning a pointer to our buffer. */
395 memcpy(buf, past_space, len);
396
397 return mode;
398}
399
400static void do_delayed_deletions(char *delbuf)
401{
402 int mode;
403
404 if (deldelay_fd >= 0) {
405 if (deldelay_cnt && !flush_delete_delay())
406 return;
407 lseek(deldelay_fd, 0, 0);
408 }
409 while ((mode = read_delay_line(delbuf)) >= 0)
410 delete_item(delbuf, mode, NULL, DEL_RECURSE);
411 if (deldelay_fd >= 0)
412 close(deldelay_fd);
413}
414
415/* This function is used to implement per-directory deletion, and is used by
416 * all the --delete-WHEN options. Note that the fbuf pointer must point to a
417 * MAXPATHLEN buffer with the name of the directory in it (the functions we
418 * call will append names onto the end, but the old dir value will be restored
419 * on exit). */
420static void delete_in_dir(char *fbuf, struct file_struct *file, dev_t *fs_dev)
421{
422 static int already_warned = 0;
423 struct file_list *dirlist;
424 char delbuf[MAXPATHLEN];
425 int dlen, i;
426
427 if (!fbuf) {
428 change_local_filter_dir(NULL, 0, 0);
429 return;
430 }
431
432 if (verbose > 2)
433 rprintf(FINFO, "delete_in_dir(%s)\n", fbuf);
434
435 if (allowed_lull)
436 maybe_send_keepalive();
437
438 if (io_error && !ignore_errors) {
439 if (already_warned)
440 return;
441 rprintf(FINFO,
442 "IO error encountered -- skipping file deletion\n");
443 already_warned = 1;
444 return;
445 }
446
447 dlen = strlen(fbuf);
448 change_local_filter_dir(fbuf, dlen, F_DEPTH(file));
449
450 if (one_file_system) {
451 if (file->flags & FLAG_TOP_DIR)
452 filesystem_dev = *fs_dev;
453 else if (filesystem_dev != *fs_dev)
454 return;
455 }
456
457 dirlist = get_dirlist(fbuf, dlen, 0);
458
459 /* If an item in dirlist is not found in flist, delete it
460 * from the filesystem. */
461 for (i = dirlist->used; i--; ) {
462 struct file_struct *fp = dirlist->files[i];
463 if (!F_IS_ACTIVE(fp))
464 continue;
465 if (fp->flags & FLAG_MOUNT_DIR) {
466 if (verbose > 1)
467 rprintf(FINFO, "cannot delete mount point: %s\n",
468 f_name(fp, NULL));
469 continue;
470 }
471 if (flist_find(cur_flist, fp) < 0) {
472 f_name(fp, delbuf);
473 if (delete_during == 2) {
474 if (!remember_delete(fp, delbuf))
475 break;
476 } else
477 delete_item(delbuf, fp->mode, NULL, DEL_RECURSE);
478 }
479 }
480
481 flist_free(dirlist);
482}
483
484/* This deletes any files on the receiving side that are not present on the
485 * sending side. This is used by --delete-before and --delete-after. */
486static void do_delete_pass(void)
487{
488 char fbuf[MAXPATHLEN];
489 STRUCT_STAT st;
490 int j;
491
492 /* dry_run is incremented when the destination doesn't exist yet. */
493 if (dry_run > 1 || list_only)
494 return;
495
496 for (j = 0; j < cur_flist->used; j++) {
497 struct file_struct *file = cur_flist->sorted[j];
498
499 if (!(file->flags & FLAG_XFER_DIR))
500 continue;
501
502 f_name(file, fbuf);
503 if (verbose > 1 && file->flags & FLAG_TOP_DIR)
504 rprintf(FINFO, "deleting in %s\n", fbuf);
505
506 if (link_stat(fbuf, &st, keep_dirlinks) < 0
507 || !S_ISDIR(st.st_mode))
508 continue;
509
510 delete_in_dir(fbuf, file, &st.st_dev);
511 }
512 delete_in_dir(NULL, NULL, &dev_zero);
513
514 if (do_progress && !am_server)
515 rprintf(FINFO, " \r");
516}
517
518int unchanged_attrs(const char *fname, struct file_struct *file, statx *sxp)
519{
520 if (preserve_perms && !BITS_EQUAL(sxp->st.st_mode, file->mode, CHMOD_BITS))
521 return 0;
522
523 if (am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file))
524 return 0;
525
526 if (gid_ndx && !(file->flags & FLAG_SKIP_GROUP) && sxp->st.st_gid != (gid_t)F_GROUP(file))
527 return 0;
528
529#ifdef SUPPORT_ACLS
530 if (preserve_acls && !S_ISLNK(file->mode)) {
531 if (!ACL_READY(*sxp))
532 get_acl(fname, sxp);
533 if (set_acl(NULL, file, sxp) == 0)
534 return 0;
535 }
536#endif
537#ifdef SUPPORT_XATTRS
538 if (preserve_xattrs) {
539 if (!XATTR_READY(*sxp))
540 get_xattr(fname, sxp);
541 if (xattr_diff(file, sxp, 0))
542 return 0;
543 }
544#endif
545
546 return 1;
547}
548
549void itemize(const char *fnamecmp, struct file_struct *file, int ndx, int statret,
550 statx *sxp, int32 iflags, uchar fnamecmp_type,
551 const char *xname)
552{
553 if (statret >= 0) { /* A from-dest-dir statret can == 1! */
554 int keep_time = !preserve_times ? 0
555 : S_ISDIR(file->mode) ? !omit_dir_times
556 : !S_ISLNK(file->mode);
557
558 if (S_ISREG(file->mode) && F_LENGTH(file) != sxp->st.st_size)
559 iflags |= ITEM_REPORT_SIZE;
560 if ((iflags & (ITEM_TRANSFER|ITEM_LOCAL_CHANGE) && !keep_time
561 && !(iflags & ITEM_MATCHED)
562 && (!(iflags & ITEM_XNAME_FOLLOWS) || *xname))
563 || (keep_time && cmp_time(file->modtime, sxp->st.st_mtime) != 0))
564 iflags |= ITEM_REPORT_TIME;
565 if (!BITS_EQUAL(sxp->st.st_mode, file->mode, CHMOD_BITS))
566 iflags |= ITEM_REPORT_PERMS;
567 if (uid_ndx && am_root && (uid_t)F_OWNER(file) != sxp->st.st_uid)
568 iflags |= ITEM_REPORT_OWNER;
569 if (gid_ndx && !(file->flags & FLAG_SKIP_GROUP)
570 && sxp->st.st_gid != (gid_t)F_GROUP(file))
571 iflags |= ITEM_REPORT_GROUP;
572#ifdef SUPPORT_ACLS
573 if (preserve_acls && !S_ISLNK(file->mode)) {
574 if (!ACL_READY(*sxp))
575 get_acl(fnamecmp, sxp);
576 if (set_acl(NULL, file, sxp) == 0)
577 iflags |= ITEM_REPORT_ACL;
578 }
579#endif
580#ifdef SUPPORT_XATTRS
581 if (preserve_xattrs) {
582 if (!XATTR_READY(*sxp))
583 get_xattr(fnamecmp, sxp);
584 if (xattr_diff(file, sxp, 1))
585 iflags |= ITEM_REPORT_XATTR;
586 }
587#endif
588 } else {
589#ifdef SUPPORT_XATTRS
590 if (preserve_xattrs && xattr_diff(file, NULL, 1))
591 iflags |= ITEM_REPORT_XATTR;
592#endif
593 iflags |= ITEM_IS_NEW;
594 }
595
596 iflags &= 0xffff;
597 if ((iflags & (SIGNIFICANT_ITEM_FLAGS|ITEM_REPORT_XATTR) || verbose > 1
598 || stdout_format_has_i > 1 || (xname && *xname)) && !read_batch) {
599 if (protocol_version >= 29) {
600 if (ndx >= 0)
601 write_ndx(sock_f_out, ndx);
602 write_shortint(sock_f_out, iflags);
603 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
604 write_byte(sock_f_out, fnamecmp_type);
605 if (iflags & ITEM_XNAME_FOLLOWS)
606 write_vstring(sock_f_out, xname, strlen(xname));
607#ifdef SUPPORT_XATTRS
608 if (iflags & ITEM_REPORT_XATTR && !dry_run)
609 send_xattr_request(NULL, file, sock_f_out);
610#endif
611 } else if (ndx >= 0) {
612 enum logcode code = logfile_format_has_i ? FINFO : FCLIENT;
613 log_item(code, file, &stats, iflags, xname);
614 }
615 }
616}
617
618
619/* Perform our quick-check heuristic for determining if a file is unchanged. */
620int unchanged_file(char *fn, struct file_struct *file, STRUCT_STAT *st)
621{
622 if (st->st_size != F_LENGTH(file))
623 return 0;
624
625 /* if always checksum is set then we use the checksum instead
626 of the file time to determine whether to sync */
627 if (always_checksum > 0 && S_ISREG(st->st_mode)) {
628 char sum[MAX_DIGEST_LEN];
629 file_checksum(fn, sum, st->st_size);
630 return memcmp(sum, F_SUM(file), checksum_len) == 0;
631 }
632
633 if (size_only > 0)
634 return 1;
635
636 if (ignore_times)
637 return 0;
638
639 return cmp_time(st->st_mtime, file->modtime) == 0;
640}
641
642
643/*
644 * set (initialize) the size entries in the per-file sum_struct
645 * calculating dynamic block and checksum sizes.
646 *
647 * This is only called from generate_and_send_sums() but is a separate
648 * function to encapsulate the logic.
649 *
650 * The block size is a rounded square root of file length.
651 *
652 * The checksum size is determined according to:
653 * blocksum_bits = BLOCKSUM_BIAS + 2*log2(file_len) - log2(block_len)
654 * provided by Donovan Baarda which gives a probability of rsync
655 * algorithm corrupting data and falling back using the whole md4
656 * checksums.
657 *
658 * This might be made one of several selectable heuristics.
659 */
660static void sum_sizes_sqroot(struct sum_struct *sum, int64 len)
661{
662 int32 blength;
663 int s2length;
664
665 if (block_size)
666 blength = block_size;
667 else if (len <= BLOCK_SIZE * BLOCK_SIZE)
668 blength = BLOCK_SIZE;
669 else {
670 int32 c;
671 int64 l;
672 int cnt;
673 for (c = 1, l = len, cnt = 0; l >>= 2; c <<= 1, cnt++) {}
674 if (cnt >= 31 || c >= MAX_BLOCK_SIZE)
675 blength = MAX_BLOCK_SIZE;
676 else {
677 blength = 0;
678 do {
679 blength |= c;
680 if (len < (int64)blength * blength)
681 blength &= ~c;
682 c >>= 1;
683 } while (c >= 8); /* round to multiple of 8 */
684 blength = MAX(blength, BLOCK_SIZE);
685 }
686 }
687
688 if (protocol_version < 27) {
689 s2length = csum_length;
690 } else if (csum_length == SUM_LENGTH) {
691 s2length = SUM_LENGTH;
692 } else {
693 int32 c;
694 int64 l;
695 int b = BLOCKSUM_BIAS;
696 for (l = len; l >>= 1; b += 2) {}
697 for (c = blength; (c >>= 1) && b; b--) {}
698 /* add a bit, subtract rollsum, round up. */
699 s2length = (b + 1 - 32 + 7) / 8; /* --optimize in compiler-- */
700 s2length = MAX(s2length, csum_length);
701 s2length = MIN(s2length, SUM_LENGTH);
702 }
703
704 sum->flength = len;
705 sum->blength = blength;
706 sum->s2length = s2length;
707 sum->remainder = (int32)(len % blength);
708 sum->count = (int32)(len / blength) + (sum->remainder != 0);
709
710 if (sum->count && verbose > 2) {
711 rprintf(FINFO,
712 "count=%.0f rem=%ld blength=%ld s2length=%d flength=%.0f\n",
713 (double)sum->count, (long)sum->remainder, (long)sum->blength,
714 sum->s2length, (double)sum->flength);
715 }
716}
717
718
719/*
720 * Generate and send a stream of signatures/checksums that describe a buffer
721 *
722 * Generate approximately one checksum every block_len bytes.
723 */
724static void generate_and_send_sums(int fd, OFF_T len, int f_out, int f_copy)
725{
726 int32 i;
727 struct map_struct *mapbuf;
728 struct sum_struct sum;
729 OFF_T offset = 0;
730
731 sum_sizes_sqroot(&sum, len);
732 write_sum_head(f_out, &sum);
733
734 if (append_mode > 0 && f_copy < 0)
735 return;
736
737 if (len > 0)
738 mapbuf = map_file(fd, len, MAX_MAP_SIZE, sum.blength);
739 else
740 mapbuf = NULL;
741
742 for (i = 0; i < sum.count; i++) {
743 int32 n1 = (int32)MIN(len, (OFF_T)sum.blength);
744 char *map = map_ptr(mapbuf, offset, n1);
745 char sum2[SUM_LENGTH];
746 uint32 sum1;
747
748 len -= n1;
749 offset += n1;
750
751 if (f_copy >= 0) {
752 full_write(f_copy, map, n1);
753 if (append_mode > 0)
754 continue;
755 }
756
757 sum1 = get_checksum1(map, n1);
758 get_checksum2(map, n1, sum2);
759
760 if (verbose > 3) {
761 rprintf(FINFO,
762 "chunk[%.0f] offset=%.0f len=%ld sum1=%08lx\n",
763 (double)i, (double)offset - n1, (long)n1,
764 (unsigned long)sum1);
765 }
766 write_int(f_out, sum1);
767 write_buf(f_out, sum2, sum.s2length);
768 }
769
770 if (mapbuf)
771 unmap_file(mapbuf);
772}
773
774
775/* Try to find a filename in the same dir as "fname" with a similar name. */
776static int find_fuzzy(struct file_struct *file, struct file_list *dirlist)
777{
778 int fname_len, fname_suf_len;
779 const char *fname_suf, *fname = file->basename;
780 uint32 lowest_dist = 25 << 16; /* ignore a distance greater than 25 */
781 int j, lowest_j = -1;
782
783 fname_len = strlen(fname);
784 fname_suf = find_filename_suffix(fname, fname_len, &fname_suf_len);
785
786 for (j = 0; j < dirlist->used; j++) {
787 struct file_struct *fp = dirlist->files[j];
788 const char *suf, *name;
789 int len, suf_len;
790 uint32 dist;
791
792 if (!S_ISREG(fp->mode) || !F_LENGTH(fp)
793 || fp->flags & FLAG_FILE_SENT)
794 continue;
795
796 name = fp->basename;
797
798 if (F_LENGTH(fp) == F_LENGTH(file)
799 && cmp_time(fp->modtime, file->modtime) == 0) {
800 if (verbose > 4) {
801 rprintf(FINFO,
802 "fuzzy size/modtime match for %s\n",
803 name);
804 }
805 return j;
806 }
807
808 len = strlen(name);
809 suf = find_filename_suffix(name, len, &suf_len);
810
811 dist = fuzzy_distance(name, len, fname, fname_len);
812 /* Add some extra weight to how well the suffixes match. */
813 dist += fuzzy_distance(suf, suf_len, fname_suf, fname_suf_len)
814 * 10;
815 if (verbose > 4) {
816 rprintf(FINFO, "fuzzy distance for %s = %d.%05d\n",
817 name, (int)(dist>>16), (int)(dist&0xFFFF));
818 }
819 if (dist <= lowest_dist) {
820 lowest_dist = dist;
821 lowest_j = j;
822 }
823 }
824
825 return lowest_j;
826}
827
828/* This is only called for regular files. We return -2 if we've finished
829 * handling the file, -1 if no dest-linking occurred, or a non-negative
830 * value if we found an alternate basis file. */
831static int try_dests_reg(struct file_struct *file, char *fname, int ndx,
832 char *cmpbuf, statx *sxp, int itemizing,
833 enum logcode code)
834{
835 int best_match = -1;
836 int match_level = 0;
837 int j = 0;
838
839 do {
840 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
841 if (link_stat(cmpbuf, &sxp->st, 0) < 0 || !S_ISREG(sxp->st.st_mode))
842 continue;
843 switch (match_level) {
844 case 0:
845 best_match = j;
846 match_level = 1;
847 /* FALL THROUGH */
848 case 1:
849 if (!unchanged_file(cmpbuf, file, &sxp->st))
850 continue;
851 best_match = j;
852 match_level = 2;
853 /* FALL THROUGH */
854 case 2:
855 if (!unchanged_attrs(cmpbuf, file, sxp))
856 continue;
857 if (always_checksum > 0 && preserve_times
858 && cmp_time(sxp->st.st_mtime, file->modtime))
859 continue;
860 best_match = j;
861 match_level = 3;
862 break;
863 }
864 break;
865 } while (basis_dir[++j] != NULL);
866
867 if (!match_level)
868 return -1;
869
870 if (j != best_match) {
871 j = best_match;
872 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
873 if (link_stat(cmpbuf, &sxp->st, 0) < 0)
874 return -1;
875 }
876
877 if (match_level == 3 && !copy_dest) {
878#ifdef SUPPORT_HARD_LINKS
879 if (link_dest) {
880 if (!hard_link_one(file, fname, cmpbuf, 1))
881 goto try_a_copy;
882 if (preserve_hard_links && F_IS_HLINKED(file))
883 finish_hard_link(file, fname, &sxp->st, itemizing, code, j);
884 if (itemizing && (verbose > 1 || stdout_format_has_i > 1)) {
885 itemize(cmpbuf, file, ndx, 1, sxp,
886 ITEM_LOCAL_CHANGE | ITEM_XNAME_FOLLOWS,
887 0, "");
888 }
889 } else
890#endif
891 if (itemizing)
892 itemize(cmpbuf, file, ndx, 0, sxp, 0, 0, NULL);
893 if (verbose > 1 && maybe_ATTRS_REPORT)
894 rprintf(FCLIENT, "%s is uptodate\n", fname);
895 return -2;
896 }
897
898 if (match_level >= 2) {
899#ifdef SUPPORT_HARD_LINKS
900 try_a_copy: /* Copy the file locally. */
901#endif
902 if (copy_file(cmpbuf, fname, file->mode) < 0) {
903 if (verbose) {
904 rsyserr(FINFO, errno, "copy_file %s => %s",
905 full_fname(cmpbuf), fname);
906 }
907 return -1;
908 }
909 set_file_attrs(fname, file, NULL, cmpbuf, 0);
910 if (itemizing)
911 itemize(cmpbuf, file, ndx, 0, sxp, ITEM_LOCAL_CHANGE, 0, NULL);
912#ifdef SUPPORT_XATTRS
913 if (preserve_xattrs)
914 xattr_clear_locals(file);
915#endif
916 if (maybe_ATTRS_REPORT
917 && ((!itemizing && verbose && match_level == 2)
918 || (verbose > 1 && match_level == 3))) {
919 code = match_level == 3 ? FCLIENT : FINFO;
920 rprintf(code, "%s%s\n", fname,
921 match_level == 3 ? " is uptodate" : "");
922 }
923#ifdef SUPPORT_HARD_LINKS
924 if (preserve_hard_links && F_IS_HLINKED(file))
925 finish_hard_link(file, fname, &sxp->st, itemizing, code, -1);
926#endif
927 return -2;
928 }
929
930 return FNAMECMP_BASIS_DIR_LOW + j;
931}
932
933/* This is only called for non-regular files. We return -2 if we've finished
934 * handling the file, or -1 if no dest-linking occurred, or a non-negative
935 * value if we found an alternate basis file. */
936static int try_dests_non(struct file_struct *file, char *fname, int ndx,
937 char *cmpbuf, statx *sxp, int itemizing,
938 enum logcode code)
939{
940 char lnk[MAXPATHLEN];
941 int best_match = -1;
942 int match_level = 0;
943 enum nonregtype type;
944 uint32 *devp;
945 int len, j = 0;
946
947#ifndef SUPPORT_LINKS
948 if (S_ISLNK(file->mode))
949 return -1;
950#endif
951 if (S_ISDIR(file->mode)) {
952 type = TYPE_DIR;
953 } else if (IS_SPECIAL(file->mode))
954 type = TYPE_SPECIAL;
955 else if (IS_DEVICE(file->mode))
956 type = TYPE_DEVICE;
957#ifdef SUPPORT_LINKS
958 else if (S_ISLNK(file->mode))
959 type = TYPE_SYMLINK;
960#endif
961 else {
962 rprintf(FERROR,
963 "internal: try_dests_non() called with invalid mode (%o)\n",
964 (int)file->mode);
965 exit_cleanup(RERR_UNSUPPORTED);
966 }
967
968 do {
969 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
970 if (link_stat(cmpbuf, &sxp->st, 0) < 0)
971 continue;
972 switch (type) {
973 case TYPE_DIR:
974 if (!S_ISDIR(sxp->st.st_mode))
975 continue;
976 break;
977 case TYPE_SPECIAL:
978 if (!IS_SPECIAL(sxp->st.st_mode))
979 continue;
980 break;
981 case TYPE_DEVICE:
982 if (!IS_DEVICE(sxp->st.st_mode))
983 continue;
984 break;
985#ifdef SUPPORT_LINKS
986 case TYPE_SYMLINK:
987 if (!S_ISLNK(sxp->st.st_mode))
988 continue;
989 break;
990#endif
991 }
992 if (match_level < 1) {
993 match_level = 1;
994 best_match = j;
995 }
996 switch (type) {
997 case TYPE_DIR:
998 break;
999 case TYPE_SPECIAL:
1000 case TYPE_DEVICE:
1001 devp = F_RDEV_P(file);
1002 if (sxp->st.st_rdev != MAKEDEV(DEV_MAJOR(devp), DEV_MINOR(devp)))
1003 continue;
1004 break;
1005#ifdef SUPPORT_LINKS
1006 case TYPE_SYMLINK:
1007 if ((len = readlink(cmpbuf, lnk, MAXPATHLEN-1)) <= 0)
1008 continue;
1009 lnk[len] = '\0';
1010 if (strcmp(lnk, F_SYMLINK(file)) != 0)
1011 continue;
1012 break;
1013#endif
1014 }
1015 if (match_level < 2) {
1016 match_level = 2;
1017 best_match = j;
1018 }
1019 if (unchanged_attrs(cmpbuf, file, sxp)) {
1020 match_level = 3;
1021 best_match = j;
1022 break;
1023 }
1024 } while (basis_dir[++j] != NULL);
1025
1026 if (!match_level)
1027 return -1;
1028
1029 if (j != best_match) {
1030 j = best_match;
1031 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
1032 if (link_stat(cmpbuf, &sxp->st, 0) < 0)
1033 return -1;
1034 }
1035
1036 if (match_level == 3) {
1037#ifdef SUPPORT_HARD_LINKS
1038 if (link_dest
1039#ifndef CAN_HARDLINK_SYMLINK
1040 && !S_ISLNK(file->mode)
1041#endif
1042#ifndef CAN_HARDLINK_SPECIAL
1043 && !IS_SPECIAL(file->mode) && !IS_DEVICE(file->mode)
1044#endif
1045 && !S_ISDIR(file->mode)) {
1046 if (do_link(cmpbuf, fname) < 0) {
1047 rsyserr(FERROR, errno,
1048 "failed to hard-link %s with %s",
1049 cmpbuf, fname);
1050 return j;
1051 }
1052 if (preserve_hard_links && F_IS_HLINKED(file))
1053 finish_hard_link(file, fname, NULL, itemizing, code, -1);
1054 } else
1055#endif
1056 match_level = 2;
1057 if (itemizing && stdout_format_has_i
1058 && (verbose > 1 || stdout_format_has_i > 1)) {
1059 int chg = compare_dest && type != TYPE_DIR ? 0
1060 : ITEM_LOCAL_CHANGE
1061 + (match_level == 3 ? ITEM_XNAME_FOLLOWS : 0);
1062 char *lp = match_level == 3 ? "" : NULL;
1063 itemize(cmpbuf, file, ndx, 0, sxp, chg + ITEM_MATCHED, 0, lp);
1064 }
1065 if (verbose > 1 && maybe_ATTRS_REPORT) {
1066 rprintf(FCLIENT, "%s%s is uptodate\n",
1067 fname, type == TYPE_DIR ? "/" : "");
1068 }
1069 return -2;
1070 }
1071
1072 return j;
1073}
1074
1075static int phase = 0;
1076static int dflt_perms;
1077
1078/* Acts on the indicated item in cur_flist whose name is fname. If a dir,
1079 * make sure it exists, and has the right permissions/timestamp info. For
1080 * all other non-regular files (symlinks, etc.) we create them here. For
1081 * regular files that have changed, we try to find a basis file and then
1082 * start sending checksums. The ndx is the file's unique index value.
1083 *
1084 * When fname is non-null, it must point to a MAXPATHLEN buffer!
1085 *
1086 * Note that f_out is set to -1 when doing final directory-permission and
1087 * modification-time repair. */
1088static void recv_generator(char *fname, struct file_struct *file, int ndx,
1089 int itemizing, enum logcode code, int f_out)
1090{
1091 static int missing_below = -1, excluded_below = -1;
1092 static const char *parent_dirname = "";
1093 static struct file_list *fuzzy_dirlist = NULL;
1094 static int need_fuzzy_dirlist = 0;
1095 struct file_struct *fuzzy_file = NULL;
1096 int fd = -1, f_copy = -1;
1097 statx sx, real_sx;
1098 STRUCT_STAT partial_st;
1099 struct file_struct *back_file = NULL;
1100 int statret, real_ret, stat_errno;
1101 char *fnamecmp, *partialptr, *backupptr = NULL;
1102 char fnamecmpbuf[MAXPATHLEN];
1103 uchar fnamecmp_type;
1104 int del_opts = delete_mode || force_delete ? DEL_RECURSE : 0;
1105
1106 if (list_only)
1107 return;
1108
1109 if (verbose > 2)
1110 rprintf(FINFO, "recv_generator(%s,%d)\n", fname, ndx);
1111
1112 if (server_filter_list.head) {
1113 if (excluded_below >= 0) {
1114 if (F_DEPTH(file) > excluded_below)
1115 goto skipping;
1116 excluded_below = -1;
1117 }
1118 if (check_filter(&server_filter_list, fname,
1119 S_ISDIR(file->mode)) < 0) {
1120 if (S_ISDIR(file->mode))
1121 excluded_below = F_DEPTH(file);
1122 skipping:
1123 if (verbose) {
1124 rprintf(FINFO,
1125 "skipping server-excluded file \"%s\"\n",
1126 fname);
1127 }
1128 return;
1129 }
1130 }
1131
1132 if (missing_below >= 0) {
1133 if (F_DEPTH(file) <= missing_below) {
1134 if (dry_run)
1135 dry_run--;
1136 missing_below = -1;
1137 } else if (!dry_run) {
1138 if (S_ISDIR(file->mode))
1139 file->flags |= FLAG_MISSING_DIR;
1140 return;
1141 }
1142 }
1143#ifdef SUPPORT_ACLS
1144 sx.acc_acl = sx.def_acl = NULL;
1145#endif
1146#ifdef SUPPORT_XATTRS
1147 sx.xattr = NULL;
1148#endif
1149 if (dry_run > 1) {
1150 if (fuzzy_dirlist) {
1151 flist_free(fuzzy_dirlist);
1152 fuzzy_dirlist = NULL;
1153 }
1154 parent_dirname = "";
1155 statret = -1;
1156 stat_errno = ENOENT;
1157 } else {
1158 const char *dn = file->dirname ? file->dirname : ".";
1159 if (parent_dirname != dn && strcmp(parent_dirname, dn) != 0) {
1160 if (relative_paths && !implied_dirs
1161 && do_stat(dn, &sx.st) < 0
1162 && create_directory_path(fname) < 0) {
1163 rsyserr(FERROR, errno,
1164 "recv_generator: mkdir %s failed",
1165 full_fname(dn));
1166 }
1167 if (fuzzy_dirlist) {
1168 flist_free(fuzzy_dirlist);
1169 fuzzy_dirlist = NULL;
1170 }
1171 if (fuzzy_basis)
1172 need_fuzzy_dirlist = 1;
1173#ifdef SUPPORT_ACLS
1174 if (!preserve_perms)
1175 dflt_perms = default_perms_for_dir(dn);
1176#endif
1177 }
1178 parent_dirname = dn;
1179
1180 if (need_fuzzy_dirlist && S_ISREG(file->mode)) {
1181 strlcpy(fnamecmpbuf, dn, sizeof fnamecmpbuf);
1182 fuzzy_dirlist = get_dirlist(fnamecmpbuf, -1, 1);
1183 need_fuzzy_dirlist = 0;
1184 }
1185
1186 statret = link_stat(fname, &sx.st,
1187 keep_dirlinks && S_ISDIR(file->mode));
1188 stat_errno = errno;
1189 }
1190
1191 if (ignore_non_existing > 0 && statret == -1 && stat_errno == ENOENT) {
1192 if (verbose > 1) {
1193 rprintf(FINFO, "not creating new %s \"%s\"\n",
1194 S_ISDIR(file->mode) ? "directory" : "file",
1195 fname);
1196 }
1197 if (S_ISDIR(file->mode)) {
1198 if (missing_below < 0) {
1199 if (dry_run)
1200 dry_run++;
1201 missing_below = F_DEPTH(file);
1202 }
1203 file->flags |= FLAG_MISSING_DIR;
1204 }
1205 return;
1206 }
1207
1208 if (S_ISDIR(file->mode)) {
1209 /* The file to be received is a directory, so we need
1210 * to prepare appropriately. If there is already a
1211 * file of that name and it is *not* a directory, then
1212 * we need to delete it. If it doesn't exist, then
1213 * (perhaps recursively) create it. */
1214 if (statret == 0 && !S_ISDIR(sx.st.st_mode)) {
1215 if (delete_item(fname, sx.st.st_mode, "directory", del_opts) != 0)
1216 return;
1217 statret = -1;
1218 }
1219 if (dry_run && statret != 0 && missing_below < 0) {
1220 missing_below = F_DEPTH(file);
1221 dry_run++;
1222 }
1223 real_ret = statret;
1224 real_sx = sx;
1225 if (new_root_dir) {
1226 if (*fname == '.' && fname[1] == '\0')
1227 statret = -1;
1228 new_root_dir = 0;
1229 }
1230 if (!preserve_perms) { /* See comment in non-dir code below. */
1231 file->mode = dest_mode(file->mode, sx.st.st_mode,
1232 dflt_perms, statret == 0);
1233 }
1234 if (statret != 0 && basis_dir[0] != NULL) {
1235 int j = try_dests_non(file, fname, ndx, fnamecmpbuf, &sx,
1236 itemizing, code);
1237 if (j == -2) {
1238 itemizing = 0;
1239 code = FNONE;
1240 } else if (j >= 0)
1241 statret = 1;
1242 }
1243 if (itemizing && f_out != -1) {
1244 itemize(fname, file, ndx, statret, &sx,
1245 statret ? ITEM_LOCAL_CHANGE : 0, 0, NULL);
1246 }
1247 if (real_ret != 0 && do_mkdir(fname,file->mode) < 0 && errno != EEXIST) {
1248 if (!relative_paths || errno != ENOENT
1249 || create_directory_path(fname) < 0
1250 || (do_mkdir(fname, file->mode) < 0 && errno != EEXIST)) {
1251 rsyserr(FERROR, errno,
1252 "recv_generator: mkdir %s failed",
1253 full_fname(fname));
1254 rprintf(FERROR,
1255 "*** Skipping any contents from this failed directory ***\n");
1256 missing_below = F_DEPTH(file);
1257 file->flags |= FLAG_MISSING_DIR;
1258 goto cleanup;
1259 }
1260 }
1261 if (set_file_attrs(fname, file, real_ret ? NULL : &real_sx, NULL, 0)
1262 && verbose && code != FNONE && f_out != -1)
1263 rprintf(code, "%s/\n", fname);
1264 if (real_ret != 0 && one_file_system)
1265 real_sx.st.st_dev = filesystem_dev;
1266 if (inc_recurse) {
1267 if (one_file_system) {
1268 uint32 *devp = F_DIRDEV_P(file);
1269 DEV_MAJOR(devp) = major(real_sx.st.st_dev);
1270 DEV_MINOR(devp) = minor(real_sx.st.st_dev);
1271 }
1272 }
1273 else if (delete_during && f_out != -1 && !phase && dry_run < 2
1274 && (file->flags & FLAG_XFER_DIR))
1275 delete_in_dir(fname, file, &real_sx.st.st_dev);
1276 goto cleanup;
1277 }
1278
1279 /* If we're not preserving permissions, change the file-list's
1280 * mode based on the local permissions and some heuristics. */
1281 if (!preserve_perms) {
1282 int exists = statret == 0 && !S_ISDIR(sx.st.st_mode);
1283 file->mode = dest_mode(file->mode, sx.st.st_mode, dflt_perms,
1284 exists);
1285 }
1286
1287#ifdef SUPPORT_HARD_LINKS
1288 if (preserve_hard_links && F_HLINK_NOT_FIRST(file)
1289 && hard_link_check(file, ndx, fname, statret, &sx, itemizing, code))
1290 goto cleanup;
1291#endif
1292
1293 if (preserve_links && S_ISLNK(file->mode)) {
1294#ifdef SUPPORT_LINKS
1295 const char *sl = F_SYMLINK(file);
1296 if (safe_symlinks && unsafe_symlink(sl, fname)) {
1297 if (verbose) {
1298 if (solo_file)
1299 fname = f_name(file, NULL);
1300 rprintf(FINFO,
1301 "ignoring unsafe symlink %s -> \"%s\"\n",
1302 full_fname(fname), sl);
1303 }
1304 return;
1305 }
1306 if (statret == 0) {
1307 char lnk[MAXPATHLEN];
1308 int len;
1309
1310 if (!S_ISLNK(sx.st.st_mode))
1311 statret = -1;
1312 else if ((len = readlink(fname, lnk, MAXPATHLEN-1)) > 0
1313 && strncmp(lnk, sl, len) == 0 && sl[len] == '\0') {
1314 /* The link is pointing to the right place. */
1315 set_file_attrs(fname, file, &sx, NULL, maybe_ATTRS_REPORT);
1316 if (itemizing)
1317 itemize(fname, file, ndx, 0, &sx, 0, 0, NULL);
1318#ifdef SUPPORT_HARD_LINKS
1319 if (preserve_hard_links && F_IS_HLINKED(file))
1320 finish_hard_link(file, fname, &sx.st, itemizing, code, -1);
1321#endif
1322 if (remove_source_files == 1)
1323 goto return_with_success;
1324 goto cleanup;
1325 }
1326 /* Not the right symlink (or not a symlink), so
1327 * delete it. */
1328 if (delete_item(fname, sx.st.st_mode, "symlink", del_opts) != 0)
1329 goto cleanup;
1330 } else if (basis_dir[0] != NULL) {
1331 int j = try_dests_non(file, fname, ndx, fnamecmpbuf, &sx,
1332 itemizing, code);
1333 if (j == -2) {
1334#ifndef CAN_HARDLINK_SYMLINK
1335 if (link_dest) {
1336 /* Resort to --copy-dest behavior. */
1337 } else
1338#endif
1339 if (!copy_dest)
1340 goto cleanup;
1341 itemizing = 0;
1342 code = FNONE;
1343 } else if (j >= 0)
1344 statret = 1;
1345 }
1346#ifdef SUPPORT_HARD_LINKS
1347 if (preserve_hard_links && F_HLINK_NOT_LAST(file))
1348 goto cleanup;
1349#endif
1350 if (do_symlink(sl, fname) != 0) {
1351 rsyserr(FERROR, errno, "symlink %s -> \"%s\" failed",
1352 full_fname(fname), sl);
1353 } else {
1354 set_file_attrs(fname, file, NULL, NULL, 0);
1355 if (itemizing) {
1356 itemize(fname, file, ndx, statret, &sx,
1357 ITEM_LOCAL_CHANGE, 0, NULL);
1358 }
1359 if (code != FNONE && verbose)
1360 rprintf(code, "%s -> %s\n", fname, sl);
1361#ifdef SUPPORT_HARD_LINKS
1362 if (preserve_hard_links && F_IS_HLINKED(file))
1363 finish_hard_link(file, fname, NULL, itemizing, code, -1);
1364#endif
1365 /* This does not check remove_source_files == 1
1366 * because this is one of the items that the old
1367 * --remove-sent-files option would remove. */
1368 if (remove_source_files)
1369 goto return_with_success;
1370 }
1371#endif
1372 goto cleanup;
1373 }
1374
1375 if ((am_root && preserve_devices && IS_DEVICE(file->mode))
1376 || (preserve_specials && IS_SPECIAL(file->mode))) {
1377 uint32 *devp = F_RDEV_P(file);
1378 dev_t rdev = MAKEDEV(DEV_MAJOR(devp), DEV_MINOR(devp));
1379 if (statret == 0) {
1380 char *t;
1381 if (IS_DEVICE(file->mode)) {
1382 if (!IS_DEVICE(sx.st.st_mode))
1383 statret = -1;
1384 t = "device file";
1385 } else {
1386 if (!IS_SPECIAL(sx.st.st_mode))
1387 statret = -1;
1388 t = "special file";
1389 }
1390 if (statret == 0
1391 && BITS_EQUAL(sx.st.st_mode, file->mode, _S_IFMT)
1392 && sx.st.st_rdev == rdev) {
1393 /* The device or special file is identical. */
1394 set_file_attrs(fname, file, &sx, NULL, maybe_ATTRS_REPORT);
1395 if (itemizing)
1396 itemize(fname, file, ndx, 0, &sx, 0, 0, NULL);
1397#ifdef SUPPORT_HARD_LINKS
1398 if (preserve_hard_links && F_IS_HLINKED(file))
1399 finish_hard_link(file, fname, &sx.st, itemizing, code, -1);
1400#endif
1401 if (remove_source_files == 1)
1402 goto return_with_success;
1403 goto cleanup;
1404 }
1405 if (delete_item(fname, sx.st.st_mode, t, del_opts) != 0)
1406 goto cleanup;
1407 } else if (basis_dir[0] != NULL) {
1408 int j = try_dests_non(file, fname, ndx, fnamecmpbuf, &sx,
1409 itemizing, code);
1410 if (j == -2) {
1411#ifndef CAN_HARDLINK_SPECIAL
1412 if (link_dest) {
1413 /* Resort to --copy-dest behavior. */
1414 } else
1415#endif
1416 if (!copy_dest)
1417 goto cleanup;
1418 itemizing = 0;
1419 code = FNONE;
1420 } else if (j >= 0)
1421 statret = 1;
1422 }
1423#ifdef SUPPORT_HARD_LINKS
1424 if (preserve_hard_links && F_HLINK_NOT_LAST(file))
1425 goto cleanup;
1426#endif
1427 if (verbose > 2) {
1428 rprintf(FINFO, "mknod(%s, 0%o, [%ld,%ld])\n",
1429 fname, (int)file->mode,
1430 (long)major(rdev), (long)minor(rdev));
1431 }
1432 if (do_mknod(fname, file->mode, rdev) < 0) {
1433 rsyserr(FERROR, errno, "mknod %s failed",
1434 full_fname(fname));
1435 } else {
1436 set_file_attrs(fname, file, NULL, NULL, 0);
1437 if (itemizing) {
1438 itemize(fname, file, ndx, statret, &sx,
1439 ITEM_LOCAL_CHANGE, 0, NULL);
1440 }
1441 if (code != FNONE && verbose)
1442 rprintf(code, "%s\n", fname);
1443#ifdef SUPPORT_HARD_LINKS
1444 if (preserve_hard_links && F_IS_HLINKED(file))
1445 finish_hard_link(file, fname, NULL, itemizing, code, -1);
1446#endif
1447 if (remove_source_files == 1)
1448 goto return_with_success;
1449 }
1450 goto cleanup;
1451 }
1452
1453 if (!S_ISREG(file->mode)) {
1454 if (solo_file)
1455 fname = f_name(file, NULL);
1456 rprintf(FINFO, "skipping non-regular file \"%s\"\n", fname);
1457 goto cleanup;
1458 }
1459
1460 if (max_size > 0 && F_LENGTH(file) > max_size) {
1461 if (verbose > 1) {
1462 if (solo_file)
1463 fname = f_name(file, NULL);
1464 rprintf(FINFO, "%s is over max-size\n", fname);
1465 }
1466 goto cleanup;
1467 }
1468 if (min_size > 0 && F_LENGTH(file) < min_size) {
1469 if (verbose > 1) {
1470 if (solo_file)
1471 fname = f_name(file, NULL);
1472 rprintf(FINFO, "%s is under min-size\n", fname);
1473 }
1474 goto cleanup;
1475 }
1476
1477 if (ignore_existing > 0 && statret == 0) {
1478 if (verbose > 1)
1479 rprintf(FINFO, "%s exists\n", fname);
1480 goto cleanup;
1481 }
1482
1483 if (update_only > 0 && statret == 0
1484 && cmp_time(sx.st.st_mtime, file->modtime) > 0) {
1485 if (verbose > 1)
1486 rprintf(FINFO, "%s is newer\n", fname);
1487 goto cleanup;
1488 }
1489
1490 fnamecmp = fname;
1491 fnamecmp_type = FNAMECMP_FNAME;
1492
1493 if (statret == 0 && !S_ISREG(sx.st.st_mode)) {
1494 if (delete_item(fname, sx.st.st_mode, "regular file", del_opts) != 0)
1495 goto cleanup;
1496 statret = -1;
1497 stat_errno = ENOENT;
1498 }
1499
1500 if (statret != 0 && basis_dir[0] != NULL) {
1501 int j = try_dests_reg(file, fname, ndx, fnamecmpbuf, &sx,
1502 itemizing, code);
1503 if (j == -2) {
1504 if (remove_source_files == 1)
1505 goto return_with_success;
1506 goto cleanup;
1507 }
1508 if (j >= 0) {
1509 fnamecmp = fnamecmpbuf;
1510 fnamecmp_type = j;
1511 statret = 0;
1512 }
1513 }
1514
1515 real_ret = statret;
1516 real_sx = sx;
1517
1518 if (partial_dir && (partialptr = partial_dir_fname(fname)) != NULL
1519 && link_stat(partialptr, &partial_st, 0) == 0
1520 && S_ISREG(partial_st.st_mode)) {
1521 if (statret != 0)
1522 goto prepare_to_open;
1523 } else
1524 partialptr = NULL;
1525
1526 if (statret != 0 && fuzzy_dirlist && dry_run <= 1) {
1527 int j = find_fuzzy(file, fuzzy_dirlist);
1528 if (j >= 0) {
1529 fuzzy_file = fuzzy_dirlist->files[j];
1530 f_name(fuzzy_file, fnamecmpbuf);
1531 if (verbose > 2) {
1532 rprintf(FINFO, "fuzzy basis selected for %s: %s\n",
1533 fname, fnamecmpbuf);
1534 }
1535 sx.st.st_size = F_LENGTH(fuzzy_file);
1536 statret = 0;
1537 fnamecmp = fnamecmpbuf;
1538 fnamecmp_type = FNAMECMP_FUZZY;
1539 }
1540 }
1541
1542 if (statret != 0) {
1543#ifdef SUPPORT_HARD_LINKS
1544 if (preserve_hard_links && F_HLINK_NOT_LAST(file))
1545 goto cleanup;
1546#endif
1547 if (stat_errno == ENOENT)
1548 goto notify_others;
1549 rsyserr(FERROR, stat_errno, "recv_generator: failed to stat %s",
1550 full_fname(fname));
1551 goto cleanup;
1552 }
1553
1554 if (append_mode > 0 && sx.st.st_size > F_LENGTH(file))
1555 goto cleanup;
1556
1557 if (fnamecmp_type <= FNAMECMP_BASIS_DIR_HIGH)
1558 ;
1559 else if (fnamecmp_type == FNAMECMP_FUZZY)
1560 ;
1561 else if (unchanged_file(fnamecmp, file, &sx.st)) {
1562 if (partialptr) {
1563 do_unlink(partialptr);
1564 handle_partial_dir(partialptr, PDIR_DELETE);
1565 }
1566 set_file_attrs(fname, file, &sx, NULL, maybe_ATTRS_REPORT);
1567 if (itemizing)
1568 itemize(fnamecmp, file, ndx, statret, &sx, 0, 0, NULL);
1569#ifdef SUPPORT_HARD_LINKS
1570 if (preserve_hard_links && F_IS_HLINKED(file))
1571 finish_hard_link(file, fname, &sx.st, itemizing, code, -1);
1572#endif
1573 if (remove_source_files != 1)
1574 goto cleanup;
1575 return_with_success:
1576 if (!dry_run)
1577 send_msg_int(MSG_SUCCESS, ndx);
1578 goto cleanup;
1579 }
1580
1581 prepare_to_open:
1582 if (partialptr) {
1583 sx.st = partial_st;
1584 fnamecmp = partialptr;
1585 fnamecmp_type = FNAMECMP_PARTIAL_DIR;
1586 statret = 0;
1587 }
1588
1589 if (!do_xfers || read_batch || whole_file)
1590 goto notify_others;
1591
1592 if (fuzzy_dirlist) {
1593 int j = flist_find(fuzzy_dirlist, file);
1594 if (j >= 0) /* don't use changing file as future fuzzy basis */
1595 fuzzy_dirlist->files[j]->flags |= FLAG_FILE_SENT;
1596 }
1597
1598 /* open the file */
1599 fd = do_open(fnamecmp, O_RDONLY, 0);
1600
1601 if (fd == -1) {
1602 rsyserr(FERROR, errno, "failed to open %s, continuing",
1603 full_fname(fnamecmp));
1604 pretend_missing:
1605 /* pretend the file didn't exist */
1606#ifdef SUPPORT_HARD_LINKS
1607 if (preserve_hard_links && F_HLINK_NOT_LAST(file))
1608 goto cleanup;
1609#endif
1610 statret = real_ret = -1;
1611 goto notify_others;
1612 }
1613
1614 if (inplace && make_backups > 0 && fnamecmp_type == FNAMECMP_FNAME) {
1615 if (!(backupptr = get_backup_name(fname))) {
1616 close(fd);
1617 goto cleanup;
1618 }
1619 if (!(back_file = make_file(fname, NULL, NULL, 0, NO_FILTERS))) {
1620 close(fd);
1621 goto pretend_missing;
1622 }
1623 if (robust_unlink(backupptr) && errno != ENOENT) {
1624 rsyserr(FERROR, errno, "unlink %s",
1625 full_fname(backupptr));
1626 unmake_file(back_file);
1627 close(fd);
1628 goto cleanup;
1629 }
1630 if ((f_copy = do_open(backupptr,
1631 O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0600)) < 0) {
1632 rsyserr(FERROR, errno, "open %s",
1633 full_fname(backupptr));
1634 unmake_file(back_file);
1635 close(fd);
1636 goto cleanup;
1637 }
1638 fnamecmp_type = FNAMECMP_BACKUP;
1639 }
1640
1641 if (verbose > 3) {
1642 rprintf(FINFO, "gen mapped %s of size %.0f\n",
1643 fnamecmp, (double)sx.st.st_size);
1644 }
1645
1646 if (verbose > 2)
1647 rprintf(FINFO, "generating and sending sums for %d\n", ndx);
1648
1649 notify_others:
1650 if (remove_source_files && !delay_updates && !phase)
1651 increment_active_files(ndx, itemizing, code);
1652 if (inc_recurse && !dry_run)
1653 cur_flist->in_progress++;
1654#ifdef SUPPORT_HARD_LINKS
1655 if (preserve_hard_links && F_IS_HLINKED(file))
1656 file->flags |= FLAG_FILE_SENT;
1657#endif
1658 write_ndx(f_out, ndx);
1659 if (itemizing) {
1660 int iflags = ITEM_TRANSFER;
1661 if (always_checksum > 0)
1662 iflags |= ITEM_REPORT_CHECKSUM;
1663 if (fnamecmp_type != FNAMECMP_FNAME)
1664 iflags |= ITEM_BASIS_TYPE_FOLLOWS;
1665 if (fnamecmp_type == FNAMECMP_FUZZY)
1666 iflags |= ITEM_XNAME_FOLLOWS;
1667 itemize(fnamecmp, file, -1, real_ret, &real_sx, iflags, fnamecmp_type,
1668 fuzzy_file ? fuzzy_file->basename : NULL);
1669#ifdef SUPPORT_ACLS
1670 if (preserve_acls)
1671 free_acl(&real_sx);
1672#endif
1673#ifdef SUPPORT_XATTRS
1674 if (preserve_xattrs)
1675 free_xattr(&real_sx);
1676#endif
1677 }
1678
1679 if (!do_xfers) {
1680#ifdef SUPPORT_HARD_LINKS
1681 if (preserve_hard_links && F_IS_HLINKED(file))
1682 finish_hard_link(file, fname, &sx.st, itemizing, code, -1);
1683#endif
1684 goto cleanup;
1685 }
1686 if (read_batch)
1687 goto cleanup;
1688
1689 if (statret != 0 || whole_file) {
1690 write_sum_head(f_out, NULL);
1691 goto cleanup;
1692 }
1693
1694 generate_and_send_sums(fd, sx.st.st_size, f_out, f_copy);
1695
1696 if (f_copy >= 0) {
1697 close(f_copy);
1698 set_file_attrs(backupptr, back_file, NULL, NULL, 0);
1699 if (verbose > 1) {
1700 rprintf(FINFO, "backed up %s to %s\n",
1701 fname, backupptr);
1702 }
1703 unmake_file(back_file);
1704 }
1705
1706 close(fd);
1707
1708 cleanup:
1709#ifdef SUPPORT_ACLS
1710 if (preserve_acls)
1711 free_acl(&sx);
1712#endif
1713#ifdef SUPPORT_XATTRS
1714 if (preserve_xattrs)
1715 free_xattr(&sx);
1716#endif
1717 return;
1718}
1719
1720static void touch_up_dirs(struct file_list *flist, int ndx)
1721{
1722 static int counter = 0;
1723 struct file_struct *file;
1724 char *fname;
1725 int i, start, end;
1726
1727 if (ndx < 0) {
1728 start = 0;
1729 end = flist->used - 1;
1730 } else
1731 start = end = ndx;
1732
1733 /* Fix any directory permissions that were modified during the
1734 * transfer and/or re-set any tweaked modified-time values. */
1735 for (i = start; i <= end; i++, counter++) {
1736 file = flist->files[i];
1737 if (verbose > 3) {
1738 fname = f_name(file, NULL);
1739 rprintf(FINFO, "touch_up_dirs: %s (%d)\n",
1740 NS(fname), i);
1741 }
1742 if (!F_IS_ACTIVE(file) || !S_ISDIR(file->mode)
1743 || file->flags & FLAG_MISSING_DIR)
1744 continue;
1745 if (!need_retouch_dir_times && file->mode & S_IWUSR)
1746 continue;
1747 fname = f_name(file, NULL);
1748 if (!(file->mode & S_IWUSR))
1749 do_chmod(fname, file->mode);
1750 if (need_retouch_dir_times)
1751 set_modtime(fname, file->modtime, file->mode);
1752 if (allowed_lull && !(counter % lull_mod))
1753 maybe_send_keepalive();
1754 else if (!(counter & 0xFF))
1755 maybe_flush_socket(0);
1756 }
1757}
1758
1759void check_for_finished_files(int itemizing, enum logcode code, int check_redo)
1760{
1761 struct file_struct *file;
1762 struct file_list *flist;
1763 char fbuf[MAXPATHLEN];
1764 int ndx;
1765
1766#ifdef SUPPORT_HARD_LINKS
1767 while (preserve_hard_links && (ndx = get_hlink_num()) != -1) {
1768 flist = flist_for_ndx(ndx);
1769 assert(flist != NULL);
1770 file = flist->files[ndx];
1771 assert(file->flags & FLAG_HLINKED);
1772 finish_hard_link(file, f_name(file, fbuf), NULL, itemizing, code, -1);
1773 }
1774#endif
1775
1776 while (check_redo && (ndx = get_redo_num()) != -1) {
1777 csum_length = SUM_LENGTH;
1778 max_size = -max_size;
1779 min_size = -min_size;
1780 ignore_existing = -ignore_existing;
1781 ignore_non_existing = -ignore_non_existing;
1782 update_only = -update_only;
1783 always_checksum = -always_checksum;
1784 size_only = -size_only;
1785 append_mode = -append_mode;
1786 make_backups = -make_backups; /* avoid dup backup w/inplace */
1787 ignore_times++;
1788
1789 flist = cur_flist;
1790 cur_flist = flist_for_ndx(ndx);
1791
1792 file = cur_flist->files[ndx - cur_flist->ndx_start];
1793 if (solo_file)
1794 strlcpy(fbuf, solo_file, sizeof fbuf);
1795 else
1796 f_name(file, fbuf);
1797 recv_generator(fbuf, file, ndx, itemizing, code, sock_f_out);
1798 cur_flist->to_redo--;
1799
1800 cur_flist = flist;
1801
1802 csum_length = SHORT_SUM_LENGTH;
1803 max_size = -max_size;
1804 min_size = -min_size;
1805 ignore_existing = -ignore_existing;
1806 ignore_non_existing = -ignore_non_existing;
1807 update_only = -update_only;
1808 always_checksum = -always_checksum;
1809 size_only = -size_only;
1810 append_mode = -append_mode;
1811 make_backups = -make_backups;
1812 ignore_times--;
1813 }
1814
1815 while (cur_flist != first_flist) { /* only possible with inc_recurse */
1816 if (first_flist->in_progress || first_flist->to_redo)
1817 break;
1818
1819 if (!read_batch) {
1820 write_ndx(sock_f_out, NDX_DONE);
1821 maybe_flush_socket(1);
1822 }
1823
1824 if (delete_during == 2 || !dir_tweaking) {
1825 /* Skip directory touch-up. */
1826 } else if (first_flist->ndx_start != 0)
1827 touch_up_dirs(dir_flist, first_flist->parent_ndx);
1828 else if (relative_paths && implied_dirs)
1829 touch_up_dirs(first_flist, -1);
1830
1831 flist_free(first_flist); /* updates first_flist */
1832 }
1833}
1834
1835void generate_files(int f_out, const char *local_name)
1836{
1837 int i, ndx;
1838 char fbuf[MAXPATHLEN];
1839 int itemizing;
1840 enum logcode code;
1841 int need_retouch_dir_perms = 0;
1842 int save_do_progress = do_progress;
1843
1844 if (protocol_version >= 29) {
1845 itemizing = 1;
1846 maybe_ATTRS_REPORT = stdout_format_has_i ? 0 : ATTRS_REPORT;
1847 code = logfile_format_has_i ? FNONE : FLOG;
1848 } else if (am_daemon) {
1849 itemizing = logfile_format_has_i && do_xfers;
1850 maybe_ATTRS_REPORT = ATTRS_REPORT;
1851 code = itemizing || !do_xfers ? FCLIENT : FINFO;
1852 } else if (!am_server) {
1853 itemizing = stdout_format_has_i;
1854 maybe_ATTRS_REPORT = stdout_format_has_i ? 0 : ATTRS_REPORT;
1855 code = itemizing ? FNONE : FINFO;
1856 } else {
1857 itemizing = 0;
1858 maybe_ATTRS_REPORT = ATTRS_REPORT;
1859 code = FINFO;
1860 }
1861 solo_file = local_name;
1862 dir_tweaking = !(list_only || solo_file || dry_run);
1863 need_retouch_dir_times = preserve_times && !omit_dir_times;
1864 lull_mod = allowed_lull * 5;
1865
1866 if (verbose > 2)
1867 rprintf(FINFO, "generator starting pid=%ld\n", (long)getpid());
1868
1869 if (delete_before && !solo_file && cur_flist->used > 0)
1870 do_delete_pass();
1871 if (delete_during == 2) {
1872 deldelay_size = BIGPATHBUFLEN * 4;
1873 deldelay_buf = new_array(char, deldelay_size);
1874 if (!deldelay_buf)
1875 out_of_memory("delete-delay");
1876 }
1877 do_progress = 0;
1878
1879 if (append_mode > 0 || whole_file < 0)
1880 whole_file = 0;
1881 if (verbose >= 2) {
1882 rprintf(FINFO, "delta-transmission %s\n",
1883 whole_file
1884 ? "disabled for local transfer or --whole-file"
1885 : "enabled");
1886 }
1887
1888 /* Since we often fill up the outgoing socket and then just sit around
1889 * waiting for the other 2 processes to do their thing, we don't want
1890 * to exit on a timeout. If the data stops flowing, the receiver will
1891 * notice that and let us know via the redo pipe (or its closing). */
1892 ignore_timeout = 1;
1893
1894 dflt_perms = (ACCESSPERMS & ~orig_umask);
1895
1896 do {
1897 if (inc_recurse && delete_during && cur_flist->ndx_start) {
1898 struct file_struct *fp = dir_flist->files[cur_flist->parent_ndx];
1899 if (BITS_SETnUNSET(fp->flags, FLAG_XFER_DIR, FLAG_MISSING_DIR)) {
1900 dev_t dirdev;
1901 if (one_file_system) {
1902 uint32 *devp = F_DIRDEV_P(fp);
1903 dirdev = MAKEDEV(DEV_MAJOR(devp), DEV_MINOR(devp));
1904 } else
1905 dirdev = MAKEDEV(0, 0);
1906 delete_in_dir(f_name(fp, fbuf), fp, &dirdev);
1907 }
1908 }
1909 for (i = cur_flist->low; i <= cur_flist->high; i++) {
1910 struct file_struct *file = cur_flist->sorted[i];
1911
1912 if (!F_IS_ACTIVE(file))
1913 continue;
1914
1915#ifdef ICONV_OPTION
1916 if (ic_ndx)
1917 ndx = F_NDX(file);
1918 else
1919#endif
1920 ndx = i + cur_flist->ndx_start;
1921
1922 if (solo_file)
1923 strlcpy(fbuf, solo_file, sizeof fbuf);
1924 else
1925 f_name(file, fbuf);
1926 recv_generator(fbuf, file, ndx, itemizing, code, f_out);
1927
1928 /* We need to ensure that any dirs we create have
1929 * writeable permissions during the time we are putting
1930 * files within them. This is then fixed after the
1931 * transfer is done. */
1932#ifdef HAVE_CHMOD
1933 if (!am_root && S_ISDIR(file->mode)
1934 && !(file->mode & S_IWUSR) && dir_tweaking) {
1935 mode_t mode = file->mode | S_IWUSR;
1936 const char *fname = solo_file ? solo_file : fbuf;
1937 if (do_chmod(fname, mode) < 0) {
1938 rsyserr(FERROR, errno,
1939 "failed to modify permissions on %s",
1940 full_fname(fname));
1941 }
1942 need_retouch_dir_perms = 1;
1943 }
1944#endif
1945
1946 check_for_finished_files(itemizing, code, 0);
1947
1948 if (allowed_lull && !(i % lull_mod))
1949 maybe_send_keepalive();
1950 else if (!(i & 0xFF))
1951 maybe_flush_socket(0);
1952 }
1953
1954 if (!inc_recurse) {
1955 write_ndx(f_out, NDX_DONE);
1956 break;
1957 }
1958
1959 while (1) {
1960 check_for_finished_files(itemizing, code, 1);
1961 if (cur_flist->next || flist_eof)
1962 break;
1963 wait_for_receiver();
1964 }
1965 } while ((cur_flist = cur_flist->next) != NULL);
1966
1967 if (delete_during)
1968 delete_in_dir(NULL, NULL, &dev_zero);
1969 phase++;
1970 if (verbose > 2)
1971 rprintf(FINFO, "generate_files phase=%d\n", phase);
1972
1973 while (1) {
1974 check_for_finished_files(itemizing, code, 1);
1975 if (msgdone_cnt)
1976 break;
1977 wait_for_receiver();
1978 }
1979
1980 phase++;
1981 if (verbose > 2)
1982 rprintf(FINFO, "generate_files phase=%d\n", phase);
1983
1984 write_ndx(f_out, NDX_DONE);
1985 /* Reduce round-trip lag-time for a useless delay-updates phase. */
1986 if (protocol_version >= 29 && !delay_updates)
1987 write_ndx(f_out, NDX_DONE);
1988
1989 /* Read MSG_DONE for the redo phase (and any prior messages). */
1990 while (1) {
1991 check_for_finished_files(itemizing, code, 0);
1992 if (msgdone_cnt > 1)
1993 break;
1994 wait_for_receiver();
1995 }
1996
1997 if (protocol_version >= 29) {
1998 phase++;
1999 if (verbose > 2)
2000 rprintf(FINFO, "generate_files phase=%d\n", phase);
2001 if (delay_updates)
2002 write_ndx(f_out, NDX_DONE);
2003 /* Read MSG_DONE for delay-updates phase & prior messages. */
2004 while (msgdone_cnt == 2)
2005 wait_for_receiver();
2006 }
2007
2008 do_progress = save_do_progress;
2009 if (delete_during == 2)
2010 do_delayed_deletions(fbuf);
2011 if (delete_after && !solo_file && file_total > 0)
2012 do_delete_pass();
2013
2014 if ((need_retouch_dir_perms || need_retouch_dir_times)
2015 && dir_tweaking && (!inc_recurse || delete_during == 2))
2016 touch_up_dirs(dir_flist, -1);
2017
2018 if (max_delete >= 0 && deletion_count > max_delete) {
2019 rprintf(FINFO,
2020 "Deletions stopped due to --max-delete limit (%d skipped)\n",
2021 deletion_count - max_delete);
2022 io_error |= IOERR_DEL_LIMIT;
2023 }
2024
2025 if (verbose > 2)
2026 rprintf(FINFO, "generate_files finished\n");
2027}