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