Make it clearer which configure files changed.
[rsync/rsync.git] / rsync.c
1 /*
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-2008 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 3 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  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, visit the http://fsf.org website.
20  */
21
22 #include "rsync.h"
23 #include "ifuncs.h"
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
29
30 extern int dry_run;
31 extern int preserve_acls;
32 extern int preserve_xattrs;
33 extern int preserve_perms;
34 extern int preserve_executability;
35 extern int preserve_times;
36 extern int am_root;
37 extern int am_server;
38 extern int am_sender;
39 extern int am_generator;
40 extern int am_starting_up;
41 extern int allow_8bit_chars;
42 extern int protocol_version;
43 extern int uid_ndx;
44 extern int gid_ndx;
45 extern int inc_recurse;
46 extern int inplace;
47 extern int flist_eof;
48 extern int msgs2stderr;
49 extern int keep_dirlinks;
50 extern int make_backups;
51 extern struct file_list *cur_flist, *first_flist, *dir_flist;
52 extern struct chmod_mode_struct *daemon_chmod_modes;
53 #ifdef ICONV_OPTION
54 extern char *iconv_opt;
55 #endif
56
57 #ifdef ICONV_CONST
58 iconv_t ic_chck = (iconv_t)-1;
59 # ifdef ICONV_OPTION
60 iconv_t ic_send = (iconv_t)-1, ic_recv = (iconv_t)-1;
61 # endif
62
63 static const char *default_charset(void)
64 {
65 # if defined HAVE_LIBCHARSET_H && defined HAVE_LOCALE_CHARSET
66         return locale_charset();
67 # elif defined HAVE_LANGINFO_H && defined HAVE_NL_LANGINFO
68         return nl_langinfo(CODESET);
69 # else
70         return ""; /* Works with (at the very least) gnu iconv... */
71 # endif
72 }
73
74 void setup_iconv(void)
75 {
76         const char *defset = default_charset();
77 # ifdef ICONV_OPTION
78         const char *charset;
79         char *cp;
80 # endif
81
82         if (!am_server && !allow_8bit_chars) {
83                 /* It's OK if this fails... */
84                 ic_chck = iconv_open(defset, defset);
85
86                 if (DEBUG_GTE(ICONV, 2)) {
87                         if (ic_chck == (iconv_t)-1) {
88                                 rprintf(FINFO,
89                                         "msg checking via isprint()"
90                                         " (iconv_open(\"%s\", \"%s\") errno: %d)\n",
91                                         defset, defset, errno);
92                         } else {
93                                 rprintf(FINFO,
94                                         "msg checking charset: %s\n",
95                                         defset);
96                         }
97                 }
98         } else
99                 ic_chck = (iconv_t)-1;
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
129         if (DEBUG_GTE(ICONV, 1)) {
130                 rprintf(FINFO, "[%s] charset: %s\n",
131                         who_am_i(), *charset ? charset : "[LOCALE]");
132         }
133 # endif
134 }
135
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. */
152 int 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 }
205 #endif
206
207 void send_protected_args(int fd, char *args[])
208 {
209         int i;
210 #ifdef ICONV_OPTION
211         int convert = ic_send != (iconv_t)-1;
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 */
220         if (DEBUG_GTE(CMD, 1))
221                 print_child_argv("protected args:", args + i + 1);
222         do {
223                 if (!args[i][0])
224                         write_buf(fd, ".", 2);
225 #ifdef ICONV_OPTION
226                 else if (convert) {
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;
233                 }
234 #endif
235                 else
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
246 int read_ndx_and_attrs(int f_in, int *iflag_ptr, uchar *type_ptr,
247                        char *buf, int *len_ptr)
248 {
249         int len, iflags = 0;
250         struct file_list *flist;
251         uchar fnamecmp_type = FNAMECMP_FNAME;
252         int ndx;
253
254   read_loop:
255         while (1) {
256                 ndx = read_ndx(f_in);
257
258                 if (ndx >= 0)
259                         break;
260                 if (ndx == NDX_DONE)
261                         return ndx;
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                 }
273                 if (ndx == NDX_FLIST_EOF) {
274                         flist_eof = 1;
275                         send_msg(MSG_FLIST_EOF, "", 0, 0);
276                         continue;
277                 }
278                 ndx = NDX_FLIST_OFFSET - ndx;
279                 if (ndx < 0 || ndx >= dir_flist->used) {
280                         ndx = NDX_FLIST_OFFSET - ndx;
281                         rprintf(FERROR,
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());
286                         exit_cleanup(RERR_PROTOCOL);
287                 }
288
289                 /* Send everything read from f_in to msg_fd_out. */
290                 if (DEBUG_GTE(FLIST, 2)) {
291                         rprintf(FINFO, "[%s] receiving flist for dir %d\n",
292                                 who_am_i(), ndx);
293                 }
294                 if (!msgs2stderr)
295                         negate_output_levels(); /* turn off all info/debug output */
296                 send_msg_int(MSG_FLIST, ndx);
297                 start_flist_forward(f_in);
298                 flist = recv_file_list(f_in);
299                 flist->parent_ndx = ndx;
300                 stop_flist_forward();
301                 if (!msgs2stderr)
302                         negate_output_levels(); /* restore info/debug output */
303         }
304
305         iflags = protocol_version >= 29 ? read_shortint(f_in)
306                    : ITEM_TRANSFER | ITEM_MISSING_DATA;
307
308         /* Honor the old-style keep-alive indicator. */
309         if (protocol_version < 30
310          && ndx == cur_flist->used && iflags == ITEM_IS_NEW) {
311                 if (am_sender)
312                         maybe_send_keepalive();
313                 goto read_loop;
314         }
315
316         cur_flist = flist_for_ndx(ndx, "read_ndx_and_attrs");
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) {
332                 int i = ndx - cur_flist->ndx_start;
333                 if (i < 0 || !S_ISREG(cur_flist->files[i]->mode)) {
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                 }
339         }
340
341         *iflag_ptr = iflags;
342         return ndx;
343 }
344
345 /*
346   free a sums struct
347   */
348 void free_sums(struct sum_struct *s)
349 {
350         if (s->sums) free(s->sums);
351         free(s);
352 }
353
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. */
356 mode_t dest_mode(mode_t flist_mode, mode_t stat_mode, int dflt_perms,
357                  int exists)
358 {
359         int new_mode;
360         /* If the file already exists, we'll return the local permissions,
361          * possibly tweaked by the --executability option. */
362         if (exists) {
363                 new_mode = (flist_mode & ~CHMOD_BITS) | (stat_mode & CHMOD_BITS);
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))
369                                 new_mode &= ~0111;
370                         else if (!(stat_mode & 0111))
371                                 new_mode |= (new_mode & 0444) >> 2;
372                 }
373         } else {
374                 /* Apply destination default permissions and turn
375                  * off special permissions. */
376                 new_mode = flist_mode & (~CHMOD_BITS | dflt_perms);
377         }
378         return new_mode;
379 }
380
381 int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp,
382                    const char *fnamecmp, int flags)
383 {
384         int updated = 0;
385         stat_x sx2;
386         int change_uid, change_gid;
387         mode_t new_mode = file->mode;
388         int inherit;
389
390         if (!sxp) {
391                 if (dry_run)
392                         return 1;
393                 if (link_stat(fname, &sx2.st, 0) < 0) {
394                         rsyserr(FERROR_XFER, errno, "stat %s failed",
395                                 full_fname(fname));
396                         return 0;
397                 }
398 #ifdef SUPPORT_ACLS
399                 sx2.acc_acl = sx2.def_acl = NULL;
400 #endif
401 #ifdef SUPPORT_XATTRS
402                 sx2.xattr = NULL;
403 #endif
404                 sxp = &sx2;
405                 inherit = !preserve_perms;
406         } else
407                 inherit = !preserve_perms && file->flags & FLAG_DIR_CREATED;
408
409         if (inherit && S_ISDIR(new_mode) && sxp->st.st_mode & S_ISGID) {
410                 /* We just created this directory and its setgid
411                  * bit is on, so make sure it stays on. */
412                 new_mode |= S_ISGID;
413         }
414
415         if (daemon_chmod_modes && !S_ISLNK(new_mode))
416                 new_mode = tweak_mode(new_mode, daemon_chmod_modes);
417
418 #ifdef SUPPORT_ACLS
419         if (preserve_acls && !S_ISLNK(file->mode) && !ACL_READY(*sxp))
420                 get_acl(fname, sxp);
421 #endif
422
423 #ifdef SUPPORT_XATTRS
424         if (am_root < 0)
425                 set_stat_xattr(fname, file, new_mode);
426         if (preserve_xattrs && fnamecmp)
427                 set_xattr(fname, file, fnamecmp, sxp);
428 #endif
429
430         if (!preserve_times || (S_ISDIR(sxp->st.st_mode) && preserve_times == 1))
431                 flags |= ATTRS_SKIP_MTIME;
432         if (!(flags & ATTRS_SKIP_MTIME)
433             && cmp_time(sxp->st.st_mtime, file->modtime) != 0) {
434                 int ret = set_modtime(fname, file->modtime, sxp->st.st_mode);
435                 if (ret < 0) {
436                         rsyserr(FERROR_XFER, errno, "failed to set times on %s",
437                                 full_fname(fname));
438                         goto cleanup;
439                 }
440                 if (ret == 0) /* ret == 1 if symlink could not be set */
441                         updated = 1;
442                 else
443                         file->flags |= FLAG_TIME_FAILED;
444         }
445
446         change_uid = am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file);
447         change_gid = gid_ndx && !(file->flags & FLAG_SKIP_GROUP)
448                   && sxp->st.st_gid != (gid_t)F_GROUP(file);
449 #if !defined HAVE_LCHOWN && !defined CHOWN_MODIFIES_SYMLINK
450         if (S_ISLNK(sxp->st.st_mode)) {
451                 ;
452         } else
453 #endif
454         if (change_uid || change_gid) {
455                 if (DEBUG_GTE(OWN, 1)) {
456                         if (change_uid) {
457                                 rprintf(FINFO,
458                                         "set uid of %s from %u to %u\n",
459                                         fname, (unsigned)sxp->st.st_uid, F_OWNER(file));
460                         }
461                         if (change_gid) {
462                                 rprintf(FINFO,
463                                         "set gid of %s from %u to %u\n",
464                                         fname, (unsigned)sxp->st.st_gid, F_GROUP(file));
465                         }
466                 }
467                 if (am_root >= 0) {
468                         if (do_lchown(fname,
469                             change_uid ? (uid_t)F_OWNER(file) : sxp->st.st_uid,
470                             change_gid ? (gid_t)F_GROUP(file) : sxp->st.st_gid) != 0) {
471                                 /* We shouldn't have attempted to change uid
472                                  * or gid unless have the privilege. */
473                                 rsyserr(FERROR_XFER, errno, "%s %s failed",
474                                     change_uid ? "chown" : "chgrp",
475                                     full_fname(fname));
476                                 goto cleanup;
477                         }
478                         /* A lchown had been done, so we need to re-stat if
479                          * the destination had the setuid or setgid bits set
480                          * (due to the side effect of the chown call). */
481                         if (sxp->st.st_mode & (S_ISUID | S_ISGID)) {
482                                 link_stat(fname, &sxp->st,
483                                           keep_dirlinks && S_ISDIR(sxp->st.st_mode));
484                         }
485                 }
486                 updated = 1;
487         }
488
489 #ifdef SUPPORT_ACLS
490         /* It's OK to call set_acl() now, even for a dir, as the generator
491          * will enable owner-writability using chmod, if necessary.
492          * 
493          * If set_acl() changes permission bits in the process of setting
494          * an access ACL, it changes sxp->st.st_mode so we know whether we
495          * need to chmod(). */
496         if (preserve_acls && !S_ISLNK(new_mode) && set_acl(fname, file, sxp) == 0)
497                 updated = 1;
498 #endif
499
500 #ifdef HAVE_CHMOD
501         if (!BITS_EQUAL(sxp->st.st_mode, new_mode, CHMOD_BITS)) {
502                 int ret = am_root < 0 ? 0 : do_chmod(fname, new_mode);
503                 if (ret < 0) {
504                         rsyserr(FERROR_XFER, errno,
505                                 "failed to set permissions on %s",
506                                 full_fname(fname));
507                         goto cleanup;
508                 }
509                 if (ret == 0) /* ret == 1 if symlink could not be set */
510                         updated = 1;
511         }
512 #endif
513
514         if (INFO_GTE(NAME, 2) && flags & ATTRS_REPORT) {
515                 if (updated)
516                         rprintf(FCLIENT, "%s\n", fname);
517                 else
518                         rprintf(FCLIENT, "%s is uptodate\n", fname);
519         }
520   cleanup:
521         if (sxp == &sx2) {
522 #ifdef SUPPORT_ACLS
523                 if (preserve_acls)
524                         free_acl(&sx2);
525 #endif
526 #ifdef SUPPORT_XATTRS
527                 if (preserve_xattrs)
528                         free_xattr(&sx2);
529 #endif
530         }
531         return updated;
532 }
533
534 RETSIGTYPE sig_int(UNUSED(int val))
535 {
536         /* KLUGE: if the user hits Ctrl-C while ssh is prompting
537          * for a password, then our cleanup's sending of a SIGUSR1
538          * signal to all our children may kill ssh before it has a
539          * chance to restore the tty settings (i.e. turn echo back
540          * on).  By sleeping for a short time, ssh gets a bigger
541          * chance to do the right thing.  If child processes are
542          * not ssh waiting for a password, then this tiny delay
543          * shouldn't hurt anything. */
544         msleep(400);
545         exit_cleanup(RERR_SIGNAL);
546 }
547
548 /* Finish off a file transfer: renaming the file and setting the file's
549  * attributes (e.g. permissions, ownership, etc.).  If the robust_rename()
550  * call is forced to copy the temp file and partialptr is both non-NULL and
551  * not an absolute path, we stage the file into the partial-dir and then
552  * rename it into place.  This returns 1 on succcess or 0 on failure. */
553 int finish_transfer(const char *fname, const char *fnametmp,
554                     const char *fnamecmp, const char *partialptr,
555                     struct file_struct *file, int ok_to_set_time,
556                     int overwriting_basis)
557 {
558         int ret;
559         const char *temp_copy_name = partialptr && *partialptr != '/' ? partialptr : NULL;
560
561         if (inplace) {
562                 if (DEBUG_GTE(RECV, 1))
563                         rprintf(FINFO, "finishing %s\n", fname);
564                 fnametmp = fname;
565                 goto do_set_file_attrs;
566         }
567
568         if (make_backups > 0 && overwriting_basis) {
569                 if (!make_backup(fname))
570                         return 1;
571                 if (fnamecmp == fname)
572                         fnamecmp = get_backup_name(fname);
573         }
574
575         /* Change permissions before putting the file into place. */
576         set_file_attrs(fnametmp, file, NULL, fnamecmp,
577                        ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
578
579         /* move tmp file over real file */
580         if (DEBUG_GTE(RECV, 1))
581                 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
582         ret = robust_rename(fnametmp, fname, temp_copy_name,
583                             file->mode & INITACCESSPERMS);
584         if (ret < 0) {
585                 rsyserr(FERROR_XFER, errno, "%s %s -> \"%s\"",
586                         ret == -2 ? "copy" : "rename",
587                         full_fname(fnametmp), fname);
588                 if (!partialptr || (ret == -2 && temp_copy_name)
589                  || robust_rename(fnametmp, partialptr, NULL,
590                                   file->mode & INITACCESSPERMS) < 0)
591                         do_unlink(fnametmp);
592                 return 0;
593         }
594         if (ret == 0) {
595                 /* The file was moved into place (not copied), so it's done. */
596                 return 1;
597         }
598         /* The file was copied, so tweak the perms of the copied file.  If it
599          * was copied to partialptr, move it into its final destination. */
600         fnametmp = temp_copy_name ? temp_copy_name : fname;
601
602   do_set_file_attrs:
603         set_file_attrs(fnametmp, file, NULL, fnamecmp,
604                        ok_to_set_time ? 0 : ATTRS_SKIP_MTIME);
605
606         if (temp_copy_name) {
607                 if (do_rename(fnametmp, fname) < 0) {
608                         rsyserr(FERROR_XFER, errno, "rename %s -> \"%s\"",
609                                 full_fname(fnametmp), fname);
610                         return 0;
611                 }
612                 handle_partial_dir(temp_copy_name, PDIR_DELETE);
613         }
614         return 1;
615 }
616
617 struct file_list *flist_for_ndx(int ndx, const char *fatal_error_loc)
618 {
619         struct file_list *flist = cur_flist;
620
621         if (!flist && !(flist = first_flist))
622                 goto not_found;
623
624         while (ndx < flist->ndx_start-1) {
625                 if (flist == first_flist)
626                         goto not_found;
627                 flist = flist->prev;
628         }
629         while (ndx >= flist->ndx_start + flist->used) {
630                 if (!(flist = flist->next))
631                         goto not_found;
632         }
633         return flist;
634
635   not_found:
636         if (fatal_error_loc) {
637                 int first, last;
638                 if (first_flist) {
639                         first = first_flist->ndx_start - 1;
640                         last = first_flist->prev->ndx_start + first_flist->prev->used - 1;
641                 } else {
642                         first = 0;
643                         last = -1;
644                 }
645                 rprintf(FERROR,
646                         "File-list index %d not in %d - %d (%s) [%s]\n",
647                         ndx, first, last, fatal_error_loc, who_am_i());
648                 exit_cleanup(RERR_PROTOCOL);
649         }
650         return NULL;
651 }
652
653 const char *who_am_i(void)
654 {
655         if (am_starting_up)
656                 return am_server ? "server" : "client";
657         return am_sender ? "sender" : am_generator ? "generator" : "receiver";
658 }