Generate a helpful message when we get an option-error from a daemon
[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
d3d07a5e 6 * Copyright (C) 2003-2008 Wayne Davison
0f78b815
WD
7 *
8 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
0f78b815
WD
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 18 * You should have received a copy of the GNU General Public License along
4fd842f9 19 * with this program; if not, visit the http://fsf.org website.
0f78b815 20 */
c627d613 21
2f03f956 22#include "rsync.h"
1b42f628 23#include "ifuncs.h"
ceccbacc
WD
24#if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
25#include <libcharset.h>
26#elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
27#include <langinfo.h>
28#endif
43a481dc 29
c627d613 30extern int verbose;
c627d613 31extern int dry_run;
1c3344a1 32extern int preserve_acls;
16edf865 33extern int preserve_xattrs;
9b499e95 34extern int preserve_perms;
81284832 35extern int preserve_executability;
2f03f956 36extern int preserve_times;
7b8356d0 37extern int am_root;
794b0a03 38extern int am_server;
c3e5e585
WD
39extern int am_sender;
40extern int am_generator;
ed9d969c 41extern int am_starting_up;
e0f4a661 42extern int allow_8bit_chars;
b675ba6f 43extern int protocol_version;
9b25ef35
WD
44extern int uid_ndx;
45extern int gid_ndx;
3ea6e0e7 46extern int inc_recurse;
c786a7ae 47extern int inplace;
f3d6d480 48extern int flist_eof;
81b07870 49extern int keep_dirlinks;
2f03f956 50extern int make_backups;
f3d6d480 51extern struct file_list *cur_flist, *first_flist, *dir_flist;
94d3725c 52extern struct chmod_mode_struct *daemon_chmod_modes;
332cf6df
WD
53#ifdef ICONV_OPTION
54extern char *iconv_opt;
55#endif
fe055c71 56
332cf6df 57#ifdef ICONV_CONST
ceccbacc 58iconv_t ic_chck = (iconv_t)-1;
2ac97930 59# ifdef ICONV_OPTION
332cf6df 60iconv_t ic_send = (iconv_t)-1, ic_recv = (iconv_t)-1;
2ac97930 61# endif
ceccbacc 62
2a62f5ee 63static const char *default_charset(void)
ceccbacc 64{
2ac97930 65# if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
ceccbacc 66 return locale_charset();
2ac97930 67# elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
7fc87d2d 68 return nl_langinfo(CODESET);
2ac97930 69# else
ceccbacc 70 return ""; /* Works with (at the very least) gnu iconv... */
2ac97930 71# endif
ceccbacc
WD
72}
73
6191429b 74void setup_iconv(void)
ceccbacc 75{
332cf6df
WD
76 const char *defset = default_charset();
77# ifdef ICONV_OPTION
78 const char *charset;
79 char *cp;
2ac97930 80# endif
332cf6df 81
e0f4a661 82 if (!am_server && !allow_8bit_chars) {
2d2f71fb 83
e0f4a661
WD
84 /* It's OK if this fails... */
85 ic_chck = iconv_open(defset, defset);
ceccbacc 86
e0f4a661
WD
87 if (verbose > 3) {
88 if (ic_chck == (iconv_t)-1) {
89 rprintf(FINFO,
90 "note: iconv_open(\"%s\", \"%s\") failed (%d)"
91 " -- using isprint() instead of iconv().\n",
92 defset, defset, errno);
93 } else {
94 rprintf(FINFO,
95 "note: iconv_open(\"%s\", \"%s\") succeeded.\n",
96 defset, defset);
97 }
7fc87d2d 98 }
ceccbacc 99 }
332cf6df
WD
100
101# ifdef ICONV_OPTION
102 if (!iconv_opt)
103 return;
104
105 if ((cp = strchr(iconv_opt, ',')) != NULL) {
106 if (am_server) /* A local transfer needs this. */
107 iconv_opt = cp + 1;
108 else
109 *cp = '\0';
110 }
111
112 if (!*iconv_opt || (*iconv_opt == '.' && iconv_opt[1] == '\0'))
113 charset = defset;
114 else
115 charset = iconv_opt;
116
117 if ((ic_send = iconv_open(UTF8_CHARSET, charset)) == (iconv_t)-1) {
118 rprintf(FERROR, "iconv_open(\"%s\", \"%s\") failed\n",
119 UTF8_CHARSET, charset);
120 exit_cleanup(RERR_UNSUPPORTED);
121 }
122
123 if ((ic_recv = iconv_open(charset, UTF8_CHARSET)) == (iconv_t)-1) {
124 rprintf(FERROR, "iconv_open(\"%s\", \"%s\") failed\n",
125 charset, UTF8_CHARSET);
126 exit_cleanup(RERR_UNSUPPORTED);
127 }
128
332cf6df
WD
129 if (verbose > 1) {
130 rprintf(FINFO, "%s charset: %s\n",
131 am_server ? "server" : "client",
132 *charset ? charset : "[LOCALE]");
133 }
134# endif
ceccbacc 135}
2ac97930 136
2ac97930
WD
137/* This function converts the characters in the "in" xbuf into characters
138 * in the "out" xbuf. The "len" of the "in" xbuf is used starting from its
139 * "pos". The "size" of the "out" xbuf restricts how many characters can be
140 * stored, starting at its "pos+len" position. Note that the last byte of
141 * the buffer is never used, which reserves space for a terminating '\0'.
142 * We return a 0 on success or a -1 on error. An error also sets errno to
143 * E2BIG, EILSEQ, or EINVAL (see below); otherwise errno will be set to 0.
144 * The "in" xbuf is altered to update "pos" and "len". The "out" xbuf has
145 * data appended, and its "len" incremented. If ICB_EXPAND_OUT is set in
146 * "flags", the "out" xbuf will also be allocated if empty, and expanded if
147 * too small (so E2BIG will not be returned). If ICB_INCLUDE_BAD is set in
148 * "flags", any badly-encoded chars are included verbatim in the "out" xbuf,
149 * so EILSEQ will not be returned. Likewise for ICB_INCLUDE_INCOMPLETE with
150 * respect to an incomplete multi-byte char at the end, which ensures that
151 * EINVAL is not returned. Anytime "in.pos" is 0 we will reset the iconv()
152 * state prior to processing the characters. */
153int iconvbufs(iconv_t ic, xbuf *in, xbuf *out, int flags)
154{
155 ICONV_CONST char *ibuf;
156 size_t icnt, ocnt;
157 char *obuf;
158
159 if (!out->size && flags & ICB_EXPAND_OUT)
160 alloc_xbuf(out, 1024);
161
162 if (!in->pos)
163 iconv(ic, NULL, 0, NULL, 0);
164
165 ibuf = in->buf + in->pos;
166 icnt = in->len;
167
168 obuf = out->buf + (out->pos + out->len);
169 ocnt = out->size - (out->pos + out->len) - 1;
170
171 while (icnt) {
172 while (iconv(ic, &ibuf, &icnt, &obuf, &ocnt) == (size_t)-1) {
173 if (errno == EINTR)
174 continue;
175 if (errno == EINVAL) {
176 if (!(flags & ICB_INCLUDE_INCOMPLETE))
177 goto finish;
178 } else if (errno == EILSEQ) {
179 if (!(flags & ICB_INCLUDE_BAD))
180 goto finish;
181 } else {
182 size_t opos = obuf - out->buf;
183 if (!(flags & ICB_EXPAND_OUT)) {
184 errno = E2BIG;
185 goto finish;
186 }
187 realloc_xbuf(out, out->size + 1024);
188 obuf = out->buf + opos;
189 ocnt += 1024;
190 continue;
191 }
192 *obuf++ = *ibuf++;
193 ocnt--, icnt--;
194 }
195 }
196
197 errno = 0;
198
199 finish:
200 in->len = icnt;
201 in->pos = ibuf - in->buf;
202 out->len = obuf - out->buf - out->pos;
203
204 return errno ? -1 : 0;
205}
ceccbacc 206#endif
fe055c71 207
16edf865
WD
208int read_ndx_and_attrs(int f_in, int *iflag_ptr, uchar *type_ptr,
209 char *buf, int *len_ptr)
d1c178dd 210{
f3d6d480
WD
211 int len, iflags = 0;
212 struct file_list *flist;
d1c178dd 213 uchar fnamecmp_type = FNAMECMP_FNAME;
b7386d23 214 int ndx, save_verbose = verbose;
f3d6d480
WD
215
216 read_loop:
217 while (1) {
9ae7a2cd 218 ndx = read_ndx(f_in);
f3d6d480
WD
219
220 if (ndx >= 0)
221 break;
222 if (ndx == NDX_DONE)
223 return ndx;
3ea6e0e7 224 if (!inc_recurse || am_sender)
f3d6d480
WD
225 goto invalid_ndx;
226 if (ndx == NDX_FLIST_EOF) {
227 flist_eof = 1;
332cf6df 228 send_msg(MSG_FLIST_EOF, "", 0, 0);
f3d6d480
WD
229 continue;
230 }
231 ndx = NDX_FLIST_OFFSET - ndx;
9decb4d2 232 if (ndx < 0 || ndx >= dir_flist->used) {
f3d6d480
WD
233 ndx = NDX_FLIST_OFFSET - ndx;
234 rprintf(FERROR,
59fd2a5e
WD
235 "[%s] Invalid dir index: %d (%d - %d)\n",
236 who_am_i(), ndx, NDX_FLIST_OFFSET,
9decb4d2 237 NDX_FLIST_OFFSET - dir_flist->used + 1);
f3d6d480
WD
238 exit_cleanup(RERR_PROTOCOL);
239 }
f3d6d480
WD
240
241 /* Send everything read from f_in to msg_fd_out. */
1faa1a6d
WD
242 if (verbose > 3) {
243 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
244 who_am_i(), ndx);
245 }
b7386d23
WD
246 verbose = 0;
247 send_msg_int(MSG_FLIST, ndx);
248 start_flist_forward(f_in);
f3d6d480
WD
249 flist = recv_file_list(f_in);
250 flist->parent_ndx = ndx;
251 stop_flist_forward();
b7386d23 252 verbose = save_verbose;
f3d6d480
WD
253 }
254
255 iflags = protocol_version >= 29 ? read_shortint(f_in)
d1c178dd
WD
256 : ITEM_TRANSFER | ITEM_MISSING_DATA;
257
f3d6d480
WD
258 /* Honor the old-style keep-alive indicator. */
259 if (protocol_version < 30
9decb4d2 260 && ndx == cur_flist->used && iflags == ITEM_IS_NEW) {
f3d6d480
WD
261 if (am_sender)
262 maybe_send_keepalive();
263 goto read_loop;
264 }
265
266 if (!(flist = flist_for_ndx(ndx))) {
65b4e4b2 267 int start, used;
f3d6d480 268 invalid_ndx:
65b4e4b2
WD
269 start = first_flist ? first_flist->ndx_start : 0;
270 used = first_flist ? first_flist->used : 0;
f3d6d480
WD
271 rprintf(FERROR,
272 "Invalid file index: %d (%d - %d) with iflags %x [%s]\n",
65b4e4b2 273 ndx, start - 1, start + used -1, iflags, who_am_i());
d1c178dd
WD
274 exit_cleanup(RERR_PROTOCOL);
275 }
f3d6d480 276 cur_flist = flist;
d1c178dd
WD
277
278 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
279 fnamecmp_type = read_byte(f_in);
280 *type_ptr = fnamecmp_type;
281
282 if (iflags & ITEM_XNAME_FOLLOWS) {
283 if ((len = read_vstring(f_in, buf, MAXPATHLEN)) < 0)
284 exit_cleanup(RERR_PROTOCOL);
285 } else {
286 *buf = '\0';
287 len = -1;
288 }
289 *len_ptr = len;
290
291 if (iflags & ITEM_TRANSFER) {
f3d6d480 292 int i = ndx - cur_flist->ndx_start;
6755a7d7 293 if (i < 0 || !S_ISREG(cur_flist->files[i]->mode)) {
d1c178dd
WD
294 rprintf(FERROR,
295 "received request to transfer non-regular file: %d [%s]\n",
296 ndx, who_am_i());
297 exit_cleanup(RERR_PROTOCOL);
298 }
d1c178dd
WD
299 }
300
f3d6d480
WD
301 *iflag_ptr = iflags;
302 return ndx;
d1c178dd
WD
303}
304
c627d613
AT
305/*
306 free a sums struct
307 */
2f03f956 308void free_sums(struct sum_struct *s)
c627d613 309{
298c10d5
AT
310 if (s->sums) free(s->sums);
311 free(s);
c627d613
AT
312}
313
81284832
WD
314/* This is only called when we aren't preserving permissions. Figure out what
315 * the permissions should be and return them merged back into the mode. */
1c3344a1
WD
316mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int dflt_perms,
317 int exists)
81284832 318{
67f8a41b 319 int new_mode;
9b499e95 320 /* If the file already exists, we'll return the local permissions,
81284832
WD
321 * possibly tweaked by the --executability option. */
322 if (exists) {
67f8a41b 323 new_mode = (flist_mode & ~CHMOD_BITS) | (stat_mode & CHMOD_BITS);
81284832
WD
324 if (preserve_executability && S_ISREG(flist_mode)) {
325 /* If the source file is executable, grant execute
326 * rights to everyone who can read, but ONLY if the
327 * file isn't already executable. */
328 if (!(flist_mode & 0111))
67f8a41b
WD
329 new_mode &= ~0111;
330 else if (!(stat_mode & 0111))
331 new_mode |= (new_mode & 0444) >> 2;
81284832 332 }
67f8a41b 333 } else {
1c3344a1
WD
334 /* Apply destination default permissions and turn
335 * off special permissions. */
336 new_mode = flist_mode & (~CHMOD_BITS | dflt_perms);
67f8a41b 337 }
67f8a41b 338 return new_mode;
81284832
WD
339}
340
13710874 341int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp,
16edf865 342 const char *fnamecmp, int flags)
c627d613 343{
667e72a1 344 int updated = 0;
13710874 345 stat_x sx2;
460f6b99 346 int change_uid, change_gid;
519d55a9 347 mode_t new_mode = file->mode;
2dc7b91d 348 int inherit;
c627d613 349
1c3344a1 350 if (!sxp) {
f227ffe4
WD
351 if (dry_run)
352 return 1;
1c3344a1 353 if (link_stat(fname, &sx2.st, 0) < 0) {
3f0211b6 354 rsyserr(FERROR_XFER, errno, "stat %s failed",
d62bcc17 355 full_fname(fname));
667e72a1
AT
356 return 0;
357 }
1c3344a1
WD
358#ifdef SUPPORT_ACLS
359 sx2.acc_acl = sx2.def_acl = NULL;
16edf865
WD
360#endif
361#ifdef SUPPORT_XATTRS
362 sx2.xattr = NULL;
1c3344a1 363#endif
1c3344a1 364 sxp = &sx2;
2dc7b91d
WD
365 inherit = !preserve_perms;
366 } else
367 inherit = !preserve_perms && file->flags & FLAG_DIR_CREATED;
368
369 if (inherit && S_ISDIR(new_mode) && sxp->st.st_mode & S_ISGID) {
370 /* We just created this directory and its setgid
371 * bit is on, so make sure it stays on. */
372 new_mode |= S_ISGID;
667e72a1 373 }
c627d613 374
e107b6b1
WD
375 if (daemon_chmod_modes && !S_ISLNK(new_mode))
376 new_mode = tweak_mode(new_mode, daemon_chmod_modes);
377
1c3344a1
WD
378#ifdef SUPPORT_ACLS
379 if (preserve_acls && !S_ISLNK(file->mode) && !ACL_READY(*sxp))
380 get_acl(fname, sxp);
381#endif
382
16edf865 383#ifdef SUPPORT_XATTRS
9439c0cb 384 if (am_root < 0)
e107b6b1 385 set_stat_xattr(fname, file, new_mode);
4d7c8e6b
WD
386 if (preserve_xattrs && fnamecmp)
387 set_xattr(fname, file, fnamecmp, sxp);
16edf865
WD
388#endif
389
f9998046 390 if (!preserve_times || (S_ISDIR(sxp->st.st_mode) && preserve_times == 1))
36119f6e
WD
391 flags |= ATTRS_SKIP_MTIME;
392 if (!(flags & ATTRS_SKIP_MTIME)
1c3344a1
WD
393 && cmp_time(sxp->st.st_mtime, file->modtime) != 0) {
394 int ret = set_modtime(fname, file->modtime, sxp->st.st_mode);
c8d34657 395 if (ret < 0) {
3f0211b6 396 rsyserr(FERROR_XFER, errno, "failed to set times on %s",
d62bcc17 397 full_fname(fname));
1c3344a1 398 goto cleanup;
667e72a1 399 }
c8d34657
WD
400 if (ret == 0) /* ret == 1 if symlink could not be set */
401 updated = 1;
ee39281d 402 else
1ed56a05 403 file->flags |= FLAG_TIME_FAILED;
667e72a1
AT
404 }
405
9b25ef35
WD
406 change_uid = am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file);
407 change_gid = gid_ndx && !(file->flags & FLAG_SKIP_GROUP)
858d45f1 408 && sxp->st.st_gid != (gid_t)F_GROUP(file);
4f5b0756 409#if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
2e52ba36 410 if (S_ISLNK(sxp->st.st_mode)) {
a41a1e87 411 ;
2e52ba36 412 } else
a41a1e87 413#endif
460f6b99 414 if (change_uid || change_gid) {
62c9e6b3 415 if (verbose > 2) {
ce37eb2d
WD
416 if (change_uid) {
417 rprintf(FINFO,
4ade505c
WD
418 "set uid of %s from %u to %u\n",
419 fname, (unsigned)sxp->st.st_uid, F_OWNER(file));
ce37eb2d
WD
420 }
421 if (change_gid) {
422 rprintf(FINFO,
4ade505c
WD
423 "set gid of %s from %u to %u\n",
424 fname, (unsigned)sxp->st.st_gid, F_GROUP(file));
ce37eb2d
WD
425 }
426 }
87629cf2
WD
427 if (am_root >= 0) {
428 if (do_lchown(fname,
429 change_uid ? (uid_t)F_OWNER(file) : sxp->st.st_uid,
430 change_gid ? (gid_t)F_GROUP(file) : sxp->st.st_gid) != 0) {
431 /* We shouldn't have attempted to change uid
432 * or gid unless have the privilege. */
433 rsyserr(FERROR_XFER, errno, "%s %s failed",
434 change_uid ? "chown" : "chgrp",
435 full_fname(fname));
436 goto cleanup;
437 }
438 /* A lchown had been done, so we need to re-stat if
439 * the destination had the setuid or setgid bits set
440 * (due to the side effect of the chown call). */
441 if (sxp->st.st_mode & (S_ISUID | S_ISGID)) {
442 link_stat(fname, &sxp->st,
443 keep_dirlinks && S_ISDIR(sxp->st.st_mode));
444 }
a5827a28 445 }
460f6b99 446 updated = 1;
667e72a1 447 }
c627d613 448
1c3344a1
WD
449#ifdef SUPPORT_ACLS
450 /* It's OK to call set_acl() now, even for a dir, as the generator
451 * will enable owner-writability using chmod, if necessary.
452 *
453 * If set_acl() changes permission bits in the process of setting
454 * an access ACL, it changes sxp->st.st_mode so we know whether we
455 * need to chmod(). */
456 if (preserve_acls && !S_ISLNK(new_mode) && set_acl(fname, file, sxp) == 0)
457 updated = 1;
458#endif
459
4f5b0756 460#ifdef HAVE_CHMOD
1c3344a1 461 if (!BITS_EQUAL(sxp->st.st_mode, new_mode, CHMOD_BITS)) {
9439c0cb 462 int ret = am_root < 0 ? 0 : do_chmod(fname, new_mode);
c8d34657 463 if (ret < 0) {
3f0211b6 464 rsyserr(FERROR_XFER, errno,
c8d34657
WD
465 "failed to set permissions on %s",
466 full_fname(fname));
1c3344a1 467 goto cleanup;
667e72a1 468 }
c8d34657
WD
469 if (ret == 0) /* ret == 1 if symlink could not be set */
470 updated = 1;
667e72a1 471 }
c627d613 472#endif
6a7cc46c 473
36119f6e 474 if (verbose > 1 && flags & ATTRS_REPORT) {
667e72a1 475 if (updated)
1925c344 476 rprintf(FCLIENT, "%s\n", fname);
667e72a1 477 else
1925c344 478 rprintf(FCLIENT, "%s is uptodate\n", fname);
667e72a1 479 }
1c3344a1 480 cleanup:
16edf865 481 if (sxp == &sx2) {
1c3344a1 482#ifdef SUPPORT_ACLS
16edf865
WD
483 if (preserve_acls)
484 free_acl(&sx2);
1c3344a1 485#endif
16edf865
WD
486#ifdef SUPPORT_XATTRS
487 if (preserve_xattrs)
488 free_xattr(&sx2);
489#endif
490 }
667e72a1 491 return updated;
c627d613
AT
492}
493
b8e9c234 494RETSIGTYPE sig_int(UNUSED(int val))
34ccb63e 495{
d5a0b483
WD
496 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
497 * for a password, then our cleanup's sending of a SIGUSR1
498 * signal to all our children may kill ssh before it has a
499 * chance to restore the tty settings (i.e. turn echo back
500 * on). By sleeping for a short time, ssh gets a bigger
501 * chance to do the right thing. If child processes are
502 * not ssh waiting for a password, then this tiny delay
503 * shouldn't hurt anything. */
504 msleep(400);
65417579 505 exit_cleanup(RERR_SIGNAL);
c627d613
AT
506}
507
d8b1c923 508/* Finish off a file transfer: renaming the file and setting the file's
83235dbc
WD
509 * attributes (e.g. permissions, ownership, etc.). If the robust_rename()
510 * call is forced to copy the temp file and partialptr is both non-NULL and
511 * not an absolute path, we stage the file into the partial-dir and then
512 * rename it into place. This returns 1 on succcess or 0 on failure. */
513int finish_transfer(const char *fname, const char *fnametmp,
514 const char *fnamecmp, const char *partialptr,
515 struct file_struct *file, int ok_to_set_time,
516 int overwriting_basis)
c95da96a 517{
62c9e6b3 518 int ret;
83235dbc 519 const char *temp_copy_name = partialptr && *partialptr != '/' ? partialptr : NULL;
62c9e6b3 520
a3221d2a
WD
521 if (inplace) {
522 if (verbose > 2)
45c49b52 523 rprintf(FINFO, "finishing %s\n", fname);
d8b1c923 524 fnametmp = fname;
36119f6e 525 goto do_set_file_attrs;
a3221d2a
WD
526 }
527
f3d6d480 528 if (make_backups > 0 && overwriting_basis && !make_backup(fname))
83235dbc 529 return 1;
e484f0cc 530
ebeacb36 531 /* Change permissions before putting the file into place. */
16edf865 532 set_file_attrs(fnametmp, file, NULL, fnamecmp,
36119f6e 533 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
ebeacb36 534
c95da96a 535 /* move tmp file over real file */
45c49b52
WD
536 if (verbose > 2)
537 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
83235dbc 538 ret = robust_rename(fnametmp, fname, temp_copy_name,
d8b1c923 539 file->mode & INITACCESSPERMS);
3d061653 540 if (ret < 0) {
3f0211b6 541 rsyserr(FERROR_XFER, errno, "%s %s -> \"%s\"",
45c49b52
WD
542 ret == -2 ? "copy" : "rename",
543 full_fname(fnametmp), fname);
83235dbc
WD
544 if (!partialptr || (ret == -2 && temp_copy_name)
545 || robust_rename(fnametmp, partialptr, NULL,
546 file->mode & INITACCESSPERMS) < 0)
547 do_unlink(fnametmp);
548 return 0;
c95da96a 549 }
ebeacb36
WD
550 if (ret == 0) {
551 /* The file was moved into place (not copied), so it's done. */
83235dbc 552 return 1;
ebeacb36 553 }
d8b1c923
WD
554 /* The file was copied, so tweak the perms of the copied file. If it
555 * was copied to partialptr, move it into its final destination. */
83235dbc 556 fnametmp = temp_copy_name ? temp_copy_name : fname;
d8b1c923 557
36119f6e 558 do_set_file_attrs:
16edf865 559 set_file_attrs(fnametmp, file, NULL, fnamecmp,
36119f6e 560 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
d8b1c923 561
83235dbc 562 if (temp_copy_name) {
d8b1c923 563 if (do_rename(fnametmp, fname) < 0) {
3f0211b6 564 rsyserr(FERROR_XFER, errno, "rename %s -> \"%s\"",
d8b1c923 565 full_fname(fnametmp), fname);
83235dbc
WD
566 return 0;
567 }
568 handle_partial_dir(temp_copy_name, PDIR_DELETE);
d8b1c923 569 }
83235dbc 570 return 1;
c95da96a 571}
c3e5e585 572
f3d6d480
WD
573struct file_list *flist_for_ndx(int ndx)
574{
575 struct file_list *flist = cur_flist;
576
87a34ce5 577 if (!flist && !(flist = first_flist))
f3d6d480
WD
578 return NULL;
579
6755a7d7 580 while (ndx < flist->ndx_start-1) {
f3d6d480
WD
581 if (flist == first_flist)
582 return NULL;
583 flist = flist->prev;
584 }
65b4e4b2 585 while (ndx >= flist->ndx_start + flist->used) {
f3d6d480
WD
586 if (!(flist = flist->next))
587 return NULL;
588 }
589 return flist;
590}
591
c3e5e585
WD
592const char *who_am_i(void)
593{
ed9d969c 594 if (am_starting_up)
794b0a03 595 return am_server ? "server" : "client";
ebeacb36 596 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
c3e5e585 597}