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