Changed sig_int() to use a standard signal-handler prototype.
[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 daemon_log_format_has_i;
28 extern int preserve_executability;
29 extern int preserve_times;
30 extern int omit_dir_times;
31 extern int orig_umask;
32 extern int am_root;
33 extern int am_server;
34 extern int am_sender;
35 extern int am_generator;
36 extern int am_starting_up;
37 extern int preserve_uid;
38 extern int preserve_gid;
39 extern int inplace;
40 extern int keep_dirlinks;
41 extern int make_backups;
42 extern struct stats stats;
43
44
45 /*
46   free a sums struct
47   */
48 void free_sums(struct sum_struct *s)
49 {
50         if (s->sums) free(s->sums);
51         free(s);
52 }
53
54 /* This is only called when we aren't preserving permissions.  Figure out what
55  * the permissions should be and return them merged back into the mode. */
56 mode_t dest_mode(mode_t flist_mode, mode_t dest_mode, int exists)
57 {
58         /* If the file already exists we'll return the local permissions,
59          * possibly tweaked by the --executability option. */
60         if (exists) {
61                 if (preserve_executability && S_ISREG(flist_mode)) {
62                         /* If the source file is executable, grant execute
63                          * rights to everyone who can read, but ONLY if the
64                          * file isn't already executable. */
65                         if (!(flist_mode & 0111))
66                                 dest_mode &= ~0111;
67                         else if (!(dest_mode & 0111))
68                                 dest_mode |= (dest_mode & 0444) >> 2;
69                 }
70         } else
71                 dest_mode = flist_mode & ~orig_umask;
72         return (flist_mode & ~CHMOD_BITS) | (dest_mode & CHMOD_BITS);
73 }
74
75 int set_file_attrs(char *fname, struct file_struct *file, STRUCT_STAT *st,
76                    int flags)
77 {
78         int updated = 0;
79         STRUCT_STAT st2;
80         int change_uid, change_gid;
81
82         if (!st) {
83                 if (dry_run)
84                         return 1;
85                 if (link_stat(fname, &st2, 0) < 0) {
86                         rsyserr(FERROR, errno, "stat %s failed",
87                                 full_fname(fname));
88                         return 0;
89                 }
90                 st = &st2;
91         }
92
93         if (!preserve_times || (S_ISDIR(st->st_mode) && omit_dir_times))
94                 flags |= ATTRS_SKIP_MTIME;
95         if (!(flags & ATTRS_SKIP_MTIME)
96             && cmp_modtime(st->st_mtime, file->modtime) != 0) {
97                 int ret = set_modtime(fname, file->modtime, st->st_mode);
98                 if (ret < 0) {
99                         rsyserr(FERROR, errno, "failed to set times on %s",
100                                 full_fname(fname));
101                         return 0;
102                 }
103                 if (ret == 0) /* ret == 1 if symlink could not be set */
104                         updated = 1;
105         }
106
107         change_uid = am_root && preserve_uid && st->st_uid != file->uid;
108         change_gid = preserve_gid && file->gid != GID_NONE
109                 && st->st_gid != file->gid;
110 #if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
111         if (S_ISLNK(st->st_mode))
112                 ;
113         else
114 #endif
115         if (change_uid || change_gid) {
116                 if (verbose > 2) {
117                         if (change_uid) {
118                                 rprintf(FINFO,
119                                         "set uid of %s from %ld to %ld\n",
120                                         fname,
121                                         (long)st->st_uid, (long)file->uid);
122                         }
123                         if (change_gid) {
124                                 rprintf(FINFO,
125                                         "set gid of %s from %ld to %ld\n",
126                                         fname,
127                                         (long)st->st_gid, (long)file->gid);
128                         }
129                 }
130                 if (do_lchown(fname,
131                     change_uid ? file->uid : st->st_uid,
132                     change_gid ? file->gid : st->st_gid) != 0) {
133                         /* shouldn't have attempted to change uid or gid
134                          * unless have the privilege */
135                         rsyserr(FERROR, errno, "%s %s failed",
136                             change_uid ? "chown" : "chgrp",
137                             full_fname(fname));
138                         return 0;
139                 }
140                 /* a lchown had been done - we have to re-stat if the
141                  * destination had the setuid or setgid bits set due
142                  * to the side effect of the chown call */
143                 if (st->st_mode & (S_ISUID | S_ISGID)) {
144                         link_stat(fname, st,
145                                   keep_dirlinks && S_ISDIR(st->st_mode));
146                 }
147                 updated = 1;
148         }
149
150 #ifdef HAVE_CHMOD
151         if ((st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS)) {
152                 int ret = do_chmod(fname, file->mode);
153                 if (ret < 0) {
154                         rsyserr(FERROR, errno,
155                                 "failed to set permissions on %s",
156                                 full_fname(fname));
157                         return 0;
158                 }
159                 if (ret == 0) /* ret == 1 if symlink could not be set */
160                         updated = 1;
161         }
162 #endif
163
164         if (verbose > 1 && flags & ATTRS_REPORT) {
165                 enum logcode code = daemon_log_format_has_i || dry_run
166                                   ? FCLIENT : FINFO;
167                 if (updated)
168                         rprintf(code, "%s\n", fname);
169                 else
170                         rprintf(code, "%s is uptodate\n", fname);
171         }
172         return updated;
173 }
174
175 RETSIGTYPE sig_int(UNUSED(int val))
176 {
177         /* KLUGE: if the user hits Ctrl-C while ssh is prompting
178          * for a password, then our cleanup's sending of a SIGUSR1
179          * signal to all our children may kill ssh before it has a
180          * chance to restore the tty settings (i.e. turn echo back
181          * on).  By sleeping for a short time, ssh gets a bigger
182          * chance to do the right thing.  If child processes are
183          * not ssh waiting for a password, then this tiny delay
184          * shouldn't hurt anything. */
185         msleep(400);
186         exit_cleanup(RERR_SIGNAL);
187 }
188
189 /* Finish off a file transfer: renaming the file and setting the file's
190  * attributes (e.g. permissions, ownership, etc.).  If partialptr is not
191  * NULL and the robust_rename() call is forced to copy the temp file, we
192  * stage the file into the partial-dir and then rename it into place. */
193 void finish_transfer(char *fname, char *fnametmp, char *partialptr,
194                      struct file_struct *file, int ok_to_set_time,
195                      int overwriting_basis)
196 {
197         int ret;
198
199         if (inplace) {
200                 if (verbose > 2)
201                         rprintf(FINFO, "finishing %s\n", fname);
202                 fnametmp = fname;
203                 goto do_set_file_attrs;
204         }
205
206         if (make_backups && overwriting_basis && !make_backup(fname))
207                 return;
208
209         /* Change permissions before putting the file into place. */
210         set_file_attrs(fnametmp, file, NULL,
211                        ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
212
213         /* move tmp file over real file */
214         if (verbose > 2)
215                 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
216         ret = robust_rename(fnametmp, fname, partialptr,
217                             file->mode & INITACCESSPERMS);
218         if (ret < 0) {
219                 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
220                         ret == -2 ? "copy" : "rename",
221                         full_fname(fnametmp), fname);
222                 do_unlink(fnametmp);
223                 return;
224         }
225         if (ret == 0) {
226                 /* The file was moved into place (not copied), so it's done. */
227                 return;
228         }
229         /* The file was copied, so tweak the perms of the copied file.  If it
230          * was copied to partialptr, move it into its final destination. */
231         fnametmp = partialptr ? partialptr : fname;
232
233   do_set_file_attrs:
234         set_file_attrs(fnametmp, file, NULL,
235                        ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
236
237         if (partialptr) {
238                 if (do_rename(fnametmp, fname) < 0) {
239                         rsyserr(FERROR, errno, "rename %s -> \"%s\"",
240                                 full_fname(fnametmp), fname);
241                 } else
242                         handle_partial_dir(partialptr, PDIR_DELETE);
243         }
244 }
245
246 const char *who_am_i(void)
247 {
248         if (am_starting_up)
249                 return am_server ? "server" : "client";
250         return am_sender ? "sender" : am_generator ? "generator" : "receiver";
251 }