-
Notifications
You must be signed in to change notification settings - Fork 8
/
detect-renamed-lax.diff
123 lines (114 loc) · 4.98 KB
/
detect-renamed-lax.diff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
This patch adds the options --detect-renamed-lax and --detect-moved.
These modify the --detect-renamed algorithm to adopt a matching file
without verifying that the content is as expected. The former blindly
accepts a file that matches in size and modified time. The latter
requires that the filename also match (ignoring any renamed files).
This patch is EXPERIMENTAL, though it did work correctly in my light
testing.
To use this patch, run these commands for a successful build:
patch -p1 <patches/detect-renamed.diff
patch -p1 <patches/detect-renamed-lax.diff
./configure (optional if already run)
make
FIXME: If a run with --detect-renamed-lax stages a different-basename
destination file and then gets interrupted, a subsequent run that
switches to --detect-moved blindly accepts the staged file.
-- Matt McCutchen <[email protected]>
based-on: patch/master/detect-renamed
diff --git a/generator.c b/generator.c
--- a/generator.c
+++ b/generator.c
@@ -467,7 +467,9 @@ static int fattr_find(struct file_struct *f, char *fname)
continue;
}
}
- ok_match = mid;
+ /* --detect-moved doesn't allow non-basename matches */
+ if (detect_renamed != 3)
+ ok_match = mid;
diff = u_strcmp(fmid->basename, f->basename);
if (diff == 0) {
good_match = mid;
@@ -1991,6 +1993,21 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
fnamecmp = partialptr;
fnamecmp_type = FNAMECMP_PARTIAL_DIR;
statret = 0;
+ if (detect_renamed > 1 && quick_check_ok(FT_REG, fnamecmp, file, &sx.st)) {
+ /* Adopt the partial file. */
+ finish_transfer(fname, fnamecmp, NULL, NULL, file, 1, 1);
+ handle_partial_dir(partialptr, PDIR_DELETE);
+ if (itemizing)
+ itemize(fnamecmp, file, ndx, -1, &sx,
+ ITEM_LOCAL_CHANGE, fnamecmp_type, NULL);
+#ifdef SUPPORT_HARD_LINKS
+ if (preserve_hard_links && F_IS_HLINKED(file))
+ finish_hard_link(file, fname, ndx, &sx.st, itemizing, code, -1);
+#endif
+ if (remove_source_files == 1)
+ goto return_with_success;
+ goto cleanup;
+ }
}
if (!do_xfers)
diff --git a/options.c b/options.c
--- a/options.c
+++ b/options.c
@@ -744,7 +744,9 @@ static struct poptOption long_options[] = {
{"compare-dest", 0, POPT_ARG_STRING, 0, OPT_COMPARE_DEST, 0, 0 },
{"copy-dest", 0, POPT_ARG_STRING, 0, OPT_COPY_DEST, 0, 0 },
{"link-dest", 0, POPT_ARG_STRING, 0, OPT_LINK_DEST, 0, 0 },
- {"detect-renamed", 0, POPT_ARG_NONE, &detect_renamed, 0, 0, 0 },
+ {"detect-renamed", 0, POPT_ARG_VAL, &detect_renamed, 1, 0, 0 },
+ {"detect-renamed-lax",0, POPT_ARG_VAL, &detect_renamed, 2, 0, 0 },
+ {"detect-moved", 0, POPT_ARG_VAL, &detect_renamed, 3, 0, 0 },
{"fuzzy", 'y', POPT_ARG_NONE, 0, 'y', 0, 0 },
{"no-fuzzy", 0, POPT_ARG_VAL, &fuzzy_basis, 0, 0, 0 },
{"no-y", 0, POPT_ARG_VAL, &fuzzy_basis, 0, 0, 0 },
@@ -2838,8 +2840,14 @@ void server_options(char **args, int *argc_p)
args[ac++] = "--super";
if (size_only)
args[ac++] = "--size-only";
- if (detect_renamed)
- args[ac++] = "--detect-renamed";
+ if (detect_renamed) {
+ if (detect_renamed == 1)
+ args[ac++] = "--detect-renamed";
+ else if (detect_renamed == 2)
+ args[ac++] = "--detect-renamed-lax";
+ else
+ args[ac++] = "--detect-moved";
+ }
if (do_stats)
args[ac++] = "--stats";
} else {
diff --git a/rsync.1.md b/rsync.1.md
--- a/rsync.1.md
+++ b/rsync.1.md
@@ -508,6 +508,8 @@ has its own detailed description later in this manpage.
--temp-dir=DIR, -T create temporary files in directory DIR
--fuzzy, -y find similar file for basis if no dest file
--detect-renamed try to find renamed files to speed the xfer
+--detect-renamed-lax ...& assume identical to src files (risky!)
+--detect-moved ... only if basenames match (less risky)
--compare-dest=DIR also compare destination files relative to DIR
--copy-dest=DIR ... and include copies of unchanged files
--link-dest=DIR hardlink to files in DIR when unchanged
@@ -2652,6 +2654,20 @@ expand it.
otential alternate-basis files will be removed as the transfer progresses.
This option conflicts with [`--inplace`](#opt) and [`--append`](#opt).
+0. `--detect-renamed-lax`
+
+ This version of [`--detect-renamed`](#opt) makes rsync hard-link `dest/D`
+ to `dest/S` without verifying that `src/S` and `dest/S` have the same data.
+ This poses a significant risk of corrupting the destination by representing
+ a new source file by an unrelated destination file that coincidentally
+ passes the quick check with the source file. Use this option only if you
+ accept the risk and disk I/O is a bottleneck.
+
+0. `--detect-moved`
+
+ A less risky variant of [`--detect-renamed-lax`](#opt) that only uses a
+ destination file that has the same basename as the new source file.
+
0. `--compare-dest=DIR`
This option instructs rsync to use _DIR_ on the destination machine as an