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