-
Notifications
You must be signed in to change notification settings - Fork 8
/
backup-dir-dels.diff
367 lines (341 loc) · 13.4 KB
/
backup-dir-dels.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
This patches creates two new command line options as follows:
--backup-dir-dels=DIR
--suffix-dels=SUFFIX
The backup-dir-dels and suffix-dels options give the ability to store
backup of removed files on the receiver in different directories or with
different suffix than the backup of files that have been changed but that
are still on the source drive. Both commands can be combined.
The default behaviour if one or both of the options are not specified
is the previous behaviour, both backups use the same directory or
suffix.
Marc St-Onge
To use this patch, run these commands for a successful build:
patch -p1 <patches/backup-deleted.diff
patch -p1 <patches/backup-dir-dels.diff
./configure (optional if already run)
make
based-on: patch/master/backup-deleted
diff --git a/backup.c b/backup.c
--- a/backup.c
+++ b/backup.c
@@ -29,25 +29,32 @@ extern int preserve_specials;
extern int preserve_links;
extern int safe_symlinks;
extern int backup_dir_len;
+extern int backup_dir_dels_len;
extern unsigned int backup_dir_remainder;
+extern unsigned int backup_dir_dels_remainder;
extern char backup_dir_buf[MAXPATHLEN];
+extern char backup_dir_dels_buf[MAXPATHLEN];
extern char *backup_suffix;
+extern char *backup_suffix_dels;
extern char *backup_dir;
+extern char *backup_dir_dels;
+
+static BOOL deleting;
/* Returns -1 on error, 0 on missing dir, and 1 on present dir. */
-static int validate_backup_dir(void)
+static int validate_backup_dir(char *buf)
{
STRUCT_STAT st;
- if (do_lstat(backup_dir_buf, &st) < 0) {
+ if (do_lstat(buf, &st) < 0) {
if (errno == ENOENT)
return 0;
- rsyserr(FERROR, errno, "backup lstat %s failed", backup_dir_buf);
+ rsyserr(FERROR, errno, "backup lstat %s failed", buf);
return -1;
}
if (!S_ISDIR(st.st_mode)) {
int flags = get_del_for_flag(st.st_mode) | DEL_FOR_BACKUP | DEL_RECURSE;
- if (delete_item(backup_dir_buf, st.st_mode, flags) == 0)
+ if (delete_item(buf, st.st_mode, flags) == 0)
return 0;
return -1;
}
@@ -58,20 +65,20 @@ static int validate_backup_dir(void)
* backup_dir_buf. Any new directories (compared to the prior backup
* path) are ensured to exist as directories, replacing anything else
* that may be in the way (e.g. a symlink). */
-static BOOL copy_valid_path(const char *fname)
+static BOOL copy_valid_path(const char *fname, char *buf, int prefix_len, unsigned int remainder, const char *suffix)
{
const char *f;
int val;
BOOL ret = True;
stat_x sx;
- char *b, *rel = backup_dir_buf + backup_dir_len, *name = rel;
+ char *b, *rel = buf + prefix_len, *name = rel;
for (f = fname, b = rel; *f && *f == *b; f++, b++) {
if (*b == '/')
name = b + 1;
}
- if (stringjoin(rel, backup_dir_remainder, fname, backup_suffix, NULL) >= backup_dir_remainder) {
+ if (stringjoin(rel, remainder, fname, suffix, NULL) >= remainder) {
rprintf(FERROR, "backup filename too long\n");
*name = '\0';
return False;
@@ -82,7 +89,7 @@ static BOOL copy_valid_path(const char *fname)
return True;
*b = '\0';
- val = validate_backup_dir();
+ val = validate_backup_dir(buf);
if (val == 0)
break;
if (val < 0) {
@@ -98,9 +105,9 @@ static BOOL copy_valid_path(const char *fname)
for ( ; b; name = b + 1, b = strchr(name, '/')) {
*b = '\0';
- while (do_mkdir(backup_dir_buf, ACCESSPERMS) < 0) {
+ while (do_mkdir(buf, ACCESSPERMS) < 0) {
if (errno == EEXIST) {
- val = validate_backup_dir();
+ val = validate_backup_dir(buf);
if (val > 0)
break;
if (val == 0)
@@ -134,7 +141,7 @@ static BOOL copy_valid_path(const char *fname)
free_xattr(&sx);
}
#endif
- set_file_attrs(backup_dir_buf, file, NULL, NULL, 0);
+ set_file_attrs(buf, file, NULL, NULL, 0);
unmake_file(file);
}
@@ -156,7 +163,12 @@ static BOOL copy_valid_path(const char *fname)
/* Make a complete pathname for backup file and verify any new path elements. */
char *get_backup_name(const char *fname)
{
+ char *buf = deleting ? backup_dir_dels_buf : backup_dir_buf;
+ char *suffix = deleting ? backup_suffix_dels : backup_suffix;
+
if (backup_dir) {
+ int prefix_len = deleting ? backup_dir_dels_len : backup_dir_len;
+ unsigned int remainder = deleting ? backup_dir_dels_remainder : backup_dir_remainder;
static int initialized = 0;
if (!initialized) {
int ret;
@@ -170,14 +182,14 @@ char *get_backup_name(const char *fname)
initialized = 1;
}
/* copy fname into backup_dir_buf while validating the dirs. */
- if (copy_valid_path(fname))
- return backup_dir_buf;
+ if (copy_valid_path(fname, buf, prefix_len, remainder, suffix))
+ return buf;
/* copy_valid_path() has printed an error message. */
return NULL;
}
- if (stringjoin(backup_dir_buf, MAXPATHLEN, fname, backup_suffix, NULL) < MAXPATHLEN)
- return backup_dir_buf;
+ if (stringjoin(backup_dir_buf, MAXPATHLEN, fname, suffix, NULL) < MAXPATHLEN)
+ return buf;
rprintf(FERROR, "backup filename too long\n");
return NULL;
@@ -353,3 +365,13 @@ int make_backup(const char *fname, BOOL prefer_rename)
rprintf(FINFO, "backed up %s to %s\n", fname, buf);
return ret;
}
+
+/* backup switch routine called only when backing-up removed file */
+int safe_delete(const char *fname)
+{
+ int ret;
+ deleting = 1;
+ ret = make_backup(fname, True);
+ deleting = 0;
+ return ret;
+}
diff --git a/delete.c b/delete.c
--- a/delete.c
+++ b/delete.c
@@ -28,16 +28,23 @@ extern int max_delete;
extern char *backup_dir;
extern char *backup_suffix;
extern int backup_suffix_len;
+extern char *backup_dir_dels;
+extern char *backup_suffix_dels;
+extern int backup_suffix_dels_len;
extern struct stats stats;
int ignore_perishable = 0;
int non_perishable_cnt = 0;
int skipped_deletes = 0;
+/* Function now compares both backup_suffix and backup_suffix_dels. */
static inline int is_backup_file(char *fn)
{
int k = strlen(fn) - backup_suffix_len;
- return k > 0 && strcmp(fn+k, backup_suffix) == 0;
+ if (k > 0 && strcmp(fn+k, backup_suffix) == 0)
+ return 1;
+ k += backup_suffix_len - backup_suffix_dels_len;
+ return k > 0 && strcmp(fn+k, backup_suffix_dels) == 0;
}
/* The directory is about to be deleted: if DEL_RECURSE is given, delete all
@@ -162,9 +169,9 @@ enum delret delete_item(char *fbuf, uint16 mode, uint16 flags)
what = "rmdir";
ok = do_rmdir(fbuf) == 0;
} else {
- if (make_backups > 0 && !(flags & DEL_FOR_BACKUP) && (backup_dir || !is_backup_file(fbuf))) {
+ if (make_backups > 0 && !(flags & DEL_FOR_BACKUP) && (backup_dir_dels || !is_backup_file(fbuf))) {
what = "make_backup";
- ok = make_backup(fbuf, True);
+ ok = safe_delete(fbuf);
if (ok == 2) {
what = "unlink";
ok = robust_unlink(fbuf) == 0;
diff --git a/options.c b/options.c
--- a/options.c
+++ b/options.c
@@ -166,10 +166,14 @@ int no_detach
int write_batch = 0;
int read_batch = 0;
int backup_dir_len = 0;
+int backup_dir_dels_len = 0;
int backup_suffix_len;
+int backup_suffix_dels_len;
unsigned int backup_dir_remainder;
+unsigned int backup_dir_dels_remainder;
char *backup_suffix = NULL;
+char *backup_suffix_dels = NULL;
char *tmpdir = NULL;
char *partial_dir = NULL;
char *basis_dir[MAX_BASIS_DIRS+1];
@@ -182,7 +186,9 @@ char *password_file = NULL;
char *early_input_file = NULL;
char *rsync_path = RSYNC_PATH;
char *backup_dir = NULL;
+char *backup_dir_dels = NULL;
char backup_dir_buf[MAXPATHLEN];
+char backup_dir_dels_buf[MAXPATHLEN];
char *sockopts = NULL;
char *usermap = NULL;
char *groupmap = NULL;
@@ -780,7 +786,9 @@ static struct poptOption long_options[] = {
{"backup-deleted", 0, POPT_ARG_VAL, &make_backups, 1, 0, 0 },
{"no-backup", 0, POPT_ARG_VAL, &make_backups, 0, 0, 0 },
{"backup-dir", 0, POPT_ARG_STRING, &backup_dir, 0, 0, 0 },
+ {"backup-dir-dels", 0, POPT_ARG_STRING, &backup_dir_dels, 0, 0, 0 },
{"suffix", 0, POPT_ARG_STRING, &backup_suffix, 0, 0, 0 },
+ {"suffix-dels", 0, POPT_ARG_STRING, &backup_suffix_dels, 0, 0, 0 },
{"list-only", 0, POPT_ARG_VAL, &list_only, 2, 0, 0 },
{"read-batch", 0, POPT_ARG_STRING, &batch_name, OPT_READ_BATCH, 0, 0 },
{"write-batch", 0, POPT_ARG_STRING, &batch_name, OPT_WRITE_BATCH, 0, 0 },
@@ -2253,6 +2261,8 @@ int parse_arguments(int *argc_p, const char ***argv_p)
tmpdir = sanitize_path(NULL, tmpdir, NULL, 0, SP_DEFAULT);
if (backup_dir)
backup_dir = sanitize_path(NULL, backup_dir, NULL, 0, SP_DEFAULT);
+ if (backup_dir_dels)
+ backup_dir_dels = sanitize_path(NULL, backup_dir_dels, NULL, 0, SP_DEFAULT);
}
if (daemon_filter_list.head && !am_sender) {
filter_rule_list *elp = &daemon_filter_list;
@@ -2274,6 +2284,14 @@ int parse_arguments(int *argc_p, const char ***argv_p)
if (check_filter(elp, FLOG, dir, 1) < 0)
goto options_rejected;
}
+ /* Clean backup_dir_dels same as for backup_dir */
+ if (backup_dir_dels) {
+ if (!*backup_dir_dels)
+ goto options_rejected;
+ clean_fname(backup_dir_dels, 1);
+ if (check_filter(elp, FLOG, backup_dir_dels, 1) < 0)
+ goto options_rejected;
+ }
}
if (!backup_suffix)
@@ -2285,6 +2303,20 @@ int parse_arguments(int *argc_p, const char ***argv_p)
backup_suffix);
goto cleanup;
}
+ /* --suffix-dels defaults to --suffix, or empty for a client given an
+ * explicit --backup-dir-dels (just as --suffix defaults to empty when
+ * a --backup-dir is given). The second case does not apply to the
+ * server for consistency with server_options, which sends --suffix-dels
+ * to the server iff it differs from --suffix. */
+ if (!backup_suffix_dels)
+ backup_suffix_dels = backup_dir_dels && !am_server ? "" : backup_suffix;
+ backup_suffix_dels_len = strlen(backup_suffix_dels);
+ if (strchr(backup_suffix_dels, '/') != NULL) {
+ snprintf(err_buf, sizeof err_buf,
+ "--suffix-dels cannot contain slashes: %s\n",
+ backup_suffix_dels);
+ return 0;
+ }
if (backup_dir) {
size_t len;
make_backups = 1; /* --backup-dir implies --backup */
@@ -2321,6 +2353,34 @@ int parse_arguments(int *argc_p, const char ***argv_p)
"P *%s", backup_suffix);
parse_filter_str(&filter_list, backup_dir_buf, rule_template(0), 0);
}
+ if (backup_dir_dels) {
+ backup_dir_dels_len = strlcpy(backup_dir_dels_buf, backup_dir_dels, sizeof backup_dir_dels_buf);
+ backup_dir_dels_remainder = sizeof backup_dir_dels_buf - backup_dir_dels_len;
+ if (backup_dir_dels_remainder < 32) {
+ snprintf(err_buf, sizeof err_buf,
+ "the --backup-dir-dels path is WAY too long.\n");
+ return 0;
+ }
+ if (backup_dir_dels_buf[backup_dir_dels_len - 1] != '/') {
+ backup_dir_dels_buf[backup_dir_dels_len++] = '/';
+ backup_dir_dels_buf[backup_dir_dels_len] = '\0';
+ }
+ if (INFO_GTE(BACKUP, 1) && !am_sender)
+ rprintf(FINFO, "backup_dir_dels is %s\n", backup_dir_dels_buf);
+ } else if (backup_dir) {
+ backup_dir_dels = backup_dir;
+ backup_dir_dels_len = backup_dir_len;
+ backup_dir_dels_remainder = backup_dir_remainder;
+ strlcpy(backup_dir_dels_buf, backup_dir_buf, sizeof backup_dir_buf);
+ } else if (!backup_suffix_dels_len && (!am_server || !am_sender)) {
+ snprintf(err_buf, sizeof err_buf,
+ "--suffix-dels cannot be a null string without --backup-dir-dels\n");
+ return 0;
+ } else if (make_backups && delete_mode && !delete_excluded && !am_server) {
+ snprintf(backup_dir_dels_buf, sizeof backup_dir_dels_buf,
+ "P *%s", backup_suffix_dels);
+ parse_filter_str(&filter_list, backup_dir_dels_buf, rule_template(0), 0);
+ }
if (make_backups && !backup_dir)
omit_dir_times = -1; /* Implied, so avoid -O to sender. */
@@ -2790,11 +2850,20 @@ void server_options(char **args, int *argc_p)
args[ac++] = "--backup-dir";
args[ac++] = safe_arg("", backup_dir);
}
+ if (backup_dir_dels && backup_dir_dels != backup_dir) {
+ args[ac++] = "--backup-dir-dels";
+ args[ac++] = backup_dir_dels;
+ }
/* Only send --suffix if it specifies a non-default value. */
if (strcmp(backup_suffix, backup_dir ? "" : BACKUP_SUFFIX) != 0)
args[ac++] = safe_arg("--suffix", backup_suffix);
+ /* Only send --suffix-dels if it specifies a value different from the
+ * --suffix value, which would normally be used for deletions too. */
+ if (strcmp(backup_suffix_dels, backup_suffix) != 0)
+ args[ac++] = safe_arg("--suffix-dels", backup_suffix_dels);
+
if (checksum_choice)
args[ac++] = safe_arg("--checksum-choice", checksum_choice);
diff --git a/rsync.1.md b/rsync.1.md
--- a/rsync.1.md
+++ b/rsync.1.md
@@ -430,7 +430,9 @@ has its own detailed description later in this manpage.
--backup, -b make backups (see --suffix & --backup-dir)
--backup-deleted make backups only of deleted files
--backup-dir=DIR make backups into hierarchy based in DIR
+--backup-dir-dels=DIR backup removed files into hierarchy based in DIR
--suffix=SUFFIX backup suffix (default ~ w/o --backup-dir)
+--suffix-dels=SUFFIX set removed-files suffix (def. --suffix w/o b-d-d)
--update, -u skip files that are newer on the receiver
--inplace update destination files in-place
--append append data onto shorter files
@@ -1028,6 +1030,11 @@ expand it.
daemon is the receiver, the backup dir cannot go outside the module's path
hierarchy, so take extra care not to delete it or copy into it.
+0. `--backup-dir-dels=DIR`
+
+ Works like [`--backup-dir`](#opt) except for deleted files in conjunction
+ with the [`--backup-deleted`](#opt) option.
+
0. `--suffix=SUFFIX`
This option allows you to override the default backup suffix used with the