correct sizeof usage.
[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 am_server;
30extern int am_sender;
31extern int am_generator;
32extern int preserve_uid;
33extern int preserve_gid;
34extern int preserve_perms;
35extern int make_backups;
36
37
38/*
39 free a sums struct
40 */
41void free_sums(struct sum_struct *s)
42{
43 if (s->sums) free(s->sums);
44 free(s);
45}
46
47
48/*
49 * delete a file or directory. If force_delete is set then delete
50 * recursively
51 */
52int delete_file(char *fname)
53{
54 DIR *d;
55 struct dirent *di;
56 char buf[MAXPATHLEN];
57 extern int force_delete;
58 STRUCT_STAT st;
59 int ret;
60 extern int recurse;
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 return -1;
69 }
70
71 if (!S_ISDIR(st.st_mode)) {
72 if (robust_unlink(fname) == 0 || errno == ENOENT) return 0;
73 rprintf(FERROR, "delete_file: unlink %s failed: %s\n",
74 full_fname(fname), strerror(errno));
75 return -1;
76 }
77
78 if (do_rmdir(fname) == 0 || errno == ENOENT) return 0;
79 if (!force_delete || !recurse ||
80 (errno != ENOTEMPTY && errno != EEXIST)) {
81 rprintf(FERROR, "delete_file: rmdir %s failed: %s\n",
82 full_fname(fname), strerror(errno));
83 return -1;
84 }
85
86 /* now we do a recsursive delete on the directory ... */
87 d = opendir(fname);
88 if (!d) {
89 rprintf(FERROR, "delete_file: opendir %s failed: %s\n",
90 full_fname(fname), strerror(errno));
91 return -1;
92 }
93
94 for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) {
95 char *dname = d_name(di);
96 if (strcmp(dname,".") == 0
97 || strcmp(dname,"..") == 0)
98 continue;
99 pathjoin(buf, sizeof buf, fname, dname);
100 if (verbose > 0)
101 rprintf(FINFO,"deleting %s\n", buf);
102 if (delete_file(buf) != 0) {
103 closedir(d);
104 return -1;
105 }
106 }
107 if (errno) {
108 rprintf(FERROR, "delete_file: readdir %s failed: %s\n",
109 full_fname(fname), strerror(errno));
110 closedir(d);
111 return -1;
112 }
113
114 closedir(d);
115
116 if (do_rmdir(fname) != 0) {
117 rprintf(FERROR, "delete_file: rmdir %s failed: %s\n",
118 full_fname(fname), strerror(errno));
119 return -1;
120 }
121
122 return 0;
123}
124
125int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st,
126 int report)
127{
128 int updated = 0;
129 STRUCT_STAT st2;
130 int change_uid, change_gid;
131
132 if (dry_run) return 0;
133
134 if (!st) {
135 if (link_stat(fname,&st2) != 0) {
136 rprintf(FERROR, "stat %s failed: %s\n",
137 full_fname(fname), strerror(errno));
138 return 0;
139 }
140 st = &st2;
141 }
142
143 if (preserve_times && !S_ISLNK(st->st_mode) &&
144 cmp_modtime(st->st_mtime, file->modtime) != 0) {
145 /* don't complain about not setting times on directories
146 because some filesystems can't do it */
147 if (set_modtime(fname,file->modtime) != 0 &&
148 !S_ISDIR(st->st_mode)) {
149 rprintf(FERROR, "failed to set times on %s: %s\n",
150 full_fname(fname), strerror(errno));
151 return 0;
152 } else {
153 updated = 1;
154 }
155 }
156
157 change_uid = am_root && preserve_uid && st->st_uid != file->uid;
158 change_gid = preserve_gid && file->gid != GID_NONE
159 && st->st_gid != file->gid;
160 if (change_uid || change_gid) {
161 if (do_lchown(fname,
162 change_uid?file->uid:st->st_uid,
163 change_gid?file->gid:st->st_gid) != 0) {
164 /* shouldn't have attempted to change uid or gid
165 unless have the privilege */
166 rprintf(FERROR, "%s %s failed: %s\n",
167 change_uid ? "chown" : "chgrp",
168 full_fname(fname), strerror(errno));
169 return 0;
170 }
171 /* a lchown had been done - we have to re-stat if the
172 destination had the setuid or setgid bits set due
173 to the side effect of the chown call */
174 if (st->st_mode & (S_ISUID | S_ISGID)) {
175 link_stat(fname, st);
176 }
177 updated = 1;
178 }
179
180#ifdef HAVE_CHMOD
181 if (!S_ISLNK(st->st_mode)) {
182 if ((st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS)) {
183 updated = 1;
184 if (do_chmod(fname,(file->mode & CHMOD_BITS)) != 0) {
185 rprintf(FERROR, "failed to set permissions on %s: %s\n",
186 full_fname(fname), strerror(errno));
187 return 0;
188 }
189 }
190 }
191#endif
192
193 if (verbose > 1 && report) {
194 if (updated)
195 rprintf(FINFO,"%s\n",fname);
196 else
197 rprintf(FINFO,"%s is uptodate\n",fname);
198 }
199 return updated;
200}
201
202
203void sig_int(void)
204{
205 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
206 * for a password, then our cleanup's sending of a SIGUSR1
207 * signal to all our children may kill ssh before it has a
208 * chance to restore the tty settings (i.e. turn echo back
209 * on). By sleeping for a short time, ssh gets a bigger
210 * chance to do the right thing. If child processes are
211 * not ssh waiting for a password, then this tiny delay
212 * shouldn't hurt anything. */
213 msleep(400);
214 exit_cleanup(RERR_SIGNAL);
215}
216
217
218/* finish off a file transfer, renaming the file and setting the permissions
219 and ownership */
220void finish_transfer(char *fname, char *fnametmp, struct file_struct *file)
221{
222 if (make_backups && !make_backup(fname))
223 return;
224
225 /* move tmp file over real file */
226 if (robust_rename(fnametmp,fname) != 0) {
227 if (errno == EXDEV) {
228 /* rename failed on cross-filesystem link.
229 Copy the file instead. */
230 if (copy_file(fnametmp,fname, file->mode & INITACCESSPERMS)) {
231 rprintf(FERROR, "copy %s -> \"%s\": %s\n",
232 full_fname(fnametmp), fname,
233 strerror(errno));
234 } else {
235 set_perms(fname,file,NULL,0);
236 }
237 } else {
238 rprintf(FERROR,"rename %s -> \"%s\": %s\n",
239 full_fname(fnametmp), fname, strerror(errno));
240 }
241 do_unlink(fnametmp);
242 } else {
243 set_perms(fname,file,NULL,0);
244 }
245}
246
247const char *who_am_i(void)
248{
249 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
250}