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