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