My version of Matt's improvements related to missing source args:
[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
445640e8 6 * Copyright (C) 2003-2009 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
53936ef9
WD
208void send_protected_args(int fd, char *args[])
209{
7abcfd85 210 int i;
53936ef9 211#ifdef ICONV_OPTION
7abcfd85 212 int convert = ic_send != (iconv_t)-1;
53936ef9
WD
213 xbuf outbuf, inbuf;
214
215 if (convert)
216 alloc_xbuf(&outbuf, 1024);
217#endif
218
219 for (i = 0; args[i]; i++) {} /* find first NULL */
220 args[i] = "rsync"; /* set a new arg0 */
221 if (verbose > 1)
222 print_child_argv("protected args:", args + i + 1);
223 do {
cf1b2922
WD
224 if (!args[i][0])
225 write_buf(fd, ".", 2);
53936ef9 226#ifdef ICONV_OPTION
cf1b2922 227 else if (convert) {
53936ef9
WD
228 INIT_XBUF_STRLEN(inbuf, args[i]);
229 iconvbufs(ic_send, &inbuf, &outbuf,
230 ICB_EXPAND_OUT | ICB_INCLUDE_BAD | ICB_INCLUDE_INCOMPLETE);
231 outbuf.buf[outbuf.len] = '\0';
232 write_buf(fd, outbuf.buf, outbuf.len + 1);
233 outbuf.len = 0;
cf1b2922 234 }
53936ef9 235#endif
cf1b2922 236 else
53936ef9
WD
237 write_buf(fd, args[i], strlen(args[i]) + 1);
238 } while (args[++i]);
239 write_byte(fd, 0);
240
241#ifdef ICONV_OPTION
242 if (convert)
243 free(outbuf.buf);
244#endif
245}
246
16edf865
WD
247int read_ndx_and_attrs(int f_in, int *iflag_ptr, uchar *type_ptr,
248 char *buf, int *len_ptr)
d1c178dd 249{
f3d6d480
WD
250 int len, iflags = 0;
251 struct file_list *flist;
d1c178dd 252 uchar fnamecmp_type = FNAMECMP_FNAME;
b7386d23 253 int ndx, save_verbose = verbose;
f3d6d480
WD
254
255 read_loop:
256 while (1) {
9ae7a2cd 257 ndx = read_ndx(f_in);
f3d6d480 258
deea1f70 259 if (ndx >= 0)
f3d6d480
WD
260 break;
261 if (ndx == NDX_DONE)
262 return ndx;
9bed8554
WD
263 if (!inc_recurse || am_sender) {
264 int last;
265 if (first_flist)
266 last = first_flist->prev->ndx_start + first_flist->prev->used - 1;
267 else
268 last = -1;
269 rprintf(FERROR,
270 "Invalid file index: %d (%d - %d) [%s]\n",
271 ndx, NDX_DONE, last, who_am_i());
272 exit_cleanup(RERR_PROTOCOL);
273 }
f3d6d480
WD
274 if (ndx == NDX_FLIST_EOF) {
275 flist_eof = 1;
332cf6df 276 send_msg(MSG_FLIST_EOF, "", 0, 0);
f3d6d480
WD
277 continue;
278 }
279 ndx = NDX_FLIST_OFFSET - ndx;
9decb4d2 280 if (ndx < 0 || ndx >= dir_flist->used) {
f3d6d480
WD
281 ndx = NDX_FLIST_OFFSET - ndx;
282 rprintf(FERROR,
9bed8554
WD
283 "Invalid dir index: %d (%d - %d) [%s]\n",
284 ndx, NDX_FLIST_OFFSET,
285 NDX_FLIST_OFFSET - dir_flist->used + 1,
286 who_am_i());
f3d6d480
WD
287 exit_cleanup(RERR_PROTOCOL);
288 }
f3d6d480
WD
289
290 /* Send everything read from f_in to msg_fd_out. */
1faa1a6d
WD
291 if (verbose > 3) {
292 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
293 who_am_i(), ndx);
294 }
b7386d23
WD
295 verbose = 0;
296 send_msg_int(MSG_FLIST, ndx);
297 start_flist_forward(f_in);
f3d6d480
WD
298 flist = recv_file_list(f_in);
299 flist->parent_ndx = ndx;
300 stop_flist_forward();
b7386d23 301 verbose = save_verbose;
f3d6d480
WD
302 }
303
304 iflags = protocol_version >= 29 ? read_shortint(f_in)
d1c178dd
WD
305 : ITEM_TRANSFER | ITEM_MISSING_DATA;
306
f3d6d480
WD
307 /* Honor the old-style keep-alive indicator. */
308 if (protocol_version < 30
9decb4d2 309 && ndx == cur_flist->used && iflags == ITEM_IS_NEW) {
f3d6d480
WD
310 if (am_sender)
311 maybe_send_keepalive();
312 goto read_loop;
313 }
314
9bed8554 315 cur_flist = flist_for_ndx(ndx, "read_ndx_and_attrs");
d1c178dd
WD
316
317 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
318 fnamecmp_type = read_byte(f_in);
319 *type_ptr = fnamecmp_type;
320
321 if (iflags & ITEM_XNAME_FOLLOWS) {
322 if ((len = read_vstring(f_in, buf, MAXPATHLEN)) < 0)
323 exit_cleanup(RERR_PROTOCOL);
324 } else {
325 *buf = '\0';
326 len = -1;
327 }
328 *len_ptr = len;
329
330 if (iflags & ITEM_TRANSFER) {
f3d6d480 331 int i = ndx - cur_flist->ndx_start;
6755a7d7 332 if (i < 0 || !S_ISREG(cur_flist->files[i]->mode)) {
d1c178dd
WD
333 rprintf(FERROR,
334 "received request to transfer non-regular file: %d [%s]\n",
335 ndx, who_am_i());
336 exit_cleanup(RERR_PROTOCOL);
337 }
d1c178dd
WD
338 }
339
f3d6d480
WD
340 *iflag_ptr = iflags;
341 return ndx;
d1c178dd
WD
342}
343
c627d613
AT
344/*
345 free a sums struct
346 */
2f03f956 347void free_sums(struct sum_struct *s)
c627d613 348{
298c10d5
AT
349 if (s->sums) free(s->sums);
350 free(s);
c627d613
AT
351}
352
81284832
WD
353/* This is only called when we aren't preserving permissions. Figure out what
354 * the permissions should be and return them merged back into the mode. */
1c3344a1
WD
355mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int dflt_perms,
356 int exists)
81284832 357{
67f8a41b 358 int new_mode;
9b499e95 359 /* If the file already exists, we'll return the local permissions,
81284832
WD
360 * possibly tweaked by the --executability option. */
361 if (exists) {
67f8a41b 362 new_mode = (flist_mode & ~CHMOD_BITS) | (stat_mode & CHMOD_BITS);
81284832
WD
363 if (preserve_executability && S_ISREG(flist_mode)) {
364 /* If the source file is executable, grant execute
365 * rights to everyone who can read, but ONLY if the
366 * file isn't already executable. */
367 if (!(flist_mode & 0111))
67f8a41b
WD
368 new_mode &= ~0111;
369 else if (!(stat_mode & 0111))
370 new_mode |= (new_mode & 0444) >> 2;
81284832 371 }
67f8a41b 372 } else {
1c3344a1
WD
373 /* Apply destination default permissions and turn
374 * off special permissions. */
375 new_mode = flist_mode & (~CHMOD_BITS | dflt_perms);
67f8a41b 376 }
67f8a41b 377 return new_mode;
81284832
WD
378}
379
13710874 380int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp,
16edf865 381 const char *fnamecmp, int flags)
c627d613 382{
667e72a1 383 int updated = 0;
13710874 384 stat_x sx2;
460f6b99 385 int change_uid, change_gid;
519d55a9 386 mode_t new_mode = file->mode;
2dc7b91d 387 int inherit;
c627d613 388
1c3344a1 389 if (!sxp) {
f227ffe4
WD
390 if (dry_run)
391 return 1;
1c3344a1 392 if (link_stat(fname, &sx2.st, 0) < 0) {
3f0211b6 393 rsyserr(FERROR_XFER, errno, "stat %s failed",
d62bcc17 394 full_fname(fname));
667e72a1
AT
395 return 0;
396 }
1c3344a1
WD
397#ifdef SUPPORT_ACLS
398 sx2.acc_acl = sx2.def_acl = NULL;
16edf865
WD
399#endif
400#ifdef SUPPORT_XATTRS
401 sx2.xattr = NULL;
1c3344a1 402#endif
1c3344a1 403 sxp = &sx2;
2dc7b91d
WD
404 inherit = !preserve_perms;
405 } else
406 inherit = !preserve_perms && file->flags & FLAG_DIR_CREATED;
407
408 if (inherit && S_ISDIR(new_mode) && sxp->st.st_mode & S_ISGID) {
409 /* We just created this directory and its setgid
410 * bit is on, so make sure it stays on. */
411 new_mode |= S_ISGID;
667e72a1 412 }
c627d613 413
e107b6b1
WD
414 if (daemon_chmod_modes && !S_ISLNK(new_mode))
415 new_mode = tweak_mode(new_mode, daemon_chmod_modes);
416
1c3344a1
WD
417#ifdef SUPPORT_ACLS
418 if (preserve_acls && !S_ISLNK(file->mode) && !ACL_READY(*sxp))
419 get_acl(fname, sxp);
420#endif
421
16edf865 422#ifdef SUPPORT_XATTRS
9439c0cb 423 if (am_root < 0)
e107b6b1 424 set_stat_xattr(fname, file, new_mode);
4d7c8e6b
WD
425 if (preserve_xattrs && fnamecmp)
426 set_xattr(fname, file, fnamecmp, sxp);
16edf865
WD
427#endif
428
f9998046 429 if (!preserve_times || (S_ISDIR(sxp->st.st_mode) && preserve_times == 1))
36119f6e
WD
430 flags |= ATTRS_SKIP_MTIME;
431 if (!(flags & ATTRS_SKIP_MTIME)
1c3344a1
WD
432 && cmp_time(sxp->st.st_mtime, file->modtime) != 0) {
433 int ret = set_modtime(fname, file->modtime, sxp->st.st_mode);
c8d34657 434 if (ret < 0) {
3f0211b6 435 rsyserr(FERROR_XFER, errno, "failed to set times on %s",
d62bcc17 436 full_fname(fname));
1c3344a1 437 goto cleanup;
667e72a1 438 }
c8d34657
WD
439 if (ret == 0) /* ret == 1 if symlink could not be set */
440 updated = 1;
ee39281d 441 else
1ed56a05 442 file->flags |= FLAG_TIME_FAILED;
667e72a1
AT
443 }
444
9b25ef35
WD
445 change_uid = am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file);
446 change_gid = gid_ndx && !(file->flags & FLAG_SKIP_GROUP)
858d45f1 447 && sxp->st.st_gid != (gid_t)F_GROUP(file);
4f5b0756 448#if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
2e52ba36 449 if (S_ISLNK(sxp->st.st_mode)) {
a41a1e87 450 ;
2e52ba36 451 } else
a41a1e87 452#endif
460f6b99 453 if (change_uid || change_gid) {
62c9e6b3 454 if (verbose > 2) {
ce37eb2d
WD
455 if (change_uid) {
456 rprintf(FINFO,
4ade505c
WD
457 "set uid of %s from %u to %u\n",
458 fname, (unsigned)sxp->st.st_uid, F_OWNER(file));
ce37eb2d
WD
459 }
460 if (change_gid) {
461 rprintf(FINFO,
4ade505c
WD
462 "set gid of %s from %u to %u\n",
463 fname, (unsigned)sxp->st.st_gid, F_GROUP(file));
ce37eb2d
WD
464 }
465 }
87629cf2
WD
466 if (am_root >= 0) {
467 if (do_lchown(fname,
468 change_uid ? (uid_t)F_OWNER(file) : sxp->st.st_uid,
469 change_gid ? (gid_t)F_GROUP(file) : sxp->st.st_gid) != 0) {
470 /* We shouldn't have attempted to change uid
471 * or gid unless have the privilege. */
472 rsyserr(FERROR_XFER, errno, "%s %s failed",
473 change_uid ? "chown" : "chgrp",
474 full_fname(fname));
475 goto cleanup;
476 }
477 /* A lchown had been done, so we need to re-stat if
478 * the destination had the setuid or setgid bits set
479 * (due to the side effect of the chown call). */
480 if (sxp->st.st_mode & (S_ISUID | S_ISGID)) {
481 link_stat(fname, &sxp->st,
482 keep_dirlinks && S_ISDIR(sxp->st.st_mode));
483 }
a5827a28 484 }
460f6b99 485 updated = 1;
667e72a1 486 }
c627d613 487
1c3344a1
WD
488#ifdef SUPPORT_ACLS
489 /* It's OK to call set_acl() now, even for a dir, as the generator
490 * will enable owner-writability using chmod, if necessary.
491 *
492 * If set_acl() changes permission bits in the process of setting
493 * an access ACL, it changes sxp->st.st_mode so we know whether we
494 * need to chmod(). */
495 if (preserve_acls && !S_ISLNK(new_mode) && set_acl(fname, file, sxp) == 0)
496 updated = 1;
497#endif
498
4f5b0756 499#ifdef HAVE_CHMOD
1c3344a1 500 if (!BITS_EQUAL(sxp->st.st_mode, new_mode, CHMOD_BITS)) {
9439c0cb 501 int ret = am_root < 0 ? 0 : do_chmod(fname, new_mode);
c8d34657 502 if (ret < 0) {
3f0211b6 503 rsyserr(FERROR_XFER, errno,
c8d34657
WD
504 "failed to set permissions on %s",
505 full_fname(fname));
1c3344a1 506 goto cleanup;
667e72a1 507 }
c8d34657
WD
508 if (ret == 0) /* ret == 1 if symlink could not be set */
509 updated = 1;
667e72a1 510 }
c627d613 511#endif
6a7cc46c 512
36119f6e 513 if (verbose > 1 && flags & ATTRS_REPORT) {
667e72a1 514 if (updated)
1925c344 515 rprintf(FCLIENT, "%s\n", fname);
667e72a1 516 else
1925c344 517 rprintf(FCLIENT, "%s is uptodate\n", fname);
667e72a1 518 }
1c3344a1 519 cleanup:
16edf865 520 if (sxp == &sx2) {
1c3344a1 521#ifdef SUPPORT_ACLS
16edf865
WD
522 if (preserve_acls)
523 free_acl(&sx2);
1c3344a1 524#endif
16edf865
WD
525#ifdef SUPPORT_XATTRS
526 if (preserve_xattrs)
527 free_xattr(&sx2);
528#endif
529 }
667e72a1 530 return updated;
c627d613
AT
531}
532
b8e9c234 533RETSIGTYPE sig_int(UNUSED(int val))
34ccb63e 534{
d5a0b483
WD
535 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
536 * for a password, then our cleanup's sending of a SIGUSR1
537 * signal to all our children may kill ssh before it has a
538 * chance to restore the tty settings (i.e. turn echo back
539 * on). By sleeping for a short time, ssh gets a bigger
540 * chance to do the right thing. If child processes are
541 * not ssh waiting for a password, then this tiny delay
542 * shouldn't hurt anything. */
543 msleep(400);
65417579 544 exit_cleanup(RERR_SIGNAL);
c627d613
AT
545}
546
d8b1c923 547/* Finish off a file transfer: renaming the file and setting the file's
83235dbc
WD
548 * attributes (e.g. permissions, ownership, etc.). If the robust_rename()
549 * call is forced to copy the temp file and partialptr is both non-NULL and
550 * not an absolute path, we stage the file into the partial-dir and then
551 * rename it into place. This returns 1 on succcess or 0 on failure. */
552int finish_transfer(const char *fname, const char *fnametmp,
553 const char *fnamecmp, const char *partialptr,
554 struct file_struct *file, int ok_to_set_time,
555 int overwriting_basis)
c95da96a 556{
62c9e6b3 557 int ret;
83235dbc 558 const char *temp_copy_name = partialptr && *partialptr != '/' ? partialptr : NULL;
62c9e6b3 559
a3221d2a
WD
560 if (inplace) {
561 if (verbose > 2)
45c49b52 562 rprintf(FINFO, "finishing %s\n", fname);
d8b1c923 563 fnametmp = fname;
36119f6e 564 goto do_set_file_attrs;
a3221d2a
WD
565 }
566
e9489cd6
WD
567 if (make_backups > 0 && overwriting_basis) {
568 if (!make_backup(fname))
569 return 1;
4337eeb7
WD
570 if (fnamecmp == fname)
571 fnamecmp = get_backup_name(fname);
e9489cd6 572 }
e484f0cc 573
ebeacb36 574 /* Change permissions before putting the file into place. */
16edf865 575 set_file_attrs(fnametmp, file, NULL, fnamecmp,
36119f6e 576 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
ebeacb36 577
c95da96a 578 /* move tmp file over real file */
45c49b52
WD
579 if (verbose > 2)
580 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
83235dbc 581 ret = robust_rename(fnametmp, fname, temp_copy_name,
d8b1c923 582 file->mode & INITACCESSPERMS);
3d061653 583 if (ret < 0) {
3f0211b6 584 rsyserr(FERROR_XFER, errno, "%s %s -> \"%s\"",
45c49b52
WD
585 ret == -2 ? "copy" : "rename",
586 full_fname(fnametmp), fname);
83235dbc
WD
587 if (!partialptr || (ret == -2 && temp_copy_name)
588 || robust_rename(fnametmp, partialptr, NULL,
589 file->mode & INITACCESSPERMS) < 0)
590 do_unlink(fnametmp);
591 return 0;
c95da96a 592 }
ebeacb36
WD
593 if (ret == 0) {
594 /* The file was moved into place (not copied), so it's done. */
83235dbc 595 return 1;
ebeacb36 596 }
d8b1c923
WD
597 /* The file was copied, so tweak the perms of the copied file. If it
598 * was copied to partialptr, move it into its final destination. */
83235dbc 599 fnametmp = temp_copy_name ? temp_copy_name : fname;
d8b1c923 600
36119f6e 601 do_set_file_attrs:
16edf865 602 set_file_attrs(fnametmp, file, NULL, fnamecmp,
36119f6e 603 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
d8b1c923 604
83235dbc 605 if (temp_copy_name) {
d8b1c923 606 if (do_rename(fnametmp, fname) < 0) {
3f0211b6 607 rsyserr(FERROR_XFER, errno, "rename %s -> \"%s\"",
d8b1c923 608 full_fname(fnametmp), fname);
83235dbc
WD
609 return 0;
610 }
611 handle_partial_dir(temp_copy_name, PDIR_DELETE);
d8b1c923 612 }
83235dbc 613 return 1;
c95da96a 614}
c3e5e585 615
9bed8554 616struct file_list *flist_for_ndx(int ndx, const char *fatal_error_loc)
f3d6d480
WD
617{
618 struct file_list *flist = cur_flist;
619
87a34ce5 620 if (!flist && !(flist = first_flist))
9bed8554 621 goto not_found;
f3d6d480 622
6755a7d7 623 while (ndx < flist->ndx_start-1) {
f3d6d480 624 if (flist == first_flist)
9bed8554 625 goto not_found;
f3d6d480
WD
626 flist = flist->prev;
627 }
65b4e4b2 628 while (ndx >= flist->ndx_start + flist->used) {
f3d6d480 629 if (!(flist = flist->next))
9bed8554 630 goto not_found;
f3d6d480
WD
631 }
632 return flist;
9bed8554
WD
633
634 not_found:
635 if (fatal_error_loc) {
636 int first, last;
637 if (first_flist) {
638 first = first_flist->ndx_start - 1;
639 last = first_flist->prev->ndx_start + first_flist->prev->used - 1;
640 } else {
641 first = 0;
642 last = -1;
643 }
644 rprintf(FERROR,
645 "File-list index %d not in %d - %d (%s) [%s]\n",
646 ndx, first, last, fatal_error_loc, who_am_i());
647 exit_cleanup(RERR_PROTOCOL);
648 }
649 return NULL;
f3d6d480
WD
650}
651
c3e5e585
WD
652const char *who_am_i(void)
653{
ed9d969c 654 if (am_starting_up)
794b0a03 655 return am_server ? "server" : "client";
ebeacb36 656 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
c3e5e585 657}