Removed am_client variable. It was being set in one place, when a client
[rsync/rsync.git] / rsync.c
... / ...
CommitLineData
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
20/* this file contains code used by more than one part of the rsync
21 process */
22
23#include "rsync.h"
24
25extern int verbose;
26extern int dry_run;
27extern int preserve_times;
28extern int am_root;
29extern int preserve_uid;
30extern int preserve_gid;
31extern int preserve_perms;
32extern int make_backups;
33extern char *backup_suffix;
34
35
36/*
37 free a sums struct
38 */
39void free_sums(struct sum_struct *s)
40{
41 if (s->sums) free(s->sums);
42 free(s);
43}
44
45
46/*
47 * delete a file or directory. If force_delet is set then delete
48 * recursively
49 */
50int delete_file(char *fname)
51{
52 DIR *d;
53 struct dirent *di;
54 char buf[MAXPATHLEN];
55 extern int force_delete;
56 STRUCT_STAT st;
57 int ret;
58 extern int recurse;
59
60 if (do_unlink(fname) == 0 || errno == ENOENT) return 0;
61
62#if SUPPORT_LINKS
63 ret = do_lstat(fname, &st);
64#else
65 ret = do_stat(fname, &st);
66#endif
67 if (ret) {
68 rprintf(FERROR,"stat(%s) : %s\n", fname, strerror(errno));
69 return -1;
70 }
71
72 if (!S_ISDIR(st.st_mode)) {
73 rprintf(FERROR,"unlink(%s) : %s\n", fname, strerror(errno));
74 return -1;
75 }
76
77 if (do_rmdir(fname) == 0 || errno == ENOENT) return 0;
78 if (!force_delete || !recurse ||
79 (errno != ENOTEMPTY && errno != EEXIST)) {
80 rprintf(FERROR,"rmdir(%s) : %s\n", fname, strerror(errno));
81 return -1;
82 }
83
84 /* now we do a recsursive delete on the directory ... */
85 d = opendir(fname);
86 if (!d) {
87 rprintf(FERROR,"opendir(%s): %s\n",
88 fname,strerror(errno));
89 return -1;
90 }
91
92 for (di=readdir(d); di; di=readdir(d)) {
93 char *dname = d_name(di);
94 if (strcmp(dname,".")==0 ||
95 strcmp(dname,"..")==0)
96 continue;
97 slprintf(buf, sizeof(buf), "%s/%s", fname, dname);
98 if (verbose > 0)
99 rprintf(FINFO,"deleting %s\n", buf);
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) {
109 rprintf(FERROR,"rmdir(%s) : %s\n", fname, strerror(errno));
110 return -1;
111 }
112
113 return 0;
114}
115
116
117int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st,
118 int report)
119{
120 int updated = 0;
121 STRUCT_STAT st2;
122 extern int am_daemon;
123
124 if (dry_run) return 0;
125
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 }
133
134 if (preserve_times && !S_ISLNK(st->st_mode) &&
135 st->st_mtime != file->modtime) {
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)) {
140 rprintf(FERROR,"failed to set times on %s : %s\n",
141 fname,strerror(errno));
142 return 0;
143 } else {
144 updated = 1;
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:st->st_uid,
153 preserve_gid?file->gid:st->st_gid) != 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 }
161 } else {
162 updated = 1;
163 }
164 }
165
166#ifdef HAVE_CHMOD
167 if (preserve_perms && !S_ISLNK(st->st_mode) &&
168 (st->st_mode != file->mode ||
169 (updated && (file->mode & ~ACCESSPERMS)))) {
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 }
177#endif
178
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;
186}
187
188
189void sig_int(void)
190{
191 exit_cleanup(RERR_SIGNAL);
192}
193
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
202 slprintf(fnamebak,sizeof(fnamebak),"%s%s",fname,backup_suffix);
203 if (do_rename(fname,fnamebak) != 0) {
204 if (errno != ENOENT) {
205 rprintf(FERROR,"rename %s %s : %s\n",fname,fnamebak,strerror(errno));
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
214
215/* finish off a file transfer, renaming the file and setting the permissions
216 and ownership */
217void finish_transfer(char *fname, char *fnametmp, struct file_struct *file)
218{
219 if (make_backups && !make_backup(fname))
220 return;
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. */
227 if (copy_file(fnametmp,fname, file->mode & ACCESSPERMS)) {
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
245