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