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