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