Further modifications to the copyright comment section.
[rsync/rsync.git] / rsync.c
... / ...
CommitLineData
1/*
2 * Routines common to more than one of the rsync processes.
3 *
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2003-2007 Wayne Davison
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
20 */
21
22#include "rsync.h"
23#if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H
24#include <iconv.h>
25#endif
26#if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
27#include <libcharset.h>
28#elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
29#include <langinfo.h>
30#endif
31
32extern int verbose;
33extern int dry_run;
34extern int preserve_perms;
35extern int preserve_executability;
36extern int preserve_times;
37extern int omit_dir_times;
38extern int am_root;
39extern int am_server;
40extern int am_sender;
41extern int am_generator;
42extern int am_starting_up;
43extern int allow_8bit_chars;
44extern int protocol_version;
45extern int preserve_uid;
46extern int preserve_gid;
47extern int inc_recurse;
48extern int inplace;
49extern int flist_eof;
50extern int keep_dirlinks;
51extern int make_backups;
52extern mode_t orig_umask;
53extern struct file_list *cur_flist, *first_flist, *dir_flist;
54extern struct chmod_mode_struct *daemon_chmod_modes;
55
56#if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H
57iconv_t ic_chck = (iconv_t)-1;
58
59static const char *default_charset(void)
60{
61#if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
62 return locale_charset();
63#elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
64 return nl_langinfo(CODESET);
65#else
66 return ""; /* Works with (at the very least) gnu iconv... */
67#endif
68}
69
70void setup_iconv()
71{
72 if (!am_server && !allow_8bit_chars) {
73 const char *defset = default_charset();
74
75 /* It's OK if this fails... */
76 ic_chck = iconv_open(defset, defset);
77
78 if (verbose > 3) {
79 if (ic_chck == (iconv_t)-1) {
80 rprintf(FINFO,
81 "note: iconv_open(\"%s\", \"%s\") failed (%d)"
82 " -- using isprint() instead of iconv().\n",
83 defset, defset, errno);
84 } else {
85 rprintf(FINFO,
86 "note: iconv_open(\"%s\", \"%s\") succeeded.\n",
87 defset, defset);
88 }
89 }
90 }
91}
92#endif
93
94/* This is used by sender.c with a valid f_out, and by receive.c with
95 * f_out = -1. */
96int read_ndx_and_attrs(int f_in, int f_out, int *iflag_ptr,
97 uchar *type_ptr, char *buf, int *len_ptr)
98{
99 int len, iflags = 0;
100 struct file_list *flist;
101 uchar fnamecmp_type = FNAMECMP_FNAME;
102 int verbose_save, ndx;
103
104 read_loop:
105 while (1) {
106 ndx = read_ndx(f_in);
107
108 if (ndx >= 0)
109 break;
110 if (ndx == NDX_DONE)
111 return ndx;
112 if (!inc_recurse || am_sender)
113 goto invalid_ndx;
114 if (ndx == NDX_FLIST_EOF) {
115 flist_eof = 1;
116 send_msg(MSG_FLIST_EOF, "", 0);
117 continue;
118 }
119 ndx = NDX_FLIST_OFFSET - ndx;
120 if (ndx < 0 || ndx >= dir_flist->count) {
121 ndx = NDX_FLIST_OFFSET - ndx;
122 rprintf(FERROR,
123 "Invalid dir index: %d (%d - %d)\n",
124 ndx, NDX_FLIST_OFFSET,
125 NDX_FLIST_OFFSET - dir_flist->count);
126 exit_cleanup(RERR_PROTOCOL);
127 }
128 verbose_save = verbose;
129 verbose = 0; /* TODO allow verbose messages? */
130
131 /* Send everything read from f_in to msg_fd_out. */
132 send_msg_int(MSG_FLIST, ndx);
133 start_flist_forward(f_in);
134 flist = recv_file_list(f_in);
135 flist->parent_ndx = ndx;
136 stop_flist_forward();
137
138 verbose = verbose_save;
139 }
140
141 iflags = protocol_version >= 29 ? read_shortint(f_in)
142 : ITEM_TRANSFER | ITEM_MISSING_DATA;
143
144 /* Honor the old-style keep-alive indicator. */
145 if (protocol_version < 30
146 && ndx == cur_flist->count && iflags == ITEM_IS_NEW) {
147 if (am_sender)
148 maybe_send_keepalive();
149 goto read_loop;
150 }
151
152 if (!(flist = flist_for_ndx(ndx))) {
153 invalid_ndx:
154 rprintf(FERROR,
155 "Invalid file index: %d (%d - %d) with iflags %x [%s]\n",
156 ndx, first_flist->ndx_start + first_flist->ndx_start,
157 first_flist->prev->ndx_start + first_flist->ndx_start
158 + first_flist->prev->count - 1, iflags, who_am_i());
159 exit_cleanup(RERR_PROTOCOL);
160 }
161 cur_flist = flist;
162
163 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
164 fnamecmp_type = read_byte(f_in);
165 *type_ptr = fnamecmp_type;
166
167 if (iflags & ITEM_XNAME_FOLLOWS) {
168 if ((len = read_vstring(f_in, buf, MAXPATHLEN)) < 0)
169 exit_cleanup(RERR_PROTOCOL);
170 } else {
171 *buf = '\0';
172 len = -1;
173 }
174 *len_ptr = len;
175
176 if (iflags & ITEM_TRANSFER) {
177 int i = ndx - cur_flist->ndx_start;
178 if (!S_ISREG(cur_flist->files[i]->mode)) {
179 rprintf(FERROR,
180 "received request to transfer non-regular file: %d [%s]\n",
181 ndx, who_am_i());
182 exit_cleanup(RERR_PROTOCOL);
183 }
184 } else if (f_out >= 0) {
185 write_ndx_and_attrs(f_out, ndx, iflags,
186 fnamecmp_type, buf, len);
187 }
188
189 *iflag_ptr = iflags;
190 return ndx;
191}
192
193/*
194 free a sums struct
195 */
196void free_sums(struct sum_struct *s)
197{
198 if (s->sums) free(s->sums);
199 free(s);
200}
201
202/* This is only called when we aren't preserving permissions. Figure out what
203 * the permissions should be and return them merged back into the mode. */
204mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int exists)
205{
206 int new_mode;
207 /* If the file already exists, we'll return the local permissions,
208 * possibly tweaked by the --executability option. */
209 if (exists) {
210 new_mode = (flist_mode & ~CHMOD_BITS) | (stat_mode & CHMOD_BITS);
211 if (preserve_executability && S_ISREG(flist_mode)) {
212 /* If the source file is executable, grant execute
213 * rights to everyone who can read, but ONLY if the
214 * file isn't already executable. */
215 if (!(flist_mode & 0111))
216 new_mode &= ~0111;
217 else if (!(stat_mode & 0111))
218 new_mode |= (new_mode & 0444) >> 2;
219 }
220 } else {
221 /* Apply the umask and turn off special permissions. */
222 new_mode = flist_mode & (~CHMOD_BITS | (ACCESSPERMS & ~orig_umask));
223 }
224 return new_mode;
225}
226
227int set_file_attrs(char *fname, struct file_struct *file, STRUCT_STAT *st,
228 int flags)
229{
230 int updated = 0;
231 STRUCT_STAT st2;
232 int change_uid, change_gid;
233 mode_t new_mode = file->mode;
234
235 if (!st) {
236 if (dry_run)
237 return 1;
238 if (link_stat(fname, &st2, 0) < 0) {
239 rsyserr(FERROR, errno, "stat %s failed",
240 full_fname(fname));
241 return 0;
242 }
243 st = &st2;
244 if (!preserve_perms && S_ISDIR(new_mode)
245 && st->st_mode & S_ISGID) {
246 /* We just created this directory and its setgid
247 * bit is on, so make sure it stays on. */
248 new_mode |= S_ISGID;
249 }
250 }
251
252 if (!preserve_times || (S_ISDIR(st->st_mode) && omit_dir_times))
253 flags |= ATTRS_SKIP_MTIME;
254 if (!(flags & ATTRS_SKIP_MTIME)
255 && cmp_time(st->st_mtime, file->modtime) != 0) {
256 int ret = set_modtime(fname, file->modtime, st->st_mode);
257 if (ret < 0) {
258 rsyserr(FERROR, errno, "failed to set times on %s",
259 full_fname(fname));
260 return 0;
261 }
262 if (ret == 0) /* ret == 1 if symlink could not be set */
263 updated = 1;
264 }
265
266 change_uid = am_root && preserve_uid && st->st_uid != F_UID(file);
267 change_gid = preserve_gid && F_GID(file) != GID_NONE
268 && st->st_gid != F_GID(file);
269#if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
270 if (S_ISLNK(st->st_mode))
271 ;
272 else
273#endif
274 if (change_uid || change_gid) {
275 if (verbose > 2) {
276 if (change_uid) {
277 rprintf(FINFO,
278 "set uid of %s from %ld to %ld\n",
279 fname,
280 (long)st->st_uid, (long)F_UID(file));
281 }
282 if (change_gid) {
283 rprintf(FINFO,
284 "set gid of %s from %ld to %ld\n",
285 fname,
286 (long)st->st_gid, (long)F_GID(file));
287 }
288 }
289 if (do_lchown(fname,
290 change_uid ? F_UID(file) : st->st_uid,
291 change_gid ? F_GID(file) : st->st_gid) != 0) {
292 /* shouldn't have attempted to change uid or gid
293 * unless have the privilege */
294 rsyserr(FERROR, errno, "%s %s failed",
295 change_uid ? "chown" : "chgrp",
296 full_fname(fname));
297 return 0;
298 }
299 /* a lchown had been done - we have to re-stat if the
300 * destination had the setuid or setgid bits set due
301 * to the side effect of the chown call */
302 if (st->st_mode & (S_ISUID | S_ISGID)) {
303 link_stat(fname, st,
304 keep_dirlinks && S_ISDIR(st->st_mode));
305 }
306 updated = 1;
307 }
308
309 if (daemon_chmod_modes && !S_ISLNK(new_mode))
310 new_mode = tweak_mode(new_mode, daemon_chmod_modes);
311#ifdef HAVE_CHMOD
312 if (!BITS_EQUAL(st->st_mode, new_mode, CHMOD_BITS)) {
313 int ret = do_chmod(fname, new_mode);
314 if (ret < 0) {
315 rsyserr(FERROR, errno,
316 "failed to set permissions on %s",
317 full_fname(fname));
318 return 0;
319 }
320 if (ret == 0) /* ret == 1 if symlink could not be set */
321 updated = 1;
322 }
323#endif
324
325 if (verbose > 1 && flags & ATTRS_REPORT) {
326 if (updated)
327 rprintf(FCLIENT, "%s\n", fname);
328 else
329 rprintf(FCLIENT, "%s is uptodate\n", fname);
330 }
331 return updated;
332}
333
334RETSIGTYPE sig_int(UNUSED(int val))
335{
336 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
337 * for a password, then our cleanup's sending of a SIGUSR1
338 * signal to all our children may kill ssh before it has a
339 * chance to restore the tty settings (i.e. turn echo back
340 * on). By sleeping for a short time, ssh gets a bigger
341 * chance to do the right thing. If child processes are
342 * not ssh waiting for a password, then this tiny delay
343 * shouldn't hurt anything. */
344 msleep(400);
345 exit_cleanup(RERR_SIGNAL);
346}
347
348/* Finish off a file transfer: renaming the file and setting the file's
349 * attributes (e.g. permissions, ownership, etc.). If partialptr is not
350 * NULL and the robust_rename() call is forced to copy the temp file, we
351 * stage the file into the partial-dir and then rename it into place. */
352void finish_transfer(char *fname, char *fnametmp, char *partialptr,
353 struct file_struct *file, int ok_to_set_time,
354 int overwriting_basis)
355{
356 int ret;
357
358 if (inplace) {
359 if (verbose > 2)
360 rprintf(FINFO, "finishing %s\n", fname);
361 fnametmp = fname;
362 goto do_set_file_attrs;
363 }
364
365 if (make_backups > 0 && overwriting_basis && !make_backup(fname))
366 return;
367
368 /* Change permissions before putting the file into place. */
369 set_file_attrs(fnametmp, file, NULL,
370 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
371
372 /* move tmp file over real file */
373 if (verbose > 2)
374 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
375 ret = robust_rename(fnametmp, fname, partialptr,
376 file->mode & INITACCESSPERMS);
377 if (ret < 0) {
378 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
379 ret == -2 ? "copy" : "rename",
380 full_fname(fnametmp), fname);
381 do_unlink(fnametmp);
382 return;
383 }
384 if (ret == 0) {
385 /* The file was moved into place (not copied), so it's done. */
386 return;
387 }
388 /* The file was copied, so tweak the perms of the copied file. If it
389 * was copied to partialptr, move it into its final destination. */
390 fnametmp = partialptr ? partialptr : fname;
391
392 do_set_file_attrs:
393 set_file_attrs(fnametmp, file, NULL,
394 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
395
396 if (partialptr) {
397 if (do_rename(fnametmp, fname) < 0) {
398 rsyserr(FERROR, errno, "rename %s -> \"%s\"",
399 full_fname(fnametmp), fname);
400 } else
401 handle_partial_dir(partialptr, PDIR_DELETE);
402 }
403}
404
405struct file_list *flist_for_ndx(int ndx)
406{
407 struct file_list *flist = cur_flist;
408
409 if (!flist && !(flist = first_flist))
410 return NULL;
411
412 while (ndx < flist->ndx_start) {
413 if (flist == first_flist)
414 return NULL;
415 flist = flist->prev;
416 }
417 while (ndx >= flist->ndx_start + flist->count) {
418 if (!(flist = flist->next))
419 return NULL;
420 }
421 return flist;
422}
423
424const char *who_am_i(void)
425{
426 if (am_starting_up)
427 return am_server ? "server" : "client";
428 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
429}