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