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