Fixed a name.
[rsync/rsync.git] / rsync.c
CommitLineData
7a2fd68b 1/*
c627d613
AT
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
7a2fd68b 4
c627d613
AT
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.
7a2fd68b 9
c627d613
AT
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.
7a2fd68b 14
c627d613
AT
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
2f03f956
AT
20/* this file contains code used by more than one part of the rsync
21 process */
c627d613 22
2f03f956 23#include "rsync.h"
43a481dc 24
c627d613 25extern int verbose;
c627d613 26extern int dry_run;
2f03f956 27extern int preserve_times;
7b8356d0 28extern int am_root;
2f03f956
AT
29extern int preserve_uid;
30extern int preserve_gid;
31extern int preserve_perms;
32extern int make_backups;
fe055c71
AT
33
34
c627d613
AT
35/*
36 free a sums struct
37 */
2f03f956 38void free_sums(struct sum_struct *s)
c627d613 39{
298c10d5
AT
40 if (s->sums) free(s->sums);
41 free(s);
c627d613
AT
42}
43
44
3cb6f5d6 45/*
7a2fd68b
WD
46 * delete a file or directory. If force_delete is set then delete
47 * recursively
3cb6f5d6 48 */
2f03f956 49int delete_file(char *fname)
3cb6f5d6
AT
50{
51 DIR *d;
52 struct dirent *di;
53 char buf[MAXPATHLEN];
54 extern int force_delete;
bcacc18b 55 STRUCT_STAT st;
3cb6f5d6 56 int ret;
05848a2c 57 extern int recurse;
3cb6f5d6 58
3cb6f5d6 59#if SUPPORT_LINKS
bcacc18b 60 ret = do_lstat(fname, &st);
3cb6f5d6 61#else
bcacc18b 62 ret = do_stat(fname, &st);
3cb6f5d6
AT
63#endif
64 if (ret) {
3cb6f5d6
AT
65 return -1;
66 }
67
68 if (!S_ISDIR(st.st_mode)) {
1d2c275f 69 if (robust_unlink(fname) == 0 || errno == ENOENT) return 0;
ea42541f
WD
70 rprintf(FERROR, "delete_file: unlink %s failed: %s\n",
71 full_fname(fname), strerror(errno));
3cb6f5d6
AT
72 return -1;
73 }
74
75 if (do_rmdir(fname) == 0 || errno == ENOENT) return 0;
7a2fd68b 76 if (!force_delete || !recurse ||
05848a2c 77 (errno != ENOTEMPTY && errno != EEXIST)) {
ea42541f
WD
78 rprintf(FERROR, "delete_file: rmdir %s failed: %s\n",
79 full_fname(fname), strerror(errno));
3cb6f5d6
AT
80 return -1;
81 }
82
83 /* now we do a recsursive delete on the directory ... */
84 d = opendir(fname);
85 if (!d) {
ea42541f
WD
86 rprintf(FERROR, "delete_file: opendir %s failed: %s\n",
87 full_fname(fname), strerror(errno));
3cb6f5d6
AT
88 return -1;
89 }
90
6a7cc46c 91 for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) {
d6e6ecbd 92 char *dname = d_name(di);
6a7cc46c
S
93 if (strcmp(dname,".") == 0
94 || strcmp(dname,"..") == 0)
3cb6f5d6 95 continue;
8950ac03 96 snprintf(buf, sizeof(buf), "%s/%s", fname, dname);
3cb6f5d6 97 if (verbose > 0)
9486289c 98 rprintf(FINFO,"deleting %s\n", buf);
3cb6f5d6
AT
99 if (delete_file(buf) != 0) {
100 closedir(d);
101 return -1;
102 }
7a2fd68b 103 }
6a7cc46c 104 if (errno) {
7a2fd68b
WD
105 rprintf(FERROR, "delete_file: readdir %s failed: %s\n",
106 full_fname(fname), strerror(errno));
6a7cc46c
S
107 closedir(d);
108 return -1;
109 }
3cb6f5d6
AT
110
111 closedir(d);
7a2fd68b 112
3cb6f5d6 113 if (do_rmdir(fname) != 0) {
ea42541f
WD
114 rprintf(FERROR, "delete_file: rmdir %s failed: %s\n",
115 full_fname(fname), strerror(errno));
3cb6f5d6
AT
116 return -1;
117 }
118
119 return 0;
120}
c627d613 121
2f03f956 122int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st,
6a7cc46c 123 int report)
c627d613 124{
667e72a1
AT
125 int updated = 0;
126 STRUCT_STAT st2;
460f6b99 127 int change_uid, change_gid;
c627d613 128
667e72a1 129 if (dry_run) return 0;
c627d613 130
667e72a1
AT
131 if (!st) {
132 if (link_stat(fname,&st2) != 0) {
ea42541f
WD
133 rprintf(FERROR, "stat %s failed: %s\n",
134 full_fname(fname), strerror(errno));
667e72a1
AT
135 return 0;
136 }
137 st = &st2;
138 }
c627d613 139
667e72a1 140 if (preserve_times && !S_ISLNK(st->st_mode) &&
5b56cc19 141 cmp_modtime(st->st_mtime, file->modtime) != 0) {
8d249b63
AT
142 /* don't complain about not setting times on directories
143 because some filesystems can't do it */
144 if (set_modtime(fname,file->modtime) != 0 &&
145 !S_ISDIR(st->st_mode)) {
ea42541f
WD
146 rprintf(FERROR, "failed to set times on %s: %s\n",
147 full_fname(fname), strerror(errno));
667e72a1 148 return 0;
8d249b63
AT
149 } else {
150 updated = 1;
667e72a1
AT
151 }
152 }
153
460f6b99 154 change_uid = am_root && preserve_uid && st->st_uid != file->uid;
7352b873
WD
155 change_gid = preserve_gid && file->gid != (gid_t)-1
156 && st->st_gid != file->gid;
460f6b99 157 if (change_uid || change_gid) {
667e72a1 158 if (do_lchown(fname,
460f6b99
DD
159 change_uid?file->uid:st->st_uid,
160 change_gid?file->gid:st->st_gid) != 0) {
161 /* shouldn't have attempted to change uid or gid
162 unless have the privilege */
ea42541f
WD
163 rprintf(FERROR, "chown %s failed: %s\n",
164 full_fname(fname), strerror(errno));
460f6b99 165 return 0;
667e72a1 166 }
a5827a28
AT
167 /* a lchown had been done - we have to re-stat if the
168 destination had the setuid or setgid bits set due
169 to the side effect of the chown call */
170 if (st->st_mode & (S_ISUID | S_ISGID)) {
171 link_stat(fname, st);
172 }
460f6b99 173 updated = 1;
667e72a1 174 }
c627d613
AT
175
176#ifdef HAVE_CHMOD
972a3619 177 if (!S_ISLNK(st->st_mode)) {
b0d791bb 178 if ((st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS)) {
972a3619 179 updated = 1;
b0d791bb 180 if (do_chmod(fname,(file->mode & CHMOD_BITS)) != 0) {
ea42541f
WD
181 rprintf(FERROR, "failed to set permissions on %s: %s\n",
182 full_fname(fname), strerror(errno));
972a3619
DD
183 return 0;
184 }
667e72a1
AT
185 }
186 }
c627d613 187#endif
6a7cc46c 188
667e72a1
AT
189 if (verbose > 1 && report) {
190 if (updated)
191 rprintf(FINFO,"%s\n",fname);
192 else
193 rprintf(FINFO,"%s is uptodate\n",fname);
194 }
195 return updated;
c627d613
AT
196}
197
198
34ccb63e
AT
199void sig_int(void)
200{
d5a0b483
WD
201 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
202 * for a password, then our cleanup's sending of a SIGUSR1
203 * signal to all our children may kill ssh before it has a
204 * chance to restore the tty settings (i.e. turn echo back
205 * on). By sleeping for a short time, ssh gets a bigger
206 * chance to do the right thing. If child processes are
207 * not ssh waiting for a password, then this tiny delay
208 * shouldn't hurt anything. */
209 msleep(400);
65417579 210 exit_cleanup(RERR_SIGNAL);
c627d613
AT
211}
212
213
c95da96a
AT
214/* finish off a file transfer, renaming the file and setting the permissions
215 and ownership */
2f03f956 216void finish_transfer(char *fname, char *fnametmp, struct file_struct *file)
c95da96a 217{
53dd3135
DD
218 if (make_backups && !make_backup(fname))
219 return;
c95da96a
AT
220
221 /* move tmp file over real file */
c7c11a0d 222 if (robust_rename(fnametmp,fname) != 0) {
c95da96a 223 if (errno == EXDEV) {
6a7cc46c 224 /* rename failed on cross-filesystem link.
c95da96a 225 Copy the file instead. */
972a3619 226 if (copy_file(fnametmp,fname, file->mode & INITACCESSPERMS)) {
ea42541f
WD
227 rprintf(FERROR, "copy %s -> \"%s\": %s\n",
228 full_fname(fnametmp), fname,
229 strerror(errno));
c95da96a
AT
230 } else {
231 set_perms(fname,file,NULL,0);
232 }
c95da96a 233 } else {
ea42541f
WD
234 rprintf(FERROR,"rename %s -> \"%s\": %s\n",
235 full_fname(fnametmp), fname, strerror(errno));
c95da96a 236 }
c7c11a0d 237 do_unlink(fnametmp);
c95da96a
AT
238 } else {
239 set_perms(fname,file,NULL,0);
240 }
241}