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