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