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