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