handle sstem (sco 3) with glob but not glob.h
[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)-1, "%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 updated = 1;
137 if (set_modtime(fname,file->modtime) != 0) {
138 rprintf(FERROR,"failed to set times on %s : %s\n",
139 fname,strerror(errno));
140 return 0;
141 }
142 }
143
144 if ((am_root || !am_daemon) &&
145 ((am_root && preserve_uid && st->st_uid != file->uid) ||
146 (preserve_gid && st->st_gid != file->gid))) {
147 if (do_lchown(fname,
148 (am_root&&preserve_uid)?file->uid:-1,
149 preserve_gid?file->gid:-1) != 0) {
150 if (preserve_uid && st->st_uid != file->uid)
151 updated = 1;
152 if (verbose>1 || preserve_uid) {
153 rprintf(FERROR,"chown %s : %s\n",
154 fname,strerror(errno));
155 return 0;
156 }
157 } else {
158 updated = 1;
159 }
160 }
161
162#ifdef HAVE_CHMOD
163 if (preserve_perms && !S_ISLNK(st->st_mode) &&
164 (st->st_mode != file->mode ||
165 (updated && (file->mode & ~ACCESSPERMS)))) {
166 updated = 1;
167 if (do_chmod(fname,file->mode) != 0) {
168 rprintf(FERROR,"failed to set permissions on %s : %s\n",
169 fname,strerror(errno));
170 return 0;
171 }
172 }
173#endif
174
175 if (verbose > 1 && report) {
176 if (updated)
177 rprintf(FINFO,"%s\n",fname);
178 else
179 rprintf(FINFO,"%s is uptodate\n",fname);
180 }
181 return updated;
182}
183
184
185void sig_int(void)
186{
187 exit_cleanup(1);
188}
189
190
191/* finish off a file transfer, renaming the file and setting the permissions
192 and ownership */
193void finish_transfer(char *fname, char *fnametmp, struct file_struct *file)
194{
195 if (make_backups) {
196 char fnamebak[MAXPATHLEN];
197 if (strlen(fname) + strlen(backup_suffix) > (MAXPATHLEN-1)) {
198 rprintf(FERROR,"backup filename too long\n");
199 return;
200 }
201 slprintf(fnamebak,sizeof(fnamebak)-1,"%s%s",fname,backup_suffix);
202 if (do_rename(fname,fnamebak) != 0 && errno != ENOENT) {
203 rprintf(FERROR,"rename %s %s : %s\n",fname,fnamebak,strerror(errno));
204 return;
205 }
206 }
207
208 /* move tmp file over real file */
209 if (do_rename(fnametmp,fname) != 0) {
210 if (errno == EXDEV) {
211 /* rename failed on cross-filesystem link.
212 Copy the file instead. */
213 if (copy_file(fnametmp,fname, file->mode & ACCESSPERMS)) {
214 rprintf(FERROR,"copy %s -> %s : %s\n",
215 fnametmp,fname,strerror(errno));
216 } else {
217 set_perms(fname,file,NULL,0);
218 }
219 do_unlink(fnametmp);
220 } else {
221 rprintf(FERROR,"rename %s -> %s : %s\n",
222 fnametmp,fname,strerror(errno));
223 do_unlink(fnametmp);
224 }
225 } else {
226 set_perms(fname,file,NULL,0);
227 }
228}
229
230
231