Document the new --specials option and how -D and --devices now work.
[rsync/rsync.git] / backup.c
CommitLineData
addf0c4a 1/*
3d19b4c8 2 Copyright (C) Andrew Tridgell 1999
addf0c4a 3
3d19b4c8
AT
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
addf0c4a 8
3d19b4c8
AT
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
addf0c4a 13
3d19b4c8
AT
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17*/
18
19/* backup handling code */
20
21#include "rsync.h"
22
23extern int verbose;
daa8ce83
WD
24extern int backup_suffix_len;
25extern int backup_dir_len;
de0e2250
WD
26extern unsigned int backup_dir_remainder;
27extern char backup_dir_buf[MAXPATHLEN];
3d19b4c8 28extern char *backup_suffix;
66203a98 29extern char *backup_dir;
3d19b4c8 30
378a074c
AT
31extern int am_root;
32extern int preserve_devices;
33extern int preserve_links;
34extern int preserve_hard_links;
5d2a7071 35extern int orig_umask;
377dbd20 36extern int safe_symlinks;
378a074c 37
c94e4afb
WD
38/* make a complete pathname for backup file */
39char *get_backup_name(char *fname)
40{
c94e4afb
WD
41 if (backup_dir) {
42 if (stringjoin(backup_dir_buf + backup_dir_len, backup_dir_remainder,
43 fname, backup_suffix, NULL) < backup_dir_remainder)
44 return backup_dir_buf;
45 } else {
fb22c277
WD
46 if (stringjoin(backup_dir_buf, MAXPATHLEN,
47 fname, backup_suffix, NULL) < MAXPATHLEN)
48 return backup_dir_buf;
c94e4afb
WD
49 }
50
51 rprintf(FERROR, "backup filename too long\n");
52 return NULL;
53}
54
66203a98
AT
55/* simple backup creates a backup with a suffix in the same directory */
56static int make_simple_backup(char *fname)
3d19b4c8 57{
ba679d51 58 int rename_errno;
c94e4afb 59 char *fnamebak = get_backup_name(fname);
5d2a7071 60
c94e4afb 61 if (!fnamebak)
3d19b4c8 62 return 0;
3d19b4c8 63
ba679d51
WD
64 while (1) {
65 if (do_rename(fname, fnamebak) == 0) {
66 if (verbose > 1) {
67 rprintf(FINFO, "backed up %s to %s\n",
45c49b52 68 fname, fnamebak);
ba679d51
WD
69 }
70 break;
3d19b4c8 71 }
ba679d51
WD
72 /* cygwin (at least version b19) reports EINVAL */
73 if (errno == ENOENT || errno == EINVAL)
74 break;
75
76 rename_errno = errno;
77 if (errno == EISDIR && do_rmdir(fnamebak) == 0)
78 continue;
79 if (errno == ENOTDIR && do_unlink(fnamebak) == 0)
80 continue;
81
82 rsyserr(FERROR, rename_errno, "rename %s to backup %s",
45c49b52 83 fname, fnamebak);
ba679d51
WD
84 errno = rename_errno;
85 return 0;
3d19b4c8 86 }
ba679d51 87
3d19b4c8
AT
88 return 1;
89}
66203a98
AT
90
91
378a074c
AT
92/****************************************************************************
93Create a directory given an absolute path, perms based upon another directory
94path
95****************************************************************************/
de0e2250 96static int make_bak_dir(char *fullpath)
378a074c 97{
47d6a60c 98 STRUCT_STAT st;
de0e2250
WD
99 char *rel = fullpath + backup_dir_len;
100 char *end = rel + strlen(rel);
101 char *p = end;
102
103 while (strncmp(fullpath, "./", 2) == 0)
104 fullpath += 2;
105
106 /* Try to find an existing dir, starting from the deepest dir. */
107 while (1) {
108 if (--p == fullpath) {
109 p += strlen(p);
110 goto failure;
111 }
112 if (*p == '/') {
113 *p = '\0';
114 if (do_mkdir(fullpath, 0777 & ~orig_umask) == 0)
115 break;
116 if (errno != ENOENT) {
d62bcc17
WD
117 rsyserr(FERROR, errno,
118 "make_bak_dir mkdir %s failed",
119 full_fname(fullpath));
de0e2250
WD
120 goto failure;
121 }
122 }
47d6a60c 123 }
de0e2250
WD
124
125 /* Make all the dirs that we didn't find on the way here. */
126 while (1) {
127 if (p >= rel) {
128 /* Try to transfer the directory settings of the
129 * actual dir that the files are coming from. */
9fd62d15 130 if (do_stat(rel, &st) < 0) {
d62bcc17
WD
131 rsyserr(FERROR, errno,
132 "make_bak_dir stat %s failed",
133 full_fname(rel));
de0e2250 134 } else {
de0e2250
WD
135 do_lchown(fullpath, st.st_uid, st.st_gid);
136 do_chmod(fullpath, st.st_mode);
47d6a60c
S
137 }
138 }
de0e2250
WD
139 *p = '/';
140 p += strlen(p);
141 if (p == end)
142 break;
143 if (do_mkdir(fullpath, 0777 & ~orig_umask) < 0) {
d62bcc17
WD
144 rsyserr(FERROR, errno, "make_bak_dir mkdir %s failed",
145 full_fname(fullpath));
de0e2250
WD
146 goto failure;
147 }
47d6a60c
S
148 }
149 return 0;
de0e2250 150
b2e6caa0 151 failure:
de0e2250
WD
152 while (p != end) {
153 *p = '/';
154 p += strlen(p);
155 }
156 return -1;
378a074c
AT
157}
158
66203a98
AT
159/* robustly move a file, creating new directory structures if necessary */
160static int robust_move(char *src, char *dst)
161{
3d061653
WD
162 if (robust_rename(src, dst, 0755) < 0 && (errno != ENOENT
163 || make_bak_dir(dst) < 0 || robust_rename(src, dst, 0755) < 0))
62c9e6b3
WD
164 return -1;
165 return 0;
de0e2250 166}
66203a98
AT
167
168
de0e2250
WD
169/* If we have a --backup-dir, then we get here from make_backup().
170 * We will move the file to be deleted into a parallel directory tree. */
66203a98
AT
171static int keep_backup(char *fname)
172{
66203a98
AT
173 STRUCT_STAT st;
174 struct file_struct *file;
c94e4afb 175 char *buf;
47d6a60c 176 int kept = 0;
378a074c
AT
177 int ret_code;
178
66203a98 179 /* return if no file to keep */
018b2832 180 if (do_lstat(fname, &st) < 0)
9fd62d15 181 return 1;
66203a98 182
3de73827 183 if (!(file = make_file(fname, NULL, NULL, 0, NO_FILTERS)))
c94e4afb 184 return 1; /* the file could have disappeared */
66203a98 185
c94e4afb 186 if (!(buf = get_backup_name(fname)))
47d6a60c 187 return 0;
378a074c 188
378a074c 189 /* Check to see if this is a device file, or link */
93e28fbd
WD
190 if (IS_DEVICE(file->mode) && am_root && preserve_devices) {
191 do_unlink(buf);
192 if (do_mknod(buf, file->mode, file->u.rdev) < 0
193 && (errno != ENOENT || make_bak_dir(buf) < 0
194 || do_mknod(buf, file->mode, file->u.rdev) < 0)) {
195 rsyserr(FERROR, errno, "mknod %s failed",
196 full_fname(buf));
197 } else if (verbose > 2) {
198 rprintf(FINFO, "make_backup: DEVICE %s successful.\n",
45c49b52 199 fname);
47d6a60c
S
200 }
201 kept = 1;
202 do_unlink(fname);
203 }
378a074c 204
addf0c4a 205 if (!kept && S_ISDIR(file->mode)) {
378a074c 206 /* make an empty directory */
c94e4afb
WD
207 if (do_mkdir(buf, file->mode) < 0
208 && (errno != ENOENT || make_bak_dir(buf) < 0
209 || do_mkdir(buf, file->mode) < 0)) {
d62bcc17 210 rsyserr(FINFO, errno, "mkdir %s failed",
c94e4afb 211 full_fname(buf));
377dbd20 212 }
47d6a60c 213
377dbd20 214 ret_code = do_rmdir(fname);
addf0c4a 215 if (verbose > 2) {
ea42541f
WD
216 rprintf(FINFO, "make_backup: RMDIR %s returns %i\n",
217 full_fname(fname), ret_code);
47d6a60c
S
218 }
219 kept = 1;
220 }
378a074c 221
4f5b0756 222#ifdef SUPPORT_LINKS
addf0c4a 223 if (!kept && preserve_links && S_ISLNK(file->mode)) {
c94e4afb 224 if (safe_symlinks && unsafe_symlink(file->u.link, buf)) {
47d6a60c
S
225 if (verbose) {
226 rprintf(FINFO, "ignoring unsafe symlink %s -> %s\n",
c94e4afb 227 full_fname(buf), file->u.link);
47d6a60c
S
228 }
229 kept = 1;
93e28fbd
WD
230 } else {
231 do_unlink(buf);
232 if (do_symlink(file->u.link, buf) < 0
233 && (errno != ENOENT || make_bak_dir(buf) < 0
234 || do_symlink(file->u.link, buf) < 0)) {
235 rsyserr(FERROR, errno, "link %s -> \"%s\"",
236 full_fname(buf),
45c49b52 237 file->u.link);
93e28fbd
WD
238 }
239 do_unlink(fname);
240 kept = 1;
47d6a60c 241 }
47d6a60c 242 }
378a074c 243#endif
378a074c 244
addf0c4a 245 if (!kept && !S_ISREG(file->mode)) {
47d6a60c 246 rprintf(FINFO, "make_bak: skipping non-regular file %s\n",
45c49b52 247 fname);
f8c8ef9e 248 return 1;
47d6a60c 249 }
66203a98 250
66203a98 251 /* move to keep tree if a file */
addf0c4a 252 if (!kept) {
c94e4afb 253 if (robust_move(fname, buf) != 0) {
d62bcc17 254 rsyserr(FERROR, errno, "keep_backup failed: %s -> \"%s\"",
45c49b52 255 full_fname(fname), buf);
394bcdb5
WD
256 } else if (st.st_nlink > 1) {
257 /* If someone has hard-linked the file into the backup
3cb22c20 258 * dir, rename() might return success but do nothing! */
394bcdb5 259 robust_unlink(fname); /* Just in case... */
47d6a60c
S
260 }
261 }
c94e4afb 262 set_perms(buf, file, NULL, 0);
9935066b 263 free(file);
378a074c 264
4875d6b6
WD
265 if (verbose > 1) {
266 rprintf(FINFO, "backed up %s to %s\n",
45c49b52 267 fname, buf);
4875d6b6 268 }
66203a98 269 return 1;
de0e2250 270}
66203a98
AT
271
272
273/* main backup switch routine */
274int make_backup(char *fname)
275{
276 if (backup_dir)
addf0c4a
WD
277 return keep_backup(fname);
278 return make_simple_backup(fname);
66203a98 279}