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