My version of Matt's improvements related to missing source args:
[rsync/rsync.git] / backup.c
CommitLineData
addf0c4a 1/*
0f78b815
WD
2 * Backup handling code.
3 *
4 * Copyright (C) 1999 Andrew Tridgell
445640e8 5 * Copyright (C) 2003-2009 Wayne Davison
0f78b815
WD
6 *
7 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
0f78b815
WD
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
e7c67065 17 * You should have received a copy of the GNU General Public License along
4fd842f9 18 * with this program; if not, visit the http://fsf.org website.
0f78b815 19 */
3d19b4c8
AT
20
21#include "rsync.h"
22
23extern int verbose;
378a074c 24extern int am_root;
1c3344a1 25extern int preserve_acls;
16edf865 26extern int preserve_xattrs;
378a074c 27extern int preserve_devices;
b5c6a6ae 28extern int preserve_specials;
378a074c 29extern int preserve_links;
377dbd20 30extern int safe_symlinks;
6b2a3d5d 31extern int backup_dir_len;
82ad07c4
WD
32extern unsigned int backup_dir_remainder;
33extern char backup_dir_buf[MAXPATHLEN];
34extern char *backup_suffix;
35extern char *backup_dir;
378a074c 36
c94e4afb 37/* make a complete pathname for backup file */
45d8bfe0 38char *get_backup_name(const char *fname)
c94e4afb 39{
c94e4afb
WD
40 if (backup_dir) {
41 if (stringjoin(backup_dir_buf + backup_dir_len, backup_dir_remainder,
42 fname, backup_suffix, NULL) < backup_dir_remainder)
43 return backup_dir_buf;
44 } else {
fb22c277
WD
45 if (stringjoin(backup_dir_buf, MAXPATHLEN,
46 fname, backup_suffix, NULL) < MAXPATHLEN)
47 return backup_dir_buf;
c94e4afb
WD
48 }
49
50 rprintf(FERROR, "backup filename too long\n");
51 return NULL;
52}
53
66203a98 54/* simple backup creates a backup with a suffix in the same directory */
45d8bfe0 55static int make_simple_backup(const char *fname)
3d19b4c8 56{
ba679d51 57 int rename_errno;
45d8bfe0 58 const char *fnamebak = get_backup_name(fname);
5d2a7071 59
c94e4afb 60 if (!fnamebak)
3d19b4c8 61 return 0;
3d19b4c8 62
ba679d51
WD
63 while (1) {
64 if (do_rename(fname, fnamebak) == 0) {
65 if (verbose > 1) {
66 rprintf(FINFO, "backed up %s to %s\n",
45c49b52 67 fname, fnamebak);
ba679d51
WD
68 }
69 break;
3d19b4c8 70 }
ba679d51
WD
71 /* cygwin (at least version b19) reports EINVAL */
72 if (errno == ENOENT || errno == EINVAL)
73 break;
74
75 rename_errno = errno;
76 if (errno == EISDIR && do_rmdir(fnamebak) == 0)
77 continue;
78 if (errno == ENOTDIR && do_unlink(fnamebak) == 0)
79 continue;
80
81 rsyserr(FERROR, rename_errno, "rename %s to backup %s",
45c49b52 82 fname, fnamebak);
ba679d51
WD
83 errno = rename_errno;
84 return 0;
3d19b4c8 85 }
ba679d51 86
3d19b4c8
AT
87 return 1;
88}
66203a98
AT
89
90
378a074c
AT
91/****************************************************************************
92Create a directory given an absolute path, perms based upon another directory
93path
94****************************************************************************/
e1ac7791 95int make_bak_dir(const char *fullpath)
378a074c 96{
e1ac7791 97 char fbuf[MAXPATHLEN], *rel, *end, *p;
1c3344a1 98 struct file_struct *file;
e1ac7791 99 int len = backup_dir_len;
13710874 100 stat_x sx;
de0e2250 101
e1ac7791 102 while (*fullpath == '.' && fullpath[1] == '/') {
de0e2250 103 fullpath += 2;
e1ac7791
WD
104 len -= 2;
105 }
106
107 if (strlcpy(fbuf, fullpath, sizeof fbuf) >= sizeof fbuf)
108 return -1;
109
110 rel = fbuf + len;
111 end = p = rel + strlen(rel);
de0e2250
WD
112
113 /* Try to find an existing dir, starting from the deepest dir. */
114 while (1) {
e1ac7791
WD
115 if (--p == fbuf)
116 return -1;
de0e2250
WD
117 if (*p == '/') {
118 *p = '\0';
e1ac7791 119 if (mkdir_defmode(fbuf) == 0)
de0e2250
WD
120 break;
121 if (errno != ENOENT) {
d62bcc17
WD
122 rsyserr(FERROR, errno,
123 "make_bak_dir mkdir %s failed",
e1ac7791
WD
124 full_fname(fbuf));
125 return -1;
de0e2250
WD
126 }
127 }
47d6a60c 128 }
de0e2250
WD
129
130 /* Make all the dirs that we didn't find on the way here. */
131 while (1) {
132 if (p >= rel) {
133 /* Try to transfer the directory settings of the
134 * actual dir that the files are coming from. */
9439c0cb 135 if (x_stat(rel, &sx.st, NULL) < 0) {
d62bcc17
WD
136 rsyserr(FERROR, errno,
137 "make_bak_dir stat %s failed",
138 full_fname(rel));
de0e2250 139 } else {
1c3344a1
WD
140#ifdef SUPPORT_ACLS
141 sx.acc_acl = sx.def_acl = NULL;
16edf865
WD
142#endif
143#ifdef SUPPORT_XATTRS
144 sx.xattr = NULL;
1c3344a1
WD
145#endif
146 if (!(file = make_file(rel, NULL, NULL, 0, NO_FILTERS)))
147 continue;
148#ifdef SUPPORT_ACLS
149 if (preserve_acls && !S_ISLNK(file->mode)) {
150 get_acl(rel, &sx);
ea53d161 151 cache_tmp_acl(file, &sx);
1c3344a1
WD
152 free_acl(&sx);
153 }
1e999f9f 154#endif
16edf865
WD
155#ifdef SUPPORT_XATTRS
156 if (preserve_xattrs) {
157 get_xattr(rel, &sx);
ea53d161 158 cache_tmp_xattr(file, &sx);
16edf865
WD
159 free_xattr(&sx);
160 }
161#endif
e1ac7791 162 set_file_attrs(fbuf, file, NULL, NULL, 0);
b13505da 163 unmake_file(file);
ea53d161
WD
164#ifdef SUPPORT_ACLS
165 uncache_tmp_acls();
166#endif
167#ifdef SUPPORT_XATTRS
168 uncache_tmp_xattrs();
169#endif
47d6a60c
S
170 }
171 }
de0e2250
WD
172 *p = '/';
173 p += strlen(p);
174 if (p == end)
175 break;
e1ac7791 176 if (mkdir_defmode(fbuf) < 0) {
d62bcc17 177 rsyserr(FERROR, errno, "make_bak_dir mkdir %s failed",
e1ac7791
WD
178 full_fname(fbuf));
179 return -1;
de0e2250 180 }
47d6a60c 181 }
de0e2250 182
e1ac7791 183 return 0;
378a074c
AT
184}
185
66203a98 186/* robustly move a file, creating new directory structures if necessary */
45d8bfe0 187static int robust_move(const char *src, char *dst)
66203a98 188{
f1ca7c44
WD
189 if (robust_rename(src, dst, NULL, 0755) < 0) {
190 int save_errno = errno ? errno : EINVAL; /* 0 paranoia */
191 if (errno == ENOENT && make_bak_dir(dst) == 0) {
192 if (robust_rename(src, dst, NULL, 0755) < 0)
193 save_errno = errno ? errno : save_errno;
194 else
195 save_errno = 0;
196 }
197 if (save_errno) {
198 errno = save_errno;
199 return -1;
200 }
201 }
62c9e6b3 202 return 0;
de0e2250 203}
66203a98
AT
204
205
de0e2250
WD
206/* If we have a --backup-dir, then we get here from make_backup().
207 * We will move the file to be deleted into a parallel directory tree. */
45d8bfe0 208static int keep_backup(const char *fname)
66203a98 209{
13710874 210 stat_x sx;
66203a98 211 struct file_struct *file;
c94e4afb 212 char *buf;
e9489cd6 213 int save_preserve_xattrs = preserve_xattrs;
47d6a60c 214 int kept = 0;
378a074c
AT
215 int ret_code;
216
66203a98 217 /* return if no file to keep */
9439c0cb 218 if (x_lstat(fname, &sx.st, NULL) < 0)
9fd62d15 219 return 1;
1c3344a1
WD
220#ifdef SUPPORT_ACLS
221 sx.acc_acl = sx.def_acl = NULL;
222#endif
16edf865
WD
223#ifdef SUPPORT_XATTRS
224 sx.xattr = NULL;
225#endif
66203a98 226
3de73827 227 if (!(file = make_file(fname, NULL, NULL, 0, NO_FILTERS)))
c94e4afb 228 return 1; /* the file could have disappeared */
66203a98 229
82ad07c4
WD
230 if (!(buf = get_backup_name(fname))) {
231 unmake_file(file);
ea53d161
WD
232#ifdef SUPPORT_ACLS
233 uncache_tmp_acls();
234#endif
235#ifdef SUPPORT_XATTRS
236 uncache_tmp_xattrs();
237#endif
47d6a60c 238 return 0;
82ad07c4 239 }
378a074c 240
1c3344a1
WD
241#ifdef SUPPORT_ACLS
242 if (preserve_acls && !S_ISLNK(file->mode)) {
243 get_acl(fname, &sx);
ea53d161 244 cache_tmp_acl(file, &sx);
1c3344a1
WD
245 free_acl(&sx);
246 }
247#endif
16edf865
WD
248#ifdef SUPPORT_XATTRS
249 if (preserve_xattrs) {
250 get_xattr(fname, &sx);
ea53d161 251 cache_tmp_xattr(file, &sx);
16edf865
WD
252 free_xattr(&sx);
253 }
254#endif
1c3344a1 255
378a074c 256 /* Check to see if this is a device file, or link */
b5c6a6ae
WD
257 if ((am_root && preserve_devices && IS_DEVICE(file->mode))
258 || (preserve_specials && IS_SPECIAL(file->mode))) {
88e05f84 259 int save_errno;
93e28fbd 260 do_unlink(buf);
a64f19e2 261 if (do_mknod(buf, file->mode, sx.st.st_rdev) < 0) {
88e05f84 262 save_errno = errno ? errno : EINVAL; /* 0 paranoia */
f1ca7c44 263 if (errno == ENOENT && make_bak_dir(buf) == 0) {
a64f19e2 264 if (do_mknod(buf, file->mode, sx.st.st_rdev) < 0)
f1ca7c44
WD
265 save_errno = errno ? errno : save_errno;
266 else
267 save_errno = 0;
268 }
269 if (save_errno) {
270 rsyserr(FERROR, save_errno, "mknod %s failed",
271 full_fname(buf));
272 }
88e05f84
WD
273 } else
274 save_errno = 0;
275 if (verbose > 2 && save_errno == 0) {
93e28fbd 276 rprintf(FINFO, "make_backup: DEVICE %s successful.\n",
45c49b52 277 fname);
47d6a60c
S
278 }
279 kept = 1;
280 do_unlink(fname);
281 }
378a074c 282
addf0c4a 283 if (!kept && S_ISDIR(file->mode)) {
378a074c 284 /* make an empty directory */
f1ca7c44
WD
285 if (do_mkdir(buf, file->mode) < 0) {
286 int save_errno = errno ? errno : EINVAL; /* 0 paranoia */
287 if (errno == ENOENT && make_bak_dir(buf) == 0) {
288 if (do_mkdir(buf, file->mode) < 0)
289 save_errno = errno ? errno : save_errno;
290 else
291 save_errno = 0;
292 }
293 if (save_errno) {
294 rsyserr(FINFO, save_errno, "mkdir %s failed",
295 full_fname(buf));
296 }
377dbd20 297 }
47d6a60c 298
377dbd20 299 ret_code = do_rmdir(fname);
addf0c4a 300 if (verbose > 2) {
ea42541f
WD
301 rprintf(FINFO, "make_backup: RMDIR %s returns %i\n",
302 full_fname(fname), ret_code);
47d6a60c
S
303 }
304 kept = 1;
305 }
378a074c 306
4f5b0756 307#ifdef SUPPORT_LINKS
addf0c4a 308 if (!kept && preserve_links && S_ISLNK(file->mode)) {
82ad07c4 309 const char *sl = F_SYMLINK(file);
f2522e3f 310 if (safe_symlinks && unsafe_symlink(sl, fname)) {
47d6a60c
S
311 if (verbose) {
312 rprintf(FINFO, "ignoring unsafe symlink %s -> %s\n",
82ad07c4 313 full_fname(buf), sl);
47d6a60c
S
314 }
315 kept = 1;
93e28fbd
WD
316 } else {
317 do_unlink(buf);
f1ca7c44
WD
318 if (do_symlink(sl, buf) < 0) {
319 int save_errno = errno ? errno : EINVAL; /* 0 paranoia */
320 if (errno == ENOENT && make_bak_dir(buf) == 0) {
321 if (do_symlink(sl, buf) < 0)
322 save_errno = errno ? errno : save_errno;
323 else
324 save_errno = 0;
325 }
326 if (save_errno) {
327 rsyserr(FERROR, save_errno, "link %s -> \"%s\"",
328 full_fname(buf), sl);
329 }
93e28fbd
WD
330 }
331 do_unlink(fname);
332 kept = 1;
47d6a60c 333 }
47d6a60c 334 }
378a074c 335#endif
378a074c 336
addf0c4a 337 if (!kept && !S_ISREG(file->mode)) {
47d6a60c 338 rprintf(FINFO, "make_bak: skipping non-regular file %s\n",
45c49b52 339 fname);
82ad07c4 340 unmake_file(file);
ea53d161
WD
341#ifdef SUPPORT_ACLS
342 uncache_tmp_acls();
343#endif
344#ifdef SUPPORT_XATTRS
345 uncache_tmp_xattrs();
346#endif
f8c8ef9e 347 return 1;
47d6a60c 348 }
66203a98 349
66203a98 350 /* move to keep tree if a file */
addf0c4a 351 if (!kept) {
c94e4afb 352 if (robust_move(fname, buf) != 0) {
d62bcc17 353 rsyserr(FERROR, errno, "keep_backup failed: %s -> \"%s\"",
45c49b52 354 full_fname(fname), buf);
1c3344a1 355 } else if (sx.st.st_nlink > 1) {
394bcdb5 356 /* If someone has hard-linked the file into the backup
3cb22c20 357 * dir, rename() might return success but do nothing! */
394bcdb5 358 robust_unlink(fname); /* Just in case... */
47d6a60c
S
359 }
360 }
e9489cd6 361 preserve_xattrs = 0;
16edf865 362 set_file_attrs(buf, file, NULL, fname, 0);
e9489cd6 363 preserve_xattrs = save_preserve_xattrs;
82ad07c4 364 unmake_file(file);
ea53d161
WD
365#ifdef SUPPORT_ACLS
366 uncache_tmp_acls();
367#endif
368#ifdef SUPPORT_XATTRS
369 uncache_tmp_xattrs();
370#endif
378a074c 371
4875d6b6
WD
372 if (verbose > 1) {
373 rprintf(FINFO, "backed up %s to %s\n",
45c49b52 374 fname, buf);
4875d6b6 375 }
66203a98 376 return 1;
de0e2250 377}
66203a98
AT
378
379
380/* main backup switch routine */
45d8bfe0 381int make_backup(const char *fname)
66203a98
AT
382{
383 if (backup_dir)
addf0c4a
WD
384 return keep_backup(fname);
385 return make_simple_backup(fname);
66203a98 386}