2 Copyright (C) Andrew Tridgell 1999
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.
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.
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.
19 /* backup handling code */
24 extern int backup_suffix_len
;
25 extern int backup_dir_len
;
26 extern char *backup_suffix
;
27 extern char *backup_dir
;
30 extern int preserve_devices
;
31 extern int preserve_links
;
32 extern int preserve_hard_links
;
34 /* simple backup creates a backup with a suffix in the same directory */
35 static int make_simple_backup(char *fname
)
37 char fnamebak
[MAXPATHLEN
];
38 if (strlen(fname
) + backup_suffix_len
> MAXPATHLEN
-1) {
39 rprintf(FERROR
, "backup filename too long\n");
43 snprintf(fnamebak
, sizeof(fnamebak
), "%s%s", fname
, backup_suffix
);
44 if (do_rename(fname
, fnamebak
) != 0) {
45 /* cygwin (at least version b19) reports EINVAL */
46 if (errno
!= ENOENT
&& errno
!= EINVAL
) {
47 rsyserr(FERROR
, errno
, "rename %s to backup %s", fname
, fnamebak
);
50 } else if (verbose
> 1) {
51 rprintf(FINFO
, "backed up %s to %s\n", fname
, fnamebak
);
57 /* recursively make a directory path */
58 static int make_dir(char *name
, int mask
)
60 char newdir
[MAXPATHLEN
];
63 /* copy pathname over, look for last '/' */
64 for (p
= d
= newdir
; *name
; *d
++ = *name
++)
71 /* make the new directory, if that fails then make its parent */
72 while (do_mkdir (newdir
, mask
) != 0)
73 if ((errno
!= ENOENT
) || !make_dir (newdir
, mask
))
80 /****************************************************************************
81 Create a directory given an absolute path, perms based upon another directory
83 ****************************************************************************/
84 static int make_bak_dir(char *fname
, char *bak_path
)
88 char fullpath
[MAXPATHLEN
];
89 extern int orig_umask
;
93 while(strncmp(bak_path
, "./", 2) == 0) bak_path
+= 2;
95 if(bak_path
[strlen(bak_path
)-1] != '/') {
96 snprintf(fullpath
, sizeof(fullpath
), "%s/", bak_path
);
98 snprintf(fullpath
, sizeof(fullpath
), "%s", bak_path
);
101 q
= &fullpath
[strlen(fullpath
)]; /* End of bak_path string */
102 strcat(fullpath
, fname
);
104 /* Make the directories */
105 while ((p
= strchr(p
, '/'))) {
107 if(do_lstat(fullpath
, &st
) != 0) {
108 do_mkdir(fullpath
, 0777 & ~orig_umask
);
110 if(do_lstat(q
, &st
) != 0) {
111 rprintf(FERROR
, "make_bak_dir stat %s failed: %s\n",
112 full_fname(fullpath
), strerror(errno
));
115 set_modtime(fullpath
, st2
->st_mtime
);
116 if(do_lchown(fullpath
, st2
->st_uid
, st2
->st_gid
) != 0) {
117 rprintf(FERROR
, "make_bak_dir chown %s failed: %s\n",
118 full_fname(fullpath
), strerror(errno
));
120 if(do_chmod(fullpath
, st2
->st_mode
) != 0) {
121 rprintf(FERROR
, "make_bak_dir failed to set permissions on %s: %s\n",
122 full_fname(fullpath
), strerror(errno
));
133 /* robustly move a file, creating new directory structures if necessary */
134 static int robust_move(char *src
, char *dst
)
137 int keep_path_extfs
= 0;
140 while (keep_trying
) {
141 if (keep_path_extfs
) {
142 failed
= copy_file(src
, dst
, 0755);
147 failed
= robust_rename (src
, dst
);
152 rprintf (FERROR
, "robust_move failed: %s(%d)\n",
153 strerror (errno
), errno
);
155 /* external filesystem */
160 /* no directory to write to */
175 /* if we have a backup_dir, then we get here from make_backup().
176 We will move the file to be deleted into a parallel directory tree */
177 static int keep_backup(char *fname
)
180 static int initialised
;
182 char keep_name
[MAXPATHLEN
];
184 struct file_struct
*file
;
190 if (backup_dir_len
&& backup_dir
[backup_dir_len
- 1] == '/')
191 backup_dir
[--backup_dir_len
] = '\0';
193 rprintf (FINFO
, "backup_dir is %s\n", backup_dir
);
197 /* return if no file to keep */
199 if (do_lstat (fname
, &st
)) return 1;
201 if (do_stat (fname
, &st
)) return 1;
204 file
= make_file(fname
, NULL
, NO_EXCLUDES
);
206 /* the file could have disappeared */
209 /* make a complete pathname for backup file */
210 if (backup_dir_len
+strlen(fname
)+backup_suffix_len
> MAXPATHLEN
-1) {
211 rprintf (FERROR
, "keep_backup filename too long\n");
215 snprintf(keep_name
, sizeof (keep_name
), "%s/%s%s",
216 backup_dir
, fname
, backup_suffix
);
219 /* Check to see if this is a device file, or link */
220 if(IS_DEVICE(file
->mode
)) {
221 if(am_root
&& preserve_devices
) {
222 make_bak_dir(fname
, backup_dir
);
223 if(do_mknod(keep_name
, file
->mode
, file
->rdev
) != 0) {
224 rprintf(FERROR
, "mknod %s failed: %s\n",
225 full_fname(keep_name
), strerror(errno
));
226 } else if(verbose
>2) {
227 rprintf(FINFO
, "make_backup: DEVICE %s successful.\n", fname
);
235 if(!kept
&& S_ISDIR(file
->mode
)) {
236 /* make an empty directory */
237 make_bak_dir(fname
, backup_dir
);
238 do_mkdir(keep_name
, file
->mode
);
239 ret_code
= do_rmdir(fname
);
242 rprintf(FINFO
, "make_backup: RMDIR %s returns %i\n",
243 full_fname(fname
), ret_code
);
249 if(!kept
&& preserve_links
&& S_ISLNK(file
->mode
)) {
250 extern int safe_symlinks
;
251 if (safe_symlinks
&& unsafe_symlink(file
->link
, keep_name
)) {
253 rprintf(FINFO
, "ignoring unsafe symlink %s -> %s\n",
254 full_fname(keep_name
), file
->link
);
258 make_bak_dir(fname
, backup_dir
);
259 if(do_symlink(file
->link
, keep_name
) != 0) {
260 rprintf(FERROR
, "link %s -> %s : %s\n",
261 full_fname(keep_name
), file
->link
, strerror(errno
));
267 if(!kept
&& preserve_hard_links
&& check_hard_link(file
)) {
269 rprintf(FINFO
, "%s is a hard link\n", f_name(file
));
272 if(!kept
&& !S_ISREG(file
->mode
)) {
273 rprintf(FINFO
, "make_bak: skipping non-regular file %s\n",
277 /* move to keep tree if a file */
279 if (!robust_move (fname
, keep_name
)) {
280 rprintf(FERROR
, "keep_backup failed: %s -> \"%s\": %s\n",
281 full_fname(fname
), keep_name
, strerror(errno
));
284 set_perms (keep_name
, file
, NULL
, 0);
289 rprintf (FINFO
, "keep_backup %s -> %s\n", fname
, keep_name
);
294 /* main backup switch routine */
295 int make_backup(char *fname
)
298 return (keep_backup(fname
));
300 return (make_simple_backup(fname
));