6b5b500f0c2f99db4d4b4d8c33ffbce751cda7c3
[rsync/rsync.git] / rsync.c
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
20 /* this file contains code used by more than one part of the rsync
21    process */
22
23 #include "rsync.h"
24
25 extern int verbose;
26 extern int dry_run;
27 extern int preserve_times;
28 extern int am_root;
29 extern int am_sender;
30 extern int am_generator;
31 extern int preserve_uid;
32 extern int preserve_gid;
33 extern int force_delete;
34 extern int recurse;
35 extern int keep_dirlinks;
36 extern int make_backups;
37 extern char *backup_dir;
38 extern int inplace;
39
40
41 /*
42   free a sums struct
43   */
44 void free_sums(struct sum_struct *s)
45 {
46         if (s->sums) free(s->sums);
47         free(s);
48 }
49
50
51 /*
52  * delete a file or directory. If force_delete is set then delete
53  * recursively
54  */
55 int delete_file(char *fname, int flags)
56 {
57         DIR *d;
58         struct dirent *di;
59         char buf[MAXPATHLEN];
60         STRUCT_STAT st;
61
62         if (!(flags & DEL_DIR)) {
63                 if (robust_unlink(fname) == 0) {
64                         if (verbose && !(flags & DEL_TERSE)) {
65                                 rprintf(FINFO, "deleting %s\n",
66                                         safe_fname(fname));
67                         }
68                         return 0;
69                 }
70                 if (errno == ENOENT)
71                         return 0;
72                 rsyserr(FERROR, errno, "delete_file: unlink %s failed",
73                         full_fname(fname));
74                 return -1;
75         }
76
77         if (do_rmdir(fname) == 0) {
78                 if (verbose && !(flags & DEL_TERSE)) {
79                         rprintf(FINFO, "deleting %s/\n",
80                                 safe_fname(fname));
81                 }
82                 return 0;
83         }
84         if (errno == ENOENT)
85                 return 0;
86         if ((flags & DEL_NO_RECURSE) || !force_delete || !recurse
87             || (errno != ENOTEMPTY && errno != EEXIST)) {
88                 rsyserr(FERROR, errno, "delete_file: rmdir %s failed",
89                         full_fname(fname));
90                 return -1;
91         }
92
93         /* now we do a recsursive delete on the directory ... */
94         if (!(d = opendir(fname))) {
95                 rsyserr(FERROR, errno, "delete_file: opendir %s failed",
96                         full_fname(fname));
97                 return -1;
98         }
99
100         if (!(flags & DEL_TERSE)) {
101                 if (verbose)
102                         rprintf(FINFO, "deleting %s/\n", safe_fname(fname));
103                 flags |= DEL_TERSE;
104         }
105
106         for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) {
107                 char *dname = d_name(di);
108                 if (dname[0] == '.' && (dname[1] == '\0'
109                     || (dname[1] == '.' && dname[2] == '\0')))
110                         continue;
111                 pathjoin(buf, sizeof buf, fname, dname);
112
113                 if (do_lstat(buf, &st) < 0)
114                         continue;
115                 if (S_ISDIR(st.st_mode))
116                         flags |= DEL_DIR;
117                 else
118                         flags &= ~DEL_DIR;
119
120                 if (verbose)
121                         rprintf(FINFO, "deleting %s%s\n", safe_fname(buf),
122                                 flags & DEL_DIR ? "/" : "");
123                 if (delete_file(buf, flags) != 0) {
124                         closedir(d);
125                         return -1;
126                 }
127         }
128         if (errno) {
129                 rsyserr(FERROR, errno, "delete_file: readdir %s failed",
130                         full_fname(fname));
131                 closedir(d);
132                 return -1;
133         }
134
135         closedir(d);
136
137         if (do_rmdir(fname) != 0 && errno != ENOENT) {
138                 rsyserr(FERROR, errno, "delete_file: rmdir %s failed",
139                         full_fname(fname));
140                 return -1;
141         }
142
143         return 0;
144 }
145
146 int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st,
147               int flags)
148 {
149         int updated = 0;
150         STRUCT_STAT st2;
151         int change_uid, change_gid;
152
153         if (dry_run)
154                 return 0;
155
156         if (!st) {
157                 if (link_stat(fname, &st2, 0) < 0) {
158                         rsyserr(FERROR, errno, "stat %s failed",
159                                 full_fname(fname));
160                         return 0;
161                 }
162                 st = &st2;
163         }
164
165         if (!preserve_times || S_ISLNK(st->st_mode)
166             || (make_backups && !backup_dir && S_ISDIR(st->st_mode)))
167                 flags |= PERMS_SKIP_MTIME;
168         if (!(flags & PERMS_SKIP_MTIME)
169             && cmp_modtime(st->st_mtime, file->modtime) != 0) {
170                 /* don't complain about not setting times on directories
171                  * because some filesystems can't do it */
172                 if (set_modtime(fname,file->modtime) != 0 &&
173                     !S_ISDIR(st->st_mode)) {
174                         rsyserr(FERROR, errno, "failed to set times on %s",
175                                 full_fname(fname));
176                         return 0;
177                 }
178                 updated = 1;
179         }
180
181         change_uid = am_root && preserve_uid && st->st_uid != file->uid;
182         change_gid = preserve_gid && file->gid != GID_NONE
183                 && st->st_gid != file->gid;
184 #if !HAVE_LCHOWN && !CHOWN_MODIFIES_SYMLINK
185         if (S_ISLNK(st->st_mode))
186                 ;
187         else
188 #endif
189         if (change_uid || change_gid) {
190                 if (verbose > 2) {
191                         if (change_uid) {
192                                 rprintf(FINFO,
193                                     "set uid of %s from %ld to %ld\n",
194                                     fname, (long)st->st_uid, (long)file->uid);
195                         }
196                         if (change_gid) {
197                                 rprintf(FINFO,
198                                     "set gid of %s from %ld to %ld\n",
199                                     fname, (long)st->st_gid, (long)file->gid);
200                         }
201                 }
202                 if (do_lchown(fname,
203                     change_uid ? file->uid : st->st_uid,
204                     change_gid ? file->gid : st->st_gid) != 0) {
205                         /* shouldn't have attempted to change uid or gid
206                          * unless have the privilege */
207                         rsyserr(FERROR, errno, "%s %s failed",
208                             change_uid ? "chown" : "chgrp",
209                             full_fname(fname));
210                         return 0;
211                 }
212                 /* a lchown had been done - we have to re-stat if the
213                  * destination had the setuid or setgid bits set due
214                  * to the side effect of the chown call */
215                 if (st->st_mode & (S_ISUID | S_ISGID)) {
216                         link_stat(fname, st,
217                                   keep_dirlinks && S_ISDIR(st->st_mode));
218                 }
219                 updated = 1;
220         }
221
222 #ifdef HAVE_CHMOD
223         if (!S_ISLNK(st->st_mode)) {
224                 if ((st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS)) {
225                         updated = 1;
226                         if (do_chmod(fname,(file->mode & CHMOD_BITS)) != 0) {
227                                 rsyserr(FERROR, errno, "failed to set permissions on %s",
228                                         full_fname(fname));
229                                 return 0;
230                         }
231                 }
232         }
233 #endif
234
235         if (verbose > 1 && flags & PERMS_REPORT) {
236                 if (updated)
237                         rprintf(FINFO,"%s\n",fname);
238                 else
239                         rprintf(FINFO,"%s is uptodate\n",fname);
240         }
241         return updated;
242 }
243
244
245 void sig_int(void)
246 {
247         /* KLUGE: if the user hits Ctrl-C while ssh is prompting
248          * for a password, then our cleanup's sending of a SIGUSR1
249          * signal to all our children may kill ssh before it has a
250          * chance to restore the tty settings (i.e. turn echo back
251          * on).  By sleeping for a short time, ssh gets a bigger
252          * chance to do the right thing.  If child processes are
253          * not ssh waiting for a password, then this tiny delay
254          * shouldn't hurt anything. */
255         msleep(400);
256         exit_cleanup(RERR_SIGNAL);
257 }
258
259
260 /* finish off a file transfer, renaming the file and setting the permissions
261    and ownership */
262 void finish_transfer(char *fname, char *fnametmp, struct file_struct *file,
263                      int ok_to_set_time, int overwriting_basis)
264 {
265         int ret;
266
267         if (inplace) {
268                 if (verbose > 2)
269                         rprintf(FINFO, "finishing %s\n", fname);
270                 goto do_set_perms;
271         }
272
273         if (make_backups && overwriting_basis && !make_backup(fname))
274                 return;
275
276         /* Change permissions before putting the file into place. */
277         set_perms(fnametmp, file, NULL, ok_to_set_time ? 0 : PERMS_SKIP_MTIME);
278
279         /* move tmp file over real file */
280         if (verbose > 2)
281                 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
282         ret = robust_rename(fnametmp, fname, file->mode & INITACCESSPERMS);
283         if (ret < 0) {
284                 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
285                     ret == -2 ? "copy" : "rename",
286                     full_fname(fnametmp), fname);
287                 do_unlink(fnametmp);
288                 return;
289         }
290         if (ret == 0) {
291                 /* The file was moved into place (not copied), so it's done. */
292                 return;
293         }
294     do_set_perms:
295         set_perms(fname, file, NULL, ok_to_set_time ? 0 : PERMS_SKIP_MTIME);
296 }
297
298 const char *who_am_i(void)
299 {
300         return am_sender ? "sender" : am_generator ? "generator" : "receiver";
301 }