added LFS support for Solaris 8
[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;
fe055c71
AT
33
34
c627d613
AT
35/*
36 free a sums struct
37 */
2f03f956 38void free_sums(struct sum_struct *s)
c627d613 39{
298c10d5
AT
40 if (s->sums) free(s->sums);
41 free(s);
c627d613
AT
42}
43
44
3cb6f5d6
AT
45/*
46 * delete a file or directory. If force_delet is set then delete
47 * recursively
48 */
2f03f956 49int delete_file(char *fname)
3cb6f5d6
AT
50{
51 DIR *d;
52 struct dirent *di;
53 char buf[MAXPATHLEN];
54 extern int force_delete;
bcacc18b 55 STRUCT_STAT st;
3cb6f5d6 56 int ret;
05848a2c 57 extern int recurse;
3cb6f5d6 58
3cb6f5d6 59#if SUPPORT_LINKS
bcacc18b 60 ret = do_lstat(fname, &st);
3cb6f5d6 61#else
bcacc18b 62 ret = do_stat(fname, &st);
3cb6f5d6
AT
63#endif
64 if (ret) {
9486289c 65 rprintf(FERROR,"stat(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
66 return -1;
67 }
68
69 if (!S_ISDIR(st.st_mode)) {
1d2c275f 70 if (robust_unlink(fname) == 0 || errno == ENOENT) return 0;
9486289c 71 rprintf(FERROR,"unlink(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
72 return -1;
73 }
74
75 if (do_rmdir(fname) == 0 || errno == ENOENT) return 0;
05848a2c
AT
76 if (!force_delete || !recurse ||
77 (errno != ENOTEMPTY && errno != EEXIST)) {
9486289c 78 rprintf(FERROR,"rmdir(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
79 return -1;
80 }
81
82 /* now we do a recsursive delete on the directory ... */
83 d = opendir(fname);
84 if (!d) {
9486289c 85 rprintf(FERROR,"opendir(%s): %s\n",
3cb6f5d6
AT
86 fname,strerror(errno));
87 return -1;
88 }
89
90 for (di=readdir(d); di; di=readdir(d)) {
d6e6ecbd
AT
91 char *dname = d_name(di);
92 if (strcmp(dname,".")==0 ||
93 strcmp(dname,"..")==0)
3cb6f5d6 94 continue;
37f9805d 95 slprintf(buf, sizeof(buf), "%s/%s", fname, dname);
3cb6f5d6 96 if (verbose > 0)
9486289c 97 rprintf(FINFO,"deleting %s\n", buf);
3cb6f5d6
AT
98 if (delete_file(buf) != 0) {
99 closedir(d);
100 return -1;
101 }
102 }
103
104 closedir(d);
105
106 if (do_rmdir(fname) != 0) {
9486289c 107 rprintf(FERROR,"rmdir(%s) : %s\n", fname, strerror(errno));
3cb6f5d6
AT
108 return -1;
109 }
110
111 return 0;
112}
c627d613 113
460f6b99
DD
114static int is_in_group(gid_t gid)
115{
9422bb3f 116#ifdef GETGROUPS_T
460f6b99
DD
117 static gid_t last_in = (gid_t) -2, last_out;
118 static int ngroups = -2;
9422bb3f 119 static GETGROUPS_T *gidset;
460f6b99
DD
120 int n;
121
122 if (gid == last_in)
123 return last_out;
124 if (ngroups < -1) {
125 /* treat failure (-1) as if not member of any group */
126 ngroups = getgroups(0, 0);
127 if (ngroups > 0) {
9422bb3f 128 gidset = (GETGROUPS_T *) malloc(ngroups * sizeof(GETGROUPS_T));
460f6b99
DD
129 ngroups = getgroups(ngroups, gidset);
130 }
131 }
132
133 last_in = gid;
134 last_out = 0;
135 for (n = 0; n < ngroups; n++) {
136 if (gidset[n] == gid) {
137 last_out = 1;
138 break;
139 }
140 }
141 return last_out;
142
143#else
144 return 0;
145#endif
146}
c627d613 147
2f03f956
AT
148int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st,
149 int report)
c627d613 150{
667e72a1
AT
151 int updated = 0;
152 STRUCT_STAT st2;
460f6b99 153 int change_uid, change_gid;
c627d613 154
667e72a1 155 if (dry_run) return 0;
c627d613 156
667e72a1
AT
157 if (!st) {
158 if (link_stat(fname,&st2) != 0) {
159 rprintf(FERROR,"stat %s : %s\n",fname,strerror(errno));
160 return 0;
161 }
162 st = &st2;
163 }
c627d613 164
667e72a1
AT
165 if (preserve_times && !S_ISLNK(st->st_mode) &&
166 st->st_mtime != file->modtime) {
8d249b63
AT
167 /* don't complain about not setting times on directories
168 because some filesystems can't do it */
169 if (set_modtime(fname,file->modtime) != 0 &&
170 !S_ISDIR(st->st_mode)) {
667e72a1
AT
171 rprintf(FERROR,"failed to set times on %s : %s\n",
172 fname,strerror(errno));
173 return 0;
8d249b63
AT
174 } else {
175 updated = 1;
667e72a1
AT
176 }
177 }
178
460f6b99 179 change_uid = am_root && preserve_uid && st->st_uid != file->uid;
128cf584 180 change_gid = preserve_gid && file->gid != (gid_t) -1 && \
86692050 181 st->st_gid != file->gid;
460f6b99
DD
182 if (change_gid && !am_root) {
183 /* enforce bsd-style group semantics: non-root can only
184 change to groups that the user is a member of */
185 change_gid = is_in_group(file->gid);
186 }
187 if (change_uid || change_gid) {
667e72a1 188 if (do_lchown(fname,
460f6b99
DD
189 change_uid?file->uid:st->st_uid,
190 change_gid?file->gid:st->st_gid) != 0) {
191 /* shouldn't have attempted to change uid or gid
192 unless have the privilege */
193 rprintf(FERROR,"chown %s : %s\n", fname,strerror(errno));
194 return 0;
667e72a1 195 }
a5827a28
AT
196 /* a lchown had been done - we have to re-stat if the
197 destination had the setuid or setgid bits set due
198 to the side effect of the chown call */
199 if (st->st_mode & (S_ISUID | S_ISGID)) {
200 link_stat(fname, st);
201 }
460f6b99 202 updated = 1;
667e72a1 203 }
c627d613
AT
204
205#ifdef HAVE_CHMOD
972a3619 206 if (!S_ISLNK(st->st_mode)) {
972a3619
DD
207 if (st->st_mode != file->mode) {
208 updated = 1;
f08baea3 209 if (do_chmod(fname,file->mode) != 0) {
972a3619
DD
210 rprintf(FERROR,"failed to set permissions on %s : %s\n",
211 fname,strerror(errno));
212 return 0;
213 }
667e72a1
AT
214 }
215 }
c627d613 216#endif
c627d613 217
667e72a1
AT
218 if (verbose > 1 && report) {
219 if (updated)
220 rprintf(FINFO,"%s\n",fname);
221 else
222 rprintf(FINFO,"%s is uptodate\n",fname);
223 }
224 return updated;
c627d613
AT
225}
226
227
34ccb63e
AT
228void sig_int(void)
229{
65417579 230 exit_cleanup(RERR_SIGNAL);
c627d613
AT
231}
232
233
c95da96a
AT
234/* finish off a file transfer, renaming the file and setting the permissions
235 and ownership */
2f03f956 236void finish_transfer(char *fname, char *fnametmp, struct file_struct *file)
c95da96a 237{
53dd3135
DD
238 if (make_backups && !make_backup(fname))
239 return;
c95da96a
AT
240
241 /* move tmp file over real file */
c7c11a0d 242 if (robust_rename(fnametmp,fname) != 0) {
c95da96a
AT
243 if (errno == EXDEV) {
244 /* rename failed on cross-filesystem link.
245 Copy the file instead. */
972a3619 246 if (copy_file(fnametmp,fname, file->mode & INITACCESSPERMS)) {
c95da96a
AT
247 rprintf(FERROR,"copy %s -> %s : %s\n",
248 fnametmp,fname,strerror(errno));
249 } else {
250 set_perms(fname,file,NULL,0);
251 }
c95da96a
AT
252 } else {
253 rprintf(FERROR,"rename %s -> %s : %s\n",
254 fnametmp,fname,strerror(errno));
c95da96a 255 }
c7c11a0d 256 do_unlink(fnametmp);
c95da96a
AT
257 } else {
258 set_perms(fname,file,NULL,0);
259 }
260}