My version of Matt's improvements related to missing source args:
[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>
445640e8 7 * Copyright (C) 2003-2009 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;
b111f11e 53extern int missing_args;
7730114b 54extern int msgdone_cnt;
59faec8b 55extern int ignore_errors;
47c11975 56extern int remove_source_files;
70352269 57extern int delay_updates;
2f03f956 58extern int update_only;
e90aab49
WD
59extern int ignore_existing;
60extern int ignore_non_existing;
cd6aa5b5 61extern int inplace;
6cc11982 62extern int append_mode;
cd6aa5b5 63extern int make_backups;
2f03f956
AT
64extern int csum_length;
65extern int ignore_times;
f83f0548 66extern int size_only;
7d1bfaf7 67extern OFF_T max_size;
02b5cb23 68extern OFF_T min_size;
59faec8b 69extern int io_error;
f3d6d480 70extern int flist_eof;
ac40b747 71extern int allowed_lull;
ee1d11c4 72extern int sock_f_out;
9ac2395b 73extern int ignore_timeout;
d04e9c51 74extern int protocol_version;
f3d6d480 75extern int file_total;
8e85be0a 76extern int fuzzy_basis;
2f03f956 77extern int always_checksum;
cfe39780 78extern int checksum_len;
a7260c40 79extern char *partial_dir;
b7e8628c 80extern char *basis_dir[];
2be2fb3e 81extern int compare_dest;
967866d4 82extern int copy_dest;
59c95e42 83extern int link_dest;
5774786f 84extern int whole_file;
5774786f 85extern int list_only;
b9f592fb 86extern int read_batch;
5774786f 87extern int safe_symlinks;
a255c592 88extern long block_size; /* "long" because popt can't set an int32. */
15e4d401 89extern int unsort_ndx;
59faec8b
WD
90extern int max_delete;
91extern int force_delete;
0e82af2d 92extern int one_file_system;
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;
b0a04670 101extern struct filter_list_struct filter_list, 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 }
e5128267
MM
525 /* Here we want to match regardless of file type. Replacement
526 * of a file with one of another type is handled separately by
527 * a delete_item call with a DEL_MAKE_ROOM flag. */
528 if (flist_find_ignore_dirness(cur_flist, fp) < 0) {
c4c9bb94
WD
529 int flags = DEL_RECURSE;
530 if (!(fp->mode & S_IWUSR) && !am_root && (uid_t)F_OWNER(fp) == our_uid)
531 flags |= DEL_NO_UID_WRITE;
6cbde57d 532 f_name(fp, delbuf);
20319fd9 533 if (delete_during == 2) {
19284e2e 534 if (!remember_delete(fp, delbuf, flags))
20319fd9
WD
535 break;
536 } else
3eabe6aa 537 delete_item(delbuf, fp->mode, flags);
468d7668 538 }
59faec8b
WD
539 }
540
541 flist_free(dirlist);
c4c9bb94
WD
542
543 if (!save_uid_ndx) {
544 --file_extra_cnt;
545 uid_ndx = 0;
546 }
59faec8b
WD
547}
548
549/* This deletes any files on the receiving side that are not present on the
550 * sending side. This is used by --delete-before and --delete-after. */
332cf6df 551static void do_delete_pass(void)
59faec8b
WD
552{
553 char fbuf[MAXPATHLEN];
bb0d8edf 554 STRUCT_STAT st;
59faec8b
WD
555 int j;
556
caff3322
WD
557 /* dry_run is incremented when the destination doesn't exist yet. */
558 if (dry_run > 1 || list_only)
f75a53e7
WD
559 return;
560
9decb4d2 561 for (j = 0; j < cur_flist->used; j++) {
332cf6df 562 struct file_struct *file = cur_flist->sorted[j];
59faec8b 563
f6f74b93
WD
564 f_name(file, fbuf);
565
566 if (!(file->flags & FLAG_CONTENT_DIR)) {
567 change_local_filter_dir(fbuf, strlen(fbuf), F_DEPTH(file));
59faec8b 568 continue;
f6f74b93 569 }
59faec8b 570
59faec8b 571 if (verbose > 1 && file->flags & FLAG_TOP_DIR)
45c49b52 572 rprintf(FINFO, "deleting in %s\n", fbuf);
59faec8b 573
bb0d8edf
WD
574 if (link_stat(fbuf, &st, keep_dirlinks) < 0
575 || !S_ISDIR(st.st_mode))
576 continue;
577
332cf6df 578 delete_in_dir(fbuf, file, &st.st_dev);
59faec8b 579 }
332cf6df 580 delete_in_dir(NULL, NULL, &dev_zero);
0e5665d3 581
a06e2b7c
WD
582 if (do_progress && !am_server)
583 rprintf(FINFO, " \r");
59faec8b
WD
584}
585
13710874 586int unchanged_attrs(const char *fname, struct file_struct *file, stat_x *sxp)
2f03f956 587{
1ed56a05 588#if !defined HAVE_LUTIMES || !defined HAVE_UTIMES
45a143cd
WD
589 if (S_ISLNK(file->mode)) {
590 ;
591 } else
592#endif
593 if (preserve_times && cmp_time(sxp->st.st_mtime, file->modtime) != 0)
594 return 0;
595
ff0e1580
WD
596 if (preserve_perms) {
597 if (!BITS_EQUAL(sxp->st.st_mode, file->mode, CHMOD_BITS))
598 return 0;
599 } else if (preserve_executability
600 && ((sxp->st.st_mode & 0111 ? 1 : 0) ^ (file->mode & 0111 ? 1 : 0)))
8365126b
WD
601 return 0;
602
9b25ef35 603 if (am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file))
b7e8628c 604 return 0;
bb24028f 605
9b25ef35 606 if (gid_ndx && !(file->flags & FLAG_SKIP_GROUP) && sxp->st.st_gid != (gid_t)F_GROUP(file))
b7e8628c
WD
607 return 0;
608
1c3344a1
WD
609#ifdef SUPPORT_ACLS
610 if (preserve_acls && !S_ISLNK(file->mode)) {
611 if (!ACL_READY(*sxp))
612 get_acl(fname, sxp);
613 if (set_acl(NULL, file, sxp) == 0)
614 return 0;
615 }
616#endif
16edf865
WD
617#ifdef SUPPORT_XATTRS
618 if (preserve_xattrs) {
619 if (!XATTR_READY(*sxp))
620 get_xattr(fname, sxp);
621 if (xattr_diff(file, sxp, 0))
622 return 0;
623 }
624#endif
1c3344a1 625
b7e8628c
WD
626 return 1;
627}
628
16edf865 629void itemize(const char *fnamecmp, struct file_struct *file, int ndx, int statret,
13710874 630 stat_x *sxp, int32 iflags, uchar fnamecmp_type,
f3d6d480 631 const char *xname)
06a1dbad 632{
48224e4c
WD
633 if (statret >= 0) { /* A from-dest-dir statret can == 1! */
634 int keep_time = !preserve_times ? 0
1ed56a05
WD
635 : S_ISDIR(file->mode) ? preserve_times > 1 :
636#if defined HAVE_LUTIMES && defined HAVE_UTIMES
1ed9018e
WD
637 1;
638#else
1ed56a05 639 !S_ISLNK(file->mode);
1ed9018e 640#endif
48224e4c 641
1c3344a1 642 if (S_ISREG(file->mode) && F_LENGTH(file) != sxp->st.st_size)
c557eb8c 643 iflags |= ITEM_REPORT_SIZE;
1ed9018e
WD
644 if (file->flags & FLAG_TIME_FAILED) { /* symlinks only */
645 if (iflags & ITEM_LOCAL_CHANGE)
646 iflags |= symlink_timeset_failed_flags;
647 } else if (keep_time
648 ? cmp_time(file->modtime, sxp->st.st_mtime) != 0
649 : iflags & (ITEM_TRANSFER|ITEM_LOCAL_CHANGE) && !(iflags & ITEM_MATCHED)
116a4769 650 && (!(iflags & ITEM_XNAME_FOLLOWS) || *xname))
48224e4c 651 iflags |= ITEM_REPORT_TIME;
5cefa088 652#if !defined HAVE_LCHMOD && !defined HAVE_SETATTRLIST
fd78520d
WD
653 if (S_ISLNK(file->mode)) {
654 ;
655 } else
656#endif
ff0e1580
WD
657 if (preserve_perms) {
658 if (!BITS_EQUAL(sxp->st.st_mode, file->mode, CHMOD_BITS))
659 iflags |= ITEM_REPORT_PERMS;
660 } else if (preserve_executability
661 && ((sxp->st.st_mode & 0111 ? 1 : 0) ^ (file->mode & 0111 ? 1 : 0)))
48224e4c 662 iflags |= ITEM_REPORT_PERMS;
9b25ef35 663 if (uid_ndx && am_root && (uid_t)F_OWNER(file) != sxp->st.st_uid)
48224e4c 664 iflags |= ITEM_REPORT_OWNER;
9b25ef35 665 if (gid_ndx && !(file->flags & FLAG_SKIP_GROUP)
858d45f1 666 && sxp->st.st_gid != (gid_t)F_GROUP(file))
48224e4c 667 iflags |= ITEM_REPORT_GROUP;
1c3344a1
WD
668#ifdef SUPPORT_ACLS
669 if (preserve_acls && !S_ISLNK(file->mode)) {
670 if (!ACL_READY(*sxp))
16edf865 671 get_acl(fnamecmp, sxp);
1c3344a1
WD
672 if (set_acl(NULL, file, sxp) == 0)
673 iflags |= ITEM_REPORT_ACL;
674 }
675#endif
16edf865
WD
676#ifdef SUPPORT_XATTRS
677 if (preserve_xattrs) {
678 if (!XATTR_READY(*sxp))
679 get_xattr(fnamecmp, sxp);
680 if (xattr_diff(file, sxp, 1))
681 iflags |= ITEM_REPORT_XATTR;
682 }
683#endif
684 } else {
685#ifdef SUPPORT_XATTRS
686 if (preserve_xattrs && xattr_diff(file, NULL, 1))
687 iflags |= ITEM_REPORT_XATTR;
688#endif
ee1d11c4 689 iflags |= ITEM_IS_NEW;
16edf865 690 }
c557eb8c 691
a1d23b53 692 iflags &= 0xffff;
16edf865 693 if ((iflags & (SIGNIFICANT_ITEM_FLAGS|ITEM_REPORT_XATTR) || verbose > 1
17bda2d1 694 || stdout_format_has_i > 1 || (xname && *xname)) && !read_batch) {
6c3862fa
WD
695 if (protocol_version >= 29) {
696 if (ndx >= 0)
ab3d6c60 697 write_ndx(sock_f_out, ndx);
ee1d11c4 698 write_shortint(sock_f_out, iflags);
ef20efcb
WD
699 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
700 write_byte(sock_f_out, fnamecmp_type);
701 if (iflags & ITEM_XNAME_FOLLOWS)
702 write_vstring(sock_f_out, xname, strlen(xname));
16edf865 703#ifdef SUPPORT_XATTRS
feb8dacc 704 if (preserve_xattrs && do_xfers
7462c6ac
WD
705 && iflags & (ITEM_REPORT_XATTR|ITEM_TRANSFER)) {
706 send_xattr_request(NULL, file,
707 iflags & ITEM_REPORT_XATTR ? sock_f_out : -1);
708 }
16edf865 709#endif
1925c344
WD
710 } else if (ndx >= 0) {
711 enum logcode code = logfile_format_has_i ? FINFO : FCLIENT;
712 log_item(code, file, &stats, iflags, xname);
713 }
06a1dbad
WD
714 }
715}
716
717
b7e8628c 718/* Perform our quick-check heuristic for determining if a file is unchanged. */
48224e4c 719int unchanged_file(char *fn, struct file_struct *file, STRUCT_STAT *st)
b7e8628c 720{
112d728f 721 if (st->st_size != F_LENGTH(file))
b7e8628c 722 return 0;
59c95e42 723
2cda2560 724 /* if always checksum is set then we use the checksum instead
2f03f956 725 of the file time to determine whether to sync */
f3d6d480 726 if (always_checksum > 0 && S_ISREG(st->st_mode)) {
a0456b9c 727 char sum[MAX_DIGEST_LEN];
b7e8628c 728 file_checksum(fn, sum, st->st_size);
82ad07c4 729 return memcmp(sum, F_SUM(file), checksum_len) == 0;
2f03f956
AT
730 }
731
f3d6d480 732 if (size_only > 0)
84acca07 733 return 1;
2f03f956 734
cc1e997d 735 if (ignore_times)
84acca07 736 return 0;
cc1e997d 737
0f86c74e 738 return cmp_time(st->st_mtime, file->modtime) == 0;
2f03f956
AT
739}
740
741
ec8290c8 742/*
195bd906 743 * set (initialize) the size entries in the per-file sum_struct
ec8290c8 744 * calculating dynamic block and checksum sizes.
195bd906 745 *
ec8290c8 746 * This is only called from generate_and_send_sums() but is a separate
195bd906
S
747 * function to encapsulate the logic.
748 *
749 * The block size is a rounded square root of file length.
750 *
751 * The checksum size is determined according to:
ed7e7955 752 * blocksum_bits = BLOCKSUM_BIAS + 2*log2(file_len) - log2(block_len)
195bd906
S
753 * provided by Donovan Baarda which gives a probability of rsync
754 * algorithm corrupting data and falling back using the whole md4
755 * checksums.
756 *
757 * This might be made one of several selectable heuristics.
758 */
1490812a 759static void sum_sizes_sqroot(struct sum_struct *sum, int64 len)
195bd906 760{
a255c592 761 int32 blength;
da9d12f5 762 int s2length;
cc911409 763 int64 l;
195bd906 764
a255c592 765 if (block_size)
195bd906 766 blength = block_size;
a255c592 767 else if (len <= BLOCK_SIZE * BLOCK_SIZE)
195bd906 768 blength = BLOCK_SIZE;
a255c592 769 else {
8bd77e70 770 int32 max_blength = protocol_version < 30 ? OLD_MAX_BLOCK_SIZE : MAX_BLOCK_SIZE;
a255c592 771 int32 c;
eae7165c
WD
772 int cnt;
773 for (c = 1, l = len, cnt = 0; l >>= 2; c <<= 1, cnt++) {}
8bd77e70
WD
774 if (c < 0 || c >= max_blength)
775 blength = max_blength;
eae7165c
WD
776 else {
777 blength = 0;
778 do {
779 blength |= c;
1490812a 780 if (len < (int64)blength * blength)
eae7165c
WD
781 blength &= ~c;
782 c >>= 1;
783 } while (c >= 8); /* round to multiple of 8 */
784 blength = MAX(blength, BLOCK_SIZE);
195bd906 785 }
195bd906
S
786 }
787
d04e9c51 788 if (protocol_version < 27) {
195bd906
S
789 s2length = csum_length;
790 } else if (csum_length == SUM_LENGTH) {
791 s2length = SUM_LENGTH;
792 } else {
a255c592 793 int32 c;
da9d12f5 794 int b = BLOCKSUM_BIAS;
a255c592 795 for (l = len; l >>= 1; b += 2) {}
f4164b73 796 for (c = blength; (c >>= 1) && b; b--) {}
a255c592
WD
797 /* add a bit, subtract rollsum, round up. */
798 s2length = (b + 1 - 32 + 7) / 8; /* --optimize in compiler-- */
195bd906
S
799 s2length = MAX(s2length, csum_length);
800 s2length = MIN(s2length, SUM_LENGTH);
801 }
802
803 sum->flength = len;
804 sum->blength = blength;
805 sum->s2length = s2length;
26404276 806 sum->remainder = (int32)(len % blength);
cc911409
WD
807 sum->count = (int32)(l = (len / blength) + (sum->remainder != 0));
808
809 if ((int64)sum->count != l)
810 sum->count = -1;
195bd906
S
811
812 if (sum->count && verbose > 2) {
a255c592
WD
813 rprintf(FINFO,
814 "count=%.0f rem=%ld blength=%ld s2length=%d flength=%.0f\n",
815 (double)sum->count, (long)sum->remainder, (long)sum->blength,
da9d12f5 816 sum->s2length, (double)sum->flength);
195bd906
S
817 }
818}
80605142 819
bceec82f 820
80605142
WD
821/*
822 * Generate and send a stream of signatures/checksums that describe a buffer
e66dfd18 823 *
80605142
WD
824 * Generate approximately one checksum every block_len bytes.
825 */
cc911409 826static int generate_and_send_sums(int fd, OFF_T len, int f_out, int f_copy)
2f03f956 827{
a1cbe76e 828 int32 i;
6e45e1dd 829 struct map_struct *mapbuf;
80605142 830 struct sum_struct sum;
2f03f956
AT
831 OFF_T offset = 0;
832
423dba8e 833 sum_sizes_sqroot(&sum, len);
cc911409
WD
834 if (sum.count < 0)
835 return -1;
6cc11982
WD
836 write_sum_head(f_out, &sum);
837
838 if (append_mode > 0 && f_copy < 0)
cc911409 839 return 0;
e66dfd18 840
6e45e1dd 841 if (len > 0)
96d910c7 842 mapbuf = map_file(fd, len, MAX_MAP_SIZE, sum.blength);
6e45e1dd
WD
843 else
844 mapbuf = NULL;
845
80605142 846 for (i = 0; i < sum.count; i++) {
a255c592 847 int32 n1 = (int32)MIN(len, (OFF_T)sum.blength);
6e45e1dd 848 char *map = map_ptr(mapbuf, offset, n1);
80605142 849 char sum2[SUM_LENGTH];
6cc11982
WD
850 uint32 sum1;
851
852 len -= n1;
853 offset += n1;
2f03f956 854
6cc11982 855 if (f_copy >= 0) {
cd6aa5b5 856 full_write(f_copy, map, n1);
6cc11982
WD
857 if (append_mode > 0)
858 continue;
859 }
cd6aa5b5 860
6cc11982 861 sum1 = get_checksum1(map, n1);
80605142 862 get_checksum2(map, n1, sum2);
2f03f956 863
80605142 864 if (verbose > 3) {
e66dfd18 865 rprintf(FINFO,
a255c592 866 "chunk[%.0f] offset=%.0f len=%ld sum1=%08lx\n",
6cc11982 867 (double)i, (double)offset - n1, (long)n1,
0e36d9da 868 (unsigned long)sum1);
80605142
WD
869 }
870 write_int(f_out, sum1);
fc0257c9 871 write_buf(f_out, sum2, sum.s2length);
2f03f956 872 }
6e45e1dd
WD
873
874 if (mapbuf)
875 unmap_file(mapbuf);
cc911409
WD
876
877 return 0;
2f03f956
AT
878}
879
06a1dbad 880
8e85be0a
WD
881/* Try to find a filename in the same dir as "fname" with a similar name. */
882static int find_fuzzy(struct file_struct *file, struct file_list *dirlist)
883{
884 int fname_len, fname_suf_len;
c58c1dc4 885 const char *fname_suf, *fname = file->basename;
f328e0f3 886 uint32 lowest_dist = 25 << 16; /* ignore a distance greater than 25 */
8e85be0a
WD
887 int j, lowest_j = -1;
888
889 fname_len = strlen(fname);
890 fname_suf = find_filename_suffix(fname, fname_len, &fname_suf_len);
891
9decb4d2 892 for (j = 0; j < dirlist->used; j++) {
8e85be0a
WD
893 struct file_struct *fp = dirlist->files[j];
894 const char *suf, *name;
895 int len, suf_len;
896 uint32 dist;
897
f3d6d480
WD
898 if (!S_ISREG(fp->mode) || !F_LENGTH(fp)
899 || fp->flags & FLAG_FILE_SENT)
8e85be0a
WD
900 continue;
901
c58c1dc4 902 name = fp->basename;
8e85be0a 903
112d728f 904 if (F_LENGTH(fp) == F_LENGTH(file)
0f86c74e 905 && cmp_time(fp->modtime, file->modtime) == 0) {
8e85be0a
WD
906 if (verbose > 4) {
907 rprintf(FINFO,
908 "fuzzy size/modtime match for %s\n",
909 name);
910 }
911 return j;
912 }
913
914 len = strlen(name);
915 suf = find_filename_suffix(name, len, &suf_len);
916
917 dist = fuzzy_distance(name, len, fname, fname_len);
918 /* Add some extra weight to how well the suffixes match. */
919 dist += fuzzy_distance(suf, suf_len, fname_suf, fname_suf_len)
920 * 10;
921 if (verbose > 4) {
922 rprintf(FINFO, "fuzzy distance for %s = %d.%05d\n",
923 name, (int)(dist>>16), (int)(dist&0xFFFF));
924 }
925 if (dist <= lowest_dist) {
926 lowest_dist = dist;
927 lowest_j = j;
928 }
929 }
930
931 return lowest_j;
932}
933
2cce7545
WD
934/* Copy a file found in our --copy-dest handling. */
935static int copy_altdest_file(const char *src, const char *dest, struct file_struct *file)
936{
937 char buf[MAXPATHLEN];
938 const char *copy_to, *partialptr;
4337eeb7 939 int save_preserve_xattrs = preserve_xattrs;
83235dbc 940 int ok, fd_w;
2cce7545
WD
941
942 if (inplace) {
943 /* Let copy_file open the destination in place. */
944 fd_w = -1;
945 copy_to = dest;
946 } else {
947 fd_w = open_tmpfile(buf, dest, file);
948 if (fd_w < 0)
949 return -1;
950 copy_to = buf;
951 }
952 cleanup_set(copy_to, NULL, NULL, -1, -1);
953 if (copy_file(src, copy_to, fd_w, file->mode, 0) < 0) {
954 if (verbose) {
955 rsyserr(FINFO, errno, "copy_file %s => %s",
956 full_fname(src), copy_to);
957 }
958 /* Try to clean up. */
959 unlink(copy_to);
960 cleanup_disable();
961 return -1;
962 }
963 partialptr = partial_dir ? partial_dir_fname(dest) : NULL;
4337eeb7 964 preserve_xattrs = 0; /* xattrs were copied with file */
83235dbc 965 ok = finish_transfer(dest, copy_to, src, partialptr, file, 1, 0);
4337eeb7 966 preserve_xattrs = save_preserve_xattrs;
2cce7545 967 cleanup_disable();
83235dbc 968 return ok ? 0 : -1;
2cce7545
WD
969}
970
48224e4c
WD
971/* This is only called for regular files. We return -2 if we've finished
972 * handling the file, -1 if no dest-linking occurred, or a non-negative
973 * value if we found an alternate basis file. */
974static int try_dests_reg(struct file_struct *file, char *fname, int ndx,
13710874 975 char *cmpbuf, stat_x *sxp, int itemizing,
18979194 976 enum logcode code)
48224e4c
WD
977{
978 int best_match = -1;
979 int match_level = 0;
980 int j = 0;
981
982 do {
983 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
1c3344a1 984 if (link_stat(cmpbuf, &sxp->st, 0) < 0 || !S_ISREG(sxp->st.st_mode))
48224e4c
WD
985 continue;
986 switch (match_level) {
987 case 0:
988 best_match = j;
989 match_level = 1;
990 /* FALL THROUGH */
991 case 1:
1c3344a1 992 if (!unchanged_file(cmpbuf, file, &sxp->st))
48224e4c
WD
993 continue;
994 best_match = j;
995 match_level = 2;
996 /* FALL THROUGH */
997 case 2:
1c3344a1 998 if (!unchanged_attrs(cmpbuf, file, sxp))
48224e4c 999 continue;
48224e4c
WD
1000 best_match = j;
1001 match_level = 3;
1002 break;
1003 }
1004 break;
1005 } while (basis_dir[++j] != NULL);
1006
1007 if (!match_level)
1008 return -1;
1009
1010 if (j != best_match) {
1011 j = best_match;
1012 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
1c3344a1 1013 if (link_stat(cmpbuf, &sxp->st, 0) < 0)
f964ac5e 1014 return -1;
48224e4c
WD
1015 }
1016
48224e4c 1017 if (match_level == 3 && !copy_dest) {
40410a38 1018#ifdef SUPPORT_HARD_LINKS
48224e4c 1019 if (link_dest) {
18979194 1020 if (!hard_link_one(file, fname, cmpbuf, 1))
48224e4c 1021 goto try_a_copy;
112d728f 1022 if (preserve_hard_links && F_IS_HLINKED(file))
4abe379c 1023 finish_hard_link(file, fname, ndx, &sxp->st, itemizing, code, j);
8365126b 1024 if (!maybe_ATTRS_REPORT && (verbose > 1 || stdout_format_has_i > 1)) {
16edf865 1025 itemize(cmpbuf, file, ndx, 1, sxp,
18979194
WD
1026 ITEM_LOCAL_CHANGE | ITEM_XNAME_FOLLOWS,
1027 0, "");
1028 }
40410a38
WD
1029 } else
1030#endif
1031 if (itemizing)
16edf865 1032 itemize(cmpbuf, file, ndx, 0, sxp, 0, 0, NULL);
18979194 1033 if (verbose > 1 && maybe_ATTRS_REPORT)
1925c344 1034 rprintf(FCLIENT, "%s is uptodate\n", fname);
48224e4c
WD
1035 return -2;
1036 }
48224e4c
WD
1037
1038 if (match_level >= 2) {
18979194 1039#ifdef SUPPORT_HARD_LINKS
48224e4c 1040 try_a_copy: /* Copy the file locally. */
18979194 1041#endif
2cce7545 1042 if (!dry_run && copy_altdest_file(cmpbuf, fname, file) < 0)
48224e4c 1043 return -1;
3447d610 1044 if (itemizing)
16edf865 1045 itemize(cmpbuf, file, ndx, 0, sxp, ITEM_LOCAL_CHANGE, 0, NULL);
e912bd4d 1046 if (maybe_ATTRS_REPORT
48224e4c
WD
1047 && ((!itemizing && verbose && match_level == 2)
1048 || (verbose > 1 && match_level == 3))) {
1925c344 1049 code = match_level == 3 ? FCLIENT : FINFO;
45c49b52 1050 rprintf(code, "%s%s\n", fname,
48224e4c
WD
1051 match_level == 3 ? " is uptodate" : "");
1052 }
1e1ca253 1053#ifdef SUPPORT_HARD_LINKS
112d728f 1054 if (preserve_hard_links && F_IS_HLINKED(file))
4abe379c 1055 finish_hard_link(file, fname, ndx, &sxp->st, itemizing, code, -1);
1e1ca253 1056#endif
48224e4c
WD
1057 return -2;
1058 }
1059
1060 return FNAMECMP_BASIS_DIR_LOW + j;
1061}
1062
1063/* This is only called for non-regular files. We return -2 if we've finished
116a4769
WD
1064 * handling the file, or -1 if no dest-linking occurred, or a non-negative
1065 * value if we found an alternate basis file. */
48224e4c 1066static int try_dests_non(struct file_struct *file, char *fname, int ndx,
13710874 1067 char *cmpbuf, stat_x *sxp, int itemizing,
18979194 1068 enum logcode code)
48224e4c 1069{
116a4769
WD
1070 char lnk[MAXPATHLEN];
1071 int best_match = -1;
1072 int match_level = 0;
1073 enum nonregtype type;
ca0e8296 1074 uint32 *devp;
116a4769
WD
1075 int len, j = 0;
1076
1077#ifndef SUPPORT_LINKS
1078 if (S_ISLNK(file->mode))
1079 return -1;
1080#endif
1081 if (S_ISDIR(file->mode)) {
1082 type = TYPE_DIR;
1083 } else if (IS_SPECIAL(file->mode))
1084 type = TYPE_SPECIAL;
1085 else if (IS_DEVICE(file->mode))
1086 type = TYPE_DEVICE;
1087#ifdef SUPPORT_LINKS
1088 else if (S_ISLNK(file->mode))
1089 type = TYPE_SYMLINK;
1090#endif
1091 else {
1092 rprintf(FERROR,
1093 "internal: try_dests_non() called with invalid mode (%o)\n",
1094 (int)file->mode);
1095 exit_cleanup(RERR_UNSUPPORTED);
1096 }
48224e4c
WD
1097
1098 do {
116a4769 1099 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
1c3344a1 1100 if (link_stat(cmpbuf, &sxp->st, 0) < 0)
48224e4c 1101 continue;
116a4769
WD
1102 switch (type) {
1103 case TYPE_DIR:
1c3344a1 1104 if (!S_ISDIR(sxp->st.st_mode))
116a4769
WD
1105 continue;
1106 break;
1107 case TYPE_SPECIAL:
1c3344a1 1108 if (!IS_SPECIAL(sxp->st.st_mode))
116a4769
WD
1109 continue;
1110 break;
1111 case TYPE_DEVICE:
1c3344a1 1112 if (!IS_DEVICE(sxp->st.st_mode))
116a4769
WD
1113 continue;
1114 break;
bb0d8edf 1115#ifdef SUPPORT_LINKS
116a4769 1116 case TYPE_SYMLINK:
1c3344a1 1117 if (!S_ISLNK(sxp->st.st_mode))
48224e4c 1118 continue;
116a4769 1119 break;
bb0d8edf 1120#endif
116a4769
WD
1121 }
1122 if (match_level < 1) {
1123 match_level = 1;
1124 best_match = j;
1125 }
1126 switch (type) {
1127 case TYPE_DIR:
116a4769 1128 case TYPE_SPECIAL:
4640ae85 1129 break;
116a4769 1130 case TYPE_DEVICE:
49b86442 1131 devp = F_RDEV_P(file);
1c3344a1 1132 if (sxp->st.st_rdev != MAKEDEV(DEV_MAJOR(devp), DEV_MINOR(devp)))
48224e4c 1133 continue;
116a4769
WD
1134 break;
1135#ifdef SUPPORT_LINKS
1136 case TYPE_SYMLINK:
1137 if ((len = readlink(cmpbuf, lnk, MAXPATHLEN-1)) <= 0)
ba212fe0 1138 continue;
116a4769 1139 lnk[len] = '\0';
82ad07c4 1140 if (strcmp(lnk, F_SYMLINK(file)) != 0)
ba212fe0 1141 continue;
116a4769
WD
1142 break;
1143#endif
1144 }
1145 if (match_level < 2) {
1146 match_level = 2;
1147 best_match = j;
1148 }
1c3344a1 1149 if (unchanged_attrs(cmpbuf, file, sxp)) {
116a4769
WD
1150 match_level = 3;
1151 best_match = j;
1152 break;
5f93b4d3 1153 }
116a4769
WD
1154 } while (basis_dir[++j] != NULL);
1155
1156 if (!match_level)
1157 return -1;
1158
1159 if (j != best_match) {
1160 j = best_match;
1161 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
1c3344a1 1162 if (link_stat(cmpbuf, &sxp->st, 0) < 0)
116a4769
WD
1163 return -1;
1164 }
1165
1166 if (match_level == 3) {
40410a38 1167#ifdef SUPPORT_HARD_LINKS
ba212fe0
WD
1168 if (link_dest
1169#ifndef CAN_HARDLINK_SYMLINK
1170 && !S_ISLNK(file->mode)
1171#endif
1172#ifndef CAN_HARDLINK_SPECIAL
43476426 1173 && !IS_SPECIAL(file->mode) && !IS_DEVICE(file->mode)
ba212fe0 1174#endif
116a4769
WD
1175 && !S_ISDIR(file->mode)) {
1176 if (do_link(cmpbuf, fname) < 0) {
3f0211b6 1177 rsyserr(FERROR_XFER, errno,
1c6e9dfa 1178 "failed to hard-link %s with %s",
116a4769
WD
1179 cmpbuf, fname);
1180 return j;
48224e4c 1181 }
112d728f 1182 if (preserve_hard_links && F_IS_HLINKED(file))
4abe379c 1183 finish_hard_link(file, fname, ndx, NULL, itemizing, code, -1);
116a4769 1184 } else
40410a38 1185#endif
116a4769
WD
1186 match_level = 2;
1187 if (itemizing && stdout_format_has_i
1188 && (verbose > 1 || stdout_format_has_i > 1)) {
1189 int chg = compare_dest && type != TYPE_DIR ? 0
1ed9018e 1190 : ITEM_LOCAL_CHANGE + (match_level == 3 ? ITEM_XNAME_FOLLOWS : 0);
116a4769 1191 char *lp = match_level == 3 ? "" : NULL;
16edf865 1192 itemize(cmpbuf, file, ndx, 0, sxp, chg + ITEM_MATCHED, 0, lp);
48224e4c 1193 }
e912bd4d 1194 if (verbose > 1 && maybe_ATTRS_REPORT) {
116a4769
WD
1195 rprintf(FCLIENT, "%s%s is uptodate\n",
1196 fname, type == TYPE_DIR ? "/" : "");
48224e4c
WD
1197 }
1198 return -2;
116a4769 1199 }
48224e4c 1200
116a4769 1201 return j;
48224e4c
WD
1202}
1203
6f0805f5
WD
1204static void list_file_entry(struct file_struct *f)
1205{
1206 char permbuf[PERMSTRING_SIZE];
1207 double len;
1208
1209 if (!F_IS_ACTIVE(f)) {
1210 /* this can happen if duplicate names were removed */
1211 return;
1212 }
1213
1214 permstring(permbuf, f->mode);
1215 len = F_LENGTH(f);
1216
1217 /* TODO: indicate '+' if the entry has an ACL. */
1218
1219#ifdef SUPPORT_LINKS
1220 if (preserve_links && S_ISLNK(f->mode)) {
1221 rprintf(FINFO, "%s %11.0f %s %s -> %s\n",
1222 permbuf, len, timestring(f->modtime),
1223 f_name(f, NULL), F_SYMLINK(f));
1224 } else
1225#endif
b111f11e 1226 if (missing_args == 2 && f->mode == 0) {
b43db229
WD
1227 rprintf(FINFO, "%-*s %s\n",
1228 /*colwidth*/11 + 31, "*missing",
1229 f_name(f, NULL));
1230 } else {
6f0805f5
WD
1231 rprintf(FINFO, "%s %11.0f %s %s\n",
1232 permbuf, len, timestring(f->modtime),
1233 f_name(f, NULL));
1234 }
1235}
1236
ed7e7955 1237static int phase = 0;
1c3344a1 1238static int dflt_perms;
ed7e7955 1239
83a8ca7b
MM
1240static int implied_dirs_are_missing;
1241/* Helper for recv_generator's skip_dir and dry_missing_dir tests. */
1242static BOOL is_below(struct file_struct *file, struct file_struct *subtree)
1243{
1244 return F_DEPTH(file) > F_DEPTH(subtree)
1245 && (!implied_dirs_are_missing || f_name_has_prefix(file, subtree));
1246}
1247
ab3d6c60 1248/* Acts on the indicated item in cur_flist whose name is fname. If a dir,
0492fdfb
WD
1249 * make sure it exists, and has the right permissions/timestamp info. For
1250 * all other non-regular files (symlinks, etc.) we create them here. For
1251 * regular files that have changed, we try to find a basis file and then
ab3d6c60 1252 * start sending checksums. The ndx is the file's unique index value.
ef1aa910 1253 *
c9b62cf3
WD
1254 * The fname parameter must point to a MAXPATHLEN buffer! (e.g it gets
1255 * passed to delete_item(), which can use it during a recursive delete.)
0e5665d3 1256 *
0492fdfb
WD
1257 * Note that f_out is set to -1 when doing final directory-permission and
1258 * modification-time repair. */
ee1d11c4 1259static void recv_generator(char *fname, struct file_struct *file, int ndx,
18979194 1260 int itemizing, enum logcode code, int f_out)
2cda2560 1261{
4a19c3b2 1262 static const char *parent_dirname = "";
83a8ca7b
MM
1263 /* Missing dir not created due to --dry-run; will still be scanned. */
1264 static struct file_struct *dry_missing_dir = NULL;
1265 /* Missing dir whose contents are skipped altogether due to
1266 * --ignore-non-existing, daemon exclude, or mkdir failure. */
1267 static struct file_struct *skip_dir = NULL;
8e85be0a 1268 static struct file_list *fuzzy_dirlist = NULL;
8470a515 1269 static int need_fuzzy_dirlist = 0;
8e85be0a 1270 struct file_struct *fuzzy_file = NULL;
41cfde6b 1271 int fd = -1, f_copy = -1;
13710874 1272 stat_x sx, real_sx;
1c3344a1 1273 STRUCT_STAT partial_st;
41cfde6b 1274 struct file_struct *back_file = NULL;
1f1d368a 1275 int statret, real_ret, stat_errno;
41cfde6b 1276 char *fnamecmp, *partialptr, *backupptr = NULL;
375a4556 1277 char fnamecmpbuf[MAXPATHLEN];
41cfde6b 1278 uchar fnamecmp_type;
c6fadc0e 1279 int del_opts = delete_mode || force_delete ? DEL_RECURSE : 0;
cae7885e
WD
1280 int is_dir = !S_ISDIR(file->mode) ? 0
1281 : inc_recurse && ndx != cur_flist->ndx_start - 1 ? -1
1282 : 1;
f7632fc6 1283
45c49b52
WD
1284 if (verbose > 2)
1285 rprintf(FINFO, "recv_generator(%s,%d)\n", fname, ndx);
2f03f956 1286
6f0805f5 1287 if (list_only) {
cae7885e
WD
1288 if (is_dir < 0
1289 || (is_dir && !implied_dirs && file->flags & FLAG_IMPLIED_DIR))
6f0805f5
WD
1290 return;
1291 list_file_entry(file);
1292 return;
1293 }
1294
6e0bf4d8
WD
1295 if (skip_dir) {
1296 if (is_below(file, skip_dir)) {
1297 if (is_dir)
1298 file->flags |= FLAG_MISSING_DIR;
c9b62cf3 1299#ifdef SUPPORT_HARD_LINKS
6e0bf4d8
WD
1300 else if (F_IS_HLINKED(file))
1301 handle_skipped_hlink(file, itemizing, code, f_out);
c9b62cf3 1302#endif
6e0bf4d8
WD
1303 return;
1304 }
83a8ca7b 1305 skip_dir = NULL;
6e0bf4d8 1306 }
cc12c488 1307
4616867b 1308 if (daemon_filter_list.head && (*fname != '.' || fname[1])) {
1df02d13 1309 if (check_filter(&daemon_filter_list, FLOG, fname, is_dir) < 0) {
cc12c488
WD
1310 if (is_dir < 0)
1311 return;
1312#ifdef SUPPORT_HARD_LINKS
1313 if (F_IS_HLINKED(file))
1314 handle_skipped_hlink(file, itemizing, code, f_out);
1315#endif
1316 rprintf(FERROR_XFER,
1317 "skipping daemon-excluded %s \"%s\"\n",
1318 is_dir ? "directory" : "file", fname);
1319 if (is_dir)
1320 goto skipping_dir_contents;
1321 return;
1322 }
1323 }
1324
1c3344a1
WD
1325#ifdef SUPPORT_ACLS
1326 sx.acc_acl = sx.def_acl = NULL;
16edf865
WD
1327#endif
1328#ifdef SUPPORT_XATTRS
1329 sx.xattr = NULL;
1c3344a1 1330#endif
83a8ca7b
MM
1331 if (dry_run > 1 || (dry_missing_dir && is_below(file, dry_missing_dir))) {
1332 parent_is_dry_missing:
f3d6d480
WD
1333 if (fuzzy_dirlist) {
1334 flist_free(fuzzy_dirlist);
1335 fuzzy_dirlist = NULL;
1336 }
1337 parent_dirname = "";
73f7af0e
WD
1338 statret = -1;
1339 stat_errno = ENOENT;
1340 } else {
4a19c3b2 1341 const char *dn = file->dirname ? file->dirname : ".";
6e0bf4d8 1342 dry_missing_dir = NULL;
8c9e06d7 1343 if (parent_dirname != dn && strcmp(parent_dirname, dn) != 0) {
4f802c66 1344 if (relative_paths && !implied_dirs
83a8ca7b
MM
1345 && do_stat(dn, &sx.st) < 0) {
1346 if (dry_run)
1347 goto parent_is_dry_missing;
1348 if (create_directory_path(fname) < 0) {
1349 rsyserr(FERROR_XFER, errno,
1350 "recv_generator: mkdir %s failed",
1351 full_fname(dn));
1352 }
8e85be0a 1353 }
8c9e06d7 1354 if (fuzzy_dirlist) {
8470a515 1355 flist_free(fuzzy_dirlist);
8c9e06d7
WD
1356 fuzzy_dirlist = NULL;
1357 }
1358 if (fuzzy_basis)
8470a515 1359 need_fuzzy_dirlist = 1;
1c3344a1
WD
1360#ifdef SUPPORT_ACLS
1361 if (!preserve_perms)
1362 dflt_perms = default_perms_for_dir(dn);
1363#endif
8e85be0a 1364 }
8c9e06d7 1365 parent_dirname = dn;
8e85be0a 1366
6f2a222c 1367 if (need_fuzzy_dirlist && S_ISREG(file->mode)) {
4a19c3b2
WD
1368 strlcpy(fnamecmpbuf, dn, sizeof fnamecmpbuf);
1369 fuzzy_dirlist = get_dirlist(fnamecmpbuf, -1, 1);
6f2a222c
WD
1370 need_fuzzy_dirlist = 0;
1371 }
865c3b5f 1372
cae7885e 1373 statret = link_stat(fname, &sx.st, keep_dirlinks && is_dir);
73f7af0e
WD
1374 stat_errno = errno;
1375 }
63787382 1376
b111f11e 1377 if (missing_args == 2 && file->mode == 0) {
b0a04670
WD
1378 if (filter_list.head && check_filter(&filter_list, FINFO, fname, is_dir) < 0)
1379 return;
f6d530b3
WD
1380 if (statret == 0)
1381 delete_item(fname, sx.st.st_mode, del_opts);
1382 return;
1383 }
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
cae7885e
WD
1396 if (verbose > 1) {
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))) {
1409 if (verbose > 1 && is_dir >= 0)
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)
f4164b73 1492 && verbose && 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)) {
2f03f956 1547 if (verbose) {
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 }
116a4769 1611 if (code != FNONE && verbose)
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))) {
4640ae85
WD
1629 dev_t rdev;
1630 if (IS_DEVICE(file->mode)) {
1631 uint32 *devp = F_RDEV_P(file);
1632 rdev = MAKEDEV(DEV_MAJOR(devp), DEV_MINOR(devp));
1633 } else
1634 rdev = 0;
116a4769 1635 if (statret == 0) {
3eabe6aa 1636 int del_for_flag;
c6fadc0e 1637 if (IS_DEVICE(file->mode)) {
1c3344a1 1638 if (!IS_DEVICE(sx.st.st_mode))
c6fadc0e 1639 statret = -1;
3eabe6aa 1640 del_for_flag = DEL_FOR_DEVICE;
c6fadc0e 1641 } else {
1c3344a1 1642 if (!IS_SPECIAL(sx.st.st_mode))
c6fadc0e 1643 statret = -1;
3eabe6aa 1644 del_for_flag = DEL_FOR_SPECIAL;
c6fadc0e
WD
1645 }
1646 if (statret == 0
1c3344a1 1647 && BITS_EQUAL(sx.st.st_mode, file->mode, _S_IFMT)
4640ae85 1648 && (IS_SPECIAL(sx.st.st_mode) || sx.st.st_rdev == rdev)) {
116a4769 1649 /* The device or special file is identical. */
16edf865 1650 set_file_attrs(fname, file, &sx, NULL, maybe_ATTRS_REPORT);
116a4769 1651 if (itemizing)
1c3344a1 1652 itemize(fname, file, ndx, 0, &sx, 0, 0, NULL);
1e1ca253 1653#ifdef SUPPORT_HARD_LINKS
112d728f 1654 if (preserve_hard_links && F_IS_HLINKED(file))
4abe379c 1655 finish_hard_link(file, fname, ndx, &sx.st, itemizing, code, -1);
1e1ca253 1656#endif
116a4769
WD
1657 if (remove_source_files == 1)
1658 goto return_with_success;
1c3344a1 1659 goto cleanup;
116a4769 1660 }
3eabe6aa 1661 if (delete_item(fname, sx.st.st_mode, del_opts | del_for_flag) != 0)
1c3344a1 1662 goto cleanup;
116a4769 1663 } else if (basis_dir[0] != NULL) {
1c3344a1 1664 int j = try_dests_non(file, fname, ndx, fnamecmpbuf, &sx,
18979194 1665 itemizing, code);
116a4769 1666 if (j == -2) {
ba212fe0
WD
1667#ifndef CAN_HARDLINK_SPECIAL
1668 if (link_dest) {
1669 /* Resort to --copy-dest behavior. */
1670 } else
1671#endif
48224e4c 1672 if (!copy_dest)
1c3344a1 1673 goto cleanup;
f4164b73
WD
1674 itemizing = 0;
1675 code = FNONE;
116a4769
WD
1676 } else if (j >= 0)
1677 statret = 1;
48224e4c 1678 }
1e1ca253 1679#ifdef SUPPORT_HARD_LINKS
d4d6646a
WD
1680 if (preserve_hard_links && F_HLINK_NOT_LAST(file)) {
1681 cur_flist->in_progress++;
1c3344a1 1682 goto cleanup;
d4d6646a 1683 }
1e1ca253 1684#endif
116a4769 1685 if (verbose > 2) {
f7d7fb38
WD
1686 rprintf(FINFO, "mknod(%s, 0%o, [%ld,%ld])\n",
1687 fname, (int)file->mode,
1688 (long)major(rdev), (long)minor(rdev));
116a4769 1689 }
82ad07c4 1690 if (do_mknod(fname, file->mode, rdev) < 0) {
3f0211b6 1691 rsyserr(FERROR_XFER, errno, "mknod %s failed",
116a4769 1692 full_fname(fname));
2f03f956 1693 } else {
16edf865 1694 set_file_attrs(fname, file, NULL, NULL, 0);
116a4769 1695 if (itemizing) {
1c3344a1 1696 itemize(fname, file, ndx, statret, &sx,
1ed9018e 1697 ITEM_LOCAL_CHANGE|ITEM_REPORT_CHANGE, 0, NULL);
116a4769
WD
1698 }
1699 if (code != FNONE && verbose)
1700 rprintf(code, "%s\n", fname);
1e1ca253 1701#ifdef SUPPORT_HARD_LINKS
112d728f 1702 if (preserve_hard_links && F_IS_HLINKED(file))
4abe379c 1703 finish_hard_link(file, fname, ndx, NULL, itemizing, code, -1);
1e1ca253 1704#endif
47c11975 1705 if (remove_source_files == 1)
04cd8789 1706 goto return_with_success;
2f03f956 1707 }
1c3344a1 1708 goto cleanup;
2f03f956 1709 }
2f03f956 1710
2f03f956 1711 if (!S_ISREG(file->mode)) {
49b86442 1712 if (solo_file)
6cbde57d 1713 fname = f_name(file, NULL);
45c49b52 1714 rprintf(FINFO, "skipping non-regular file \"%s\"\n", fname);
1c3344a1 1715 goto cleanup;
2f03f956
AT
1716 }
1717
f3d6d480 1718 if (max_size > 0 && F_LENGTH(file) > max_size) {
289a3216 1719 if (verbose > 1) {
49b86442 1720 if (solo_file)
6cbde57d 1721 fname = f_name(file, NULL);
45c49b52 1722 rprintf(FINFO, "%s is over max-size\n", fname);
289a3216 1723 }
1c3344a1 1724 goto cleanup;
289a3216 1725 }
f3d6d480 1726 if (min_size > 0 && F_LENGTH(file) < min_size) {
02b5cb23 1727 if (verbose > 1) {
49b86442 1728 if (solo_file)
6cbde57d 1729 fname = f_name(file, NULL);
45c49b52 1730 rprintf(FINFO, "%s is under min-size\n", fname);
02b5cb23 1731 }
1c3344a1 1732 goto cleanup;
02b5cb23 1733 }
289a3216 1734
f3d6d480 1735 if (update_only > 0 && statret == 0
1c3344a1 1736 && cmp_time(sx.st.st_mtime, file->modtime) > 0) {
c3cbcfb8 1737 if (verbose > 1)
45c49b52 1738 rprintf(FINFO, "%s is newer\n", fname);
c9b62cf3
WD
1739#ifdef SUPPORT_HARD_LINKS
1740 if (F_IS_HLINKED(file))
1741 handle_skipped_hlink(file, itemizing, code, f_out);
1742#endif
1c3344a1 1743 goto cleanup;
c3cbcfb8
WD
1744 }
1745
375a4556 1746 fnamecmp = fname;
41cfde6b 1747 fnamecmp_type = FNAMECMP_FNAME;
375a4556 1748
1c3344a1 1749 if (statret == 0 && !S_ISREG(sx.st.st_mode)) {
3eabe6aa 1750 if (delete_item(fname, sx.st.st_mode, del_opts | DEL_FOR_FILE) != 0)
1c3344a1 1751 goto cleanup;
1f1d368a
WD
1752 statret = -1;
1753 stat_errno = ENOENT;
1754 }
1755
06a1dbad 1756 if (statret != 0 && basis_dir[0] != NULL) {
1c3344a1 1757 int j = try_dests_reg(file, fname, ndx, fnamecmpbuf, &sx,
18979194 1758 itemizing, code);
04cd8789 1759 if (j == -2) {
47c11975 1760 if (remove_source_files == 1)
04cd8789 1761 goto return_with_success;
1c3344a1 1762 goto cleanup;
04cd8789 1763 }
b06050f9 1764 if (j >= 0) {
48224e4c
WD
1765 fnamecmp = fnamecmpbuf;
1766 fnamecmp_type = j;
9ba46343 1767 statret = 0;
e7d13fe5
WD
1768 }
1769 }
1770
1f1d368a 1771 real_ret = statret;
1c3344a1 1772 real_sx = sx;
375a4556 1773
9d954dca 1774 if (partial_dir && (partialptr = partial_dir_fname(fname)) != NULL
72c19bb3
WD
1775 && link_stat(partialptr, &partial_st, 0) == 0
1776 && S_ISREG(partial_st.st_mode)) {
06a1dbad 1777 if (statret != 0)
72c19bb3
WD
1778 goto prepare_to_open;
1779 } else
1780 partialptr = NULL;
89f7eff3 1781
83a8ca7b 1782 if (statret != 0 && fuzzy_dirlist) {
8e85be0a
WD
1783 int j = find_fuzzy(file, fuzzy_dirlist);
1784 if (j >= 0) {
1785 fuzzy_file = fuzzy_dirlist->files[j];
6cbde57d 1786 f_name(fuzzy_file, fnamecmpbuf);
8e85be0a
WD
1787 if (verbose > 2) {
1788 rprintf(FINFO, "fuzzy basis selected for %s: %s\n",
45c49b52 1789 fname, fnamecmpbuf);
8e85be0a 1790 }
1c3344a1 1791 sx.st.st_size = F_LENGTH(fuzzy_file);
8e85be0a
WD
1792 statret = 0;
1793 fnamecmp = fnamecmpbuf;
1794 fnamecmp_type = FNAMECMP_FUZZY;
1795 }
1796 }
1797
06a1dbad 1798 if (statret != 0) {
1e1ca253 1799#ifdef SUPPORT_HARD_LINKS
d4d6646a
WD
1800 if (preserve_hard_links && F_HLINK_NOT_LAST(file)) {
1801 cur_flist->in_progress++;
1c3344a1 1802 goto cleanup;
d4d6646a 1803 }
1e1ca253 1804#endif
41cfde6b
WD
1805 if (stat_errno == ENOENT)
1806 goto notify_others;
3f0211b6 1807 rsyserr(FERROR_XFER, stat_errno, "recv_generator: failed to stat %s",
991daf00 1808 full_fname(fname));
1c3344a1 1809 goto cleanup;
2f03f956
AT
1810 }
1811
48224e4c 1812 if (fnamecmp_type <= FNAMECMP_BASIS_DIR_HIGH)
b7e8628c 1813 ;
8e85be0a
WD
1814 else if (fnamecmp_type == FNAMECMP_FUZZY)
1815 ;
1c3344a1 1816 else if (unchanged_file(fnamecmp, file, &sx.st)) {
d8b108c2
WD
1817 if (partialptr) {
1818 do_unlink(partialptr);
1819 handle_partial_dir(partialptr, PDIR_DELETE);
1820 }
16edf865 1821 set_file_attrs(fname, file, &sx, NULL, maybe_ATTRS_REPORT);
0fddbd8a 1822 if (itemizing)
1c3344a1 1823 itemize(fnamecmp, file, ndx, statret, &sx, 0, 0, NULL);
1e1ca253 1824#ifdef SUPPORT_HARD_LINKS
112d728f 1825 if (preserve_hard_links && F_IS_HLINKED(file))
4abe379c 1826 finish_hard_link(file, fname, ndx, &sx.st, itemizing, code, -1);
1e1ca253 1827#endif
47c11975 1828 if (remove_source_files != 1)
1c3344a1 1829 goto cleanup;
04cd8789 1830 return_with_success:
663b2857 1831 if (!dry_run)
ab3d6c60 1832 send_msg_int(MSG_SUCCESS, ndx);
1c3344a1 1833 goto cleanup;
2f03f956
AT
1834 }
1835
022dec7a 1836 if (append_mode > 0 && sx.st.st_size >= F_LENGTH(file)) {
c9b62cf3
WD
1837#ifdef SUPPORT_HARD_LINKS
1838 if (F_IS_HLINKED(file))
1839 handle_skipped_hlink(file, itemizing, code, f_out);
1840#endif
022dec7a
WD
1841 goto cleanup;
1842 }
1843
b2e7c913 1844 prepare_to_open:
9d954dca 1845 if (partialptr) {
1c3344a1 1846 sx.st = partial_st;
9d954dca
WD
1847 fnamecmp = partialptr;
1848 fnamecmp_type = FNAMECMP_PARTIAL_DIR;
1849 statret = 0;
1850 }
1851
c0dba635 1852 if (!do_xfers)
3841a04e 1853 goto notify_others;
2f03f956 1854
c0dba635
WD
1855 if (read_batch || whole_file) {
1856 if (inplace && make_backups > 0 && fnamecmp_type == FNAMECMP_FNAME) {
1857 if (!(backupptr = get_backup_name(fname)))
1858 goto cleanup;
1859 if (!(back_file = make_file(fname, NULL, NULL, 0, NO_FILTERS)))
1860 goto pretend_missing;
2cce7545 1861 if (copy_file(fname, backupptr, -1, back_file->mode, 1) < 0) {
c0dba635
WD
1862 unmake_file(back_file);
1863 back_file = NULL;
1864 goto cleanup;
1865 }
1866 }
1867 goto notify_others;
1868 }
1869
ccb16b46 1870 if (fuzzy_dirlist) {
8e85be0a
WD
1871 int j = flist_find(fuzzy_dirlist, file);
1872 if (j >= 0) /* don't use changing file as future fuzzy basis */
f3d6d480 1873 fuzzy_dirlist->files[j]->flags |= FLAG_FILE_SENT;
8e85be0a
WD
1874 }
1875
2cda2560 1876 /* open the file */
c0dba635 1877 if ((fd = do_open(fnamecmp, O_RDONLY, 0)) < 0) {
d62bcc17
WD
1878 rsyserr(FERROR, errno, "failed to open %s, continuing",
1879 full_fname(fnamecmp));
b2e7c913 1880 pretend_missing:
60be6acf 1881 /* pretend the file didn't exist */
1e1ca253 1882#ifdef SUPPORT_HARD_LINKS
d4d6646a
WD
1883 if (preserve_hard_links && F_HLINK_NOT_LAST(file)) {
1884 cur_flist->in_progress++;
1c3344a1 1885 goto cleanup;
d4d6646a 1886 }
1e1ca253 1887#endif
1f1d368a 1888 statret = real_ret = -1;
41cfde6b 1889 goto notify_others;
2f03f956
AT
1890 }
1891
f3d6d480 1892 if (inplace && make_backups > 0 && fnamecmp_type == FNAMECMP_FNAME) {
cd6aa5b5
WD
1893 if (!(backupptr = get_backup_name(fname))) {
1894 close(fd);
1c3344a1 1895 goto cleanup;
cd6aa5b5 1896 }
3de73827 1897 if (!(back_file = make_file(fname, NULL, NULL, 0, NO_FILTERS))) {
cd6aa5b5
WD
1898 close(fd);
1899 goto pretend_missing;
1900 }
1901 if (robust_unlink(backupptr) && errno != ENOENT) {
3f0211b6 1902 rsyserr(FERROR_XFER, errno, "unlink %s",
cd6aa5b5 1903 full_fname(backupptr));
82ad07c4 1904 unmake_file(back_file);
c0dba635 1905 back_file = NULL;
cd6aa5b5 1906 close(fd);
1c3344a1 1907 goto cleanup;
cd6aa5b5 1908 }
f1ca7c44
WD
1909 if ((f_copy = do_open(backupptr, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0600)) < 0) {
1910 int save_errno = errno ? errno : EINVAL; /* 0 paranoia */
1911 if (errno == ENOENT && make_bak_dir(backupptr) == 0) {
1912 if ((f_copy = do_open(backupptr, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0600)) < 0)
1913 save_errno = errno ? errno : save_errno;
1914 else
1915 save_errno = 0;
1916 }
1917 if (save_errno) {
1918 rsyserr(FERROR_XFER, save_errno, "open %s", full_fname(backupptr));
1919 unmake_file(back_file);
1920 back_file = NULL;
1921 close(fd);
1922 goto cleanup;
1923 }
cd6aa5b5 1924 }
41cfde6b 1925 fnamecmp_type = FNAMECMP_BACKUP;
cd6aa5b5
WD
1926 }
1927
dfd5ba6a 1928 if (verbose > 3) {
ecc81fce 1929 rprintf(FINFO, "gen mapped %s of size %.0f\n",
1c3344a1 1930 fnamecmp, (double)sx.st.st_size);
dfd5ba6a 1931 }
2f03f956 1932
2f03f956 1933 if (verbose > 2)
0492fdfb 1934 rprintf(FINFO, "generating and sending sums for %d\n", ndx);
2f03f956 1935
b2e7c913 1936 notify_others:
24ded29f 1937 if (remove_source_files && !delay_updates && !phase && !dry_run)
04cd8789 1938 increment_active_files(ndx, itemizing, code);
3ea6e0e7 1939 if (inc_recurse && !dry_run)
f3d6d480 1940 cur_flist->in_progress++;
18979194
WD
1941#ifdef SUPPORT_HARD_LINKS
1942 if (preserve_hard_links && F_IS_HLINKED(file))
f3d6d480 1943 file->flags |= FLAG_FILE_SENT;
18979194 1944#endif
ab3d6c60 1945 write_ndx(f_out, ndx);
6c3862fa 1946 if (itemizing) {
ee1d11c4 1947 int iflags = ITEM_TRANSFER;
f3d6d480 1948 if (always_checksum > 0)
1ed9018e 1949 iflags |= ITEM_REPORT_CHANGE;
352963dd 1950 if (fnamecmp_type != FNAMECMP_FNAME)
ef20efcb
WD
1951 iflags |= ITEM_BASIS_TYPE_FOLLOWS;
1952 if (fnamecmp_type == FNAMECMP_FUZZY)
1953 iflags |= ITEM_XNAME_FOLLOWS;
1c3344a1 1954 itemize(fnamecmp, file, -1, real_ret, &real_sx, iflags, fnamecmp_type,
c58c1dc4 1955 fuzzy_file ? fuzzy_file->basename : NULL);
1c3344a1
WD
1956#ifdef SUPPORT_ACLS
1957 if (preserve_acls)
1958 free_acl(&real_sx);
16edf865
WD
1959#endif
1960#ifdef SUPPORT_XATTRS
1961 if (preserve_xattrs)
1962 free_xattr(&real_sx);
1c3344a1 1963#endif
8e85be0a 1964 }
cd6aa5b5 1965
beb51aa0 1966 if (!do_xfers) {
1e1ca253 1967#ifdef SUPPORT_HARD_LINKS
112d728f 1968 if (preserve_hard_links && F_IS_HLINKED(file))
4abe379c 1969 finish_hard_link(file, fname, ndx, &sx.st, itemizing, code, -1);
1e1ca253 1970#endif
1c3344a1 1971 goto cleanup;
ee1d11c4
WD
1972 }
1973 if (read_batch)
1c3344a1 1974 goto cleanup;
41cfde6b 1975
a24d64bf 1976 if (statret != 0 || whole_file)
e86ae6bc 1977 write_sum_head(f_out, NULL);
a24d64bf
WD
1978 else if (sx.st.st_size <= 0) {
1979 write_sum_head(f_out, NULL);
1980 close(fd);
1981 } else {
cc911409
WD
1982 if (generate_and_send_sums(fd, sx.st.st_size, f_out, f_copy) < 0) {
1983 rprintf(FWARNING,
1984 "WARNING: file is too large for checksum sending: %s\n",
1985 fnamecmp);
1986 write_sum_head(f_out, NULL);
1987 }
c0dba635 1988 close(fd);
e86ae6bc
WD
1989 }
1990
c0dba635
WD
1991 cleanup:
1992 if (back_file) {
e9489cd6 1993 int save_preserve_xattrs = preserve_xattrs;
c0dba635
WD
1994 if (f_copy >= 0)
1995 close(f_copy);
e9489cd6 1996#ifdef SUPPORT_XATTRS
4337eeb7 1997 if (preserve_xattrs) {
e9489cd6 1998 copy_xattrs(fname, backupptr);
4337eeb7
WD
1999 preserve_xattrs = 0;
2000 }
e9489cd6 2001#endif
16edf865 2002 set_file_attrs(backupptr, back_file, NULL, NULL, 0);
e9489cd6 2003 preserve_xattrs = save_preserve_xattrs;
e86ae6bc
WD
2004 if (verbose > 1) {
2005 rprintf(FINFO, "backed up %s to %s\n",
45c49b52 2006 fname, backupptr);
41cfde6b 2007 }
82ad07c4 2008 unmake_file(back_file);
e86ae6bc 2009 }
41cfde6b 2010
1c3344a1
WD
2011#ifdef SUPPORT_ACLS
2012 if (preserve_acls)
2013 free_acl(&sx);
16edf865
WD
2014#endif
2015#ifdef SUPPORT_XATTRS
2016 if (preserve_xattrs)
2017 free_xattr(&sx);
1c3344a1
WD
2018#endif
2019 return;
2f03f956
AT
2020}
2021
c9b62cf3
WD
2022#ifdef SUPPORT_HARD_LINKS
2023static void handle_skipped_hlink(struct file_struct *file, int itemizing,
2024 enum logcode code, int f_out)
2025{
2026 char fbuf[MAXPATHLEN];
2027 int new_last_ndx;
2028 struct file_list *save_flist = cur_flist;
2029
2030 /* If we skip the last item in a chain of links and there was a
2031 * prior non-skipped hard-link waiting to finish, finish it now. */
2032 if ((new_last_ndx = skip_hard_link(file, &cur_flist)) < 0)
2033 return;
2034
2035 file = cur_flist->files[new_last_ndx - cur_flist->ndx_start];
2036 cur_flist->in_progress--; /* undo prior increment */
2037 f_name(file, fbuf);
2038 recv_generator(fbuf, file, new_last_ndx, itemizing, code, f_out);
2039
2040 cur_flist = save_flist;
2041}
2042#endif
2043
7730114b 2044static void touch_up_dirs(struct file_list *flist, int ndx)
fd3f5af2 2045{
0bb86165 2046 static int counter = 0;
fd3f5af2
WD
2047 struct file_struct *file;
2048 char *fname;
0bb86165 2049 int i, start, end;
fd3f5af2
WD
2050
2051 if (ndx < 0) {
2052 start = 0;
9decb4d2 2053 end = flist->used - 1;
fd3f5af2
WD
2054 } else
2055 start = end = ndx;
2056
2057 /* Fix any directory permissions that were modified during the
2058 * transfer and/or re-set any tweaked modified-time values. */
0bb86165 2059 for (i = start; i <= end; i++, counter++) {
1befb74b 2060 file = flist->files[i];
6303f9a2 2061 if (!S_ISDIR(file->mode)
609e6dda 2062 || (!implied_dirs && file->flags & FLAG_IMPLIED_DIR))
c9ec4608 2063 continue;
0bb86165 2064 if (verbose > 3) {
d750be6a 2065 fname = f_name(file, NULL);
0bb86165 2066 rprintf(FINFO, "touch_up_dirs: %s (%d)\n",
d750be6a 2067 NS(fname), i);
0bb86165 2068 }
c9ec4608
WD
2069 if (!F_IS_ACTIVE(file) || file->flags & FLAG_MISSING_DIR
2070 || (!need_retouch_dir_times && file->mode & S_IWUSR))
fd3f5af2
WD
2071 continue;
2072 fname = f_name(file, NULL);
2073 if (!(file->mode & S_IWUSR))
2074 do_chmod(fname, file->mode);
6226396c
WD
2075 if (need_retouch_dir_times) {
2076 STRUCT_STAT st;
2077 if (link_stat(fname, &st, 0) == 0
2078 && cmp_time(st.st_mtime, file->modtime) != 0)
2079 set_modtime(fname, file->modtime, file->mode);
2080 }
ee03cb99
WD
2081 if (counter >= loopchk_limit) {
2082 if (allowed_lull)
2083 maybe_send_keepalive();
2084 else
2085 maybe_flush_socket(0);
2086 counter = 0;
2087 }
fd3f5af2
WD
2088 }
2089}
2090
7730114b
WD
2091void check_for_finished_files(int itemizing, enum logcode code, int check_redo)
2092{
2093 struct file_struct *file;
2094 struct file_list *flist;
2095 char fbuf[MAXPATHLEN];
2096 int ndx;
2097
513d3fd8 2098 while (1) {
7730114b 2099#ifdef SUPPORT_HARD_LINKS
513d3fd8 2100 if (preserve_hard_links && (ndx = get_hlink_num()) != -1) {
9bed8554 2101 flist = flist_for_ndx(ndx, "check_for_finished_files.1");
513d3fd8
WD
2102 file = flist->files[ndx - flist->ndx_start];
2103 assert(file->flags & FLAG_HLINKED);
2104 finish_hard_link(file, f_name(file, fbuf), ndx, NULL, itemizing, code, -1);
2105 flist->in_progress--;
2106 continue;
2107 }
7730114b
WD
2108#endif
2109
513d3fd8
WD
2110 if (check_redo && (ndx = get_redo_num()) != -1) {
2111 csum_length = SUM_LENGTH;
2112 max_size = -max_size;
2113 min_size = -min_size;
2114 ignore_existing = -ignore_existing;
2115 ignore_non_existing = -ignore_non_existing;
2116 update_only = -update_only;
2117 always_checksum = -always_checksum;
2118 size_only = -size_only;
2119 append_mode = -append_mode;
2120 make_backups = -make_backups; /* avoid dup backup w/inplace */
2121 ignore_times++;
2122
2123 flist = cur_flist;
9bed8554 2124 cur_flist = flist_for_ndx(ndx, "check_for_finished_files.2");
513d3fd8
WD
2125
2126 file = cur_flist->files[ndx - cur_flist->ndx_start];
2127 if (solo_file)
2128 strlcpy(fbuf, solo_file, sizeof fbuf);
2129 else
2130 f_name(file, fbuf);
2131 recv_generator(fbuf, file, ndx, itemizing, code, sock_f_out);
2132 cur_flist->to_redo--;
2133
2134 cur_flist = flist;
2135
2136 csum_length = SHORT_SUM_LENGTH;
2137 max_size = -max_size;
2138 min_size = -min_size;
2139 ignore_existing = -ignore_existing;
2140 ignore_non_existing = -ignore_non_existing;
2141 update_only = -update_only;
2142 always_checksum = -always_checksum;
2143 size_only = -size_only;
2144 append_mode = -append_mode;
2145 make_backups = -make_backups;
2146 ignore_times--;
2147 continue;
2148 }
2149
2150 if (cur_flist == first_flist)
2151 break;
2152
2153 /* We only get here if inc_recurse is enabled. */
7730114b
WD
2154 if (first_flist->in_progress || first_flist->to_redo)
2155 break;
2156
8250d8a1
WD
2157 write_ndx(sock_f_out, NDX_DONE);
2158 if (!read_batch)
be91bd81 2159 maybe_flush_socket(1);
7730114b 2160
f7d6dce6
WD
2161 if (delete_during == 2 || !dir_tweaking) {
2162 /* Skip directory touch-up. */
ee279980 2163 } else if (first_flist->parent_ndx >= 0)
f7d6dce6 2164 touch_up_dirs(dir_flist, first_flist->parent_ndx);
f7d6dce6 2165
7730114b
WD
2166 flist_free(first_flist); /* updates first_flist */
2167 }
2168}
2169
2170void generate_files(int f_out, const char *local_name)
2f03f956 2171{
ee03cb99 2172 int i, ndx, next_loopchk = 0;
968c8030 2173 char fbuf[MAXPATHLEN];
18979194 2174 int itemizing;
7433d73a 2175 enum logcode code;
083acd49 2176 int save_do_progress = do_progress;
ee1d11c4 2177
7433d73a
WD
2178 if (protocol_version >= 29) {
2179 itemizing = 1;
17bda2d1 2180 maybe_ATTRS_REPORT = stdout_format_has_i ? 0 : ATTRS_REPORT;
f4164b73 2181 code = logfile_format_has_i ? FNONE : FLOG;
7433d73a 2182 } else if (am_daemon) {
ecc7623e 2183 itemizing = logfile_format_has_i && do_xfers;
e912bd4d 2184 maybe_ATTRS_REPORT = ATTRS_REPORT;
beb51aa0 2185 code = itemizing || !do_xfers ? FCLIENT : FINFO;
7433d73a 2186 } else if (!am_server) {
17bda2d1
WD
2187 itemizing = stdout_format_has_i;
2188 maybe_ATTRS_REPORT = stdout_format_has_i ? 0 : ATTRS_REPORT;
f4164b73 2189 code = itemizing ? FNONE : FINFO;
7433d73a
WD
2190 } else {
2191 itemizing = 0;
e912bd4d 2192 maybe_ATTRS_REPORT = ATTRS_REPORT;
7433d73a
WD
2193 code = FINFO;
2194 }
7730114b
WD
2195 solo_file = local_name;
2196 dir_tweaking = !(list_only || solo_file || dry_run);
f9998046 2197 need_retouch_dir_times = preserve_times > 1;
ee03cb99 2198 loopchk_limit = allowed_lull ? allowed_lull * 5 : 200;
1ed9018e 2199 symlink_timeset_failed_flags = ITEM_REPORT_TIME
ee39281d 2200 | (protocol_version >= 30 || !am_server ? ITEM_REPORT_TIMEFAIL : 0);
83a8ca7b 2201 implied_dirs_are_missing = relative_paths && !implied_dirs && protocol_version < 30;
2f03f956 2202
f3d6d480
WD
2203 if (verbose > 2)
2204 rprintf(FINFO, "generator starting pid=%ld\n", (long)getpid());
2f03f956 2205
9decb4d2 2206 if (delete_before && !solo_file && cur_flist->used > 0)
332cf6df 2207 do_delete_pass();
20319fd9
WD
2208 if (delete_during == 2) {
2209 deldelay_size = BIGPATHBUFLEN * 4;
2210 deldelay_buf = new_array(char, deldelay_size);
2211 if (!deldelay_buf)
2212 out_of_memory("delete-delay");
2213 }
083acd49 2214 do_progress = 0;
59faec8b 2215
f3d6d480 2216 if (append_mode > 0 || whole_file < 0)
33ab4ad8 2217 whole_file = 0;
3e7053ac 2218 if (verbose >= 2) {
1b1fef20 2219 rprintf(FINFO, "delta-transmission %s\n",
33ab4ad8 2220 whole_file
1b1fef20
WD
2221 ? "disabled for local transfer or --whole-file"
2222 : "enabled");
3e7053ac 2223 }
2cda2560 2224
513fd04d
WD
2225 /* Since we often fill up the outgoing socket and then just sit around
2226 * waiting for the other 2 processes to do their thing, we don't want
2227 * to exit on a timeout. If the data stops flowing, the receiver will
2228 * notice that and let us know via the redo pipe (or its closing). */
2229 ignore_timeout = 1;
a57873b7 2230
1c3344a1
WD
2231 dflt_perms = (ACCESSPERMS & ~orig_umask);
2232
f3d6d480 2233 do {
d4d6646a 2234#ifdef SUPPORT_HARD_LINKS
da131912 2235 if (preserve_hard_links && inc_recurse) {
d620219d 2236 while (!flist_eof && file_total < FILECNT_LOOKAHEAD/2)
da131912
WD
2237 wait_for_receiver();
2238 }
d4d6646a 2239#endif
da131912 2240
ee279980 2241 if (inc_recurse && cur_flist->parent_ndx >= 0) {
f3d6d480 2242 struct file_struct *fp = dir_flist->files[cur_flist->parent_ndx];
ca7d17e4
WD
2243 if (solo_file)
2244 strlcpy(fbuf, solo_file, sizeof fbuf);
2245 else
2246 f_name(fp, fbuf);
e5bf3b58
WD
2247 ndx = cur_flist->ndx_start - 1;
2248 recv_generator(fbuf, fp, ndx, itemizing, code, f_out);
f6f74b93
WD
2249 if (delete_during && dry_run < 2 && !list_only
2250 && !(fp->flags & FLAG_MISSING_DIR)) {
2251 if (fp->flags & FLAG_CONTENT_DIR) {
e5bf3b58
WD
2252 dev_t dirdev;
2253 if (one_file_system) {
65ba6af6 2254 uint32 *devp = F_DIR_DEV_P(fp);
e5bf3b58
WD
2255 dirdev = MAKEDEV(DEV_MAJOR(devp), DEV_MINOR(devp));
2256 } else
2257 dirdev = MAKEDEV(0, 0);
f6f74b93
WD
2258 delete_in_dir(fbuf, fp, &dirdev);
2259 } else
2260 change_local_filter_dir(fbuf, strlen(fbuf), F_DEPTH(fp));
f3d6d480
WD
2261 }
2262 }
2263 for (i = cur_flist->low; i <= cur_flist->high; i++) {
332cf6df 2264 struct file_struct *file = cur_flist->sorted[i];
2f03f956 2265
f3d6d480
WD
2266 if (!F_IS_ACTIVE(file))
2267 continue;
0492fdfb 2268
f7a76b9c 2269 if (unsort_ndx)
332cf6df
WD
2270 ndx = F_NDX(file);
2271 else
332cf6df
WD
2272 ndx = i + cur_flist->ndx_start;
2273
7730114b
WD
2274 if (solo_file)
2275 strlcpy(fbuf, solo_file, sizeof fbuf);
f3d6d480
WD
2276 else
2277 f_name(file, fbuf);
332cf6df 2278 recv_generator(fbuf, file, ndx, itemizing, code, f_out);
1f7e29b9 2279
1ff66d4c 2280 check_for_finished_files(itemizing, code, 0);
9ac2395b 2281
ee03cb99
WD
2282 if (i + cur_flist->ndx_start >= next_loopchk) {
2283 if (allowed_lull)
2284 maybe_send_keepalive();
2285 else
2286 maybe_flush_socket(0);
2287 next_loopchk += loopchk_limit;
2288 }
f3d6d480 2289 }
2f03f956 2290
3ea6e0e7 2291 if (!inc_recurse) {
9ae7a2cd 2292 write_ndx(f_out, NDX_DONE);
f3d6d480 2293 break;
7730114b 2294 }
f3d6d480 2295
896f046f 2296 while (1) {
7730114b 2297 check_for_finished_files(itemizing, code, 1);
896f046f
WD
2298 if (cur_flist->next || flist_eof)
2299 break;
f3d6d480 2300 wait_for_receiver();
7730114b
WD
2301 }
2302 } while ((cur_flist = cur_flist->next) != NULL);
0492fdfb 2303
7730114b 2304 if (delete_during)
332cf6df 2305 delete_in_dir(NULL, NULL, &dev_zero);
7730114b
WD
2306 phase++;
2307 if (verbose > 2)
2308 rprintf(FINFO, "generate_files phase=%d\n", phase);
f3d6d480 2309
896f046f 2310 while (1) {
7730114b 2311 check_for_finished_files(itemizing, code, 1);
896f046f
WD
2312 if (msgdone_cnt)
2313 break;
7730114b
WD
2314 wait_for_receiver();
2315 }
f3d6d480
WD
2316
2317 phase++;
bc63ae3f 2318 if (verbose > 2)
f7d7fb38 2319 rprintf(FINFO, "generate_files phase=%d\n", phase);
2f03f956 2320
9ae7a2cd 2321 write_ndx(f_out, NDX_DONE);
70352269
WD
2322 /* Reduce round-trip lag-time for a useless delay-updates phase. */
2323 if (protocol_version >= 29 && !delay_updates)
9ae7a2cd 2324 write_ndx(f_out, NDX_DONE);
6dff5992 2325
0438f100 2326 /* Read MSG_DONE for the redo phase (and any prior messages). */
896f046f 2327 while (1) {
7730114b 2328 check_for_finished_files(itemizing, code, 0);
896f046f
WD
2329 if (msgdone_cnt > 1)
2330 break;
f3d6d480
WD
2331 wait_for_receiver();
2332 }
6dff5992 2333
0438f100
WD
2334 if (protocol_version >= 29) {
2335 phase++;
2336 if (verbose > 2)
2337 rprintf(FINFO, "generate_files phase=%d\n", phase);
70352269 2338 if (delay_updates)
9ae7a2cd 2339 write_ndx(f_out, NDX_DONE);
70352269 2340 /* Read MSG_DONE for delay-updates phase & prior messages. */
7730114b 2341 while (msgdone_cnt == 2)
f3d6d480 2342 wait_for_receiver();
0438f100
WD
2343 }
2344
083acd49 2345 do_progress = save_do_progress;
20319fd9
WD
2346 if (delete_during == 2)
2347 do_delayed_deletions(fbuf);
7730114b 2348 if (delete_after && !solo_file && file_total > 0)
332cf6df 2349 do_delete_pass();
59faec8b 2350
f7d6dce6
WD
2351 if ((need_retouch_dir_perms || need_retouch_dir_times)
2352 && dir_tweaking && (!inc_recurse || delete_during == 2))
1befb74b 2353 touch_up_dirs(dir_flist, -1);
6dff5992 2354
e5e85283 2355 if (max_delete >= 0 && deletion_count > max_delete) {
9ed56948 2356 rprintf(FWARNING,
f75a53e7
WD
2357 "Deletions stopped due to --max-delete limit (%d skipped)\n",
2358 deletion_count - max_delete);
2359 io_error |= IOERR_DEL_LIMIT;
2360 }
2361
6dff5992 2362 if (verbose > 2)
f7d7fb38 2363 rprintf(FINFO, "generate_files finished\n");
2f03f956 2364}