Changed rprintf() calls that included strerror() to use rsyserr().
[rsync/rsync.git] / backup.c
... / ...
CommitLineData
1/*
2 Copyright (C) Andrew Tridgell 1999
3
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.
8
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.
13
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;
24extern int backup_suffix_len;
25extern int backup_dir_len;
26extern unsigned int backup_dir_remainder;
27extern char backup_dir_buf[MAXPATHLEN];
28extern char *backup_suffix;
29extern char *backup_dir;
30
31extern int am_root;
32extern int preserve_devices;
33extern int preserve_links;
34extern int preserve_hard_links;
35extern int orig_umask;
36extern int safe_symlinks;
37
38/* simple backup creates a backup with a suffix in the same directory */
39static int make_simple_backup(char *fname)
40{
41 char fnamebak[MAXPATHLEN];
42
43 if (stringjoin(fnamebak, sizeof fnamebak, fname, backup_suffix, NULL)
44 >= sizeof fnamebak) {
45 rprintf(FERROR, "backup filename too long\n");
46 return 0;
47 }
48
49 if (do_rename(fname, fnamebak) != 0) {
50 /* cygwin (at least version b19) reports EINVAL */
51 if (errno != ENOENT && errno != EINVAL) {
52 rsyserr(FERROR, errno, "rename %s to backup %s", fname, fnamebak);
53 return 0;
54 }
55 } else if (verbose > 1) {
56 rprintf(FINFO, "backed up %s to %s\n", fname, fnamebak);
57 }
58 return 1;
59}
60
61
62/****************************************************************************
63Create a directory given an absolute path, perms based upon another directory
64path
65****************************************************************************/
66static int make_bak_dir(char *fullpath)
67{
68 STRUCT_STAT st;
69 char *rel = fullpath + backup_dir_len;
70 char *end = rel + strlen(rel);
71 char *p = end;
72
73 while (strncmp(fullpath, "./", 2) == 0)
74 fullpath += 2;
75
76 /* Try to find an existing dir, starting from the deepest dir. */
77 while (1) {
78 if (--p == fullpath) {
79 p += strlen(p);
80 goto failure;
81 }
82 if (*p == '/') {
83 *p = '\0';
84 if (do_mkdir(fullpath, 0777 & ~orig_umask) == 0)
85 break;
86 if (errno != ENOENT) {
87 rprintf(FERROR,
88 "make_bak_dir mkdir %s failed: %s\n",
89 full_fname(fullpath), strerror(errno));
90 goto failure;
91 }
92 }
93 }
94
95 /* Make all the dirs that we didn't find on the way here. */
96 while (1) {
97 if (p >= rel) {
98 /* Try to transfer the directory settings of the
99 * actual dir that the files are coming from. */
100 if (do_lstat(rel, &st) != 0) {
101 rprintf(FERROR,
102 "make_bak_dir stat %s failed: %s\n",
103 full_fname(rel), strerror(errno));
104 } else {
105 do_lchown(fullpath, st.st_uid, st.st_gid);
106 do_chmod(fullpath, st.st_mode);
107 }
108 }
109 *p = '/';
110 p += strlen(p);
111 if (p == end)
112 break;
113 if (do_mkdir(fullpath, 0777 & ~orig_umask) < 0) {
114 rprintf(FERROR,
115 "make_bak_dir mkdir %s failed: %s\n",
116 full_fname(fullpath), strerror(errno));
117 goto failure;
118 }
119 }
120 return 0;
121
122failure:
123 while (p != end) {
124 *p = '/';
125 p += strlen(p);
126 }
127 return -1;
128}
129
130/* robustly move a file, creating new directory structures if necessary */
131static int robust_move(char *src, char *dst)
132{
133 if (robust_rename(src, dst, 0755) < 0 && (errno != ENOENT
134 || make_bak_dir(dst) < 0 || robust_rename(src, dst, 0755) < 0))
135 return -1;
136 return 0;
137}
138
139
140/* If we have a --backup-dir, then we get here from make_backup().
141 * We will move the file to be deleted into a parallel directory tree. */
142static int keep_backup(char *fname)
143{
144 STRUCT_STAT st;
145 struct file_struct *file;
146 int kept = 0;
147 int ret_code;
148
149 /* return if no file to keep */
150#if SUPPORT_LINKS
151 if (do_lstat(fname, &st)) return 1;
152#else
153 if (do_stat(fname, &st)) return 1;
154#endif
155
156 file = make_file(fname, NULL, NO_EXCLUDES);
157
158 /* the file could have disappeared */
159 if (!file) return 1;
160
161 /* make a complete pathname for backup file */
162 if (stringjoin(backup_dir_buf + backup_dir_len, backup_dir_remainder,
163 fname, backup_suffix, NULL) >= backup_dir_remainder) {
164 rprintf(FERROR, "keep_backup filename too long\n");
165 return 0;
166 }
167
168#ifdef HAVE_MKNOD
169 /* Check to see if this is a device file, or link */
170 if (IS_DEVICE(file->mode)) {
171 if (am_root && preserve_devices) {
172 if (do_mknod(backup_dir_buf, file->mode, file->u.rdev) < 0
173 && (errno != ENOENT || make_bak_dir(backup_dir_buf) < 0
174 || do_mknod(backup_dir_buf, file->mode, file->u.rdev) < 0)) {
175 rprintf(FERROR, "mknod %s failed: %s\n",
176 full_fname(backup_dir_buf), strerror(errno));
177 } else if (verbose > 2) {
178 rprintf(FINFO,
179 "make_backup: DEVICE %s successful.\n",
180 fname);
181 }
182 }
183 kept = 1;
184 do_unlink(fname);
185 }
186#endif
187
188 if (!kept && S_ISDIR(file->mode)) {
189 /* make an empty directory */
190 if (do_mkdir(backup_dir_buf, file->mode) < 0
191 && (errno != ENOENT || make_bak_dir(backup_dir_buf) < 0
192 || do_mkdir(backup_dir_buf, file->mode) < 0)) {
193 rprintf(FINFO, "mkdir %s failed: %s\n",
194 full_fname(backup_dir_buf), strerror(errno));
195 }
196
197 ret_code = do_rmdir(fname);
198 if (verbose > 2) {
199 rprintf(FINFO, "make_backup: RMDIR %s returns %i\n",
200 full_fname(fname), ret_code);
201 }
202 kept = 1;
203 }
204
205#if SUPPORT_LINKS
206 if (!kept && preserve_links && S_ISLNK(file->mode)) {
207 if (safe_symlinks && unsafe_symlink(file->u.link, backup_dir_buf)) {
208 if (verbose) {
209 rprintf(FINFO, "ignoring unsafe symlink %s -> %s\n",
210 full_fname(backup_dir_buf), file->u.link);
211 }
212 kept = 1;
213 }
214 if (do_symlink(file->u.link, backup_dir_buf) < 0
215 && (errno != ENOENT || make_bak_dir(backup_dir_buf) < 0
216 || do_symlink(file->u.link, backup_dir_buf) < 0)) {
217 rprintf(FERROR, "link %s -> %s : %s\n",
218 full_fname(backup_dir_buf), file->u.link, strerror(errno));
219 }
220 do_unlink(fname);
221 kept = 1;
222 }
223#endif
224
225 if (!kept && !S_ISREG(file->mode)) {
226 rprintf(FINFO, "make_bak: skipping non-regular file %s\n",
227 fname);
228 }
229
230 /* move to keep tree if a file */
231 if (!kept) {
232 if (robust_move(fname, backup_dir_buf) != 0) {
233 rprintf(FERROR, "keep_backup failed: %s -> \"%s\": %s\n",
234 full_fname(fname), backup_dir_buf, strerror(errno));
235 }
236 }
237 set_perms(backup_dir_buf, file, NULL, 0);
238 free(file);
239
240 if (verbose > 1)
241 rprintf(FINFO, "keep_backup %s -> %s\n", fname, backup_dir_buf);
242 return 1;
243}
244
245
246/* main backup switch routine */
247int make_backup(char *fname)
248{
249 if (backup_dir)
250 return keep_backup(fname);
251 return make_simple_backup(fname);
252}