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