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