Merged f_name() with f_name_to().
[rsync/rsync.git] / generator.c
... / ...
CommitLineData
1/* -*- c-file-style: "linux" -*-
2
3 rsync -- fast file replication program
4
5 Copyright (C) 1996-2000 by Andrew Tridgell
6 Copyright (C) Paul Mackerras 1996
7 Copyright (C) 2002 by Martin Pool <mbp@samba.org>
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 as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24#include "rsync.h"
25
26extern int verbose;
27extern int dry_run;
28extern int do_xfers;
29extern int log_format_has_i;
30extern int log_format_has_o_or_i;
31extern int daemon_log_format_has_i;
32extern int am_root;
33extern int am_server;
34extern int am_daemon;
35extern int do_progress;
36extern int recurse;
37extern int relative_paths;
38extern int keep_dirlinks;
39extern int preserve_links;
40extern int preserve_devices;
41extern int preserve_hard_links;
42extern int preserve_perms;
43extern int preserve_uid;
44extern int preserve_gid;
45extern int preserve_times;
46extern int omit_dir_times;
47extern int delete_before;
48extern int delete_during;
49extern int delete_after;
50extern int module_id;
51extern int ignore_errors;
52extern int remove_sent_files;
53extern int delay_updates;
54extern int update_only;
55extern int ignore_existing;
56extern int ignore_non_existing;
57extern int inplace;
58extern int append_mode;
59extern int make_backups;
60extern int csum_length;
61extern int ignore_times;
62extern int size_only;
63extern OFF_T max_size;
64extern OFF_T min_size;
65extern int io_error;
66extern int allowed_lull;
67extern int sock_f_out;
68extern int ignore_timeout;
69extern int protocol_version;
70extern int fuzzy_basis;
71extern int always_checksum;
72extern int checksum_len;
73extern char *partial_dir;
74extern char *basis_dir[];
75extern int compare_dest;
76extern int copy_dest;
77extern int link_dest;
78extern int whole_file;
79extern int list_only;
80extern int read_batch;
81extern int orig_umask;
82extern int safe_symlinks;
83extern long block_size; /* "long" because popt can't set an int32. */
84extern int max_delete;
85extern int force_delete;
86extern int one_file_system;
87extern struct stats stats;
88extern dev_t filesystem_dev;
89extern char *backup_dir;
90extern char *backup_suffix;
91extern int backup_suffix_len;
92extern struct file_list *the_file_list;
93extern struct filter_list_struct server_filter_list;
94
95static int deletion_count = 0; /* used to implement --max-delete */
96static int can_link_symlinks = 1; /* start out optimistic */
97static int can_link_devices = 1;
98
99/* For calling delete_file() */
100#define DEL_FORCE_RECURSE (1<<1) /* recurse even w/o --force */
101#define DEL_TERSE (1<<3)
102
103
104static int is_backup_file(char *fn)
105{
106 int k = strlen(fn) - backup_suffix_len;
107 return k > 0 && strcmp(fn+k, backup_suffix) == 0;
108}
109
110
111/* Delete a file or directory. If DEL_FORCE_RECURSE is set in the flags, or if
112 * force_delete is set, this will delete recursively.
113 *
114 * Note that fname must point to a MAXPATHLEN buffer if the mode indicates it's
115 * a directory! (The buffer is used for recursion, but returned unchanged.)
116 */
117static int delete_item(char *fname, int mode, int flags)
118{
119 struct file_list *dirlist;
120 int j, dlen, zap_dir, ok;
121 unsigned remainder;
122 void *save_filters;
123 char *p;
124
125 if (!S_ISDIR(mode)) {
126 if (max_delete && ++deletion_count > max_delete)
127 return 0;
128 if (make_backups && (backup_dir || !is_backup_file(fname)))
129 ok = make_backup(fname);
130 else
131 ok = robust_unlink(fname) == 0;
132 if (ok) {
133 if (!(flags & DEL_TERSE))
134 log_delete(fname, mode);
135 return 0;
136 }
137 if (errno == ENOENT) {
138 deletion_count--;
139 return 0;
140 }
141 rsyserr(FERROR, errno, "delete_file: unlink %s failed",
142 full_fname(fname));
143 return -1;
144 }
145
146 zap_dir = flags & DEL_FORCE_RECURSE || (force_delete && recurse);
147 if ((max_delete && ++deletion_count > max_delete)
148 || (dry_run && zap_dir)) {
149 ok = 0;
150 errno = ENOTEMPTY;
151 } else if (make_backups && !backup_dir && !is_backup_file(fname)
152 && !(flags & DEL_FORCE_RECURSE))
153 ok = make_backup(fname);
154 else
155 ok = do_rmdir(fname) == 0;
156 if (ok) {
157 if (!(flags & DEL_TERSE))
158 log_delete(fname, mode);
159 return 0;
160 }
161 if (errno == ENOENT) {
162 deletion_count--;
163 return 0;
164 }
165 if (!zap_dir) {
166 rsyserr(FERROR, errno, "delete_file: rmdir %s failed",
167 full_fname(fname));
168 return -1;
169 }
170 flags |= DEL_FORCE_RECURSE; /* mark subdir dels as not "in the way" */
171 deletion_count--;
172
173 dlen = strlen(fname);
174 save_filters = push_local_filters(fname, dlen);
175
176 dirlist = get_dirlist(fname, dlen, 0);
177
178 p = fname + dlen;
179 if (dlen != 1 || *fname != '/')
180 *p++ = '/';
181 remainder = MAXPATHLEN - (p - fname);
182
183 for (j = dirlist->count; j--; ) {
184 struct file_struct *fp = dirlist->files[j];
185
186 if (fp->flags & FLAG_MOUNT_POINT)
187 continue;
188
189 strlcpy(p, fp->basename, remainder);
190 delete_item(fname, fp->mode, flags & ~DEL_TERSE);
191 }
192 flist_free(dirlist);
193
194 fname[dlen] = '\0';
195
196 pop_local_filters(save_filters);
197
198 if (max_delete && ++deletion_count > max_delete)
199 return 0;
200
201 if (do_rmdir(fname) == 0) {
202 if (!(flags & DEL_TERSE))
203 log_delete(fname, mode);
204 } else if (errno != ENOTEMPTY && errno != EEXIST && errno != ENOENT) {
205 rsyserr(FERROR, errno, "delete_file: rmdir %s failed",
206 full_fname(fname));
207 return -1;
208 }
209
210 return 0;
211}
212
213
214/* This function is used to implement per-directory deletion, and is used by
215 * all the --delete-WHEN options. Note that the fbuf pointer must point to a
216 * MAXPATHLEN buffer with the name of the directory in it (the functions we
217 * call will append names onto the end, but the old dir value will be restored
218 * on exit). */
219static void delete_in_dir(struct file_list *flist, char *fbuf,
220 struct file_struct *file)
221{
222 static int min_depth = MAXPATHLEN, cur_depth = -1;
223 static void *filt_array[MAXPATHLEN/2+1];
224 static int already_warned = 0;
225 struct file_list *dirlist;
226 char delbuf[MAXPATHLEN];
227 STRUCT_STAT st;
228 int dlen, i;
229
230 if (!flist) {
231 while (cur_depth >= min_depth)
232 pop_local_filters(filt_array[cur_depth--]);
233 min_depth = MAXPATHLEN;
234 cur_depth = -1;
235 return;
236 }
237
238 if (verbose > 2)
239 rprintf(FINFO, "delete_in_dir(%s)\n", fbuf);
240
241 if (allowed_lull)
242 maybe_send_keepalive();
243
244 if (file->dir.depth >= MAXPATHLEN/2+1)
245 return; /* Impossible... */
246
247 if (io_error && !(lp_ignore_errors(module_id) || ignore_errors)) {
248 if (already_warned)
249 return;
250 rprintf(FINFO,
251 "IO error encountered -- skipping file deletion\n");
252 already_warned = 1;
253 return;
254 }
255
256 while (cur_depth >= file->dir.depth && cur_depth >= min_depth)
257 pop_local_filters(filt_array[cur_depth--]);
258 cur_depth = file->dir.depth;
259 if (min_depth > cur_depth)
260 min_depth = cur_depth;
261 dlen = strlen(fbuf);
262 filt_array[cur_depth] = push_local_filters(fbuf, dlen);
263
264 if (link_stat(fbuf, &st, keep_dirlinks) < 0)
265 return;
266
267 if (one_file_system) {
268 if (file->flags & FLAG_TOP_DIR)
269 filesystem_dev = st.st_dev;
270 else if (filesystem_dev != st.st_dev)
271 return;
272 }
273
274 dirlist = get_dirlist(fbuf, dlen, 0);
275
276 /* If an item in dirlist is not found in flist, delete it
277 * from the filesystem. */
278 for (i = dirlist->count; i--; ) {
279 struct file_struct *fp = dirlist->files[i];
280 if (!fp->basename || fp->flags & FLAG_MOUNT_POINT)
281 continue;
282 if (flist_find(flist, fp) < 0) {
283 int mode = fp->mode;
284 f_name_to(fp, delbuf);
285 delete_item(delbuf, mode, DEL_FORCE_RECURSE);
286 }
287 }
288
289 flist_free(dirlist);
290}
291
292/* This deletes any files on the receiving side that are not present on the
293 * sending side. This is used by --delete-before and --delete-after. */
294static void do_delete_pass(struct file_list *flist)
295{
296 char fbuf[MAXPATHLEN];
297 int j;
298
299 if (dry_run > 1 /* destination doesn't exist yet */
300 || list_only)
301 return;
302
303 for (j = 0; j < flist->count; j++) {
304 struct file_struct *file = flist->files[j];
305
306 if (!(file->flags & FLAG_DEL_HERE))
307 continue;
308
309 f_name_to(file, fbuf);
310 if (verbose > 1 && file->flags & FLAG_TOP_DIR)
311 rprintf(FINFO, "deleting in %s\n", fbuf);
312
313 delete_in_dir(flist, fbuf, file);
314 }
315 delete_in_dir(NULL, NULL, NULL);
316
317 if (do_progress && !am_server)
318 rprintf(FINFO, " \r");
319}
320
321int unchanged_attrs(struct file_struct *file, STRUCT_STAT *st)
322{
323 if (preserve_perms
324 && (st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS))
325 return 0;
326
327 if (am_root && preserve_uid && st->st_uid != file->uid)
328 return 0;
329
330 if (preserve_gid && file->gid != GID_NONE && st->st_gid != file->gid)
331 return 0;
332
333 return 1;
334}
335
336void itemize(struct file_struct *file, int ndx, int statret, STRUCT_STAT *st,
337 int32 iflags, uchar fnamecmp_type, char *xname)
338{
339 if (statret >= 0) { /* A from-dest-dir statret can == 1! */
340 int keep_time = !preserve_times ? 0
341 : S_ISDIR(file->mode) ? !omit_dir_times
342 : !S_ISLNK(file->mode);
343
344 if (S_ISREG(file->mode) && file->length != st->st_size)
345 iflags |= ITEM_REPORT_SIZE;
346 if ((iflags & (ITEM_TRANSFER|ITEM_LOCAL_CHANGE) && !keep_time
347 && (!(iflags & ITEM_XNAME_FOLLOWS) || *xname))
348 || (keep_time && cmp_modtime(file->modtime, st->st_mtime) != 0))
349 iflags |= ITEM_REPORT_TIME;
350 if (preserve_perms
351 && (file->mode & CHMOD_BITS) != (st->st_mode & CHMOD_BITS))
352 iflags |= ITEM_REPORT_PERMS;
353 if (preserve_uid && am_root && file->uid != st->st_uid)
354 iflags |= ITEM_REPORT_OWNER;
355 if (preserve_gid && file->gid != GID_NONE
356 && st->st_gid != file->gid)
357 iflags |= ITEM_REPORT_GROUP;
358 } else
359 iflags |= ITEM_IS_NEW;
360
361 iflags &= 0xffff;
362 if ((iflags & SIGNIFICANT_ITEM_FLAGS || verbose > 1
363 || (xname && *xname)) && !read_batch) {
364 if (protocol_version >= 29) {
365 if (ndx >= 0)
366 write_int(sock_f_out, ndx);
367 write_shortint(sock_f_out, iflags);
368 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
369 write_byte(sock_f_out, fnamecmp_type);
370 if (iflags & ITEM_XNAME_FOLLOWS)
371 write_vstring(sock_f_out, xname, strlen(xname));
372 } else if (ndx >= 0)
373 log_item(file, &stats, iflags, xname);
374 }
375}
376
377
378/* Perform our quick-check heuristic for determining if a file is unchanged. */
379int unchanged_file(char *fn, struct file_struct *file, STRUCT_STAT *st)
380{
381 if (st->st_size != file->length)
382 return 0;
383
384 /* if always checksum is set then we use the checksum instead
385 of the file time to determine whether to sync */
386 if (always_checksum && S_ISREG(st->st_mode)) {
387 char sum[MD4_SUM_LENGTH];
388 file_checksum(fn, sum, st->st_size);
389 return memcmp(sum, file->u.sum, checksum_len) == 0;
390 }
391
392 if (size_only)
393 return 1;
394
395 if (ignore_times)
396 return 0;
397
398 return cmp_modtime(st->st_mtime, file->modtime) == 0;
399}
400
401
402/*
403 * set (initialize) the size entries in the per-file sum_struct
404 * calculating dynamic block and checksum sizes.
405 *
406 * This is only called from generate_and_send_sums() but is a separate
407 * function to encapsulate the logic.
408 *
409 * The block size is a rounded square root of file length.
410 *
411 * The checksum size is determined according to:
412 * blocksum_bits = BLOCKSUM_BIAS + 2*log2(file_len) - log2(block_len)
413 * provided by Donovan Baarda which gives a probability of rsync
414 * algorithm corrupting data and falling back using the whole md4
415 * checksums.
416 *
417 * This might be made one of several selectable heuristics.
418 */
419static void sum_sizes_sqroot(struct sum_struct *sum, int64 len)
420{
421 int32 blength;
422 int s2length;
423
424 if (block_size)
425 blength = block_size;
426 else if (len <= BLOCK_SIZE * BLOCK_SIZE)
427 blength = BLOCK_SIZE;
428 else {
429 int32 c;
430 int64 l;
431 int cnt;
432 for (c = 1, l = len, cnt = 0; l >>= 2; c <<= 1, cnt++) {}
433 if (cnt >= 31 || c >= MAX_BLOCK_SIZE)
434 blength = MAX_BLOCK_SIZE;
435 else {
436 blength = 0;
437 do {
438 blength |= c;
439 if (len < (int64)blength * blength)
440 blength &= ~c;
441 c >>= 1;
442 } while (c >= 8); /* round to multiple of 8 */
443 blength = MAX(blength, BLOCK_SIZE);
444 }
445 }
446
447 if (protocol_version < 27) {
448 s2length = csum_length;
449 } else if (csum_length == SUM_LENGTH) {
450 s2length = SUM_LENGTH;
451 } else {
452 int32 c;
453 int64 l;
454 int b = BLOCKSUM_BIAS;
455 for (l = len; l >>= 1; b += 2) {}
456 for (c = blength; c >>= 1 && b; b--) {}
457 /* add a bit, subtract rollsum, round up. */
458 s2length = (b + 1 - 32 + 7) / 8; /* --optimize in compiler-- */
459 s2length = MAX(s2length, csum_length);
460 s2length = MIN(s2length, SUM_LENGTH);
461 }
462
463 sum->flength = len;
464 sum->blength = blength;
465 sum->s2length = s2length;
466 sum->remainder = len % blength;
467 sum->count = len / blength + (sum->remainder != 0);
468
469 if (sum->count && verbose > 2) {
470 rprintf(FINFO,
471 "count=%.0f rem=%ld blength=%ld s2length=%d flength=%.0f\n",
472 (double)sum->count, (long)sum->remainder, (long)sum->blength,
473 sum->s2length, (double)sum->flength);
474 }
475}
476
477
478/*
479 * Generate and send a stream of signatures/checksums that describe a buffer
480 *
481 * Generate approximately one checksum every block_len bytes.
482 */
483static void generate_and_send_sums(int fd, OFF_T len, int f_out, int f_copy)
484{
485 int32 i;
486 struct map_struct *mapbuf;
487 struct sum_struct sum;
488 OFF_T offset = 0;
489
490 sum_sizes_sqroot(&sum, len);
491 write_sum_head(f_out, &sum);
492
493 if (append_mode > 0 && f_copy < 0)
494 return;
495
496 if (len > 0)
497 mapbuf = map_file(fd, len, MAX_MAP_SIZE, sum.blength);
498 else
499 mapbuf = NULL;
500
501 for (i = 0; i < sum.count; i++) {
502 int32 n1 = (int32)MIN(len, (OFF_T)sum.blength);
503 char *map = map_ptr(mapbuf, offset, n1);
504 char sum2[SUM_LENGTH];
505 uint32 sum1;
506
507 len -= n1;
508 offset += n1;
509
510 if (f_copy >= 0) {
511 full_write(f_copy, map, n1);
512 if (append_mode > 0)
513 continue;
514 }
515
516 sum1 = get_checksum1(map, n1);
517 get_checksum2(map, n1, sum2);
518
519 if (verbose > 3) {
520 rprintf(FINFO,
521 "chunk[%.0f] offset=%.0f len=%ld sum1=%08lx\n",
522 (double)i, (double)offset - n1, (long)n1,
523 (unsigned long)sum1);
524 }
525 write_int(f_out, sum1);
526 write_buf(f_out, sum2, sum.s2length);
527 }
528
529 if (mapbuf)
530 unmap_file(mapbuf);
531}
532
533
534/* Try to find a filename in the same dir as "fname" with a similar name. */
535static int find_fuzzy(struct file_struct *file, struct file_list *dirlist)
536{
537 int fname_len, fname_suf_len;
538 const char *fname_suf, *fname = file->basename;
539 uint32 lowest_dist = 25 << 16; /* ignore a distance greater than 25 */
540 int j, lowest_j = -1;
541
542 fname_len = strlen(fname);
543 fname_suf = find_filename_suffix(fname, fname_len, &fname_suf_len);
544
545 for (j = 0; j < dirlist->count; j++) {
546 struct file_struct *fp = dirlist->files[j];
547 const char *suf, *name;
548 int len, suf_len;
549 uint32 dist;
550
551 if (!S_ISREG(fp->mode) || !fp->length
552 || fp->flags & FLAG_NO_FUZZY)
553 continue;
554
555 name = fp->basename;
556
557 if (fp->length == file->length
558 && cmp_modtime(fp->modtime, file->modtime) == 0) {
559 if (verbose > 4) {
560 rprintf(FINFO,
561 "fuzzy size/modtime match for %s\n",
562 name);
563 }
564 return j;
565 }
566
567 len = strlen(name);
568 suf = find_filename_suffix(name, len, &suf_len);
569
570 dist = fuzzy_distance(name, len, fname, fname_len);
571 /* Add some extra weight to how well the suffixes match. */
572 dist += fuzzy_distance(suf, suf_len, fname_suf, fname_suf_len)
573 * 10;
574 if (verbose > 4) {
575 rprintf(FINFO, "fuzzy distance for %s = %d.%05d\n",
576 name, (int)(dist>>16), (int)(dist&0xFFFF));
577 }
578 if (dist <= lowest_dist) {
579 lowest_dist = dist;
580 lowest_j = j;
581 }
582 }
583
584 return lowest_j;
585}
586
587void check_for_finished_hlinks(int itemizing, enum logcode code)
588{
589 struct file_struct *file;
590 int ndx;
591
592 while ((ndx = get_hlink_num()) != -1) {
593 if (ndx < 0 || ndx >= the_file_list->count)
594 continue;
595
596 file = the_file_list->files[ndx];
597 if (!file->link_u.links)
598 continue;
599
600 hard_link_cluster(file, ndx, itemizing, code);
601 }
602}
603
604/* This is only called for regular files. We return -2 if we've finished
605 * handling the file, -1 if no dest-linking occurred, or a non-negative
606 * value if we found an alternate basis file. */
607static int try_dests_reg(struct file_struct *file, char *fname, int ndx,
608 char *cmpbuf, STRUCT_STAT *stp, int itemizing,
609 int maybe_PERMS_REPORT, enum logcode code)
610{
611 int best_match = -1;
612 int match_level = 0;
613 int j = 0;
614
615 do {
616 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
617 if (link_stat(cmpbuf, stp, 0) < 0 || !S_ISREG(stp->st_mode))
618 continue;
619 switch (match_level) {
620 case 0:
621 best_match = j;
622 match_level = 1;
623 /* FALL THROUGH */
624 case 1:
625 if (!unchanged_file(cmpbuf, file, stp))
626 continue;
627 best_match = j;
628 match_level = 2;
629 /* FALL THROUGH */
630 case 2:
631 if (!unchanged_attrs(file, stp))
632 continue;
633 if ((always_checksum || ignore_times)
634 && cmp_modtime(stp->st_mtime, file->modtime))
635 continue;
636 best_match = j;
637 match_level = 3;
638 break;
639 }
640 break;
641 } while (basis_dir[++j] != NULL);
642
643 if (!match_level)
644 return -1;
645
646 if (j != best_match) {
647 j = best_match;
648 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
649 if (link_stat(cmpbuf, stp, 0) < 0)
650 match_level = 0;
651 }
652
653#ifdef HAVE_LINK
654 if (match_level == 3 && !copy_dest) {
655 if (link_dest) {
656 if (hard_link_one(file, ndx, fname, 0, stp,
657 cmpbuf, 1,
658 itemizing && verbose > 1,
659 code) < 0)
660 goto try_a_copy;
661 if (preserve_hard_links && file->link_u.links)
662 hard_link_cluster(file, ndx, itemizing, code);
663 } else if (itemizing)
664 itemize(file, ndx, 0, stp, 0, 0, NULL);
665 if (verbose > 1 && maybe_PERMS_REPORT) {
666 code = daemon_log_format_has_i || dry_run
667 ? FCLIENT : FINFO;
668 rprintf(code, "%s is uptodate\n", fname);
669 }
670 return -2;
671 }
672#endif
673
674 if (match_level >= 2) {
675 try_a_copy: /* Copy the file locally. */
676 if (copy_file(cmpbuf, fname, file->mode) < 0) {
677 if (verbose) {
678 rsyserr(FINFO, errno, "copy_file %s => %s",
679 full_fname(cmpbuf), fname);
680 }
681 return -1;
682 }
683 if (itemizing)
684 itemize(file, ndx, 0, stp, ITEM_LOCAL_CHANGE, 0, NULL);
685 set_perms(fname, file, NULL, 0);
686 if (maybe_PERMS_REPORT
687 && ((!itemizing && verbose && match_level == 2)
688 || (verbose > 1 && match_level == 3))) {
689 code = daemon_log_format_has_i || dry_run
690 ? FCLIENT : FINFO;
691 rprintf(code, "%s%s\n", fname,
692 match_level == 3 ? " is uptodate" : "");
693 }
694 if (preserve_hard_links && file->link_u.links)
695 hard_link_cluster(file, ndx, itemizing, code);
696 return -2;
697 }
698
699 return FNAMECMP_BASIS_DIR_LOW + j;
700}
701
702/* This is only called for non-regular files. We return -2 if we've finished
703 * handling the file, or -1 if no dest-linking occurred. */
704static int try_dests_non(struct file_struct *file, char *fname, int ndx,
705 int itemizing, int *possible_ptr,
706 int maybe_PERMS_REPORT, enum logcode code)
707{
708 char fnamebuf[MAXPATHLEN], lnk[MAXPATHLEN];
709 STRUCT_STAT st;
710 int len, i = 0;
711
712 do {
713 pathjoin(fnamebuf, MAXPATHLEN, basis_dir[i], fname);
714 if (link_stat(fnamebuf, &st, 0) < 0 || S_ISDIR(st.st_mode)
715 || !unchanged_attrs(file, &st))
716 continue;
717 if (S_ISLNK(file->mode)) {
718 if ((len = readlink(fnamebuf, lnk, MAXPATHLEN-1)) <= 0)
719 continue;
720 lnk[len] = '\0';
721 if (strcmp(lnk, file->u.link) != 0)
722 continue;
723 } else {
724 if (!IS_DEVICE(st.st_mode) || st.st_rdev != file->u.rdev)
725 continue;
726 }
727 if (link_dest) {
728 if (do_link(fnamebuf, fname) < 0) {
729 /* TODO improve this to be based on errno? */
730 *possible_ptr = 0;
731 break;
732 }
733 if (preserve_hard_links && file->link_u.links)
734 hard_link_cluster(file, ndx, itemizing, code);
735 }
736 if (itemizing && log_format_has_i && verbose > 1) {
737 int changes = compare_dest ? 0 : ITEM_LOCAL_CHANGE
738 + (link_dest ? ITEM_XNAME_FOLLOWS : 0);
739 char *lp = link_dest ? "" : NULL;
740 itemize(file, ndx, 0, &st, changes, 0, lp);
741 }
742 if (verbose > 1 && maybe_PERMS_REPORT) {
743 code = daemon_log_format_has_i || dry_run
744 ? FCLIENT : FINFO;
745 rprintf(code, "%s is uptodate\n", fname);
746 }
747 return -2;
748 } while (basis_dir[++i] != NULL);
749
750 return -1;
751}
752
753static int phase = 0;
754
755/* Acts on the_file_list->file's ndx'th item, whose name is fname. If a dir,
756 * make sure it exists, and has the right permissions/timestamp info. For
757 * all other non-regular files (symlinks, etc.) we create them here. For
758 * regular files that have changed, we try to find a basis file and then
759 * start sending checksums.
760 *
761 * When fname is non-null, it must point to a MAXPATHLEN buffer!
762 *
763 * Note that f_out is set to -1 when doing final directory-permission and
764 * modification-time repair. */
765static void recv_generator(char *fname, struct file_struct *file, int ndx,
766 int itemizing, int maybe_PERMS_REPORT,
767 enum logcode code, int f_out)
768{
769 static int missing_below = -1, excluded_below = -1;
770 static char *fuzzy_dirname = "";
771 static struct file_list *fuzzy_dirlist = NULL;
772 struct file_struct *fuzzy_file = NULL;
773 int fd = -1, f_copy = -1;
774 STRUCT_STAT st, real_st, partial_st;
775 struct file_struct *back_file = NULL;
776 int statret, real_ret, stat_errno;
777 char *fnamecmp, *partialptr, *backupptr = NULL;
778 char fnamecmpbuf[MAXPATHLEN];
779 uchar fnamecmp_type;
780
781 if (list_only)
782 return;
783
784 if (!fname) {
785 if (fuzzy_dirlist) {
786 flist_free(fuzzy_dirlist);
787 fuzzy_dirlist = NULL;
788 fuzzy_dirname = "";
789 }
790 if (missing_below >= 0) {
791 dry_run--;
792 missing_below = -1;
793 }
794 return;
795 }
796
797 if (verbose > 2)
798 rprintf(FINFO, "recv_generator(%s,%d)\n", fname, ndx);
799
800 if (server_filter_list.head) {
801 if (excluded_below >= 0) {
802 if (file->dir.depth > excluded_below)
803 goto skipping;
804 excluded_below = -1;
805 }
806 if (check_filter(&server_filter_list, fname,
807 S_ISDIR(file->mode)) < 0) {
808 if (S_ISDIR(file->mode))
809 excluded_below = file->dir.depth;
810 skipping:
811 if (verbose) {
812 rprintf(FINFO,
813 "skipping server-excluded file \"%s\"\n",
814 fname);
815 }
816 return;
817 }
818 }
819
820 if (missing_below >= 0 && file->dir.depth <= missing_below) {
821 dry_run--;
822 missing_below = -1;
823 }
824 if (dry_run > 1) {
825 statret = -1;
826 stat_errno = ENOENT;
827 } else {
828 if (fuzzy_basis && S_ISREG(file->mode)) {
829 char *dn = file->dirname ? file->dirname : ".";
830 if (fuzzy_dirname != dn
831 && strcmp(fuzzy_dirname, dn) != 0) {
832 if (fuzzy_dirlist)
833 flist_free(fuzzy_dirlist);
834 fuzzy_dirlist = get_dirlist(dn, -1, 1);
835 }
836 fuzzy_dirname = dn;
837 }
838
839 statret = link_stat(fname, &st,
840 keep_dirlinks && S_ISDIR(file->mode));
841 stat_errno = errno;
842 }
843
844 if (ignore_non_existing && statret == -1 && stat_errno == ENOENT) {
845 if (verbose > 1) {
846 rprintf(FINFO, "not creating new %s \"%s\"\n",
847 S_ISDIR(file->mode) ? "directory" : "file",
848 fname);
849 }
850 return;
851 }
852
853 if (statret == 0 && !preserve_perms
854 && S_ISDIR(st.st_mode) == S_ISDIR(file->mode)) {
855 /* if the file exists already and we aren't perserving
856 * permissions then act as though the remote end sent
857 * us the file permissions we already have */
858 file->mode = (file->mode & ~CHMOD_BITS)
859 | (st.st_mode & CHMOD_BITS);
860 }
861
862 if (S_ISDIR(file->mode)) {
863 /* The file to be received is a directory, so we need
864 * to prepare appropriately. If there is already a
865 * file of that name and it is *not* a directory, then
866 * we need to delete it. If it doesn't exist, then
867 * (perhaps recursively) create it. */
868 if (statret == 0 && !S_ISDIR(st.st_mode)) {
869 if (delete_item(fname, st.st_mode, DEL_TERSE) < 0)
870 return;
871 statret = -1;
872 }
873 if (dry_run && statret != 0 && missing_below < 0) {
874 missing_below = file->dir.depth;
875 dry_run++;
876 }
877 if (itemizing && f_out != -1) {
878 itemize(file, ndx, statret, &st,
879 statret ? ITEM_LOCAL_CHANGE : 0, 0, NULL);
880 }
881 if (statret != 0 && do_mkdir(fname,file->mode) < 0 && errno != EEXIST) {
882 if (!relative_paths || errno != ENOENT
883 || create_directory_path(fname, orig_umask) < 0
884 || (do_mkdir(fname, file->mode) < 0 && errno != EEXIST)) {
885 rsyserr(FERROR, errno,
886 "recv_generator: mkdir %s failed",
887 full_fname(fname));
888 }
889 }
890 if (set_perms(fname, file, statret ? NULL : &st, 0)
891 && verbose && code && f_out != -1)
892 rprintf(code, "%s/\n", fname);
893 if (delete_during && f_out != -1 && !phase && dry_run < 2
894 && (file->flags & FLAG_DEL_HERE))
895 delete_in_dir(the_file_list, fname, file);
896 return;
897 }
898
899 if (preserve_hard_links && file->link_u.links
900 && hard_link_check(file, ndx, fname, statret, &st,
901 itemizing, code, HL_CHECK_MASTER))
902 return;
903
904 if (preserve_links && S_ISLNK(file->mode)) {
905#ifdef SUPPORT_LINKS
906 if (safe_symlinks && unsafe_symlink(file->u.link, fname)) {
907 if (verbose) {
908 if (the_file_list->count == 1)
909 fname = f_name(file);
910 rprintf(FINFO,
911 "ignoring unsafe symlink %s -> \"%s\"\n",
912 full_fname(fname), file->u.link);
913 }
914 return;
915 }
916 if (statret == 0) {
917 char lnk[MAXPATHLEN];
918 int len;
919
920 if (!S_ISDIR(st.st_mode)
921 && (len = readlink(fname, lnk, MAXPATHLEN-1)) > 0) {
922 lnk[len] = 0;
923 /* A link already pointing to the
924 * right place -- no further action
925 * required. */
926 if (strcmp(lnk, file->u.link) == 0) {
927 if (itemizing) {
928 itemize(file, ndx, 0, &st, 0,
929 0, NULL);
930 }
931 set_perms(fname, file, &st,
932 maybe_PERMS_REPORT);
933 if (preserve_hard_links
934 && file->link_u.links) {
935 hard_link_cluster(file, ndx,
936 itemizing,
937 code);
938 }
939 return;
940 }
941 }
942 /* Not the right symlink (or not a symlink), so
943 * delete it. */
944 if (delete_item(fname, st.st_mode, DEL_TERSE) < 0)
945 return;
946 if (!S_ISLNK(st.st_mode))
947 statret = -1;
948 } else if (basis_dir[0] != NULL && can_link_symlinks) {
949 if (try_dests_non(file, fname, ndx, itemizing,
950 &can_link_symlinks,
951 maybe_PERMS_REPORT, code) == -2) {
952 if (!copy_dest)
953 return;
954 itemizing = code = 0;
955 }
956 }
957 if (preserve_hard_links && file->link_u.links
958 && hard_link_check(file, ndx, fname, -1, &st,
959 itemizing, code, HL_SKIP))
960 return;
961 if (do_symlink(file->u.link,fname) != 0) {
962 rsyserr(FERROR, errno, "symlink %s -> \"%s\" failed",
963 full_fname(fname), file->u.link);
964 } else {
965 set_perms(fname,file,NULL,0);
966 if (itemizing) {
967 itemize(file, ndx, statret, &st,
968 ITEM_LOCAL_CHANGE, 0, NULL);
969 }
970 if (code && verbose) {
971 rprintf(code, "%s -> %s\n", fname,
972 file->u.link);
973 }
974 if (remove_sent_files && !dry_run) {
975 char numbuf[4];
976 SIVAL(numbuf, 0, ndx);
977 send_msg(MSG_SUCCESS, numbuf, 4);
978 }
979 if (preserve_hard_links && file->link_u.links)
980 hard_link_cluster(file, ndx, itemizing, code);
981 }
982#endif
983 return;
984 }
985
986 if (am_root && preserve_devices && IS_DEVICE(file->mode)) {
987 if (statret != 0
988 && (basis_dir[0] != NULL && can_link_devices)) {
989 if (try_dests_non(file, fname, ndx, itemizing,
990 &can_link_devices,
991 maybe_PERMS_REPORT, code) == -2) {
992 if (!copy_dest)
993 return;
994 itemizing = code = 0;
995 }
996 }
997 if (statret != 0
998 || (st.st_mode & ~CHMOD_BITS) != (file->mode & ~CHMOD_BITS)
999 || st.st_rdev != file->u.rdev) {
1000 if (statret == 0
1001 && delete_item(fname, st.st_mode, DEL_TERSE) < 0)
1002 return;
1003 if (preserve_hard_links && file->link_u.links
1004 && hard_link_check(file, ndx, fname, -1, &st,
1005 itemizing, code, HL_SKIP))
1006 return;
1007 if (!IS_DEVICE(st.st_mode))
1008 statret = -1;
1009 if (verbose > 2) {
1010 rprintf(FINFO,"mknod(%s,0%o,0x%x)\n",
1011 fname,
1012 (int)file->mode, (int)file->u.rdev);
1013 }
1014 if (do_mknod(fname,file->mode,file->u.rdev) < 0) {
1015 rsyserr(FERROR, errno, "mknod %s failed",
1016 full_fname(fname));
1017 } else {
1018 set_perms(fname,file,NULL,0);
1019 if (itemizing) {
1020 itemize(file, ndx, statret, &st,
1021 ITEM_LOCAL_CHANGE, 0, NULL);
1022 }
1023 if (code && verbose)
1024 rprintf(code, "%s\n", fname);
1025 if (preserve_hard_links && file->link_u.links) {
1026 hard_link_cluster(file, ndx,
1027 itemizing, code);
1028 }
1029 }
1030 } else {
1031 if (itemizing)
1032 itemize(file, ndx, statret, &st, 0, 0, NULL);
1033 set_perms(fname, file, &st, maybe_PERMS_REPORT);
1034 if (preserve_hard_links && file->link_u.links)
1035 hard_link_cluster(file, ndx, itemizing, code);
1036 }
1037 return;
1038 }
1039
1040 if (!S_ISREG(file->mode)) {
1041 if (the_file_list->count == 1)
1042 fname = f_name(file);
1043 rprintf(FINFO, "skipping non-regular file \"%s\"\n", fname);
1044 return;
1045 }
1046
1047 if (max_size && file->length > max_size) {
1048 if (verbose > 1) {
1049 if (the_file_list->count == 1)
1050 fname = f_name(file);
1051 rprintf(FINFO, "%s is over max-size\n", fname);
1052 }
1053 return;
1054 }
1055 if (min_size && file->length < min_size) {
1056 if (verbose > 1) {
1057 if (the_file_list->count == 1)
1058 fname = f_name(file);
1059 rprintf(FINFO, "%s is under min-size\n", fname);
1060 }
1061 return;
1062 }
1063
1064 if (ignore_existing && statret == 0) {
1065 if (verbose > 1)
1066 rprintf(FINFO, "%s exists\n", fname);
1067 return;
1068 }
1069
1070 if (update_only && statret == 0
1071 && cmp_modtime(st.st_mtime, file->modtime) > 0) {
1072 if (verbose > 1)
1073 rprintf(FINFO, "%s is newer\n", fname);
1074 return;
1075 }
1076
1077 fnamecmp = fname;
1078 fnamecmp_type = FNAMECMP_FNAME;
1079
1080 if (statret == 0 && !S_ISREG(st.st_mode)) {
1081 if (delete_item(fname, st.st_mode, DEL_TERSE) != 0)
1082 return;
1083 statret = -1;
1084 stat_errno = ENOENT;
1085 }
1086
1087 if (statret != 0 && basis_dir[0] != NULL) {
1088 int j = try_dests_reg(file, fname, ndx, fnamecmpbuf, &st,
1089 itemizing, maybe_PERMS_REPORT, code);
1090 if (j == -2)
1091 return;
1092 if (j != -1) {
1093 fnamecmp = fnamecmpbuf;
1094 fnamecmp_type = j;
1095 statret = 0;
1096 }
1097 }
1098
1099 real_ret = statret;
1100 real_st = st;
1101
1102 if (partial_dir && (partialptr = partial_dir_fname(fname)) != NULL
1103 && link_stat(partialptr, &partial_st, 0) == 0
1104 && S_ISREG(partial_st.st_mode)) {
1105 if (statret != 0)
1106 goto prepare_to_open;
1107 } else
1108 partialptr = NULL;
1109
1110 if (statret != 0 && fuzzy_basis && dry_run <= 1) {
1111 int j = find_fuzzy(file, fuzzy_dirlist);
1112 if (j >= 0) {
1113 fuzzy_file = fuzzy_dirlist->files[j];
1114 f_name_to(fuzzy_file, fnamecmpbuf);
1115 if (verbose > 2) {
1116 rprintf(FINFO, "fuzzy basis selected for %s: %s\n",
1117 fname, fnamecmpbuf);
1118 }
1119 st.st_size = fuzzy_file->length;
1120 statret = 0;
1121 fnamecmp = fnamecmpbuf;
1122 fnamecmp_type = FNAMECMP_FUZZY;
1123 }
1124 }
1125
1126 if (statret != 0) {
1127 if (preserve_hard_links && file->link_u.links
1128 && hard_link_check(file, ndx, fname, statret, &st,
1129 itemizing, code, HL_SKIP))
1130 return;
1131 if (stat_errno == ENOENT)
1132 goto notify_others;
1133 rsyserr(FERROR, stat_errno, "recv_generator: failed to stat %s",
1134 full_fname(fname));
1135 return;
1136 }
1137
1138 if (append_mode && st.st_size > file->length)
1139 return;
1140
1141 if (fnamecmp_type <= FNAMECMP_BASIS_DIR_HIGH)
1142 ;
1143 else if (fnamecmp_type == FNAMECMP_FUZZY)
1144 ;
1145 else if (unchanged_file(fnamecmp, file, &st)) {
1146 if (partialptr) {
1147 do_unlink(partialptr);
1148 handle_partial_dir(partialptr, PDIR_DELETE);
1149 }
1150 if (itemizing) {
1151 itemize(file, ndx, real_ret, &real_st,
1152 0, 0, NULL);
1153 }
1154 set_perms(fname, file, &st, maybe_PERMS_REPORT);
1155 if (preserve_hard_links && file->link_u.links)
1156 hard_link_cluster(file, ndx, itemizing, code);
1157 return;
1158 }
1159
1160 prepare_to_open:
1161 if (partialptr) {
1162 st = partial_st;
1163 fnamecmp = partialptr;
1164 fnamecmp_type = FNAMECMP_PARTIAL_DIR;
1165 statret = 0;
1166 }
1167
1168 if (!do_xfers || read_batch || whole_file)
1169 goto notify_others;
1170
1171 if (fuzzy_basis) {
1172 int j = flist_find(fuzzy_dirlist, file);
1173 if (j >= 0) /* don't use changing file as future fuzzy basis */
1174 fuzzy_dirlist->files[j]->flags |= FLAG_NO_FUZZY;
1175 }
1176
1177 /* open the file */
1178 fd = do_open(fnamecmp, O_RDONLY, 0);
1179
1180 if (fd == -1) {
1181 rsyserr(FERROR, errno, "failed to open %s, continuing",
1182 full_fname(fnamecmp));
1183 pretend_missing:
1184 /* pretend the file didn't exist */
1185 if (preserve_hard_links && file->link_u.links
1186 && hard_link_check(file, ndx, fname, statret, &st,
1187 itemizing, code, HL_SKIP))
1188 return;
1189 statret = real_ret = -1;
1190 goto notify_others;
1191 }
1192
1193 if (inplace && make_backups && fnamecmp_type == FNAMECMP_FNAME) {
1194 if (!(backupptr = get_backup_name(fname))) {
1195 close(fd);
1196 return;
1197 }
1198 if (!(back_file = make_file(fname, NULL, NO_FILTERS))) {
1199 close(fd);
1200 goto pretend_missing;
1201 }
1202 if (robust_unlink(backupptr) && errno != ENOENT) {
1203 rsyserr(FERROR, errno, "unlink %s",
1204 full_fname(backupptr));
1205 free(back_file);
1206 close(fd);
1207 return;
1208 }
1209 if ((f_copy = do_open(backupptr,
1210 O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0600)) < 0) {
1211 rsyserr(FERROR, errno, "open %s",
1212 full_fname(backupptr));
1213 free(back_file);
1214 close(fd);
1215 return;
1216 }
1217 fnamecmp_type = FNAMECMP_BACKUP;
1218 }
1219
1220 if (verbose > 3) {
1221 rprintf(FINFO, "gen mapped %s of size %.0f\n",
1222 fnamecmp, (double)st.st_size);
1223 }
1224
1225 if (verbose > 2)
1226 rprintf(FINFO, "generating and sending sums for %d\n", ndx);
1227
1228 notify_others:
1229 write_int(f_out, ndx);
1230 if (itemizing) {
1231 int iflags = ITEM_TRANSFER;
1232 if (always_checksum)
1233 iflags |= ITEM_REPORT_CHECKSUM;
1234 if (fnamecmp_type != FNAMECMP_FNAME)
1235 iflags |= ITEM_BASIS_TYPE_FOLLOWS;
1236 if (fnamecmp_type == FNAMECMP_FUZZY)
1237 iflags |= ITEM_XNAME_FOLLOWS;
1238 itemize(file, -1, real_ret, &real_st, iflags, fnamecmp_type,
1239 fuzzy_file ? fuzzy_file->basename : NULL);
1240 }
1241
1242 if (!do_xfers) {
1243 if (preserve_hard_links && file->link_u.links)
1244 hard_link_cluster(file, ndx, itemizing, code);
1245 return;
1246 }
1247 if (read_batch)
1248 return;
1249
1250 if (statret != 0 || whole_file) {
1251 write_sum_head(f_out, NULL);
1252 return;
1253 }
1254
1255 generate_and_send_sums(fd, st.st_size, f_out, f_copy);
1256
1257 if (f_copy >= 0) {
1258 close(f_copy);
1259 set_perms(backupptr, back_file, NULL, 0);
1260 if (verbose > 1) {
1261 rprintf(FINFO, "backed up %s to %s\n",
1262 fname, backupptr);
1263 }
1264 free(back_file);
1265 }
1266
1267 close(fd);
1268}
1269
1270
1271void generate_files(int f_out, struct file_list *flist, char *local_name)
1272{
1273 int i;
1274 char fbuf[MAXPATHLEN];
1275 int itemizing, maybe_PERMS_REPORT;
1276 enum logcode code;
1277 int lull_mod = allowed_lull * 5;
1278 int need_retouch_dir_times = preserve_times && !omit_dir_times;
1279 int need_retouch_dir_perms = 0;
1280 int save_ignore_existing = ignore_existing;
1281 int save_ignore_non_existing = ignore_non_existing;
1282 int save_do_progress = do_progress;
1283 int save_make_backups = make_backups;
1284
1285 if (protocol_version >= 29) {
1286 itemizing = 1;
1287 maybe_PERMS_REPORT = log_format_has_i ? 0 : PERMS_REPORT;
1288 code = daemon_log_format_has_i ? 0 : FLOG;
1289 } else if (am_daemon) {
1290 itemizing = daemon_log_format_has_i && do_xfers;
1291 maybe_PERMS_REPORT = PERMS_REPORT;
1292 code = itemizing || !do_xfers ? FCLIENT : FINFO;
1293 } else if (!am_server) {
1294 itemizing = log_format_has_i;
1295 maybe_PERMS_REPORT = log_format_has_i ? 0 : PERMS_REPORT;
1296 code = itemizing ? 0 : FINFO;
1297 } else {
1298 itemizing = 0;
1299 maybe_PERMS_REPORT = PERMS_REPORT;
1300 code = FINFO;
1301 }
1302
1303 if (verbose > 2) {
1304 rprintf(FINFO, "generator starting pid=%ld count=%d\n",
1305 (long)getpid(), flist->count);
1306 }
1307
1308 if (delete_before && !local_name && flist->count > 0)
1309 do_delete_pass(flist);
1310 do_progress = 0;
1311
1312 if (append_mode || whole_file < 0)
1313 whole_file = 0;
1314 if (verbose >= 2) {
1315 rprintf(FINFO, "delta-transmission %s\n",
1316 whole_file
1317 ? "disabled for local transfer or --whole-file"
1318 : "enabled");
1319 }
1320
1321 /* Since we often fill up the outgoing socket and then just sit around
1322 * waiting for the other 2 processes to do their thing, we don't want
1323 * to exit on a timeout. If the data stops flowing, the receiver will
1324 * notice that and let us know via the redo pipe (or its closing). */
1325 ignore_timeout = 1;
1326
1327 for (i = 0; i < flist->count; i++) {
1328 struct file_struct *file = flist->files[i];
1329
1330 if (!file->basename)
1331 continue;
1332
1333 if (local_name)
1334 strlcpy(fbuf, local_name, sizeof fbuf);
1335 else
1336 f_name_to(file, fbuf);
1337 recv_generator(fbuf, file, i, itemizing, maybe_PERMS_REPORT,
1338 code, f_out);
1339
1340 /* We need to ensure that any dirs we create have writeable
1341 * permissions during the time we are putting files within
1342 * them. This is then fixed after the transfer is done. */
1343#ifdef HAVE_CHMOD
1344 if (!am_root && S_ISDIR(file->mode) && !(file->mode & S_IWUSR)
1345 && !list_only) {
1346 int mode = file->mode | S_IWUSR; /* user write */
1347 char *fname = local_name ? local_name : fbuf;
1348 if (do_chmod(fname, mode) < 0) {
1349 rsyserr(FERROR, errno,
1350 "failed to modify permissions on %s",
1351 full_fname(fname));
1352 }
1353 need_retouch_dir_perms = 1;
1354 }
1355#endif
1356
1357 if (preserve_hard_links)
1358 check_for_finished_hlinks(itemizing, code);
1359
1360 if (allowed_lull && !(i % lull_mod))
1361 maybe_send_keepalive();
1362 else if (!(i % 200))
1363 maybe_flush_socket();
1364 }
1365 recv_generator(NULL, NULL, 0, 0, 0, code, -1);
1366 if (delete_during)
1367 delete_in_dir(NULL, NULL, NULL);
1368
1369 phase++;
1370 csum_length = SUM_LENGTH;
1371 max_size = min_size = ignore_existing = ignore_non_existing = 0;
1372 update_only = always_checksum = size_only = 0;
1373 ignore_times = 1;
1374 if (append_mode) /* resend w/o append mode */
1375 append_mode = -1; /* ... but only longer files */
1376 make_backups = 0; /* avoid a duplicate backup for inplace processing */
1377
1378 if (verbose > 2)
1379 rprintf(FINFO,"generate_files phase=%d\n",phase);
1380
1381 write_int(f_out, -1);
1382
1383 /* files can cycle through the system more than once
1384 * to catch initial checksum errors */
1385 while ((i = get_redo_num(itemizing, code)) != -1) {
1386 struct file_struct *file = flist->files[i];
1387 if (local_name)
1388 strlcpy(fbuf, local_name, sizeof fbuf);
1389 else
1390 f_name_to(file, fbuf);
1391 recv_generator(fbuf, file, i, itemizing, maybe_PERMS_REPORT,
1392 code, f_out);
1393 }
1394
1395 phase++;
1396 ignore_non_existing = save_ignore_non_existing;
1397 ignore_existing = save_ignore_existing;
1398 make_backups = save_make_backups;
1399
1400 if (verbose > 2)
1401 rprintf(FINFO,"generate_files phase=%d\n",phase);
1402
1403 write_int(f_out, -1);
1404 /* Reduce round-trip lag-time for a useless delay-updates phase. */
1405 if (protocol_version >= 29 && !delay_updates)
1406 write_int(f_out, -1);
1407
1408 /* Read MSG_DONE for the redo phase (and any prior messages). */
1409 get_redo_num(itemizing, code);
1410
1411 if (protocol_version >= 29) {
1412 phase++;
1413 if (verbose > 2)
1414 rprintf(FINFO, "generate_files phase=%d\n", phase);
1415 if (delay_updates)
1416 write_int(f_out, -1);
1417 /* Read MSG_DONE for delay-updates phase & prior messages. */
1418 get_redo_num(itemizing, code);
1419 }
1420
1421 do_progress = save_do_progress;
1422 if (delete_after && !local_name && flist->count > 0)
1423 do_delete_pass(flist);
1424
1425 if ((need_retouch_dir_perms || need_retouch_dir_times)
1426 && !list_only && !local_name && !dry_run) {
1427 int j = 0;
1428 /* Now we need to fix any directory permissions that were
1429 * modified during the transfer and/or re-set any tweaked
1430 * modified-time values. */
1431 for (i = 0; i < flist->count; i++) {
1432 struct file_struct *file = flist->files[i];
1433 if (!file->basename || !S_ISDIR(file->mode))
1434 continue;
1435 if (!need_retouch_dir_times && file->mode & S_IWUSR)
1436 continue;
1437 recv_generator(f_name(file), file, i, itemizing,
1438 maybe_PERMS_REPORT, code, -1);
1439 if (allowed_lull && !(++j % lull_mod))
1440 maybe_send_keepalive();
1441 else if (!(j % 200))
1442 maybe_flush_socket();
1443 }
1444 }
1445 recv_generator(NULL, NULL, 0, 0, 0, code, -1);
1446
1447 if (max_delete > 0 && deletion_count > max_delete) {
1448 rprintf(FINFO,
1449 "Deletions stopped due to --max-delete limit (%d skipped)\n",
1450 deletion_count - max_delete);
1451 io_error |= IOERR_DEL_LIMIT;
1452 }
1453
1454 if (verbose > 2)
1455 rprintf(FINFO,"generate_files finished\n");
1456}