Add alternate implementation of waitpid() for systems that have wait4 but
[rsync/rsync.git] / rsync.c
CommitLineData
c627d613
AT
1/*
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
4
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.
9
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.
14
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;
2f03f956
AT
29extern int preserve_uid;
30extern int preserve_gid;
31extern int preserve_perms;
32extern int make_backups;
33extern char *backup_suffix;
fe055c71
AT
34
35
c627d613
AT
36/*
37 free a sums struct
38 */
2f03f956 39void free_sums(struct sum_struct *s)
c627d613 40{
298c10d5
AT
41 if (s->sums) free(s->sums);
42 free(s);
c627d613
AT
43}
44
45
3cb6f5d6
AT
46/*
47 * delete a file or directory. If force_delet is set then delete
48 * recursively
49 */
2f03f956 50int delete_file(char *fname)
3cb6f5d6
AT
51{
52 DIR *d;
53 struct dirent *di;
54 char buf[MAXPATHLEN];
55 extern int force_delete;
bcacc18b 56 STRUCT_STAT st;
3cb6f5d6 57 int ret;
05848a2c 58 extern int recurse;
3cb6f5d6
AT
59
60 if (do_unlink(fname) == 0 || errno == ENOENT) return 0;
61
62#if SUPPORT_LINKS
bcacc18b 63 ret = do_lstat(fname, &st);
3cb6f5d6 64#else
bcacc18b 65 ret = do_stat(fname, &st);
3cb6f5d6
AT
66#endif
67 if (ret) {
9486289c 68 rprintf(FERROR,"stat(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
69 return -1;
70 }
71
72 if (!S_ISDIR(st.st_mode)) {
9486289c 73 rprintf(FERROR,"unlink(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
74 return -1;
75 }
76
77 if (do_rmdir(fname) == 0 || errno == ENOENT) return 0;
05848a2c
AT
78 if (!force_delete || !recurse ||
79 (errno != ENOTEMPTY && errno != EEXIST)) {
9486289c 80 rprintf(FERROR,"rmdir(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
81 return -1;
82 }
83
84 /* now we do a recsursive delete on the directory ... */
85 d = opendir(fname);
86 if (!d) {
9486289c 87 rprintf(FERROR,"opendir(%s): %s\n",
3cb6f5d6
AT
88 fname,strerror(errno));
89 return -1;
90 }
91
92 for (di=readdir(d); di; di=readdir(d)) {
d6e6ecbd
AT
93 char *dname = d_name(di);
94 if (strcmp(dname,".")==0 ||
95 strcmp(dname,"..")==0)
3cb6f5d6 96 continue;
37f9805d 97 slprintf(buf, sizeof(buf), "%s/%s", fname, dname);
3cb6f5d6 98 if (verbose > 0)
9486289c 99 rprintf(FINFO,"deleting %s\n", buf);
3cb6f5d6
AT
100 if (delete_file(buf) != 0) {
101 closedir(d);
102 return -1;
103 }
104 }
105
106 closedir(d);
107
108 if (do_rmdir(fname) != 0) {
9486289c 109 rprintf(FERROR,"rmdir(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
110 return -1;
111 }
112
113 return 0;
114}
c627d613 115
c627d613 116
2f03f956
AT
117int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st,
118 int report)
c627d613 119{
667e72a1
AT
120 int updated = 0;
121 STRUCT_STAT st2;
122 extern int am_daemon;
c627d613 123
667e72a1 124 if (dry_run) return 0;
c627d613 125
667e72a1
AT
126 if (!st) {
127 if (link_stat(fname,&st2) != 0) {
128 rprintf(FERROR,"stat %s : %s\n",fname,strerror(errno));
129 return 0;
130 }
131 st = &st2;
132 }
c627d613 133
667e72a1
AT
134 if (preserve_times && !S_ISLNK(st->st_mode) &&
135 st->st_mtime != file->modtime) {
8d249b63
AT
136 /* don't complain about not setting times on directories
137 because some filesystems can't do it */
138 if (set_modtime(fname,file->modtime) != 0 &&
139 !S_ISDIR(st->st_mode)) {
667e72a1
AT
140 rprintf(FERROR,"failed to set times on %s : %s\n",
141 fname,strerror(errno));
142 return 0;
8d249b63
AT
143 } else {
144 updated = 1;
667e72a1
AT
145 }
146 }
147
148 if ((am_root || !am_daemon) &&
149 ((am_root && preserve_uid && st->st_uid != file->uid) ||
150 (preserve_gid && st->st_gid != file->gid))) {
151 if (do_lchown(fname,
152 (am_root&&preserve_uid)?file->uid:-1,
153 preserve_gid?file->gid:-1) != 0) {
154 if (preserve_uid && st->st_uid != file->uid)
155 updated = 1;
156 if (verbose>1 || preserve_uid) {
157 rprintf(FERROR,"chown %s : %s\n",
158 fname,strerror(errno));
159 return 0;
160 }
e81da93e
AT
161 } else {
162 updated = 1;
667e72a1 163 }
667e72a1 164 }
c627d613
AT
165
166#ifdef HAVE_CHMOD
667e72a1 167 if (preserve_perms && !S_ISLNK(st->st_mode) &&
46831d6f
AT
168 (st->st_mode != file->mode ||
169 (updated && (file->mode & ~ACCESSPERMS)))) {
667e72a1
AT
170 updated = 1;
171 if (do_chmod(fname,file->mode) != 0) {
172 rprintf(FERROR,"failed to set permissions on %s : %s\n",
173 fname,strerror(errno));
174 return 0;
175 }
176 }
c627d613 177#endif
c627d613 178
667e72a1
AT
179 if (verbose > 1 && report) {
180 if (updated)
181 rprintf(FINFO,"%s\n",fname);
182 else
183 rprintf(FINFO,"%s is uptodate\n",fname);
184 }
185 return updated;
c627d613
AT
186}
187
188
34ccb63e
AT
189void sig_int(void)
190{
65417579 191 exit_cleanup(RERR_SIGNAL);
c627d613
AT
192}
193
53dd3135
DD
194int make_backup(char *fname)
195{
196 char fnamebak[MAXPATHLEN];
197 if (strlen(fname) + strlen(backup_suffix) > (MAXPATHLEN-1)) {
198 rprintf(FERROR,"backup filename too long\n");
199 return 0;
200 }
201
241fc706 202 slprintf(fnamebak,sizeof(fnamebak),"%s%s",fname,backup_suffix);
53dd3135
DD
203 if (do_rename(fname,fnamebak) != 0) {
204 if (errno != ENOENT) {
241fc706 205 rprintf(FERROR,"rename %s %s : %s\n",fname,fnamebak,strerror(errno));
53dd3135
DD
206 return 0;
207 }
208 } else if (verbose > 1) {
209 rprintf(FINFO,"backed up %s to %s\n",fname,fnamebak);
210 }
211 return 1;
212}
213
c627d613 214
c95da96a
AT
215/* finish off a file transfer, renaming the file and setting the permissions
216 and ownership */
2f03f956 217void finish_transfer(char *fname, char *fnametmp, struct file_struct *file)
c95da96a 218{
53dd3135
DD
219 if (make_backups && !make_backup(fname))
220 return;
c95da96a
AT
221
222 /* move tmp file over real file */
223 if (do_rename(fnametmp,fname) != 0) {
224 if (errno == EXDEV) {
225 /* rename failed on cross-filesystem link.
226 Copy the file instead. */
72914a60 227 if (copy_file(fnametmp,fname, file->mode & ACCESSPERMS)) {
c95da96a
AT
228 rprintf(FERROR,"copy %s -> %s : %s\n",
229 fnametmp,fname,strerror(errno));
230 } else {
231 set_perms(fname,file,NULL,0);
232 }
233 do_unlink(fnametmp);
234 } else {
235 rprintf(FERROR,"rename %s -> %s : %s\n",
236 fnametmp,fname,strerror(errno));
237 do_unlink(fnametmp);
238 }
239 } else {
240 set_perms(fname,file,NULL,0);
241 }
242}
243
244
dc5ddbcc 245