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