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