added --backup-dir option from Bob Edwards
[rsync/rsync.git] / rsync.c
CommitLineData
c627d613
AT
1/*
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
2f03f956
AT
20/* this file contains code used by more than one part of the rsync
21 process */
c627d613 22
2f03f956 23#include "rsync.h"
43a481dc 24
c627d613 25extern int verbose;
c627d613 26extern int dry_run;
2f03f956 27extern int preserve_times;
7b8356d0 28extern int am_root;
2f03f956
AT
29extern int preserve_uid;
30extern int preserve_gid;
31extern int preserve_perms;
32extern int make_backups;
fe055c71
AT
33
34
c627d613
AT
35/*
36 free a sums struct
37 */
2f03f956 38void free_sums(struct sum_struct *s)
c627d613 39{
298c10d5
AT
40 if (s->sums) free(s->sums);
41 free(s);
c627d613
AT
42}
43
44
3cb6f5d6
AT
45/*
46 * delete a file or directory. If force_delet is set then delete
47 * recursively
48 */
2f03f956 49int delete_file(char *fname)
3cb6f5d6
AT
50{
51 DIR *d;
52 struct dirent *di;
53 char buf[MAXPATHLEN];
54 extern int force_delete;
bcacc18b 55 STRUCT_STAT st;
3cb6f5d6 56 int ret;
05848a2c 57 extern int recurse;
3cb6f5d6 58
c7c11a0d 59 if (robust_unlink(fname) == 0 || errno == ENOENT) return 0;
3cb6f5d6
AT
60
61#if SUPPORT_LINKS
bcacc18b 62 ret = do_lstat(fname, &st);
3cb6f5d6 63#else
bcacc18b 64 ret = do_stat(fname, &st);
3cb6f5d6
AT
65#endif
66 if (ret) {
9486289c 67 rprintf(FERROR,"stat(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
68 return -1;
69 }
70
71 if (!S_ISDIR(st.st_mode)) {
9486289c 72 rprintf(FERROR,"unlink(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
73 return -1;
74 }
75
76 if (do_rmdir(fname) == 0 || errno == ENOENT) return 0;
05848a2c
AT
77 if (!force_delete || !recurse ||
78 (errno != ENOTEMPTY && errno != EEXIST)) {
9486289c 79 rprintf(FERROR,"rmdir(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
80 return -1;
81 }
82
83 /* now we do a recsursive delete on the directory ... */
84 d = opendir(fname);
85 if (!d) {
9486289c 86 rprintf(FERROR,"opendir(%s): %s\n",
3cb6f5d6
AT
87 fname,strerror(errno));
88 return -1;
89 }
90
91 for (di=readdir(d); di; di=readdir(d)) {
d6e6ecbd
AT
92 char *dname = d_name(di);
93 if (strcmp(dname,".")==0 ||
94 strcmp(dname,"..")==0)
3cb6f5d6 95 continue;
37f9805d 96 slprintf(buf, sizeof(buf), "%s/%s", fname, dname);
3cb6f5d6 97 if (verbose > 0)
9486289c 98 rprintf(FINFO,"deleting %s\n", buf);
3cb6f5d6
AT
99 if (delete_file(buf) != 0) {
100 closedir(d);
101 return -1;
102 }
103 }
104
105 closedir(d);
106
107 if (do_rmdir(fname) != 0) {
9486289c 108 rprintf(FERROR,"rmdir(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
109 return -1;
110 }
111
112 return 0;
113}
c627d613 114
460f6b99
DD
115static int is_in_group(gid_t gid)
116{
9422bb3f 117#ifdef GETGROUPS_T
460f6b99
DD
118 static gid_t last_in = (gid_t) -2, last_out;
119 static int ngroups = -2;
9422bb3f 120 static GETGROUPS_T *gidset;
460f6b99
DD
121 int n;
122
123 if (gid == last_in)
124 return last_out;
125 if (ngroups < -1) {
126 /* treat failure (-1) as if not member of any group */
127 ngroups = getgroups(0, 0);
128 if (ngroups > 0) {
9422bb3f 129 gidset = (GETGROUPS_T *) malloc(ngroups * sizeof(GETGROUPS_T));
460f6b99
DD
130 ngroups = getgroups(ngroups, gidset);
131 }
132 }
133
134 last_in = gid;
135 last_out = 0;
136 for (n = 0; n < ngroups; n++) {
137 if (gidset[n] == gid) {
138 last_out = 1;
139 break;
140 }
141 }
142 return last_out;
143
144#else
145 return 0;
146#endif
147}
c627d613 148
2f03f956
AT
149int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st,
150 int report)
c627d613 151{
667e72a1
AT
152 int updated = 0;
153 STRUCT_STAT st2;
460f6b99 154 int change_uid, change_gid;
c627d613 155
667e72a1 156 if (dry_run) return 0;
c627d613 157
667e72a1
AT
158 if (!st) {
159 if (link_stat(fname,&st2) != 0) {
160 rprintf(FERROR,"stat %s : %s\n",fname,strerror(errno));
161 return 0;
162 }
163 st = &st2;
164 }
c627d613 165
667e72a1
AT
166 if (preserve_times && !S_ISLNK(st->st_mode) &&
167 st->st_mtime != file->modtime) {
8d249b63
AT
168 /* don't complain about not setting times on directories
169 because some filesystems can't do it */
170 if (set_modtime(fname,file->modtime) != 0 &&
171 !S_ISDIR(st->st_mode)) {
667e72a1
AT
172 rprintf(FERROR,"failed to set times on %s : %s\n",
173 fname,strerror(errno));
174 return 0;
8d249b63
AT
175 } else {
176 updated = 1;
667e72a1
AT
177 }
178 }
179
460f6b99 180 change_uid = am_root && preserve_uid && st->st_uid != file->uid;
128cf584 181 change_gid = preserve_gid && file->gid != (gid_t) -1 && \
86692050 182 st->st_gid != file->gid;
460f6b99
DD
183 if (change_gid && !am_root) {
184 /* enforce bsd-style group semantics: non-root can only
185 change to groups that the user is a member of */
186 change_gid = is_in_group(file->gid);
187 }
188 if (change_uid || change_gid) {
667e72a1 189 if (do_lchown(fname,
460f6b99
DD
190 change_uid?file->uid:st->st_uid,
191 change_gid?file->gid:st->st_gid) != 0) {
192 /* shouldn't have attempted to change uid or gid
193 unless have the privilege */
194 rprintf(FERROR,"chown %s : %s\n", fname,strerror(errno));
195 return 0;
667e72a1 196 }
a5827a28
AT
197 /* a lchown had been done - we have to re-stat if the
198 destination had the setuid or setgid bits set due
199 to the side effect of the chown call */
200 if (st->st_mode & (S_ISUID | S_ISGID)) {
201 link_stat(fname, st);
202 }
460f6b99 203 updated = 1;
667e72a1 204 }
c627d613
AT
205
206#ifdef HAVE_CHMOD
972a3619 207 if (!S_ISLNK(st->st_mode)) {
972a3619
DD
208 if (st->st_mode != file->mode) {
209 updated = 1;
f08baea3 210 if (do_chmod(fname,file->mode) != 0) {
972a3619
DD
211 rprintf(FERROR,"failed to set permissions on %s : %s\n",
212 fname,strerror(errno));
213 return 0;
214 }
667e72a1
AT
215 }
216 }
c627d613 217#endif
c627d613 218
667e72a1
AT
219 if (verbose > 1 && report) {
220 if (updated)
221 rprintf(FINFO,"%s\n",fname);
222 else
223 rprintf(FINFO,"%s is uptodate\n",fname);
224 }
225 return updated;
c627d613
AT
226}
227
228
34ccb63e
AT
229void sig_int(void)
230{
65417579 231 exit_cleanup(RERR_SIGNAL);
c627d613
AT
232}
233
234
c95da96a
AT
235/* finish off a file transfer, renaming the file and setting the permissions
236 and ownership */
2f03f956 237void finish_transfer(char *fname, char *fnametmp, struct file_struct *file)
c95da96a 238{
53dd3135
DD
239 if (make_backups && !make_backup(fname))
240 return;
c95da96a
AT
241
242 /* move tmp file over real file */
c7c11a0d 243 if (robust_rename(fnametmp,fname) != 0) {
c95da96a
AT
244 if (errno == EXDEV) {
245 /* rename failed on cross-filesystem link.
246 Copy the file instead. */
972a3619 247 if (copy_file(fnametmp,fname, file->mode & INITACCESSPERMS)) {
c95da96a
AT
248 rprintf(FERROR,"copy %s -> %s : %s\n",
249 fnametmp,fname,strerror(errno));
250 } else {
251 set_perms(fname,file,NULL,0);
252 }
c95da96a
AT
253 } else {
254 rprintf(FERROR,"rename %s -> %s : %s\n",
255 fnametmp,fname,strerror(errno));
c95da96a 256 }
c7c11a0d 257 do_unlink(fnametmp);
c95da96a
AT
258 } else {
259 set_perms(fname,file,NULL,0);
260 }
261}