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