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