chiark / gitweb /
ev_reader and ev_writer now own the FDs you give them. This is
[disorder] / lib / event.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2004, 2005, 2007 Richard Kettlewell
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20 /** @file lib/event.c
21  * @brief DisOrder event loop
22  */
23
24 #include <config.h>
25
26 #include <unistd.h>
27 #include <fcntl.h>
28 #include <sys/time.h>
29 #include <sys/types.h>
30 #include <sys/resource.h>
31 #include <sys/wait.h>
32 #include <sys/stat.h>
33 #include <unistd.h>
34 #include <assert.h>
35 #include <signal.h>
36 #include <errno.h>
37 #include <string.h>
38 #include <limits.h>
39 #include <sys/socket.h>
40 #include <netinet/in.h>
41 #include <sys/un.h>
42 #include <stdio.h>
43 #include "event.h"
44 #include "mem.h"
45 #include "log.h"
46 #include "syscalls.h"
47 #include "printf.h"
48 #include "sink.h"
49 #include "vector.h"
50
51 /** @brief A timeout */
52 struct timeout {
53   struct timeout *next;
54   struct timeval when;
55   ev_timeout_callback *callback;
56   void *u;
57   int resolve;
58 };
59
60 /** @brief A file descriptor in one mode */
61 struct fd {
62   int fd;
63   ev_fd_callback *callback;
64   void *u;
65   const char *what;
66 };
67
68 /** @brief All the file descriptors in a given mode */
69 struct fdmode {
70   /** @brief Mask of active file descriptors passed to @c select() */
71   fd_set enabled;
72
73   /** @brief File descriptor mask returned from @c select() */
74   fd_set tripped;
75
76   /** @brief Number of file descriptors in @p fds */
77   int nfds;
78
79   /** @brief Number of slots in @p fds */
80   int fdslots;
81
82   /** @brief Array of all active file descriptors */
83   struct fd *fds;
84
85   /** @brief Highest-numbered file descriptor or 0 */
86   int maxfd;
87 };
88
89 /** @brief A signal handler */
90 struct signal {
91   struct sigaction oldsa;
92   ev_signal_callback *callback;
93   void *u;
94 };
95
96 /** @brief A child process */
97 struct child {
98   pid_t pid;
99   int options;
100   ev_child_callback *callback;
101   void *u;
102 };
103
104 /** @brief An event loop */
105 struct ev_source {
106   /** @brief File descriptors, per mode */
107   struct fdmode mode[ev_nmodes];
108
109   /** @brief Sorted linked list of timeouts
110    *
111    * We could use @ref HEAP_TYPE now, but there aren't many timeouts.
112    */
113   struct timeout *timeouts;
114
115   /** @brief Array of handled signals */
116   struct signal signals[NSIG];
117
118   /** @brief Mask of handled signals */
119   sigset_t sigmask;
120
121   /** @brief Escape early from handling of @c select() results
122    *
123    * This is set if any of the file descriptor arrays are invalidated, since
124    * it's then not safe for processing of them to continue.
125    */
126   int escape;
127
128   /** @brief Signal handling pipe
129    *
130    * The signal handle writes signal numbers down this pipe.
131    */
132   int sigpipe[2];
133
134   /** @brief Number of child processes in @p children */
135   int nchildren;
136
137   /** @brief Number of slots in @p children */
138   int nchildslots;
139
140   /** @brief Array of child processes */
141   struct child *children;
142 };
143
144 /** @brief Names of file descriptor modes */
145 static const char *modenames[] = { "read", "write", "except" };
146
147 /* utilities ******************************************************************/
148
149 /** @brief Great-than comparison for timevals
150  *
151  * Ought to be in @file lib/timeval.h
152  */
153 static inline int gt(const struct timeval *a, const struct timeval *b) {
154   if(a->tv_sec > b->tv_sec)
155     return 1;
156   if(a->tv_sec == b->tv_sec
157      && a->tv_usec > b->tv_usec)
158     return 1;
159   return 0;
160 }
161
162 /** @brief Greater-than-or-equal comparison for timevals
163  *
164  * Ought to be in @file lib/timeval.h
165  */
166 static inline int ge(const struct timeval *a, const struct timeval *b) {
167   return !gt(b, a);
168 }
169
170 /* creation *******************************************************************/
171
172 /** @brief Create a new event loop */
173 ev_source *ev_new(void) {
174   ev_source *ev = xmalloc(sizeof *ev);
175   int n;
176
177   memset(ev, 0, sizeof *ev);
178   for(n = 0; n < ev_nmodes; ++n)
179     FD_ZERO(&ev->mode[n].enabled);
180   ev->sigpipe[0] = ev->sigpipe[1] = -1;
181   sigemptyset(&ev->sigmask);
182   return ev;
183 }
184
185 /* event loop *****************************************************************/
186
187 /** @brief Run the event loop
188  * @return -1 on error, non-0 if any callback returned non-0
189  */
190 int ev_run(ev_source *ev) {
191   for(;;) {
192     struct timeval now;
193     struct timeval delta;
194     int n, mode;
195     int ret;
196     int maxfd;
197     struct timeout *t, **tt;
198     struct stat sb;
199
200     xgettimeofday(&now, 0);
201     /* Handle timeouts.  We don't want to handle any timeouts that are added
202      * while we're handling them (otherwise we'd have to break out of infinite
203      * loops, preferrably without starving better-behaved subsystems).  Hence
204      * the slightly complicated two-phase approach here. */
205     for(t = ev->timeouts;
206         t && ge(&now, &t->when);
207         t = t->next) {
208       t->resolve = 1;
209       D(("calling timeout for %ld.%ld callback %p %p",
210          (long)t->when.tv_sec, (long)t->when.tv_usec,
211          (void *)t->callback, t->u));
212       ret = t->callback(ev, &now, t->u);
213       if(ret)
214         return ret;
215     }
216     tt = &ev->timeouts;
217     while((t = *tt)) {
218       if(t->resolve)
219         *tt = t->next;
220       else
221         tt = &t->next;
222     }
223     maxfd = 0;
224     for(mode = 0; mode < ev_nmodes; ++mode) {
225       ev->mode[mode].tripped = ev->mode[mode].enabled;
226       if(ev->mode[mode].maxfd > maxfd)
227         maxfd = ev->mode[mode].maxfd;
228     }
229     xsigprocmask(SIG_UNBLOCK, &ev->sigmask, 0);
230     do {
231       if(ev->timeouts) {
232         xgettimeofday(&now, 0);
233         delta.tv_sec = ev->timeouts->when.tv_sec - now.tv_sec;
234         delta.tv_usec = ev->timeouts->when.tv_usec - now.tv_usec;
235         if(delta.tv_usec < 0) {
236           delta.tv_usec += 1000000;
237           --delta.tv_sec;
238         }
239         if(delta.tv_sec < 0)
240           delta.tv_sec = delta.tv_usec = 0;
241         n = select(maxfd + 1,
242                    &ev->mode[ev_read].tripped,
243                    &ev->mode[ev_write].tripped,
244                    &ev->mode[ev_except].tripped,
245                    &delta);
246       } else {
247         n = select(maxfd + 1,
248                    &ev->mode[ev_read].tripped,
249                    &ev->mode[ev_write].tripped,
250                    &ev->mode[ev_except].tripped,
251                    0);
252       }
253     } while(n < 0 && errno == EINTR);
254     xsigprocmask(SIG_BLOCK, &ev->sigmask, 0);
255     if(n < 0) {
256       error(errno, "error calling select");
257       if(errno == EBADF) {
258         /* If there's a bad FD in the mix then check them all and log what we
259          * find, to ease debugging */
260         for(mode = 0; mode < ev_nmodes; ++mode) {
261           for(n = 0; n < ev->mode[mode].nfds; ++n) {
262             const int fd = ev->mode[mode].fds[n].fd;
263
264             if(FD_ISSET(fd, &ev->mode[mode].enabled)
265                && fstat(fd, &sb) < 0)
266               error(errno, "mode %s fstat %d (%s)",
267                     modenames[mode], fd, ev->mode[mode].fds[n].what);
268           }
269           for(n = 0; n <= maxfd; ++n)
270             if(FD_ISSET(n, &ev->mode[mode].enabled)
271                && fstat(n, &sb) < 0)
272               error(errno, "mode %s fstat %d", modenames[mode], n);
273         }
274       }
275       return -1;
276     }
277     if(n > 0) {
278       /* if anything deranges the meaning of an fd, or re-orders the
279        * fds[] tables, we'd better give up; such operations will
280        * therefore set @escape@. */
281       ev->escape = 0;
282       for(mode = 0; mode < ev_nmodes && !ev->escape; ++mode)
283         for(n = 0; n < ev->mode[mode].nfds && !ev->escape; ++n) {
284           int fd = ev->mode[mode].fds[n].fd;
285           if(FD_ISSET(fd, &ev->mode[mode].tripped)) {
286             D(("calling %s fd %d callback %p %p", modenames[mode], fd,
287                (void *)ev->mode[mode].fds[n].callback,
288                ev->mode[mode].fds[n].u));
289             ret = ev->mode[mode].fds[n].callback(ev, fd,
290                                                  ev->mode[mode].fds[n].u);
291             if(ret)
292               return ret;
293           }
294         }
295     }
296     /* we'll pick up timeouts back round the loop */
297   }
298 }
299
300 /* file descriptors ***********************************************************/
301
302 /** @brief Register a file descriptor
303  * @param ev Event loop
304  * @param mode @c ev_read or @c ev_write
305  * @param fd File descriptor
306  * @param callback Called when @p is readable/writable
307  * @param u Passed to @p callback
308  * @param what Text description
309  * @return 0 on success, non-0 on error
310  *
311  * Sets @ref ev_source::escape, so no further processing of file descriptors
312  * will occur this time round the event loop.
313  */
314 int ev_fd(ev_source *ev,
315           ev_fdmode mode,
316           int fd,
317           ev_fd_callback *callback,
318           void *u,
319           const char *what) {
320   int n;
321
322   D(("registering %s fd %d callback %p %p", modenames[mode], fd,
323      (void *)callback, u));
324   assert(mode < ev_nmodes);
325   if(ev->mode[mode].nfds >= ev->mode[mode].fdslots) {
326     ev->mode[mode].fdslots = (ev->mode[mode].fdslots
327                                ? 2 * ev->mode[mode].fdslots : 16);
328     D(("expanding %s fd table to %d entries", modenames[mode],
329        ev->mode[mode].fdslots));
330     ev->mode[mode].fds = xrealloc(ev->mode[mode].fds,
331                                   ev->mode[mode].fdslots * sizeof (struct fd));
332   }
333   n = ev->mode[mode].nfds++;
334   FD_SET(fd, &ev->mode[mode].enabled);
335   ev->mode[mode].fds[n].fd = fd;
336   ev->mode[mode].fds[n].callback = callback;
337   ev->mode[mode].fds[n].u = u;
338   ev->mode[mode].fds[n].what = what;
339   if(fd > ev->mode[mode].maxfd)
340     ev->mode[mode].maxfd = fd;
341   ev->escape = 1;
342   return 0;
343 }
344
345 /** @brief Cancel a file descriptor
346  * @param ev Event loop
347  * @param mode @c ev_read or @c ev_write
348  * @param fd File descriptor
349  * @return 0 on success, non-0 on error
350  *
351  * Sets @ref ev_source::escape, so no further processing of file descriptors
352  * will occur this time round the event loop.
353  */
354 int ev_fd_cancel(ev_source *ev, ev_fdmode mode, int fd) {
355   int n;
356   int maxfd;
357
358   D(("cancelling mode %s fd %d", modenames[mode], fd));
359   /* find the right struct fd */
360   for(n = 0; n < ev->mode[mode].nfds && fd != ev->mode[mode].fds[n].fd; ++n)
361     ;
362   assert(n < ev->mode[mode].nfds);
363   /* swap in the last fd and reduce the count */
364   if(n != ev->mode[mode].nfds - 1)
365     ev->mode[mode].fds[n] = ev->mode[mode].fds[ev->mode[mode].nfds - 1];
366   --ev->mode[mode].nfds;
367   /* if that was the biggest fd, find the new biggest one */
368   if(fd == ev->mode[mode].maxfd) {
369     maxfd = 0;
370     for(n = 0; n < ev->mode[mode].nfds; ++n)
371       if(ev->mode[mode].fds[n].fd > maxfd)
372         maxfd = ev->mode[mode].fds[n].fd;
373     ev->mode[mode].maxfd = maxfd;
374   }
375   /* don't tell select about this fd any more */
376   FD_CLR(fd, &ev->mode[mode].enabled);
377   ev->escape = 1;
378   return 0;
379 }
380
381 /** @brief Re-enable a file descriptor
382  * @param ev Event loop
383  * @param mode @c ev_read or @c ev_write
384  * @param fd File descriptor
385  * @return 0 on success, non-0 on error
386  *
387  * It is harmless if @p fd is currently disabled, but it must not have been
388  * cancelled.
389  */
390 int ev_fd_enable(ev_source *ev, ev_fdmode mode, int fd) {
391   D(("enabling mode %s fd %d", modenames[mode], fd));
392   FD_SET(fd, &ev->mode[mode].enabled);
393   return 0;
394 }
395
396 /** @brief Temporarily disable a file descriptor
397  * @param ev Event loop
398  * @param mode @c ev_read or @c ev_write
399  * @param fd File descriptor
400  * @return 0 on success, non-0 on error
401  *
402  * Re-enable with ev_fd_enable().  It is harmless if @p fd is already disabled,
403  * but it must not have been cancelled.
404  */
405 int ev_fd_disable(ev_source *ev, ev_fdmode mode, int fd) {
406   D(("disabling mode %s fd %d", modenames[mode], fd));
407   FD_CLR(fd, &ev->mode[mode].enabled);
408   FD_CLR(fd, &ev->mode[mode].tripped);
409   /* Suppress any pending callbacks */
410   ev->escape = 1;
411   return 0;
412 }
413
414 /** @brief Log a report of file descriptor state */
415 void ev_report(ev_source *ev) {
416   int n, fd;
417   ev_fdmode mode;
418   struct dynstr d[1];
419   char b[4096];
420
421   dynstr_init(d);
422   for(mode = 0; mode < ev_nmodes; ++mode) {
423     info("mode %s maxfd %d", modenames[mode], ev->mode[mode].maxfd);
424     for(n = 0; n < ev->mode[mode].nfds; ++n) {
425       fd = ev->mode[mode].fds[n].fd;
426       info("fd %s %d%s%s (%s)", modenames[mode], fd,
427            FD_ISSET(fd, &ev->mode[mode].enabled) ? " enabled" : "",
428            FD_ISSET(fd, &ev->mode[mode].tripped) ? " tripped" : "",
429            ev->mode[mode].fds[n].what);
430     }
431     d->nvec = 0;
432     for(fd = 0; fd <= ev->mode[mode].maxfd; ++fd) {
433       if(!FD_ISSET(fd, &ev->mode[mode].enabled))
434         continue;
435       for(n = 0; n < ev->mode[mode].nfds; ++n) {
436         if(ev->mode[mode].fds[n].fd == fd)
437           break;
438       }
439       if(n < ev->mode[mode].nfds)
440         snprintf(b, sizeof b, "%d(%s)", fd, ev->mode[mode].fds[n].what);
441       else
442         snprintf(b, sizeof b, "%d", fd);
443       dynstr_append(d, ' ');
444       dynstr_append_string(d, b);
445     }
446     dynstr_terminate(d);
447     info("%s enabled:%s", modenames[mode], d->vec);
448   }
449 }
450
451 /* timeouts *******************************************************************/
452
453 /** @brief Register a timeout
454  * @param ev Event source
455  * @param handle Where to store timeout handle, or @c NULL
456  * @param when Earliest time to call @p callback, or @c NULL
457  * @param callback Function to call at or after @p when
458  * @param u Passed to @p callback
459  * @return 0 on success, non-0 on error
460  *
461  * If @p when is a null pointer then a time of 0 is assumed.  The effect is to
462  * call the timeout handler from ev_run() next time around the event loop.
463  * This is used internally to schedule various operations if it is not
464  * convenient to call them from the current place in the call stack, or
465  * externally to ensure that other clients of the event loop get a look in when
466  * performing some lengthy operation.
467  */
468 int ev_timeout(ev_source *ev,
469                ev_timeout_handle *handlep,
470                const struct timeval *when,
471                ev_timeout_callback *callback,
472                void *u) {
473   struct timeout *t, *p, **pp;
474
475   D(("registering timeout at %ld.%ld callback %p %p",
476      when ? (long)when->tv_sec : 0, when ? (long)when->tv_usec : 0,
477      (void *)callback, u));
478   t = xmalloc(sizeof *t);
479   if(when)
480     t->when = *when;
481   t->callback = callback;
482   t->u = u;
483   pp = &ev->timeouts;
484   while((p = *pp) && gt(&t->when, &p->when))
485     pp = &p->next;
486   t->next = p;
487   *pp = t;
488   if(handlep)
489     *handlep = t;
490   return 0;
491 }
492
493 /** @brief Cancel a timeout
494  * @param ev Event loop
495  * @param handle Handle returned from ev_timeout(), or 0
496  * @return 0 on success, non-0 on error
497  *
498  * If @p handle is 0 then this is a no-op.
499  */
500 int ev_timeout_cancel(ev_source *ev,
501                       ev_timeout_handle handle) {
502   struct timeout *t = handle, *p, **pp;
503
504   if(!t)
505     return 0;
506   for(pp = &ev->timeouts; (p = *pp) && p != t; pp = &p->next)
507     ;
508   if(p) {
509     *pp = p->next;
510     return 0;
511   } else
512     return -1;
513 }
514
515 /* signals ********************************************************************/
516
517 /** @brief Mapping of signals to pipe write ends
518  *
519  * The pipes are per-event loop, it's possible in theory for there to be
520  * multiple event loops (e.g. in different threads), although in fact DisOrder
521  * does not do this.
522  */
523 static int sigfd[NSIG];
524
525 /** @brief The signal handler
526  * @param s Signal number
527  *
528  * Writes to @c sigfd[s].
529  */
530 static void sighandler(int s) {
531   unsigned char sc = s;
532   static const char errmsg[] = "error writing to signal pipe";
533
534   /* probably the reader has stopped listening for some reason */
535   if(write(sigfd[s], &sc, 1) < 0) {
536     write(2, errmsg, sizeof errmsg - 1);
537     abort();
538   }
539 }
540
541 /** @brief Read callback for signals */
542 static int signal_read(ev_source *ev,
543                        int attribute((unused)) fd,
544                        void attribute((unused)) *u) {
545   unsigned char s;
546   int n;
547   int ret;
548
549   if((n = read(ev->sigpipe[0], &s, 1)) == 1)
550     if((ret = ev->signals[s].callback(ev, s, ev->signals[s].u)))
551       return ret;
552   assert(n != 0);
553   if(n < 0 && (errno != EINTR && errno != EAGAIN)) {
554     error(errno, "error reading from signal pipe %d", ev->sigpipe[0]);
555     return -1;
556   }
557   return 0;
558 }
559
560 /** @brief Close the signal pipe */
561 static void close_sigpipe(ev_source *ev) {
562   int save_errno = errno;
563
564   xclose(ev->sigpipe[0]);
565   xclose(ev->sigpipe[1]);
566   ev->sigpipe[0] = ev->sigpipe[1] = -1;
567   errno = save_errno;
568 }
569
570 /** @brief Register a signal handler
571  * @param ev Event loop
572  * @param sig Signal to handle
573  * @param callback Called when signal is delivered
574  * @param u Passed to @p callback
575  * @return 0 on success, non-0 on error
576  *
577  * Note that @p callback is called from inside ev_run(), not from inside the
578  * signal handler, so the usual restrictions on signal handlers do not apply.
579  */
580 int ev_signal(ev_source *ev,
581               int sig,
582               ev_signal_callback *callback,
583               void *u) {
584   int n;
585   struct sigaction sa;
586
587   D(("registering signal %d handler callback %p %p", sig, (void *)callback, u));
588   assert(sig > 0);
589   assert(sig < NSIG);
590   assert(sig <= UCHAR_MAX);
591   if(ev->sigpipe[0] == -1) {
592     D(("creating signal pipe"));
593     xpipe(ev->sigpipe);
594     D(("signal pipe is %d, %d", ev->sigpipe[0], ev->sigpipe[1]));
595     for(n = 0; n < 2; ++n) {
596       nonblock(ev->sigpipe[n]);
597       cloexec(ev->sigpipe[n]);
598     }
599     if(ev_fd(ev, ev_read, ev->sigpipe[0], signal_read, 0, "sigpipe read")) {
600       close_sigpipe(ev);
601       return -1;
602     }
603   }
604   sigaddset(&ev->sigmask, sig);
605   xsigprocmask(SIG_BLOCK, &ev->sigmask, 0);
606   sigfd[sig] = ev->sigpipe[1];
607   ev->signals[sig].callback = callback;
608   ev->signals[sig].u = u;
609   sa.sa_handler = sighandler;
610   sigfillset(&sa.sa_mask);
611   sa.sa_flags = SA_RESTART;
612   xsigaction(sig, &sa, &ev->signals[sig].oldsa);
613   ev->escape = 1;
614   return 0;
615 }
616
617 /** @brief Cancel a signal handler
618  * @param ev Event loop
619  * @param sig Signal to cancel
620  * @return 0 on success, non-0 on error
621  */
622 int ev_signal_cancel(ev_source *ev,
623                      int sig) {
624   sigset_t ss;
625
626   xsigaction(sig, &ev->signals[sig].oldsa, 0);
627   ev->signals[sig].callback = 0;
628   ev->escape = 1;
629   sigdelset(&ev->sigmask, sig);
630   sigemptyset(&ss);
631   sigaddset(&ss, sig);
632   xsigprocmask(SIG_UNBLOCK, &ss, 0);
633   return 0;
634 }
635
636 /** @brief Clean up signal handling
637  * @param ev Event loop
638  *
639  * This function can be called from inside a fork.  It restores signal
640  * handlers, unblocks the signals, and closes the signal pipe for @p ev.
641  */
642 void ev_signal_atfork(ev_source *ev) {
643   int sig;
644
645   if(ev->sigpipe[0] != -1) {
646     /* revert any handled signals to their original state */
647     for(sig = 1; sig < NSIG; ++sig) {
648       if(ev->signals[sig].callback != 0)
649         xsigaction(sig, &ev->signals[sig].oldsa, 0);
650     }
651     /* and then unblock them */
652     xsigprocmask(SIG_UNBLOCK, &ev->sigmask, 0);
653     /* don't want a copy of the signal pipe open inside the fork */
654     xclose(ev->sigpipe[0]);
655     xclose(ev->sigpipe[1]);
656   }
657 }
658
659 /* child processes ************************************************************/
660
661 /** @brief Called on SIGCHLD */
662 static int sigchld_callback(ev_source *ev,
663                             int attribute((unused)) sig,
664                             void attribute((unused)) *u) {
665   struct rusage ru;
666   pid_t r;
667   int status, n, ret, revisit;
668
669   do {
670     revisit = 0;
671     for(n = 0; n < ev->nchildren; ++n) {
672       r = wait4(ev->children[n].pid,
673                 &status,
674                 ev->children[n].options | WNOHANG,
675                 &ru);
676       if(r > 0) {
677         ev_child_callback *c = ev->children[n].callback;
678         void *cu = ev->children[n].u;
679
680         if(WIFEXITED(status) || WIFSIGNALED(status))
681           ev_child_cancel(ev, r);
682         revisit = 1;
683         if((ret = c(ev, r, status, &ru, cu)))
684           return ret;
685       } else if(r < 0) {
686         /* We should "never" get an ECHILD but it can in fact happen.  For
687          * instance on Linux 2.4.31, and probably other versions, if someone
688          * straces a child process and then a different child process
689          * terminates, when we wait4() the trace process we will get ECHILD
690          * because it has been reparented to strace.  Obviously this is a
691          * hopeless design flaw in the tracing infrastructure, but we don't
692          * want the disorder server to bomb out because of it.  So we just log
693          * the problem and ignore it.
694          */
695         error(errno, "error calling wait4 for PID %lu (broken ptrace?)",
696               (unsigned long)ev->children[n].pid);
697         if(errno != ECHILD)
698           return -1;
699       }
700     }
701   } while(revisit);
702   return 0;
703 }
704
705 /** @brief Configure event loop for child process handling
706  * @return 0 on success, non-0 on error
707  *
708  * Currently at most one event loop can handle child processes and it must be
709  * distinguished from others by calling this function on it.  This could be
710  * fixed but since no process ever makes use of more than one event loop there
711  * is no need.
712  */
713 int ev_child_setup(ev_source *ev) {
714   D(("installing SIGCHLD handler"));
715   return ev_signal(ev, SIGCHLD, sigchld_callback, 0);
716 }
717
718 /** @brief Wait for a child process to terminate
719  * @param ev Event loop
720  * @param pid Process ID of child
721  * @param options Options to pass to @c wait4()
722  * @param callback Called when child terminates (or possibly when it stops)
723  * @param u Passed to @p callback
724  * @return 0 on success, non-0 on error
725  *
726  * You must have called ev_child_setup() on @p ev once first.
727  */
728 int ev_child(ev_source *ev,
729              pid_t pid,
730              int options,
731              ev_child_callback *callback,
732              void *u) {
733   int n;
734
735   D(("registering child handling %ld options %d callback %p %p",
736      (long)pid, options, (void *)callback, u));
737   assert(ev->signals[SIGCHLD].callback == sigchld_callback);
738   if(ev->nchildren >= ev->nchildslots) {
739     ev->nchildslots = ev->nchildslots ? 2 * ev->nchildslots : 16;
740     ev->children = xrealloc(ev->children,
741                             ev->nchildslots * sizeof (struct child));
742   }
743   n = ev->nchildren++;
744   ev->children[n].pid = pid;
745   ev->children[n].options = options;
746   ev->children[n].callback = callback;
747   ev->children[n].u = u;
748   return 0;
749 }
750
751 /** @brief Stop waiting for a child process
752  * @param ev Event loop
753  * @param pid Child process ID
754  * @return 0 on success, non-0 on error
755  */ 
756 int ev_child_cancel(ev_source *ev,
757                     pid_t pid) {
758   int n;
759
760   for(n = 0; n < ev->nchildren && ev->children[n].pid != pid; ++n)
761     ;
762   assert(n < ev->nchildren);
763   if(n != ev->nchildren - 1)
764     ev->children[n] = ev->children[ev->nchildren - 1];
765   --ev->nchildren;
766   return 0;
767 }
768
769 /* socket listeners ***********************************************************/
770
771 /** @brief State for a socket listener */
772 struct listen_state {
773   ev_listen_callback *callback;
774   void *u;
775 };
776
777 /** @brief Called when a listenign socket is readable */
778 static int listen_callback(ev_source *ev, int fd, void *u) {
779   const struct listen_state *l = u;
780   int newfd;
781   union {
782     struct sockaddr_in in;
783 #if HAVE_STRUCT_SOCKADDR_IN6
784     struct sockaddr_in6 in6;
785 #endif
786     struct sockaddr_un un;
787     struct sockaddr sa;
788   } addr;
789   socklen_t addrlen;
790   int ret;
791
792   D(("callback for listener fd %d", fd));
793   while((addrlen = sizeof addr),
794         (newfd = accept(fd, &addr.sa, &addrlen)) >= 0) {
795     if((ret = l->callback(ev, newfd, &addr.sa, addrlen, l->u)))
796       return ret;
797   }
798   switch(errno) {
799   case EINTR:
800   case EAGAIN:
801     break;
802 #ifdef ECONNABORTED
803   case ECONNABORTED:
804     error(errno, "error calling accept");
805     break;
806 #endif
807 #ifdef EPROTO
808   case EPROTO:
809     /* XXX on some systems EPROTO should be fatal, but we don't know if
810      * we're running on one of them */
811     error(errno, "error calling accept");
812     break;
813 #endif
814   default:
815     fatal(errno, "error calling accept");
816     break;
817   }
818   if(errno != EINTR && errno != EAGAIN)
819     error(errno, "error calling accept");
820   return 0;
821 }
822
823 /** @brief Listen on a socket for inbound stream connections
824  * @param ev Event source
825  * @param fd File descriptor of socket
826  * @param callback Called when a new connection arrives
827  * @param u Passed to @p callback
828  * @param what Text description of socket
829  * @return 0 on success, non-0 on error
830  */
831 int ev_listen(ev_source *ev,
832               int fd,
833               ev_listen_callback *callback,
834               void *u,
835               const char *what) {
836   struct listen_state *l = xmalloc(sizeof *l);
837
838   D(("registering listener fd %d callback %p %p", fd, (void *)callback, u));
839   l->callback = callback;
840   l->u = u;
841   return ev_fd(ev, ev_read, fd, listen_callback, l, what);
842 }
843
844 /** @brief Stop listening on a socket
845  * @param ev Event loop
846  * @param fd File descriptor of socket
847  * @return 0 on success, non-0 on error
848  */ 
849 int ev_listen_cancel(ev_source *ev, int fd) {
850   D(("cancelling listener fd %d", fd));
851   return ev_fd_cancel(ev, ev_read, fd);
852 }
853
854 /* buffer *********************************************************************/
855
856 /** @brief Buffer structure */
857 struct buffer {
858   char *base, *start, *end, *top;
859 };
860
861 /* @brief Make sure there is @p bytes available at @c b->end */
862 static void buffer_space(struct buffer *b, size_t bytes) {
863   D(("buffer_space %p %p %p %p want %lu",
864      (void *)b->base, (void *)b->start, (void *)b->end, (void *)b->top,
865      (unsigned long)bytes));
866   if(b->start == b->end)
867     b->start = b->end = b->base;
868   if((size_t)(b->top - b->end) < bytes) {
869     if((size_t)((b->top - b->end) + (b->start - b->base)) < bytes) {
870       size_t newspace = b->end - b->start + bytes, n;
871       char *newbase;
872
873       for(n = 16; n < newspace; n *= 2)
874         ;
875       newbase = xmalloc_noptr(n);
876       memcpy(newbase, b->start, b->end - b->start);
877       b->base = newbase;
878       b->end = newbase + (b->end - b->start);
879       b->top = newbase + n;
880       b->start = newbase;               /* must be last */
881     } else {
882       memmove(b->base, b->start, b->end - b->start);
883       b->end = b->base + (b->end - b->start);
884       b->start = b->base;
885     }
886   }
887   D(("result %p %p %p %p",
888      (void *)b->base, (void *)b->start, (void *)b->end, (void *)b->top));
889 }
890
891 /* readers and writers *******************************************************/
892
893 /** @brief State structure for a buffered writer */
894 struct ev_writer {
895   /** @brief Sink used for writing to the buffer */
896   struct sink s;
897
898   /** @brief Output buffer */
899   struct buffer b;
900
901   /** @brief File descriptor to write to */
902   int fd;
903
904   /** @brief Set if there'll be no more output */
905   int eof;
906
907   /** @brief Error/termination callback */
908   ev_error_callback *callback;
909
910   /** @brief Passed to @p callback */
911   void *u;
912
913   /** @brief Parent event source */
914   ev_source *ev;
915
916   /** @brief Maximum amount of time between succesful writes, 0 = don't care */
917   int timebound;
918   /** @brief Maximum amount of data to buffer, 0 = don't care */
919   int spacebound;
920   /** @brief Error code to pass to @p callback (see writer_shutdown()) */
921   int error;
922   /** @brief Timeout handle for @p timebound (or 0) */
923   ev_timeout_handle timeout;
924
925   /** @brief Description of this writer */
926   const char *what;
927
928   /** @brief Tied reader or 0 */
929   ev_reader *reader;
930 };
931
932 /** @brief State structure for a buffered reader */
933 struct ev_reader {
934   /** @brief Input buffer */
935   struct buffer b;
936   /** @brief File descriptor read from */
937   int fd;
938   /** @brief Called when new data is available */
939   ev_reader_callback *callback;
940   /** @brief Called on error and shutdown */
941   ev_error_callback *error_callback;
942   /** @brief Passed to @p callback and @p error_callback */
943   void *u;
944   /** @brief Parent event loop */
945   ev_source *ev;
946   /** @brief Set when EOF is detected */
947   int eof;
948   /** @brief Error code to pass to error callback */
949   int error;
950   /** @brief Tied writer or NULL */
951   ev_writer *writer;
952 };
953
954 /* buffered writer ************************************************************/
955
956 /** @brief Shut down the writer
957  *
958  * This is called to shut down a writer.  The error callback is not called
959  * through any other path.  Also we do not cancel @p fd from anywhere else,
960  * though we might disable it.
961  *
962  * It has the signature of a timeout callback so that it can be called from a
963  * time=0 timeout.
964  *
965  * Calls @p callback with @p w->syntherr as the error code (which might be 0).
966  */
967 static int writer_shutdown(ev_source *ev,
968                            const attribute((unused)) struct timeval *now,
969                            void *u) {
970   ev_writer *w = u;
971
972   if(w->fd == -1)
973     return 0;                           /* already shut down */
974   info("writer_shutdown fd=%d", w->fd);
975   ev_timeout_cancel(ev, w->timeout);
976   ev_fd_cancel(ev, ev_write, w->fd);
977   w->timeout = 0;
978   if(w->reader) {
979     /* If there is a reader still around we just untie it */
980     w->reader->writer = 0;
981     shutdown(w->fd, SHUT_WR);           /* there'll be no more writes */
982   } else {
983     /* There's no reader so we are free to close the FD */
984     xclose(w->fd);
985   }
986   w->fd = -1;
987   return w->callback(ev, w->error, w->u);
988 }
989
990 /** @brief Called when a writer's @p timebound expires */
991 static int writer_timebound_exceeded(ev_source *ev,
992                                      const struct timeval *now,
993                                      void *u) {
994   ev_writer *const w = u;
995
996   error(0, "abandoning writer %s because no writes within %ds",
997         w->what, w->timebound);
998   w->error = ETIMEDOUT;
999   return writer_shutdown(ev, now, u);
1000 }
1001
1002 /** @brief Set the time bound callback (if not set already) */
1003 static void writer_set_timebound(ev_writer *w) {
1004   if(w->timebound && !w->timeout) {
1005     struct timeval when;
1006     ev_source *const ev = w->ev;
1007     
1008     xgettimeofday(&when, 0);
1009     when.tv_sec += w->timebound;
1010     ev_timeout(ev, &w->timeout, &when, writer_timebound_exceeded, w);
1011   }
1012 }
1013
1014 /** @brief Called when a writer's file descriptor is writable */
1015 static int writer_callback(ev_source *ev, int fd, void *u) {
1016   ev_writer *const w = u;
1017   int n;
1018
1019   n = write(fd, w->b.start, w->b.end - w->b.start);
1020   D(("callback for writer fd %d, %ld bytes, n=%d, errno=%d",
1021      fd, (long)(w->b.end - w->b.start), n, errno));
1022   if(n >= 0) {
1023     /* Consume bytes from the buffer */
1024     w->b.start += n;
1025     /* Suppress any outstanding timeout */
1026     ev_timeout_cancel(ev, w->timeout);
1027     w->timeout = 0;
1028     if(w->b.start == w->b.end) {
1029       /* The buffer is empty */
1030       if(w->eof) {
1031         /* We're done, we can shut down this writer */
1032         w->error = 0;
1033         return writer_shutdown(ev, 0, w);
1034       } else
1035         /* There might be more to come but we don't need writer_callback() to
1036          * be called for the time being */
1037         ev_fd_disable(ev, ev_write, fd);
1038     } else
1039       /* The buffer isn't empty, set a timeout so we give up if we don't manage
1040        * to write some more within a reasonable time */
1041       writer_set_timebound(w);
1042   } else {
1043     switch(errno) {
1044     case EINTR:
1045     case EAGAIN:
1046       break;
1047     default:
1048       w->error = errno;
1049       return writer_shutdown(ev, 0, w);
1050     }
1051   }
1052   return 0;
1053 }
1054
1055 /** @brief Write bytes to a writer's buffer
1056  *
1057  * This is the sink write callback.
1058  *
1059  * Calls ev_fd_enable() if necessary (i.e. if the buffer was empty but
1060  * now is not).
1061  */
1062 static int ev_writer_write(struct sink *sk, const void *s, int n) {
1063   ev_writer *w = (ev_writer *)sk;
1064
1065   if(!n)
1066     return 0;                           /* avoid silliness */
1067   if(w->spacebound && w->b.end - w->b.start + n > w->spacebound) {
1068     /* The new buffer contents will exceed the space bound.  We assume that the
1069      * remote client has gone away and TCP hasn't noticed yet, or that it's got
1070      * hopelessly stuck. */
1071     error(0, "abandoning writer %s because buffer has reached %td bytes",
1072           w->what, w->b.end - w->b.start);
1073     ev_fd_disable(w->ev, ev_write, w->fd);
1074     w->error = EPIPE;
1075     return ev_timeout(w->ev, 0, 0, writer_shutdown, w);
1076   }
1077   /* Make sure there is space */
1078   buffer_space(&w->b, n);
1079   /* If the buffer was formerly empty then we'll need to re-enable the FD */
1080   if(w->b.start == w->b.end)
1081     ev_fd_enable(w->ev, ev_write, w->fd);
1082   memcpy(w->b.end, s, n);
1083   w->b.end += n;
1084   /* Arrange a timeout if there wasn't one set already */
1085   writer_set_timebound(w);
1086   return 0;
1087 }
1088
1089 /** @brief Create a new buffered writer
1090  * @param ev Event loop
1091  * @param fd File descriptor to write to
1092  * @param callback Called if an error occurs and when finished
1093  * @param u Passed to @p callback
1094  * @param what Text description
1095  * @return New writer or @c NULL
1096  *
1097  * Writers own their file descriptor and close it when they have finished with
1098  * it.
1099  *
1100  * If you pass the same fd to a reader and writer, you must tie them together
1101  * with ev_tie().
1102  */ 
1103 ev_writer *ev_writer_new(ev_source *ev,
1104                          int fd,
1105                          ev_error_callback *callback,
1106                          void *u,
1107                          const char *what) {
1108   ev_writer *w = xmalloc(sizeof *w);
1109
1110   D(("registering writer fd %d callback %p %p", fd, (void *)callback, u));
1111   w->s.write = ev_writer_write;
1112   w->fd = fd;
1113   w->callback = callback;
1114   w->u = u;
1115   w->ev = ev;
1116   w->timebound = 10 * 60;
1117   w->spacebound = 512 * 1024;
1118   w->what = what;
1119   if(ev_fd(ev, ev_write, fd, writer_callback, w, what))
1120     return 0;
1121   /* Buffer is initially empty so we don't want a callback */
1122   ev_fd_disable(ev, ev_write, fd);
1123   return w;
1124 }
1125
1126 /** @brief Get/set the time bound
1127  * @param w Writer
1128  * @param new_time_bound New bound or -1 for no change
1129  * @return Latest time bound
1130  *
1131  * If @p new_time_bound is negative then the current time bound is returned.
1132  * Otherwise it is set and the new value returned.
1133  *
1134  * The time bound is the number of seconds allowed between writes.  If it takes
1135  * longer than this to flush a buffer then the peer will be assumed to be dead
1136  * and an error will be synthesized.  0 means "don't care".  The default time
1137  * bound is 10 minutes.
1138  *
1139  * Note that this value does not take into account kernel buffering and
1140  * timeouts.
1141  */
1142 int ev_writer_time_bound(ev_writer *w,
1143                          int new_time_bound) {
1144   if(new_time_bound >= 0)
1145     w->timebound = new_time_bound;
1146   return w->timebound;
1147 }
1148
1149 /** @brief Get/set the space bound
1150  * @param w Writer
1151  * @param new_space_bound New bound or -1 for no change
1152  * @return Latest space bound
1153  *
1154  * If @p new_space_bound is negative then the current space bound is returned.
1155  * Otherwise it is set and the new value returned.
1156  *
1157  * The space bound is the number of bytes allowed between in the buffer.  If
1158  * the buffer exceeds this size an error will be synthesized.  0 means "don't
1159  * care".  The default space bound is 512Kbyte.
1160  *
1161  * Note that this value does not take into account kernel buffering.
1162  */
1163 int ev_writer_space_bound(ev_writer *w,
1164                           int new_space_bound) {
1165   if(new_space_bound >= 0)
1166     w->spacebound = new_space_bound;
1167   return w->spacebound;
1168 }
1169
1170 /** @brief Return the sink associated with a writer
1171  * @param w Writer
1172  * @return Pointer to sink
1173  *
1174  * Writing to the sink will arrange for those bytes to be written to the file
1175  * descriptor as and when it is writable.
1176  */
1177 struct sink *ev_writer_sink(ev_writer *w) {
1178   if(!w)
1179     fatal(0, "ev_write_sink called with null writer");
1180   return &w->s;
1181 }
1182
1183 /** @brief Close a writer
1184  * @param w Writer to close
1185  * @return 0 on success, non-0 on error
1186  *
1187  * Close a writer.  No more bytes should be written to its sink.
1188  *
1189  * When the last byte has been written the callback will be called with an
1190  * error code of 0.  It is guaranteed that this will NOT happen before
1191  * ev_writer_close() returns (although the file descriptor for the writer might
1192  * be cancelled by the time it returns).
1193  */
1194 int ev_writer_close(ev_writer *w) {
1195   D(("close writer fd %d", w->fd));
1196   if(w->eof)
1197     return 0;                           /* already closed */
1198   w->eof = 1;
1199   if(w->b.start == w->b.end) {
1200     /* We're already finished */
1201     w->error = 0;                       /* no error */
1202     return ev_timeout(w->ev, 0, 0, writer_shutdown, w);
1203   }
1204   return 0;
1205 }
1206
1207 /** @brief Attempt to flush a writer
1208  * @param w Writer to flush
1209  * @return 0 on success, non-0 on error
1210  *
1211  * Does a speculative write of any buffered data.  Does not block if it cannot
1212  * be written.
1213  */
1214 int ev_writer_flush(ev_writer *w) {
1215   return writer_callback(w->ev, w->fd, w);
1216 }
1217
1218 /* buffered reader ************************************************************/
1219
1220 /** @brief Shut down a reader*
1221  *
1222  * This is the only path through which we cancel and close the file descriptor.
1223  * As with the writer case it is given timeout signature to allow it be
1224  * deferred to the next iteration of the event loop.
1225  *
1226  * We only call @p error_callback if @p error is nonzero (unlike the writer
1227  * case).
1228  */
1229 static int reader_shutdown(ev_source *ev,
1230                            const attribute((unused)) struct timeval *now,
1231                            void *u) {
1232   ev_reader *const r = u;
1233
1234   if(r->fd == -1)
1235     return 0;                           /* already shut down */
1236   info("reader_shutdown fd=%d", r->fd);
1237   ev_fd_cancel(ev, ev_read, r->fd);
1238   r->eof = 1;
1239   if(r->writer) {
1240     /* If there is a writer still around we just untie it */
1241     r->writer->reader = 0;
1242     shutdown(r->fd, SHUT_RD);           /* there'll be no more reads */
1243   } else {
1244     /* There's no writer so we are free to close the FD */
1245     xclose(r->fd);
1246   }
1247   r->fd = -1;
1248   if(r->error)
1249     return r->error_callback(ev, r->error, r->u);
1250   else
1251     return 0;
1252 }
1253
1254 /** @brief Called when a reader's @p fd is readable */
1255 static int reader_callback(ev_source *ev, int fd, void *u) {
1256   ev_reader *r = u;
1257   int n;
1258
1259   buffer_space(&r->b, 1);
1260   n = read(fd, r->b.end, r->b.top - r->b.end);
1261   D(("read fd %d buffer %d returned %d errno %d",
1262      fd, (int)(r->b.top - r->b.end), n, errno));
1263   if(n > 0) {
1264     r->b.end += n;
1265     return r->callback(ev, r, r->b.start, r->b.end - r->b.start, 0, r->u);
1266   } else if(n == 0) {
1267     /* No more read callbacks needed */
1268     ev_fd_disable(r->ev, ev_read, r->fd);
1269     ev_timeout(r->ev, 0, 0, reader_shutdown, r);
1270     /* Pass the remaining data and an eof indicator to the user */
1271     return r->callback(ev, r, r->b.start, r->b.end - r->b.start, 1, r->u);
1272   } else {
1273     switch(errno) {
1274     case EINTR:
1275     case EAGAIN:
1276       break;
1277     default:
1278       /* Fatal error, kill the reader now */
1279       r->error = errno;
1280       return reader_shutdown(ev, 0, r);
1281     }
1282   }
1283   return 0;
1284 }
1285
1286 /** @brief Create a new buffered reader
1287  * @param ev Event loop
1288  * @param fd File descriptor to read from
1289  * @param callback Called when new data is available
1290  * @param error_callback Called if an error occurs
1291  * @param u Passed to callbacks
1292  * @param what Text description
1293  * @return New reader or @c NULL
1294  *
1295  * Readers own their fd and close it when they are finished with it.
1296  *
1297  * If you pass the same fd to a reader and writer, you must tie them together
1298  * with ev_tie().
1299  */
1300 ev_reader *ev_reader_new(ev_source *ev,
1301                          int fd,
1302                          ev_reader_callback *callback,
1303                          ev_error_callback *error_callback,
1304                          void *u,
1305                          const char *what) {
1306   ev_reader *r = xmalloc(sizeof *r);
1307
1308   D(("registering reader fd %d callback %p %p %p",
1309      fd, (void *)callback, (void *)error_callback, u));
1310   r->fd = fd;
1311   r->callback = callback;
1312   r->error_callback = error_callback;
1313   r->u = u;
1314   r->ev = ev;
1315   if(ev_fd(ev, ev_read, fd, reader_callback, r, what))
1316     return 0;
1317   return r;
1318 }
1319
1320 void ev_reader_buffer(ev_reader *r, size_t nbytes) {
1321   buffer_space(&r->b, nbytes - (r->b.end - r->b.start));
1322 }
1323
1324 /** @brief Consume @p n bytes from the reader's buffer
1325  * @param r Reader
1326  * @param n Number of bytes to consume
1327  *
1328  * Tells the reader than the next @p n bytes have been dealt with and can now
1329  * be discarded.
1330  */
1331 void ev_reader_consume(ev_reader *r, size_t n) {
1332   r->b.start += n;
1333 }
1334
1335 /** @brief Cancel a reader
1336  * @param r Reader
1337  * @return 0 on success, non-0 on error
1338  *
1339  * No further callbacks will be made, and the FD will be closed (in a later
1340  * iteration of the event loop).
1341  */
1342 int ev_reader_cancel(ev_reader *r) {
1343   D(("cancel reader fd %d", r->fd));
1344   if(r->fd == -1)
1345     return 0;                           /* already thoroughly cancelled */
1346   ev_fd_disable(r->ev, ev_read, r->fd);
1347   return ev_timeout(r->ev, 0, 0, reader_shutdown, r);
1348 }
1349
1350 /** @brief Temporarily disable a reader
1351  * @param r Reader
1352  * @return 0 on success, non-0 on error
1353  *
1354  * No further callbacks for this reader will be made.  Re-enable with
1355  * ev_reader_enable().
1356  */
1357 int ev_reader_disable(ev_reader *r) {
1358   D(("disable reader fd %d", r->fd));
1359   return ev_fd_disable(r->ev, ev_read, r->fd);
1360 }
1361
1362 /** @brief Called from ev_run() for ev_reader_incomplete() */
1363 static int reader_continuation(ev_source attribute((unused)) *ev,
1364                                const attribute((unused)) struct timeval *now,
1365                                void *u) {
1366   ev_reader *r = u;
1367
1368   D(("reader continuation callback fd %d", r->fd));
1369   /* If not at EOF turn the FD back on */
1370   if(!r->eof)
1371     if(ev_fd_enable(r->ev, ev_read, r->fd))
1372       return -1;
1373   /* We're already in a timeout callback so there's no reason we can't call the
1374    * user callback directly (compare ev_reader_enable()). */
1375   return r->callback(ev, r, r->b.start, r->b.end - r->b.start, r->eof, r->u);
1376 }
1377
1378 /** @brief Arrange another callback
1379  * @param r reader
1380  * @return 0 on success, non-0 on error
1381  *
1382  * Indicates that the reader can process more input but would like to yield to
1383  * other clients of the event loop.  Input will be disabled but it will be
1384  * re-enabled on the next iteration of the event loop and the read callback
1385  * will be called again (even if no further bytes are available).
1386  */
1387 int ev_reader_incomplete(ev_reader *r) {
1388   if(ev_fd_disable(r->ev, ev_read, r->fd)) return -1;
1389   return ev_timeout(r->ev, 0, 0, reader_continuation, r);
1390 }
1391
1392 static int reader_enabled(ev_source *ev,
1393                           const attribute((unused)) struct timeval *now,
1394                           void *u) {
1395   ev_reader *r = u;
1396
1397   D(("reader enabled callback fd %d", r->fd));
1398   return r->callback(ev, r, r->b.start, r->b.end - r->b.start, r->eof, r->u);
1399 }
1400
1401 /** @brief Re-enable reading
1402  * @param r reader
1403  * @return 0 on success, non-0 on error
1404  *
1405  * If there is unconsumed data then you get a callback next time round the
1406  * event loop even if nothing new has been read.
1407  *
1408  * The idea is in your read callback you come across a line (or whatever) that
1409  * can't be processed immediately.  So you set up processing and disable
1410  * reading with ev_reader_disable().  Later when you finish processing you
1411  * re-enable.  You'll automatically get another callback directly from the
1412  * event loop (i.e. not from inside ev_reader_enable()) so you can handle the
1413  * next line (or whatever) if the whole thing has in fact already arrived.
1414  *
1415  * The difference between this process and calling ev_reader_incomplete() is
1416  * ev_reader_incomplete() deals with the case where you can process now but
1417  * would rather yield to other clients of the event loop, while using
1418  * ev_reader_disable() and ev_reader_enable() deals with the case where you
1419  * cannot process input yet because some other process is actually not
1420  * complete.
1421  */
1422 int ev_reader_enable(ev_reader *r) {
1423   D(("enable reader fd %d", r->fd));
1424
1425   /* First if we're not at EOF then we re-enable reading */
1426   if(!r->eof)
1427     if(ev_fd_enable(r->ev, ev_read, r->fd))
1428       return -1;
1429   /* Arrange another callback next time round the event loop */
1430   return ev_timeout(r->ev, 0, 0, reader_enabled, r);
1431 }
1432
1433 /** @brief Tie a reader and a writer together
1434  * @param r Reader
1435  * @param w Writer
1436  * @return 0 on success, non-0 on error
1437  *
1438  * This function must be called if @p r and @p w share a file descritptor.
1439  */
1440 int ev_tie(ev_reader *r, ev_writer *w) {
1441   assert(r->writer == 0);
1442   assert(w->reader == 0);
1443   r->writer = w;
1444   w->reader = r;
1445   return 0;
1446 }
1447
1448 /*
1449 Local Variables:
1450 c-basic-offset:2
1451 comment-column:40
1452 fill-column:79
1453 End:
1454 */