Mention that specifying "/dir/**" is a safer way than "/dir/"
[rsync/rsync.git] / generator.c
... / ...
CommitLineData
1/* -*- c-file-style: "linux" -*-
2
3 rsync -- fast file replication program
4
5 Copyright (C) 1996-2000 by Andrew Tridgell
6 Copyright (C) Paul Mackerras 1996
7 Copyright (C) 2002 by Martin Pool <mbp@samba.org>
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
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24#include "rsync.h"
25
26extern int verbose;
27extern int dry_run;
28extern int log_format_has_i;
29extern int log_format_has_o_or_i;
30extern int daemon_log_format_has_i;
31extern int am_root;
32extern int am_server;
33extern int am_daemon;
34extern int recurse;
35extern int relative_paths;
36extern int keep_dirlinks;
37extern int preserve_links;
38extern int preserve_devices;
39extern int preserve_hard_links;
40extern int preserve_perms;
41extern int preserve_uid;
42extern int preserve_gid;
43extern int preserve_times;
44extern int omit_dir_times;
45extern int delete_before;
46extern int delete_during;
47extern int delete_after;
48extern int module_id;
49extern int ignore_errors;
50extern int remove_sent_files;
51extern int update_only;
52extern int opt_ignore_existing;
53extern int inplace;
54extern int make_backups;
55extern int csum_length;
56extern int ignore_times;
57extern int size_only;
58extern OFF_T max_size;
59extern int io_timeout;
60extern int io_error;
61extern int ignore_timeout;
62extern int protocol_version;
63extern int fuzzy_basis;
64extern int always_checksum;
65extern char *partial_dir;
66extern char *basis_dir[];
67extern int compare_dest;
68extern int link_dest;
69extern int whole_file;
70extern int local_server;
71extern int list_only;
72extern int read_batch;
73extern int only_existing;
74extern int orig_umask;
75extern int safe_symlinks;
76extern long block_size; /* "long" because popt can't set an int32. */
77extern int max_delete;
78extern int force_delete;
79extern int one_file_system;
80extern struct stats stats;
81extern dev_t filesystem_dev;
82extern char *backup_dir;
83extern char *backup_suffix;
84extern int backup_suffix_len;
85
86extern struct filter_list_struct server_filter_list;
87
88static int deletion_count = 0; /* used to implement --max-delete */
89
90
91static int is_backup_file(char *fn)
92{
93 int k = strlen(fn) - backup_suffix_len;
94 return k > 0 && strcmp(fn+k, backup_suffix) == 0;
95}
96
97
98/* Delete a file or directory. If DEL_FORCE_RECURSE is set in the flags, or if
99 * force_delete is set, this will delete recursively as long as DEL_NO_RECURSE
100 * is not set in the flags. */
101static int delete_item(char *fname, int mode, int flags)
102{
103 struct file_list *dirlist;
104 char buf[MAXPATHLEN];
105 int j, dlen, zap_dir, ok;
106 void *save_filters;
107
108 if (max_delete && deletion_count >= max_delete)
109 return -1;
110
111 if (!S_ISDIR(mode)) {
112 if (make_backups && (backup_dir || !is_backup_file(fname)))
113 ok = make_backup(fname);
114 else
115 ok = robust_unlink(fname) == 0;
116 if (ok) {
117 if (!(flags & DEL_TERSE))
118 log_delete(fname, mode);
119 deletion_count++;
120 return 0;
121 }
122 if (errno == ENOENT)
123 return 0;
124 rsyserr(FERROR, errno, "delete_file: unlink %s failed",
125 full_fname(fname));
126 return -1;
127 }
128
129 zap_dir = (flags & DEL_FORCE_RECURSE || (force_delete && recurse))
130 && !(flags & DEL_NO_RECURSE);
131 if (dry_run && zap_dir) {
132 ok = 0;
133 errno = ENOTEMPTY;
134 } else if (make_backups && !backup_dir && !is_backup_file(fname)
135 && !(flags & DEL_FORCE_RECURSE))
136 ok = make_backup(fname);
137 else
138 ok = do_rmdir(fname) == 0;
139 if (ok) {
140 if (!(flags & DEL_TERSE))
141 log_delete(fname, mode);
142 deletion_count++;
143 return 0;
144 }
145 if (errno == ENOENT)
146 return 0;
147 if (!zap_dir || (errno != ENOTEMPTY && errno != EEXIST)) {
148 rsyserr(FERROR, errno, "delete_file: rmdir %s failed",
149 full_fname(fname));
150 return -1;
151 }
152 flags |= DEL_FORCE_RECURSE; /* mark subdir dels as not "in the way" */
153
154 dlen = strlcpy(buf, fname, MAXPATHLEN);
155 save_filters = push_local_filters(buf, dlen);
156
157 dirlist = get_dirlist(buf, dlen, 0);
158 for (j = dirlist->count; j--; ) {
159 struct file_struct *fp = dirlist->files[j];
160
161 if (fp->flags & FLAG_MOUNT_POINT)
162 continue;
163
164 f_name_to(fp, buf);
165 if (delete_item(buf, fp->mode, flags & ~DEL_TERSE) != 0) {
166 flist_free(dirlist);
167 return -1;
168 }
169 }
170 flist_free(dirlist);
171
172 pop_local_filters(save_filters);
173
174 if (max_delete && deletion_count >= max_delete)
175 return -1;
176
177 if (do_rmdir(fname) == 0) {
178 if (!(flags & DEL_TERSE))
179 log_delete(fname, mode);
180 deletion_count++;
181 } else if (errno != ENOTEMPTY && errno != ENOENT) {
182 rsyserr(FERROR, errno, "delete_file: rmdir %s failed",
183 full_fname(fname));
184 return -1;
185 }
186
187 return 0;
188}
189
190
191/* This function is used to implement per-directory deletion, and is used by
192 * all the --delete-WHEN options. Note that the fbuf pointer must point to a
193 * MAXPATHLEN buffer with the name of the directory in it (the functions we
194 * call will append names onto the end, but the old dir value will be restored
195 * on exit). */
196static void delete_in_dir(struct file_list *flist, char *fbuf,
197 struct file_struct *file, int allowed_lull)
198{
199 static int min_depth = MAXPATHLEN, cur_depth = -1;
200 static void *filt_array[MAXPATHLEN/2+1];
201 struct file_list *dirlist;
202 char delbuf[MAXPATHLEN];
203 STRUCT_STAT st;
204 int dlen, i;
205
206 if (!flist) {
207 while (cur_depth >= min_depth)
208 pop_local_filters(filt_array[cur_depth--]);
209 min_depth = MAXPATHLEN;
210 cur_depth = -1;
211 return;
212 }
213
214 if (verbose > 2)
215 rprintf(FINFO, "delete_in_dir(%s)\n", safe_fname(fbuf));
216
217 if (allowed_lull)
218 maybe_send_keepalive(allowed_lull, flist->count);
219
220 if (file->dir.depth >= MAXPATHLEN/2+1)
221 return; /* Impossible... */
222
223 if (max_delete && deletion_count >= max_delete)
224 return;
225
226 if (io_error && !(lp_ignore_errors(module_id) || ignore_errors)) {
227 rprintf(FINFO,
228 "IO error encountered -- skipping file deletion\n");
229 max_delete = -1; /* avoid duplicating the above warning */
230 return;
231 }
232
233 while (cur_depth >= file->dir.depth && cur_depth >= min_depth)
234 pop_local_filters(filt_array[cur_depth--]);
235 cur_depth = file->dir.depth;
236 if (min_depth > cur_depth)
237 min_depth = cur_depth;
238 dlen = strlen(fbuf);
239 filt_array[cur_depth] = push_local_filters(fbuf, dlen);
240
241 if (link_stat(fbuf, &st, keep_dirlinks) < 0)
242 return;
243
244 if (one_file_system && file->flags & FLAG_TOP_DIR)
245 filesystem_dev = st.st_dev;
246
247 dirlist = get_dirlist(fbuf, dlen, 0);
248
249 /* If an item in dirlist is not found in flist, delete it
250 * from the filesystem. */
251 for (i = dirlist->count; i--; ) {
252 if (!dirlist->files[i]->basename)
253 continue;
254 if (flist_find(flist, dirlist->files[i]) < 0) {
255 int mode = dirlist->files[i]->mode;
256 f_name_to(dirlist->files[i], delbuf);
257 if (delete_item(delbuf, mode, DEL_FORCE_RECURSE) < 0)
258 break;
259 }
260 }
261
262 flist_free(dirlist);
263}
264
265/* This deletes any files on the receiving side that are not present on the
266 * sending side. This is used by --delete-before and --delete-after. */
267static void do_delete_pass(struct file_list *flist, int allowed_lull)
268{
269 char fbuf[MAXPATHLEN];
270 int j;
271
272 for (j = 0; j < flist->count; j++) {
273 struct file_struct *file = flist->files[j];
274
275 if (!(file->flags & FLAG_DEL_HERE))
276 continue;
277
278 f_name_to(file, fbuf);
279 if (verbose > 1 && file->flags & FLAG_TOP_DIR)
280 rprintf(FINFO, "deleting in %s\n", safe_fname(fbuf));
281
282 delete_in_dir(flist, fbuf, file, allowed_lull);
283 }
284}
285
286static int unchanged_attrs(struct file_struct *file, STRUCT_STAT *st)
287{
288 if (preserve_perms
289 && (st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS))
290 return 0;
291
292 if (am_root && preserve_uid && st->st_uid != file->uid)
293 return 0;
294
295 if (preserve_gid && file->gid != GID_NONE && st->st_gid != file->gid)
296 return 0;
297
298 return 1;
299}
300
301
302#define SID_UPDATING ITEM_UPDATING
303#define SID_REPORT_CHECKSUM ITEM_REPORT_CHECKSUM
304#define SID_USING_ALT_BASIS ITEM_USING_ALT_BASIS
305/* This flag doesn't get sent, so it must be outside 0xffff. */
306#define SID_NO_DEST_AND_NO_UPDATE (1<<16)
307
308static void itemize(struct file_struct *file, int statret, STRUCT_STAT *st,
309 int32 sflags, int f_out, int ndx)
310{
311 int iflags = sflags & 0xffff;
312
313 if (statret >= 0) {
314 if (S_ISREG(file->mode) && file->length != st->st_size)
315 iflags |= ITEM_REPORT_SIZE;
316 if (!(sflags & SID_NO_DEST_AND_NO_UPDATE)) {
317 int keep_time = !preserve_times ? 0
318 : S_ISDIR(file->mode) ? !omit_dir_times
319 : !S_ISLNK(file->mode);
320
321 if ((iflags & ITEM_UPDATING && !keep_time)
322 || (keep_time && file->modtime != st->st_mtime))
323 iflags |= ITEM_REPORT_TIME;
324 if (preserve_perms && file->mode != st->st_mode)
325 iflags |= ITEM_REPORT_PERMS;
326 if (preserve_uid && am_root && file->uid != st->st_uid)
327 iflags |= ITEM_REPORT_OWNER;
328 if (preserve_gid && file->gid != GID_NONE
329 && st->st_gid != file->gid)
330 iflags |= ITEM_REPORT_GROUP;
331 }
332 } else
333 iflags |= ITEM_IS_NEW | ITEM_UPDATING;
334
335 if ((iflags || verbose > 1) && !read_batch) {
336 if (protocol_version >= 29) {
337 if (ndx >= 0)
338 write_int(f_out, ndx);
339 write_shortint(f_out, iflags);
340 } else if (ndx >= 0)
341 log_recv(file, &stats, iflags);
342 }
343}
344
345
346/* Perform our quick-check heuristic for determining if a file is unchanged. */
347static int unchanged_file(char *fn, struct file_struct *file, STRUCT_STAT *st)
348{
349 if (st->st_size != file->length)
350 return 0;
351
352 /* if always checksum is set then we use the checksum instead
353 of the file time to determine whether to sync */
354 if (always_checksum && S_ISREG(st->st_mode)) {
355 char sum[MD4_SUM_LENGTH];
356 file_checksum(fn, sum, st->st_size);
357 return memcmp(sum, file->u.sum, protocol_version < 21 ? 2
358 : MD4_SUM_LENGTH) == 0;
359 }
360
361 if (size_only)
362 return 1;
363
364 if (ignore_times)
365 return 0;
366
367 return cmp_modtime(st->st_mtime, file->modtime) == 0;
368}
369
370
371/*
372 * set (initialize) the size entries in the per-file sum_struct
373 * calculating dynamic block and checksum sizes.
374 *
375 * This is only called from generate_and_send_sums() but is a separate
376 * function to encapsulate the logic.
377 *
378 * The block size is a rounded square root of file length.
379 *
380 * The checksum size is determined according to:
381 * blocksum_bits = BLOCKSUM_EXP + 2*log2(file_len) - log2(block_len)
382 * provided by Donovan Baarda which gives a probability of rsync
383 * algorithm corrupting data and falling back using the whole md4
384 * checksums.
385 *
386 * This might be made one of several selectable heuristics.
387 */
388static void sum_sizes_sqroot(struct sum_struct *sum, int64 len)
389{
390 int32 blength;
391 int s2length;
392
393 if (block_size)
394 blength = block_size;
395 else if (len <= BLOCK_SIZE * BLOCK_SIZE)
396 blength = BLOCK_SIZE;
397 else {
398 int32 c;
399 int64 l;
400 int cnt;
401 for (c = 1, l = len, cnt = 0; l >>= 2; c <<= 1, cnt++) {}
402 if (cnt >= 31 || c >= MAX_BLOCK_SIZE)
403 blength = MAX_BLOCK_SIZE;
404 else {
405 blength = 0;
406 do {
407 blength |= c;
408 if (len < (int64)blength * blength)
409 blength &= ~c;
410 c >>= 1;
411 } while (c >= 8); /* round to multiple of 8 */
412 blength = MAX(blength, BLOCK_SIZE);
413 }
414 }
415
416 if (protocol_version < 27) {
417 s2length = csum_length;
418 } else if (csum_length == SUM_LENGTH) {
419 s2length = SUM_LENGTH;
420 } else {
421 int32 c;
422 int64 l;
423 int b = BLOCKSUM_BIAS;
424 for (l = len; l >>= 1; b += 2) {}
425 for (c = blength; c >>= 1 && b; b--) {}
426 /* add a bit, subtract rollsum, round up. */
427 s2length = (b + 1 - 32 + 7) / 8; /* --optimize in compiler-- */
428 s2length = MAX(s2length, csum_length);
429 s2length = MIN(s2length, SUM_LENGTH);
430 }
431
432 sum->flength = len;
433 sum->blength = blength;
434 sum->s2length = s2length;
435 sum->count = (len + (blength - 1)) / blength;
436 sum->remainder = (len % blength);
437
438 if (sum->count && verbose > 2) {
439 rprintf(FINFO,
440 "count=%.0f rem=%ld blength=%ld s2length=%d flength=%.0f\n",
441 (double)sum->count, (long)sum->remainder, (long)sum->blength,
442 sum->s2length, (double)sum->flength);
443 }
444}
445
446
447/*
448 * Generate and send a stream of signatures/checksums that describe a buffer
449 *
450 * Generate approximately one checksum every block_len bytes.
451 */
452static void generate_and_send_sums(int fd, OFF_T len, int f_out, int f_copy)
453{
454 int32 i;
455 struct map_struct *mapbuf;
456 struct sum_struct sum;
457 OFF_T offset = 0;
458
459 sum_sizes_sqroot(&sum, len);
460
461 if (len > 0)
462 mapbuf = map_file(fd, len, MAX_MAP_SIZE, sum.blength);
463 else
464 mapbuf = NULL;
465
466 write_sum_head(f_out, &sum);
467
468 for (i = 0; i < sum.count; i++) {
469 int32 n1 = (int32)MIN(len, (OFF_T)sum.blength);
470 char *map = map_ptr(mapbuf, offset, n1);
471 uint32 sum1 = get_checksum1(map, n1);
472 char sum2[SUM_LENGTH];
473
474 if (f_copy >= 0)
475 full_write(f_copy, map, n1);
476
477 get_checksum2(map, n1, sum2);
478
479 if (verbose > 3) {
480 rprintf(FINFO,
481 "chunk[%.0f] offset=%.0f len=%ld sum1=%08lx\n",
482 (double)i, (double)offset, (long)n1,
483 (unsigned long)sum1);
484 }
485 write_int(f_out, sum1);
486 write_buf(f_out, sum2, sum.s2length);
487 len -= n1;
488 offset += n1;
489 }
490
491 if (mapbuf)
492 unmap_file(mapbuf);
493}
494
495
496/* Try to find a filename in the same dir as "fname" with a similar name. */
497static int find_fuzzy(struct file_struct *file, struct file_list *dirlist)
498{
499 int fname_len, fname_suf_len;
500 const char *fname_suf, *fname = file->basename;
501 uint32 lowest_dist = 0x7FFFFFFF;
502 int j, lowest_j = -1;
503
504 fname_len = strlen(fname);
505 fname_suf = find_filename_suffix(fname, fname_len, &fname_suf_len);
506
507 for (j = 0; j < dirlist->count; j++) {
508 struct file_struct *fp = dirlist->files[j];
509 const char *suf, *name;
510 int len, suf_len;
511 uint32 dist;
512
513 if (!S_ISREG(fp->mode) || !fp->length
514 || fp->flags & FLAG_NO_FUZZY)
515 continue;
516
517 name = fp->basename;
518
519 if (fp->length == file->length
520 && fp->modtime == file->modtime) {
521 if (verbose > 4) {
522 rprintf(FINFO,
523 "fuzzy size/modtime match for %s\n",
524 name);
525 }
526 return j;
527 }
528
529 len = strlen(name);
530 suf = find_filename_suffix(name, len, &suf_len);
531
532 dist = fuzzy_distance(name, len, fname, fname_len);
533 /* Add some extra weight to how well the suffixes match. */
534 dist += fuzzy_distance(suf, suf_len, fname_suf, fname_suf_len)
535 * 10;
536 if (verbose > 4) {
537 rprintf(FINFO, "fuzzy distance for %s = %d.%05d\n",
538 name, (int)(dist>>16), (int)(dist&0xFFFF));
539 }
540 if (dist <= lowest_dist) {
541 lowest_dist = dist;
542 lowest_j = j;
543 }
544 }
545
546 return lowest_j;
547}
548
549
550/* Acts on flist->file's ndx'th item, whose name is fname. If a directory,
551 * make sure it exists, and has the right permissions/timestamp info. For
552 * all other non-regular files (symlinks, etc.) we create them here. For
553 * regular files that have changed, we try to find a basis file and then
554 * start sending checksums.
555 *
556 * Note that f_out is set to -1 when doing final directory-permission and
557 * modification-time repair. */
558static void recv_generator(char *fname, struct file_list *flist,
559 struct file_struct *file, int ndx,
560 int itemizing, int maybe_PERMS_REPORT,
561 enum logcode code, int allowed_lull,
562 int f_out, int f_out_name)
563{
564 static int missing_below = -1, excluded_below = -1;
565 static char *fuzzy_dirname = NULL;
566 static struct file_list *fuzzy_dirlist = NULL;
567 struct file_struct *fuzzy_file = NULL;
568 int fd = -1, f_copy = -1;
569 STRUCT_STAT st, partial_st;
570 struct file_struct *back_file = NULL;
571 int statret, stat_errno;
572 char *fnamecmp, *partialptr, *backupptr = NULL;
573 char fnamecmpbuf[MAXPATHLEN];
574 uchar fnamecmp_type;
575
576 if (list_only)
577 return;
578
579 if (!fname) {
580 if (fuzzy_dirlist) {
581 flist_free(fuzzy_dirlist);
582 fuzzy_dirlist = NULL;
583 fuzzy_dirname = NULL;
584 }
585 if (missing_below >= 0) {
586 dry_run--;
587 missing_below = -1;
588 }
589 return;
590 }
591
592 if (verbose > 2) {
593 rprintf(FINFO, "recv_generator(%s,%d)\n",
594 safe_fname(fname), ndx);
595 }
596
597 if (server_filter_list.head) {
598 if (excluded_below >= 0) {
599 if (file->dir.depth > excluded_below)
600 goto skipping;
601 excluded_below = -1;
602 }
603 if (check_filter(&server_filter_list, fname,
604 S_ISDIR(file->mode)) < 0) {
605 if (S_ISDIR(file->mode))
606 excluded_below = file->dir.depth;
607 skipping:
608 if (verbose) {
609 rprintf(FINFO,
610 "skipping server-excluded file \"%s\"\n",
611 safe_fname(fname));
612 }
613 return;
614 }
615 }
616
617 if (missing_below >= 0 && file->dir.depth <= missing_below) {
618 dry_run--;
619 missing_below = -1;
620 }
621 if (dry_run > 1) {
622 statret = -1;
623 stat_errno = ENOENT;
624 } else {
625 if (fuzzy_basis && S_ISREG(file->mode)) {
626 char *dn = file->dirname ? file->dirname : ".";
627 /* Yes, identical dirnames are guaranteed to have
628 * identical pointers at this point. */
629 if (fuzzy_dirname != dn) {
630 if (fuzzy_dirlist)
631 flist_free(fuzzy_dirlist);
632 fuzzy_dirname = dn;
633 fuzzy_dirlist = get_dirlist(fuzzy_dirname, -1,
634 1);
635 }
636 }
637
638 statret = link_stat(fname, &st,
639 keep_dirlinks && S_ISDIR(file->mode));
640 stat_errno = errno;
641 }
642
643 if (only_existing && statret == -1 && stat_errno == ENOENT) {
644 /* we only want to update existing files */
645 if (verbose > 1) {
646 rprintf(FINFO, "not creating new file \"%s\"\n",
647 safe_fname(fname));
648 }
649 return;
650 }
651
652 if (statret == 0 && !preserve_perms
653 && S_ISDIR(st.st_mode) == S_ISDIR(file->mode)) {
654 /* if the file exists already and we aren't perserving
655 * permissions then act as though the remote end sent
656 * us the file permissions we already have */
657 file->mode = (file->mode & ~CHMOD_BITS)
658 | (st.st_mode & CHMOD_BITS);
659 }
660
661 if (S_ISDIR(file->mode)) {
662 /* The file to be received is a directory, so we need
663 * to prepare appropriately. If there is already a
664 * file of that name and it is *not* a directory, then
665 * we need to delete it. If it doesn't exist, then
666 * (perhaps recursively) create it. */
667 if (statret == 0 && !S_ISDIR(st.st_mode)) {
668 delete_item(fname, st.st_mode, DEL_TERSE);
669 statret = -1;
670 }
671 if (dry_run && statret != 0 && missing_below < 0) {
672 missing_below = file->dir.depth;
673 dry_run++;
674 }
675 if (itemizing && f_out != -1)
676 itemize(file, statret, &st, 0, f_out, ndx);
677 if (statret != 0 && do_mkdir(fname,file->mode) != 0 && errno != EEXIST) {
678 if (!relative_paths || errno != ENOENT
679 || create_directory_path(fname, orig_umask) < 0
680 || do_mkdir(fname, file->mode) < 0) {
681 rsyserr(FERROR, errno,
682 "recv_generator: mkdir %s failed",
683 full_fname(fname));
684 }
685 }
686 if (set_perms(fname, file, statret ? NULL : &st, 0)
687 && verbose && code && f_out != -1)
688 rprintf(code, "%s/\n", safe_fname(fname));
689 if (delete_during && f_out != -1 && csum_length != SUM_LENGTH
690 && (file->flags & FLAG_DEL_HERE))
691 delete_in_dir(flist, fname, file, allowed_lull);
692 return;
693 }
694
695 if (max_size && file->length > max_size) {
696 if (verbose > 1) {
697 rprintf(FINFO, "%s is over max-size\n",
698 safe_fname(fname));
699 }
700 return;
701 }
702
703 if (preserve_links && S_ISLNK(file->mode)) {
704#ifdef SUPPORT_LINKS
705 if (safe_symlinks && unsafe_symlink(file->u.link, fname)) {
706 if (verbose) {
707 rprintf(FINFO,
708 "ignoring unsafe symlink %s -> \"%s\"\n",
709 full_fname(fname),
710 safe_fname(file->u.link));
711 }
712 return;
713 }
714 if (statret == 0) {
715 char lnk[MAXPATHLEN];
716 int len;
717
718 if (!S_ISDIR(st.st_mode)
719 && (len = readlink(fname, lnk, MAXPATHLEN-1)) > 0) {
720 lnk[len] = 0;
721 /* A link already pointing to the
722 * right place -- no further action
723 * required. */
724 if (strcmp(lnk, file->u.link) == 0) {
725 if (itemizing) {
726 itemize(file, 0, &st, 0,
727 f_out, ndx);
728 }
729 set_perms(fname, file, &st,
730 maybe_PERMS_REPORT);
731 return;
732 }
733 }
734 /* Not the right symlink (or not a symlink), so
735 * delete it. */
736 if (S_ISLNK(st.st_mode))
737 delete_item(fname, st.st_mode, DEL_TERSE);
738 else {
739 delete_item(fname, st.st_mode, DEL_TERSE);
740 statret = -1;
741 }
742 }
743 if (do_symlink(file->u.link,fname) != 0) {
744 rsyserr(FERROR, errno, "symlink %s -> \"%s\" failed",
745 full_fname(fname), safe_fname(file->u.link));
746 } else {
747 set_perms(fname,file,NULL,0);
748 if (itemizing) {
749 itemize(file, statret, &st, SID_UPDATING,
750 f_out, ndx);
751 }
752 if (code && verbose) {
753 rprintf(code, "%s -> %s\n", safe_fname(fname),
754 safe_fname(file->u.link));
755 }
756 if (remove_sent_files && !dry_run) {
757 char numbuf[4];
758 SIVAL(numbuf, 0, ndx);
759 send_msg(MSG_SUCCESS, numbuf, 4);
760 }
761 }
762#endif
763 return;
764 }
765
766 if (am_root && preserve_devices && IS_DEVICE(file->mode)) {
767 if (statret != 0 ||
768 st.st_mode != file->mode ||
769 st.st_rdev != file->u.rdev) {
770 delete_item(fname, st.st_mode, DEL_TERSE);
771 if (!IS_DEVICE(st.st_mode))
772 statret = -1;
773 if (verbose > 2) {
774 rprintf(FINFO,"mknod(%s,0%o,0x%x)\n",
775 safe_fname(fname),
776 (int)file->mode, (int)file->u.rdev);
777 }
778 if (do_mknod(fname,file->mode,file->u.rdev) != 0) {
779 rsyserr(FERROR, errno, "mknod %s failed",
780 full_fname(fname));
781 } else {
782 set_perms(fname,file,NULL,0);
783 if (itemizing) {
784 itemize(file, statret, &st, SID_UPDATING,
785 f_out, ndx);
786 }
787 if (code && verbose) {
788 rprintf(code, "%s\n",
789 safe_fname(fname));
790 }
791 }
792 } else {
793 if (itemizing) {
794 itemize(file, statret, &st, 0,
795 f_out, ndx);
796 }
797 set_perms(fname, file, &st, maybe_PERMS_REPORT);
798 }
799 return;
800 }
801
802 if (preserve_hard_links && hard_link_check(file, HL_CHECK_MASTER))
803 return;
804
805 if (!S_ISREG(file->mode)) {
806 rprintf(FINFO, "skipping non-regular file \"%s\"\n",
807 safe_fname(fname));
808 return;
809 }
810
811 fnamecmp = fname;
812 fnamecmp_type = FNAMECMP_FNAME;
813
814 if (statret != 0 && basis_dir[0] != NULL) {
815 int fallback_match = -1;
816 int match_level = 0;
817 int i = 0;
818 do {
819 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
820 basis_dir[i], fname);
821 if (link_stat(fnamecmpbuf, &st, 0) == 0
822 && S_ISREG(st.st_mode)) {
823 statret = 0;
824 switch (match_level) {
825 case 0:
826 if (compare_dest)
827 break;
828 fallback_match = i;
829 match_level = 1;
830 /* FALL THROUGH */
831 case 1:
832 if (!unchanged_file(fnamecmpbuf, file, &st))
833 continue;
834 fallback_match = i;
835 match_level = 2;
836 /* FALL THROUGH */
837 case 2:
838 if (!unchanged_attrs(file, &st))
839 continue;
840 }
841 match_level = 3;
842 break;
843 }
844 } while (basis_dir[++i] != NULL);
845 if (statret == 0) {
846 if (match_level < 3) {
847 i = fallback_match;
848 pathjoin(fnamecmpbuf, sizeof fnamecmpbuf,
849 basis_dir[i], fname);
850 }
851#ifdef HAVE_LINK
852 if (link_dest && match_level == 3 && !dry_run) {
853 if (do_link(fnamecmpbuf, fname) < 0) {
854 if (verbose) {
855 rsyserr(FINFO, errno,
856 "link %s => %s",
857 full_fname(fnamecmpbuf),
858 safe_fname(fname));
859 }
860 fnamecmp = fnamecmpbuf;
861 fnamecmp_type = i;
862 }
863 } else
864#endif
865 {
866 fnamecmp = fnamecmpbuf;
867 fnamecmp_type = i;
868 }
869 }
870 }
871
872 if (statret == 0 && !S_ISREG(st.st_mode)) {
873 if (delete_item(fname, st.st_mode, DEL_TERSE) != 0)
874 return;
875 statret = -1;
876 stat_errno = ENOENT;
877 }
878
879 if (partial_dir && (partialptr = partial_dir_fname(fname)) != NULL
880 && link_stat(partialptr, &partial_st, 0) == 0
881 && S_ISREG(partial_st.st_mode)) {
882 if (statret != 0)
883 goto prepare_to_open;
884 } else
885 partialptr = NULL;
886
887 if (statret != 0 && fuzzy_basis && dry_run <= 1) {
888 int j = find_fuzzy(file, fuzzy_dirlist);
889 if (j >= 0) {
890 fuzzy_file = fuzzy_dirlist->files[j];
891 f_name_to(fuzzy_file, fnamecmpbuf);
892 if (verbose > 2) {
893 rprintf(FINFO, "fuzzy basis selected for %s: %s\n",
894 safe_fname(fname), safe_fname(fnamecmpbuf));
895 }
896 st.st_mode = fuzzy_file->mode;
897 st.st_size = fuzzy_file->length;
898 st.st_mtime = fuzzy_file->modtime;
899 statret = 0;
900 fnamecmp = fnamecmpbuf;
901 fnamecmp_type = FNAMECMP_FUZZY;
902 }
903 }
904
905 if (statret != 0) {
906 if (preserve_hard_links && hard_link_check(file, HL_SKIP))
907 return;
908 if (stat_errno == ENOENT)
909 goto notify_others;
910 if (verbose > 1) {
911 rsyserr(FERROR, stat_errno,
912 "recv_generator: failed to stat %s",
913 full_fname(fname));
914 }
915 return;
916 }
917
918 if (opt_ignore_existing && fnamecmp_type == FNAMECMP_FNAME) {
919 if (verbose > 1)
920 rprintf(FINFO, "%s exists\n", safe_fname(fname));
921 return;
922 }
923
924 if (update_only && fnamecmp_type == FNAMECMP_FNAME
925 && cmp_modtime(st.st_mtime, file->modtime) > 0) {
926 if (verbose > 1)
927 rprintf(FINFO, "%s is newer\n", safe_fname(fname));
928 return;
929 }
930
931 if (!compare_dest && fnamecmp_type <= FNAMECMP_BASIS_DIR_HIGH)
932 ;
933 else if (fnamecmp_type == FNAMECMP_FUZZY)
934 ;
935 else if (unchanged_file(fnamecmp, file, &st)) {
936 if (itemizing) {
937 itemize(file, statret, &st,
938 fnamecmp_type == FNAMECMP_FNAME
939 ? 0 : SID_NO_DEST_AND_NO_UPDATE,
940 f_out, ndx);
941 }
942 if (fnamecmp_type == FNAMECMP_FNAME)
943 set_perms(fname, file, &st, maybe_PERMS_REPORT);
944 return;
945 }
946
947prepare_to_open:
948 if (partialptr) {
949 st = partial_st;
950 fnamecmp = partialptr;
951 fnamecmp_type = FNAMECMP_PARTIAL_DIR;
952 statret = 0;
953 }
954
955 if (dry_run || read_batch)
956 goto notify_others;
957 if (whole_file > 0) {
958 if (statret == 0)
959 statret = 1;
960 goto notify_others;
961 }
962
963 if (fuzzy_basis) {
964 int j = flist_find(fuzzy_dirlist, file);
965 if (j >= 0) /* don't use changing file as future fuzzy basis */
966 fuzzy_dirlist->files[j]->flags |= FLAG_NO_FUZZY;
967 }
968
969 /* open the file */
970 fd = do_open(fnamecmp, O_RDONLY, 0);
971
972 if (fd == -1) {
973 rsyserr(FERROR, errno, "failed to open %s, continuing",
974 full_fname(fnamecmp));
975 pretend_missing:
976 /* pretend the file didn't exist */
977 if (preserve_hard_links && hard_link_check(file, HL_SKIP))
978 return;
979 statret = -1;
980 goto notify_others;
981 }
982
983 if (inplace && make_backups) {
984 if (!(backupptr = get_backup_name(fname))) {
985 close(fd);
986 return;
987 }
988 if (!(back_file = make_file(fname, NULL, NO_FILTERS))) {
989 close(fd);
990 goto pretend_missing;
991 }
992 if (robust_unlink(backupptr) && errno != ENOENT) {
993 rsyserr(FERROR, errno, "unlink %s",
994 full_fname(backupptr));
995 free(back_file);
996 close(fd);
997 return;
998 }
999 if ((f_copy = do_open(backupptr,
1000 O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0600)) < 0) {
1001 rsyserr(FERROR, errno, "open %s",
1002 full_fname(backupptr));
1003 free(back_file);
1004 close(fd);
1005 return;
1006 }
1007 fnamecmp_type = FNAMECMP_BACKUP;
1008 }
1009
1010 if (verbose > 3) {
1011 rprintf(FINFO, "gen mapped %s of size %.0f\n",
1012 safe_fname(fnamecmp), (double)st.st_size);
1013 }
1014
1015 if (verbose > 2)
1016 rprintf(FINFO, "generating and sending sums for %d\n", ndx);
1017
1018notify_others:
1019 write_int(f_out, ndx);
1020 if (itemizing) {
1021 int iflags = SID_UPDATING;
1022 if (always_checksum)
1023 iflags |= SID_REPORT_CHECKSUM;
1024 if (fnamecmp_type != FNAMECMP_FNAME)
1025 iflags |= SID_USING_ALT_BASIS;
1026 itemize(file, statret, &st, iflags, f_out, -1);
1027 }
1028 if (f_out_name >= 0) {
1029 write_byte(f_out_name, fnamecmp_type);
1030 if (fnamecmp_type == FNAMECMP_FUZZY) {
1031 uchar lenbuf[3], *lb = lenbuf;
1032 int len = strlen(fuzzy_file->basename);
1033 if (len > 0x7F) {
1034#if MAXPATHLEN > 0x7FFF
1035 *lb++ = len / 0x10000 + 0x80;
1036 *lb++ = len / 0x100;
1037#else
1038 *lb++ = len / 0x100 + 0x80;
1039#endif
1040 }
1041 *lb = len;
1042 write_buf(f_out_name, (char*)lenbuf, lb - lenbuf + 1);
1043 write_buf(f_out_name, fuzzy_file->basename, len);
1044 }
1045 }
1046
1047 if (dry_run || read_batch)
1048 return;
1049
1050 if (statret == 0) {
1051 generate_and_send_sums(fd, st.st_size, f_out, f_copy);
1052
1053 if (f_copy >= 0) {
1054 close(f_copy);
1055 set_perms(backupptr, back_file, NULL, 0);
1056 if (verbose > 1) {
1057 rprintf(FINFO, "backed up %s to %s\n",
1058 safe_fname(fname), safe_fname(backupptr));
1059 }
1060 free(back_file);
1061 }
1062
1063 close(fd);
1064 } else
1065 write_sum_head(f_out, NULL);
1066}
1067
1068
1069void generate_files(int f_out, struct file_list *flist, char *local_name,
1070 int f_out_name)
1071{
1072 int i;
1073 int phase = 0;
1074 char fbuf[MAXPATHLEN];
1075 int itemizing, maybe_PERMS_REPORT;
1076 enum logcode code;
1077 int need_retouch_dir_times = preserve_times && !omit_dir_times;
1078 int need_retouch_dir_perms = 0;
1079 int save_only_existing = only_existing;
1080 int save_opt_ignore_existing = opt_ignore_existing;
1081 int allowed_lull = read_batch ? 0 : (io_timeout + 1) / 2;
1082 int lull_mod = allowed_lull * 5;
1083
1084 if (protocol_version >= 29) {
1085 itemizing = 1;
1086 maybe_PERMS_REPORT = log_format_has_i ? 0 : PERMS_REPORT;
1087 code = daemon_log_format_has_i ? 0 : FLOG;
1088 } else if (am_daemon) {
1089 itemizing = daemon_log_format_has_i && !dry_run;
1090 maybe_PERMS_REPORT = PERMS_REPORT;
1091 code = itemizing || dry_run ? FCLIENT : FINFO;
1092 } else if (!am_server) {
1093 itemizing = log_format_has_i;
1094 maybe_PERMS_REPORT = log_format_has_i ? 0 : PERMS_REPORT;
1095 code = itemizing ? 0 : FINFO;
1096 } else {
1097 itemizing = 0;
1098 maybe_PERMS_REPORT = PERMS_REPORT;
1099 code = FINFO;
1100 }
1101
1102 if (verbose > 2) {
1103 rprintf(FINFO, "generator starting pid=%ld count=%d\n",
1104 (long)getpid(), flist->count);
1105 }
1106
1107 if (delete_before && !local_name && flist->count > 0)
1108 do_delete_pass(flist, allowed_lull);
1109
1110 if (verbose >= 2) {
1111 rprintf(FINFO, "delta-transmission %s\n",
1112 whole_file > 0
1113 ? "disabled for local transfer or --whole-file"
1114 : "enabled");
1115 }
1116
1117 if (protocol_version < 29)
1118 ignore_timeout = 1;
1119
1120 for (i = 0; i < flist->count; i++) {
1121 struct file_struct *file = flist->files[i];
1122 struct file_struct copy;
1123
1124 if (!file->basename)
1125 continue;
1126
1127 /* We need to ensure that any dirs we create have writeable
1128 * permissions during the time we are putting files within
1129 * them. This is then fixed after the transfer is done. */
1130 if (!am_root && S_ISDIR(file->mode) && !(file->mode & S_IWUSR)) {
1131 copy = *file;
1132 copy.mode |= S_IWUSR; /* user write */
1133 file = &copy;
1134 need_retouch_dir_perms = 1;
1135 }
1136
1137 recv_generator(local_name ? local_name : f_name_to(file, fbuf),
1138 flist, file, i, itemizing, maybe_PERMS_REPORT,
1139 code, allowed_lull, f_out, f_out_name);
1140
1141 if (allowed_lull && !(i % lull_mod))
1142 maybe_send_keepalive(allowed_lull, flist->count);
1143 }
1144 recv_generator(NULL, NULL, NULL, 0, 0, 0, code, 0, -1, -1);
1145 if (delete_during)
1146 delete_in_dir(NULL, NULL, NULL, 0);
1147
1148 phase++;
1149 csum_length = SUM_LENGTH;
1150 only_existing = max_size = opt_ignore_existing = 0;
1151 update_only = always_checksum = size_only = 0;
1152 ignore_times = 1;
1153 make_backups = 0; /* avoid a duplicate backup for inplace processing */
1154
1155 /* We expect to just sit around now, so don't exit on a timeout.
1156 * If we really get a timeout then the other process should exit. */
1157 ignore_timeout = 1;
1158
1159 if (verbose > 2)
1160 rprintf(FINFO,"generate_files phase=%d\n",phase);
1161
1162 write_int(f_out, -1);
1163
1164 /* files can cycle through the system more than once
1165 * to catch initial checksum errors */
1166 while ((i = get_redo_num()) != -1) {
1167 struct file_struct *file = flist->files[i];
1168 recv_generator(local_name ? local_name : f_name_to(file, fbuf),
1169 flist, file, i, itemizing, maybe_PERMS_REPORT,
1170 code, allowed_lull, f_out, f_out_name);
1171 }
1172
1173 phase++;
1174 only_existing = save_only_existing;
1175 opt_ignore_existing = save_opt_ignore_existing;
1176
1177 if (verbose > 2)
1178 rprintf(FINFO,"generate_files phase=%d\n",phase);
1179
1180 write_int(f_out, -1);
1181
1182 /* Read post-redo-phase MSG_DONE and any prior messages. */
1183 get_redo_num();
1184
1185 if (preserve_hard_links)
1186 do_hard_links(allowed_lull, flist->count);
1187
1188 if (delete_after && !local_name && flist->count > 0)
1189 do_delete_pass(flist, allowed_lull);
1190
1191 if ((need_retouch_dir_perms || need_retouch_dir_times)
1192 && !list_only && !local_name && !dry_run) {
1193 int j = 0;
1194 /* Now we need to fix any directory permissions that were
1195 * modified during the transfer and/or re-set any tweaked
1196 * modified-time values. */
1197 for (i = 0; i < flist->count; i++) {
1198 struct file_struct *file = flist->files[i];
1199 if (!file->basename || !S_ISDIR(file->mode))
1200 continue;
1201 if (!need_retouch_dir_times && file->mode & S_IWUSR)
1202 continue;
1203 recv_generator(local_name ? local_name : f_name(file),
1204 flist, file, i, itemizing,
1205 maybe_PERMS_REPORT, code, allowed_lull,
1206 -1, -1);
1207 if (allowed_lull && !(j++ % lull_mod))
1208 maybe_send_keepalive(allowed_lull, flist->count);
1209 }
1210 }
1211 recv_generator(NULL, NULL, NULL, 0, 0, 0, code, 0, -1, -1);
1212
1213 if (verbose > 2)
1214 rprintf(FINFO,"generate_files finished\n");
1215}