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