Fixed the delete statistics with --delete-delay and --delete-after.
[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
b3bf9b9d 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 dry_run;
1c3344a1 31extern int preserve_acls;
16edf865 32extern int preserve_xattrs;
9b499e95 33extern int preserve_perms;
81284832 34extern int preserve_executability;
2f03f956 35extern int preserve_times;
7b8356d0 36extern int am_root;
794b0a03 37extern int am_server;
c3e5e585
WD
38extern int am_sender;
39extern int am_generator;
ed9d969c 40extern int am_starting_up;
e0f4a661 41extern int allow_8bit_chars;
b675ba6f 42extern int protocol_version;
9b25ef35
WD
43extern int uid_ndx;
44extern int gid_ndx;
3ea6e0e7 45extern int inc_recurse;
c786a7ae 46extern int inplace;
f3d6d480 47extern int flist_eof;
eabc85ef 48extern int msgs2stderr;
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) {
e0f4a661
WD
83 /* It's OK if this fails... */
84 ic_chck = iconv_open(defset, defset);
ceccbacc 85
c9f540f3 86 if (DEBUG_GTE(ICONV, 2)) {
e0f4a661
WD
87 if (ic_chck == (iconv_t)-1) {
88 rprintf(FINFO,
c9f540f3
WD
89 "msg checking via isprint()"
90 " (iconv_open(\"%s\", \"%s\") errno: %d)\n",
e0f4a661
WD
91 defset, defset, errno);
92 } else {
93 rprintf(FINFO,
c9f540f3
WD
94 "msg checking charset: %s\n",
95 defset);
e0f4a661 96 }
7fc87d2d 97 }
c9f540f3
WD
98 } else
99 ic_chck = (iconv_t)-1;
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
c9f540f3
WD
129 if (DEBUG_GTE(ICONV, 1)) {
130 rprintf(FINFO, "[%s] charset: %s\n",
131 who_am_i(), *charset ? charset : "[LOCALE]");
332cf6df
WD
132 }
133# endif
ceccbacc 134}
2ac97930 135
2ac97930
WD
136/* This function converts the characters in the "in" xbuf into characters
137 * in the "out" xbuf. The "len" of the "in" xbuf is used starting from its
138 * "pos". The "size" of the "out" xbuf restricts how many characters can be
139 * stored, starting at its "pos+len" position. Note that the last byte of
140 * the buffer is never used, which reserves space for a terminating '\0'.
141 * We return a 0 on success or a -1 on error. An error also sets errno to
142 * E2BIG, EILSEQ, or EINVAL (see below); otherwise errno will be set to 0.
143 * The "in" xbuf is altered to update "pos" and "len". The "out" xbuf has
144 * data appended, and its "len" incremented. If ICB_EXPAND_OUT is set in
145 * "flags", the "out" xbuf will also be allocated if empty, and expanded if
146 * too small (so E2BIG will not be returned). If ICB_INCLUDE_BAD is set in
147 * "flags", any badly-encoded chars are included verbatim in the "out" xbuf,
148 * so EILSEQ will not be returned. Likewise for ICB_INCLUDE_INCOMPLETE with
149 * respect to an incomplete multi-byte char at the end, which ensures that
150 * EINVAL is not returned. Anytime "in.pos" is 0 we will reset the iconv()
151 * state prior to processing the characters. */
152int iconvbufs(iconv_t ic, xbuf *in, xbuf *out, int flags)
153{
154 ICONV_CONST char *ibuf;
155 size_t icnt, ocnt;
156 char *obuf;
157
158 if (!out->size && flags & ICB_EXPAND_OUT)
159 alloc_xbuf(out, 1024);
160
161 if (!in->pos)
162 iconv(ic, NULL, 0, NULL, 0);
163
164 ibuf = in->buf + in->pos;
165 icnt = in->len;
166
167 obuf = out->buf + (out->pos + out->len);
168 ocnt = out->size - (out->pos + out->len) - 1;
169
170 while (icnt) {
171 while (iconv(ic, &ibuf, &icnt, &obuf, &ocnt) == (size_t)-1) {
172 if (errno == EINTR)
173 continue;
174 if (errno == EINVAL) {
175 if (!(flags & ICB_INCLUDE_INCOMPLETE))
176 goto finish;
177 } else if (errno == EILSEQ) {
178 if (!(flags & ICB_INCLUDE_BAD))
179 goto finish;
180 } else {
181 size_t opos = obuf - out->buf;
182 if (!(flags & ICB_EXPAND_OUT)) {
183 errno = E2BIG;
184 goto finish;
185 }
186 realloc_xbuf(out, out->size + 1024);
187 obuf = out->buf + opos;
188 ocnt += 1024;
189 continue;
190 }
191 *obuf++ = *ibuf++;
192 ocnt--, icnt--;
193 }
194 }
195
196 errno = 0;
197
198 finish:
199 in->len = icnt;
200 in->pos = ibuf - in->buf;
201 out->len = obuf - out->buf - out->pos;
202
203 return errno ? -1 : 0;
204}
ceccbacc 205#endif
fe055c71 206
53936ef9
WD
207void send_protected_args(int fd, char *args[])
208{
7abcfd85 209 int i;
53936ef9 210#ifdef ICONV_OPTION
7abcfd85 211 int convert = ic_send != (iconv_t)-1;
53936ef9
WD
212 xbuf outbuf, inbuf;
213
214 if (convert)
215 alloc_xbuf(&outbuf, 1024);
216#endif
217
218 for (i = 0; args[i]; i++) {} /* find first NULL */
219 args[i] = "rsync"; /* set a new arg0 */
951e826b 220 if (DEBUG_GTE(CMD, 1))
53936ef9
WD
221 print_child_argv("protected args:", args + i + 1);
222 do {
08b7c3ed
WD
223 if (!args[i][0])
224 write_buf(fd, ".", 2);
53936ef9 225#ifdef ICONV_OPTION
08b7c3ed 226 else if (convert) {
53936ef9
WD
227 INIT_XBUF_STRLEN(inbuf, args[i]);
228 iconvbufs(ic_send, &inbuf, &outbuf,
229 ICB_EXPAND_OUT | ICB_INCLUDE_BAD | ICB_INCLUDE_INCOMPLETE);
230 outbuf.buf[outbuf.len] = '\0';
231 write_buf(fd, outbuf.buf, outbuf.len + 1);
232 outbuf.len = 0;
08b7c3ed 233 }
53936ef9 234#endif
08b7c3ed 235 else
53936ef9
WD
236 write_buf(fd, args[i], strlen(args[i]) + 1);
237 } while (args[++i]);
238 write_byte(fd, 0);
239
240#ifdef ICONV_OPTION
241 if (convert)
242 free(outbuf.buf);
243#endif
244}
245
16edf865
WD
246int read_ndx_and_attrs(int f_in, int *iflag_ptr, uchar *type_ptr,
247 char *buf, int *len_ptr)
d1c178dd 248{
f3d6d480
WD
249 int len, iflags = 0;
250 struct file_list *flist;
d1c178dd 251 uchar fnamecmp_type = FNAMECMP_FNAME;
951e826b 252 int ndx;
f3d6d480
WD
253
254 read_loop:
255 while (1) {
9ae7a2cd 256 ndx = read_ndx(f_in);
f3d6d480 257
8b3e6052 258 if (ndx >= 0)
f3d6d480
WD
259 break;
260 if (ndx == NDX_DONE)
261 return ndx;
e982d591
WD
262 if (!inc_recurse || am_sender) {
263 int last;
264 if (first_flist)
265 last = first_flist->prev->ndx_start + first_flist->prev->used - 1;
266 else
267 last = -1;
268 rprintf(FERROR,
269 "Invalid file index: %d (%d - %d) [%s]\n",
270 ndx, NDX_DONE, last, who_am_i());
271 exit_cleanup(RERR_PROTOCOL);
272 }
f3d6d480
WD
273 if (ndx == NDX_FLIST_EOF) {
274 flist_eof = 1;
332cf6df 275 send_msg(MSG_FLIST_EOF, "", 0, 0);
f3d6d480
WD
276 continue;
277 }
278 ndx = NDX_FLIST_OFFSET - ndx;
9decb4d2 279 if (ndx < 0 || ndx >= dir_flist->used) {
f3d6d480
WD
280 ndx = NDX_FLIST_OFFSET - ndx;
281 rprintf(FERROR,
e982d591
WD
282 "Invalid dir index: %d (%d - %d) [%s]\n",
283 ndx, NDX_FLIST_OFFSET,
284 NDX_FLIST_OFFSET - dir_flist->used + 1,
285 who_am_i());
f3d6d480
WD
286 exit_cleanup(RERR_PROTOCOL);
287 }
f3d6d480
WD
288
289 /* Send everything read from f_in to msg_fd_out. */
951e826b 290 if (DEBUG_GTE(FLIST, 2)) {
1faa1a6d
WD
291 rprintf(FINFO, "[%s] receiving flist for dir %d\n",
292 who_am_i(), ndx);
293 }
eabc85ef
WD
294 if (!msgs2stderr)
295 negate_output_levels(); /* turn off all info/debug output */
b7386d23
WD
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();
eabc85ef
WD
301 if (!msgs2stderr)
302 negate_output_levels(); /* restore info/debug output */
f3d6d480
WD
303 }
304
305 iflags = protocol_version >= 29 ? read_shortint(f_in)
d1c178dd
WD
306 : ITEM_TRANSFER | ITEM_MISSING_DATA;
307
f3d6d480
WD
308 /* Honor the old-style keep-alive indicator. */
309 if (protocol_version < 30
9decb4d2 310 && ndx == cur_flist->used && iflags == ITEM_IS_NEW) {
f3d6d480
WD
311 if (am_sender)
312 maybe_send_keepalive();
313 goto read_loop;
314 }
315
e982d591 316 cur_flist = flist_for_ndx(ndx, "read_ndx_and_attrs");
d1c178dd
WD
317
318 if (iflags & ITEM_BASIS_TYPE_FOLLOWS)
319 fnamecmp_type = read_byte(f_in);
320 *type_ptr = fnamecmp_type;
321
322 if (iflags & ITEM_XNAME_FOLLOWS) {
323 if ((len = read_vstring(f_in, buf, MAXPATHLEN)) < 0)
324 exit_cleanup(RERR_PROTOCOL);
325 } else {
326 *buf = '\0';
327 len = -1;
328 }
329 *len_ptr = len;
330
331 if (iflags & ITEM_TRANSFER) {
f3d6d480 332 int i = ndx - cur_flist->ndx_start;
6755a7d7 333 if (i < 0 || !S_ISREG(cur_flist->files[i]->mode)) {
d1c178dd
WD
334 rprintf(FERROR,
335 "received request to transfer non-regular file: %d [%s]\n",
336 ndx, who_am_i());
337 exit_cleanup(RERR_PROTOCOL);
338 }
d1c178dd
WD
339 }
340
f3d6d480
WD
341 *iflag_ptr = iflags;
342 return ndx;
d1c178dd
WD
343}
344
c627d613
AT
345/*
346 free a sums struct
347 */
2f03f956 348void free_sums(struct sum_struct *s)
c627d613 349{
298c10d5
AT
350 if (s->sums) free(s->sums);
351 free(s);
c627d613
AT
352}
353
81284832
WD
354/* This is only called when we aren't preserving permissions. Figure out what
355 * the permissions should be and return them merged back into the mode. */
1c3344a1
WD
356mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int dflt_perms,
357 int exists)
81284832 358{
67f8a41b 359 int new_mode;
9b499e95 360 /* If the file already exists, we'll return the local permissions,
81284832
WD
361 * possibly tweaked by the --executability option. */
362 if (exists) {
67f8a41b 363 new_mode = (flist_mode & ~CHMOD_BITS) | (stat_mode & CHMOD_BITS);
81284832
WD
364 if (preserve_executability && S_ISREG(flist_mode)) {
365 /* If the source file is executable, grant execute
366 * rights to everyone who can read, but ONLY if the
367 * file isn't already executable. */
368 if (!(flist_mode & 0111))
67f8a41b
WD
369 new_mode &= ~0111;
370 else if (!(stat_mode & 0111))
371 new_mode |= (new_mode & 0444) >> 2;
81284832 372 }
67f8a41b 373 } else {
1c3344a1
WD
374 /* Apply destination default permissions and turn
375 * off special permissions. */
376 new_mode = flist_mode & (~CHMOD_BITS | dflt_perms);
67f8a41b 377 }
67f8a41b 378 return new_mode;
81284832
WD
379}
380
13710874 381int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp,
16edf865 382 const char *fnamecmp, int flags)
c627d613 383{
667e72a1 384 int updated = 0;
13710874 385 stat_x sx2;
460f6b99 386 int change_uid, change_gid;
519d55a9 387 mode_t new_mode = file->mode;
2dc7b91d 388 int inherit;
c627d613 389
1c3344a1 390 if (!sxp) {
f227ffe4
WD
391 if (dry_run)
392 return 1;
1c3344a1 393 if (link_stat(fname, &sx2.st, 0) < 0) {
3f0211b6 394 rsyserr(FERROR_XFER, errno, "stat %s failed",
d62bcc17 395 full_fname(fname));
667e72a1
AT
396 return 0;
397 }
09ca0d15 398 init_stat_x(&sx2);
1c3344a1 399 sxp = &sx2;
2dc7b91d
WD
400 inherit = !preserve_perms;
401 } else
402 inherit = !preserve_perms && file->flags & FLAG_DIR_CREATED;
403
404 if (inherit && S_ISDIR(new_mode) && sxp->st.st_mode & S_ISGID) {
405 /* We just created this directory and its setgid
406 * bit is on, so make sure it stays on. */
407 new_mode |= S_ISGID;
667e72a1 408 }
c627d613 409
e107b6b1
WD
410 if (daemon_chmod_modes && !S_ISLNK(new_mode))
411 new_mode = tweak_mode(new_mode, daemon_chmod_modes);
412
1c3344a1
WD
413#ifdef SUPPORT_ACLS
414 if (preserve_acls && !S_ISLNK(file->mode) && !ACL_READY(*sxp))
415 get_acl(fname, sxp);
416#endif
417
16edf865 418#ifdef SUPPORT_XATTRS
9439c0cb 419 if (am_root < 0)
e107b6b1 420 set_stat_xattr(fname, file, new_mode);
4d7c8e6b
WD
421 if (preserve_xattrs && fnamecmp)
422 set_xattr(fname, file, fnamecmp, sxp);
16edf865
WD
423#endif
424
f9998046 425 if (!preserve_times || (S_ISDIR(sxp->st.st_mode) && preserve_times == 1))
36119f6e
WD
426 flags |= ATTRS_SKIP_MTIME;
427 if (!(flags & ATTRS_SKIP_MTIME)
1c3344a1
WD
428 && cmp_time(sxp->st.st_mtime, file->modtime) != 0) {
429 int ret = set_modtime(fname, file->modtime, sxp->st.st_mode);
c8d34657 430 if (ret < 0) {
3f0211b6 431 rsyserr(FERROR_XFER, errno, "failed to set times on %s",
d62bcc17 432 full_fname(fname));
1c3344a1 433 goto cleanup;
667e72a1 434 }
c8d34657
WD
435 if (ret == 0) /* ret == 1 if symlink could not be set */
436 updated = 1;
ee39281d 437 else
1ed56a05 438 file->flags |= FLAG_TIME_FAILED;
667e72a1
AT
439 }
440
9b25ef35
WD
441 change_uid = am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file);
442 change_gid = gid_ndx && !(file->flags & FLAG_SKIP_GROUP)
858d45f1 443 && sxp->st.st_gid != (gid_t)F_GROUP(file);
4f5b0756 444#if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
2e52ba36 445 if (S_ISLNK(sxp->st.st_mode)) {
a41a1e87 446 ;
2e52ba36 447 } else
a41a1e87 448#endif
460f6b99 449 if (change_uid || change_gid) {
951e826b 450 if (DEBUG_GTE(OWN, 1)) {
ce37eb2d
WD
451 if (change_uid) {
452 rprintf(FINFO,
4ade505c
WD
453 "set uid of %s from %u to %u\n",
454 fname, (unsigned)sxp->st.st_uid, F_OWNER(file));
ce37eb2d
WD
455 }
456 if (change_gid) {
457 rprintf(FINFO,
4ade505c
WD
458 "set gid of %s from %u to %u\n",
459 fname, (unsigned)sxp->st.st_gid, F_GROUP(file));
ce37eb2d
WD
460 }
461 }
87629cf2
WD
462 if (am_root >= 0) {
463 if (do_lchown(fname,
464 change_uid ? (uid_t)F_OWNER(file) : sxp->st.st_uid,
465 change_gid ? (gid_t)F_GROUP(file) : sxp->st.st_gid) != 0) {
466 /* We shouldn't have attempted to change uid
467 * or gid unless have the privilege. */
468 rsyserr(FERROR_XFER, errno, "%s %s failed",
469 change_uid ? "chown" : "chgrp",
470 full_fname(fname));
471 goto cleanup;
472 }
473 /* A lchown had been done, so we need to re-stat if
474 * the destination had the setuid or setgid bits set
475 * (due to the side effect of the chown call). */
476 if (sxp->st.st_mode & (S_ISUID | S_ISGID)) {
477 link_stat(fname, &sxp->st,
478 keep_dirlinks && S_ISDIR(sxp->st.st_mode));
479 }
a5827a28 480 }
460f6b99 481 updated = 1;
667e72a1 482 }
c627d613 483
1c3344a1
WD
484#ifdef SUPPORT_ACLS
485 /* It's OK to call set_acl() now, even for a dir, as the generator
486 * will enable owner-writability using chmod, if necessary.
487 *
488 * If set_acl() changes permission bits in the process of setting
489 * an access ACL, it changes sxp->st.st_mode so we know whether we
490 * need to chmod(). */
491 if (preserve_acls && !S_ISLNK(new_mode) && set_acl(fname, file, sxp) == 0)
492 updated = 1;
493#endif
494
4f5b0756 495#ifdef HAVE_CHMOD
1c3344a1 496 if (!BITS_EQUAL(sxp->st.st_mode, new_mode, CHMOD_BITS)) {
9439c0cb 497 int ret = am_root < 0 ? 0 : do_chmod(fname, new_mode);
c8d34657 498 if (ret < 0) {
3f0211b6 499 rsyserr(FERROR_XFER, errno,
c8d34657
WD
500 "failed to set permissions on %s",
501 full_fname(fname));
1c3344a1 502 goto cleanup;
667e72a1 503 }
c8d34657
WD
504 if (ret == 0) /* ret == 1 if symlink could not be set */
505 updated = 1;
667e72a1 506 }
c627d613 507#endif
6a7cc46c 508
951e826b 509 if (INFO_GTE(NAME, 2) && flags & ATTRS_REPORT) {
667e72a1 510 if (updated)
1925c344 511 rprintf(FCLIENT, "%s\n", fname);
667e72a1 512 else
1925c344 513 rprintf(FCLIENT, "%s is uptodate\n", fname);
667e72a1 514 }
1c3344a1 515 cleanup:
16edf865 516 if (sxp == &sx2) {
1c3344a1 517#ifdef SUPPORT_ACLS
16edf865
WD
518 if (preserve_acls)
519 free_acl(&sx2);
1c3344a1 520#endif
16edf865
WD
521#ifdef SUPPORT_XATTRS
522 if (preserve_xattrs)
523 free_xattr(&sx2);
524#endif
525 }
667e72a1 526 return updated;
c627d613
AT
527}
528
b8e9c234 529RETSIGTYPE sig_int(UNUSED(int val))
34ccb63e 530{
d5a0b483
WD
531 /* KLUGE: if the user hits Ctrl-C while ssh is prompting
532 * for a password, then our cleanup's sending of a SIGUSR1
533 * signal to all our children may kill ssh before it has a
534 * chance to restore the tty settings (i.e. turn echo back
535 * on). By sleeping for a short time, ssh gets a bigger
536 * chance to do the right thing. If child processes are
537 * not ssh waiting for a password, then this tiny delay
538 * shouldn't hurt anything. */
539 msleep(400);
65417579 540 exit_cleanup(RERR_SIGNAL);
c627d613
AT
541}
542
d8b1c923 543/* Finish off a file transfer: renaming the file and setting the file's
83235dbc
WD
544 * attributes (e.g. permissions, ownership, etc.). If the robust_rename()
545 * call is forced to copy the temp file and partialptr is both non-NULL and
546 * not an absolute path, we stage the file into the partial-dir and then
547 * rename it into place. This returns 1 on succcess or 0 on failure. */
548int finish_transfer(const char *fname, const char *fnametmp,
549 const char *fnamecmp, const char *partialptr,
550 struct file_struct *file, int ok_to_set_time,
551 int overwriting_basis)
c95da96a 552{
62c9e6b3 553 int ret;
83235dbc 554 const char *temp_copy_name = partialptr && *partialptr != '/' ? partialptr : NULL;
62c9e6b3 555
a3221d2a 556 if (inplace) {
951e826b 557 if (DEBUG_GTE(RECV, 1))
45c49b52 558 rprintf(FINFO, "finishing %s\n", fname);
d8b1c923 559 fnametmp = fname;
36119f6e 560 goto do_set_file_attrs;
a3221d2a
WD
561 }
562
e9489cd6 563 if (make_backups > 0 && overwriting_basis) {
21cddef2
WD
564 int ok = make_backup(fname, False);
565 if (!ok)
e9489cd6 566 return 1;
21cddef2 567 if (ok == 1 && fnamecmp == fname)
4337eeb7 568 fnamecmp = get_backup_name(fname);
e9489cd6 569 }
e484f0cc 570
ebeacb36 571 /* Change permissions before putting the file into place. */
16edf865 572 set_file_attrs(fnametmp, file, NULL, fnamecmp,
36119f6e 573 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
ebeacb36 574
c95da96a 575 /* move tmp file over real file */
951e826b 576 if (DEBUG_GTE(RECV, 1))
45c49b52 577 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
83235dbc 578 ret = robust_rename(fnametmp, fname, temp_copy_name,
d8b1c923 579 file->mode & INITACCESSPERMS);
3d061653 580 if (ret < 0) {
3f0211b6 581 rsyserr(FERROR_XFER, errno, "%s %s -> \"%s\"",
45c49b52
WD
582 ret == -2 ? "copy" : "rename",
583 full_fname(fnametmp), fname);
83235dbc
WD
584 if (!partialptr || (ret == -2 && temp_copy_name)
585 || robust_rename(fnametmp, partialptr, NULL,
586 file->mode & INITACCESSPERMS) < 0)
587 do_unlink(fnametmp);
588 return 0;
c95da96a 589 }
ebeacb36
WD
590 if (ret == 0) {
591 /* The file was moved into place (not copied), so it's done. */
83235dbc 592 return 1;
ebeacb36 593 }
d8b1c923
WD
594 /* The file was copied, so tweak the perms of the copied file. If it
595 * was copied to partialptr, move it into its final destination. */
83235dbc 596 fnametmp = temp_copy_name ? temp_copy_name : fname;
d8b1c923 597
36119f6e 598 do_set_file_attrs:
16edf865 599 set_file_attrs(fnametmp, file, NULL, fnamecmp,
36119f6e 600 ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
d8b1c923 601
83235dbc 602 if (temp_copy_name) {
d8b1c923 603 if (do_rename(fnametmp, fname) < 0) {
3f0211b6 604 rsyserr(FERROR_XFER, errno, "rename %s -> \"%s\"",
d8b1c923 605 full_fname(fnametmp), fname);
83235dbc
WD
606 return 0;
607 }
608 handle_partial_dir(temp_copy_name, PDIR_DELETE);
d8b1c923 609 }
83235dbc 610 return 1;
c95da96a 611}
c3e5e585 612
e982d591 613struct file_list *flist_for_ndx(int ndx, const char *fatal_error_loc)
f3d6d480
WD
614{
615 struct file_list *flist = cur_flist;
616
87a34ce5 617 if (!flist && !(flist = first_flist))
e982d591 618 goto not_found;
f3d6d480 619
6755a7d7 620 while (ndx < flist->ndx_start-1) {
f3d6d480 621 if (flist == first_flist)
e982d591 622 goto not_found;
f3d6d480
WD
623 flist = flist->prev;
624 }
65b4e4b2 625 while (ndx >= flist->ndx_start + flist->used) {
f3d6d480 626 if (!(flist = flist->next))
e982d591 627 goto not_found;
f3d6d480
WD
628 }
629 return flist;
e982d591
WD
630
631 not_found:
632 if (fatal_error_loc) {
633 int first, last;
634 if (first_flist) {
635 first = first_flist->ndx_start - 1;
636 last = first_flist->prev->ndx_start + first_flist->prev->used - 1;
637 } else {
638 first = 0;
639 last = -1;
640 }
641 rprintf(FERROR,
642 "File-list index %d not in %d - %d (%s) [%s]\n",
643 ndx, first, last, fatal_error_loc, who_am_i());
644 exit_cleanup(RERR_PROTOCOL);
645 }
646 return NULL;
f3d6d480
WD
647}
648
c3e5e585
WD
649const char *who_am_i(void)
650{
ed9d969c 651 if (am_starting_up)
794b0a03 652 return am_server ? "server" : "client";
ebeacb36 653 return am_sender ? "sender" : am_generator ? "generator" : "receiver";
c3e5e585 654}