handle sstem (sco 3) with glob but not glob.h
[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;
e42c9458 97 slprintf(buf, sizeof(buf)-1, "%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) {
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 }
e81da93e
AT
157 } else {
158 updated = 1;
667e72a1 159 }
667e72a1 160 }
c627d613
AT
161
162#ifdef HAVE_CHMOD
667e72a1 163 if (preserve_perms && !S_ISLNK(st->st_mode) &&
46831d6f
AT
164 (st->st_mode != file->mode ||
165 (updated && (file->mode & ~ACCESSPERMS)))) {
667e72a1
AT
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 }
c627d613 173#endif
c627d613 174
667e72a1
AT
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;
c627d613
AT
182}
183
184
34ccb63e
AT
185void sig_int(void)
186{
298c10d5 187 exit_cleanup(1);
c627d613
AT
188}
189
190
c95da96a
AT
191/* finish off a file transfer, renaming the file and setting the permissions
192 and ownership */
2f03f956 193void finish_transfer(char *fname, char *fnametmp, struct file_struct *file)
c95da96a
AT
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. */
72914a60 213 if (copy_file(fnametmp,fname, file->mode & ACCESSPERMS)) {
c95da96a
AT
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
dc5ddbcc 231