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