Needed to call safe_fname() when listing the remote names.
[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
126 if (verbose)
127 rprintf(FINFO, "deleting %s%s\n", safe_fname(buf),
128 flags & DEL_DIR ? "/" : "");
129 if (delete_file(buf, flags) != 0) {
3cb6f5d6
AT
130 closedir(d);
131 return -1;
132 }
7a2fd68b 133 }
6a7cc46c 134 if (errno) {
d62bcc17
WD
135 rsyserr(FERROR, errno, "delete_file: readdir %s failed",
136 full_fname(fname));
6a7cc46c
S
137 closedir(d);
138 return -1;
139 }
3cb6f5d6
AT
140
141 closedir(d);
7a2fd68b 142
dd096ae0 143 if (do_rmdir(fname) != 0 && errno != ENOENT) {
d62bcc17
WD
144 rsyserr(FERROR, errno, "delete_file: rmdir %s failed",
145 full_fname(fname));
3cb6f5d6
AT
146 return -1;
147 }
148
149 return 0;
150}
c627d613 151
2f03f956 152int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st,
4ecc9e6b 153 int flags)
c627d613 154{
667e72a1
AT
155 int updated = 0;
156 STRUCT_STAT st2;
460f6b99 157 int change_uid, change_gid;
c627d613 158
667e72a1 159 if (!st) {
f227ffe4
WD
160 if (dry_run)
161 return 1;
373ef160 162 if (link_stat(fname, &st2, 0) < 0) {
d62bcc17
WD
163 rsyserr(FERROR, errno, "stat %s failed",
164 full_fname(fname));
667e72a1
AT
165 return 0;
166 }
167 st = &st2;
168 }
c627d613 169
ee1df1cc 170 if (!preserve_times || S_ISLNK(st->st_mode)
82471e68
WD
171 || (S_ISDIR(st->st_mode)
172 && (omit_dir_times || (make_backups && !backup_dir))))
38443188
WD
173 flags |= PERMS_SKIP_MTIME;
174 if (!(flags & PERMS_SKIP_MTIME)
4ecc9e6b 175 && cmp_modtime(st->st_mtime, file->modtime) != 0) {
82471e68 176 if (set_modtime(fname,file->modtime) != 0) {
d62bcc17
WD
177 rsyserr(FERROR, errno, "failed to set times on %s",
178 full_fname(fname));
667e72a1
AT
179 return 0;
180 }
a174e1ed 181 updated = 1;
667e72a1
AT
182 }
183
460f6b99 184 change_uid = am_root && preserve_uid && st->st_uid != file->uid;
a60e2dca 185 change_gid = preserve_gid && file->gid != GID_NONE
7352b873 186 && st->st_gid != file->gid;
70a2c84c 187#if !HAVE_LCHOWN && !CHOWN_MODIFIES_SYMLINK
a41a1e87
WD
188 if (S_ISLNK(st->st_mode))
189 ;
190 else
191#endif
460f6b99 192 if (change_uid || change_gid) {
62c9e6b3 193 if (verbose > 2) {
ce37eb2d
WD
194 if (change_uid) {
195 rprintf(FINFO,
196 "set uid of %s from %ld to %ld\n",
197 fname, (long)st->st_uid, (long)file->uid);
198 }
199 if (change_gid) {
200 rprintf(FINFO,
201 "set gid of %s from %ld to %ld\n",
202 fname, (long)st->st_gid, (long)file->gid);
203 }
204 }
667e72a1 205 if (do_lchown(fname,
a174e1ed
WD
206 change_uid ? file->uid : st->st_uid,
207 change_gid ? file->gid : st->st_gid) != 0) {
460f6b99 208 /* shouldn't have attempted to change uid or gid
a174e1ed 209 * unless have the privilege */
d62bcc17 210 rsyserr(FERROR, errno, "%s %s failed",
a174e1ed 211 change_uid ? "chown" : "chgrp",
d62bcc17 212 full_fname(fname));
460f6b99 213 return 0;
667e72a1 214 }
a5827a28 215 /* a lchown had been done - we have to re-stat if the
dd096ae0
WD
216 * destination had the setuid or setgid bits set due
217 * to the side effect of the chown call */
a5827a28 218 if (st->st_mode & (S_ISUID | S_ISGID)) {
81b07870
WD
219 link_stat(fname, st,
220 keep_dirlinks && S_ISDIR(st->st_mode));
a5827a28 221 }
460f6b99 222 updated = 1;
667e72a1 223 }
c627d613 224
25ff0441 225#if HAVE_CHMOD
972a3619 226 if (!S_ISLNK(st->st_mode)) {
b0d791bb 227 if ((st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS)) {
972a3619 228 updated = 1;
b0d791bb 229 if (do_chmod(fname,(file->mode & CHMOD_BITS)) != 0) {
d62bcc17
WD
230 rsyserr(FERROR, errno, "failed to set permissions on %s",
231 full_fname(fname));
972a3619
DD
232 return 0;
233 }
667e72a1
AT
234 }
235 }
c627d613 236#endif
6a7cc46c 237
4ecc9e6b 238 if (verbose > 1 && flags & PERMS_REPORT) {
667e72a1
AT
239 if (updated)
240 rprintf(FINFO,"%s\n",fname);
241 else
242 rprintf(FINFO,"%s is uptodate\n",fname);
243 }
244 return updated;
c627d613
AT
245}
246
247
34ccb63e
AT
248void sig_int(void)
249{
d5a0b483
WD
250 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
251 * for a password, then our cleanup's sending of a SIGUSR1
252 * signal to all our children may kill ssh before it has a
253 * chance to restore the tty settings (i.e. turn echo back
254 * on). By sleeping for a short time, ssh gets a bigger
255 * chance to do the right thing. If child processes are
256 * not ssh waiting for a password, then this tiny delay
257 * shouldn't hurt anything. */
258 msleep(400);
65417579 259 exit_cleanup(RERR_SIGNAL);
c627d613
AT
260}
261
262
c95da96a
AT
263/* finish off a file transfer, renaming the file and setting the permissions
264 and ownership */
4ecc9e6b 265void finish_transfer(char *fname, char *fnametmp, struct file_struct *file,
997d9ea6 266 int ok_to_set_time, int overwriting_basis)
c95da96a 267{
62c9e6b3
WD
268 int ret;
269
a3221d2a
WD
270 if (inplace) {
271 if (verbose > 2)
272 rprintf(FINFO, "finishing %s\n", fname);
077e59b7 273 goto do_set_perms;
a3221d2a
WD
274 }
275
997d9ea6 276 if (make_backups && overwriting_basis && !make_backup(fname))
e484f0cc
WD
277 return;
278
ebeacb36
WD
279 /* Change permissions before putting the file into place. */
280 set_perms(fnametmp, file, NULL, ok_to_set_time ? 0 : PERMS_SKIP_MTIME);
281
c95da96a 282 /* move tmp file over real file */
da38e779
WD
283 if (verbose > 2)
284 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
62c9e6b3 285 ret = robust_rename(fnametmp, fname, file->mode & INITACCESSPERMS);
3d061653 286 if (ret < 0) {
d62bcc17 287 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
62c9e6b3 288 ret == -2 ? "copy" : "rename",
d62bcc17 289 full_fname(fnametmp), fname);
c7c11a0d 290 do_unlink(fnametmp);
077e59b7 291 return;
c95da96a 292 }
ebeacb36
WD
293 if (ret == 0) {
294 /* The file was moved into place (not copied), so it's done. */
295 return;
296 }
077e59b7
WD
297 do_set_perms:
298 set_perms(fname, file, NULL, ok_to_set_time ? 0 : PERMS_SKIP_MTIME);
c95da96a 299}
c3e5e585
WD
300
301const char *who_am_i(void)
302{
794b0a03
WD
303 if (am_sender < 0)
304 return am_server ? "server" : "client";
ebeacb36 305 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
c3e5e585 306}