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