chiark / gitweb /
server shouldn't crash on client disconnect!
[disorder] / lib / event.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
e8c92ba7 3 * Copyright (C) 2004, 2005, 2007 Richard Kettlewell
460b9539 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 */
768d7355
RK
20/** @file lib/event.c
21 * @brief DisOrder event loop
22 */
460b9539 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>
46bd8db4 32#include <sys/stat.h>
460b9539 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"
768d7355 49#include "vector.h"
460b9539 50
768d7355 51/** @brief A timeout */
460b9539 52struct timeout {
53 struct timeout *next;
54 struct timeval when;
55 ev_timeout_callback *callback;
56 void *u;
57 int resolve;
58};
59
768d7355 60/** @brief A file descriptor in one mode */
460b9539 61struct fd {
62 int fd;
63 ev_fd_callback *callback;
64 void *u;
e8c92ba7 65 const char *what;
460b9539 66};
67
768d7355 68/** @brief All the file descriptors in a given mode */
460b9539 69struct fdmode {
768d7355 70 /** @brief Mask of active file descriptors passed to @c select() */
460b9539 71 fd_set enabled;
768d7355
RK
72
73 /** @brief File descriptor mask returned from @c select() */
460b9539 74 fd_set tripped;
768d7355
RK
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 */
460b9539 83 struct fd *fds;
768d7355
RK
84
85 /** @brief Highest-numbered file descriptor or 0 */
460b9539 86 int maxfd;
87};
88
768d7355 89/** @brief A signal handler */
460b9539 90struct signal {
91 struct sigaction oldsa;
92 ev_signal_callback *callback;
93 void *u;
94};
95
768d7355 96/** @brief A child process */
460b9539 97struct child {
98 pid_t pid;
99 int options;
100 ev_child_callback *callback;
101 void *u;
102};
103
768d7355 104/** @brief An event loop */
460b9539 105struct ev_source {
768d7355 106 /** @brief File descriptors, per mode */
460b9539 107 struct fdmode mode[ev_nmodes];
768d7355
RK
108
109 /** @brief Sorted linked list of timeouts
110 *
111 * We could use @ref HEAP_TYPE now, but there aren't many timeouts.
112 */
460b9539 113 struct timeout *timeouts;
768d7355
RK
114
115 /** @brief Array of handled signals */
460b9539 116 struct signal signals[NSIG];
768d7355
RK
117
118 /** @brief Mask of handled signals */
460b9539 119 sigset_t sigmask;
768d7355
RK
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 */
460b9539 126 int escape;
768d7355
RK
127
128 /** @brief Signal handling pipe
129 *
130 * The signal handle writes signal numbers down this pipe.
131 */
460b9539 132 int sigpipe[2];
768d7355
RK
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 */
460b9539 141 struct child *children;
142};
143
768d7355 144/** @brief Names of file descriptor modes */
460b9539 145static const char *modenames[] = { "read", "write", "except" };
146
147/* utilities ******************************************************************/
148
768d7355
RK
149/** @brief Great-than comparison for timevals
150 *
151 * Ought to be in @file lib/timeval.h
152 */
460b9539 153static 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
768d7355
RK
162/** @brief Greater-than-or-equal comparison for timevals
163 *
164 * Ought to be in @file lib/timeval.h
165 */
460b9539 166static inline int ge(const struct timeval *a, const struct timeval *b) {
167 return !gt(b, a);
168}
169
170/* creation *******************************************************************/
171
768d7355 172/** @brief Create a new event loop */
460b9539 173ev_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
768d7355
RK
187/** @brief Run the event loop
188 * @return -1 on error, non-0 if any callback returned non-0
189 */
460b9539 190int 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;
e8c92ba7 198 struct stat sb;
460b9539 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");
e8c92ba7
RK
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)
34a3e246
RK
266 error(errno, "mode %s fstat %d (%s)",
267 modenames[mode], fd, ev->mode[mode].fds[n].what);
e8c92ba7 268 }
7958ad2f 269 for(n = 0; n <= maxfd; ++n)
34a3e246
RK
270 if(FD_ISSET(n, &ev->mode[mode].enabled)
271 && fstat(n, &sb) < 0)
272 error(errno, "mode %s fstat %d", modenames[mode], n);
e8c92ba7
RK
273 }
274 }
460b9539 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
768d7355
RK
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 */
460b9539 314int ev_fd(ev_source *ev,
315 ev_fdmode mode,
316 int fd,
317 ev_fd_callback *callback,
e8c92ba7
RK
318 void *u,
319 const char *what) {
460b9539 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;
e8c92ba7 338 ev->mode[mode].fds[n].what = what;
460b9539 339 if(fd > ev->mode[mode].maxfd)
340 ev->mode[mode].maxfd = fd;
341 ev->escape = 1;
342 return 0;
343}
344
768d7355
RK
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 */
460b9539 354int 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
768d7355
RK
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 */
460b9539 390int 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
768d7355
RK
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 */
460b9539 405int 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);
75d64210
RK
409 /* Suppress any pending callbacks */
410 ev->escape = 1;
460b9539 411 return 0;
412}
413
768d7355
RK
414/** @brief Log a report of file descriptor state */
415void 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)
34a3e246 440 snprintf(b, sizeof b, "%d(%s)", fd, ev->mode[mode].fds[n].what);
768d7355 441 else
34a3e246 442 snprintf(b, sizeof b, "%d", fd);
768d7355
RK
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
460b9539 451/* timeouts *******************************************************************/
452
768d7355
RK
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 */
460b9539 468int 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
768d7355
RK
493/** @brief Cancel a timeout
494 * @param ev Event loop
cb9a695c 495 * @param handle Handle returned from ev_timeout(), or 0
768d7355 496 * @return 0 on success, non-0 on error
cb9a695c
RK
497 *
498 * If @p handle is 0 then this is a no-op.
768d7355 499 */
460b9539 500int ev_timeout_cancel(ev_source *ev,
501 ev_timeout_handle handle) {
502 struct timeout *t = handle, *p, **pp;
503
cb9a695c
RK
504 if(!t)
505 return 0;
460b9539 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
768d7355
RK
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 */
460b9539 523static int sigfd[NSIG];
524
768d7355
RK
525/** @brief The signal handler
526 * @param s Signal number
527 *
528 * Writes to @c sigfd[s].
529 */
460b9539 530static 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
768d7355 541/** @brief Read callback for signals */
460b9539 542static 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
768d7355 560/** @brief Close the signal pipe */
460b9539 561static 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
768d7355
RK
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 */
460b9539 580int 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 }
e8c92ba7 599 if(ev_fd(ev, ev_read, ev->sigpipe[0], signal_read, 0, "sigpipe read")) {
460b9539 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
768d7355
RK
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 */
460b9539 622int 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
768d7355
RK
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 */
460b9539 642void 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
768d7355 661/** @brief Called on SIGCHLD */
460b9539 662static 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
768d7355
RK
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 */
460b9539 713int ev_child_setup(ev_source *ev) {
714 D(("installing SIGCHLD handler"));
715 return ev_signal(ev, SIGCHLD, sigchld_callback, 0);
716}
717
768d7355
RK
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 */
460b9539 728int 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
768d7355
RK
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 */
460b9539 756int 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
768d7355 771/** @brief State for a socket listener */
460b9539 772struct listen_state {
773 ev_listen_callback *callback;
774 void *u;
775};
776
768d7355 777/** @brief Called when a listenign socket is readable */
460b9539 778static 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
768d7355
RK
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 */
460b9539 831int ev_listen(ev_source *ev,
832 int fd,
833 ev_listen_callback *callback,
e8c92ba7
RK
834 void *u,
835 const char *what) {
460b9539 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;
e8c92ba7 841 return ev_fd(ev, ev_read, fd, listen_callback, l, what);
460b9539 842}
843
768d7355
RK
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 */
460b9539 849int 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
768d7355 856/** @brief Buffer structure */
460b9539 857struct buffer {
858 char *base, *start, *end, *top;
859};
860
768d7355 861/* @brief Make sure there is @p bytes available at @c b->end */
460b9539 862static 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
75d64210 891/* readers and writers *******************************************************/
460b9539 892
768d7355 893/** @brief State structure for a buffered writer */
460b9539 894struct ev_writer {
75d64210 895 /** @brief Sink used for writing to the buffer */
460b9539 896 struct sink s;
75d64210
RK
897
898 /** @brief Output buffer */
460b9539 899 struct buffer b;
75d64210
RK
900
901 /** @brief File descriptor to write to */
460b9539 902 int fd;
75d64210
RK
903
904 /** @brief Set if there'll be no more output */
460b9539 905 int eof;
75d64210
RK
906
907 /** @brief Error/termination callback */
460b9539 908 ev_error_callback *callback;
75d64210
RK
909
910 /** @brief Passed to @p callback */
460b9539 911 void *u;
75d64210
RK
912
913 /** @brief Parent event source */
460b9539 914 ev_source *ev;
cb9a695c
RK
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;
75d64210
RK
920 /** @brief Error code to pass to @p callback (see writer_shutdown()) */
921 int error;
cb9a695c
RK
922 /** @brief Timeout handle for @p timebound (or 0) */
923 ev_timeout_handle timeout;
924
75d64210 925 /** @brief Description of this writer */
cb9a695c 926 const char *what;
75d64210
RK
927
928 /** @brief Tied reader or 0 */
929 ev_reader *reader;
460b9539 930};
931
75d64210
RK
932/** @brief State structure for a buffered reader */
933struct 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.
cb9a695c
RK
964 *
965 * Calls @p callback with @p w->syntherr as the error code (which might be 0).
966 */
967static int writer_shutdown(ev_source *ev,
968 const attribute((unused)) struct timeval *now,
969 void *u) {
970 ev_writer *w = u;
971
e4a9c7c5 972 if(w->fd == -1)
75d64210
RK
973 return 0; /* already shut down */
974 info("writer_shutdown fd=%d", w->fd);
cb9a695c 975 ev_timeout_cancel(ev, w->timeout);
75d64210 976 ev_fd_cancel(ev, ev_write, w->fd);
cb9a695c 977 w->timeout = 0;
75d64210 978 if(w->reader) {
1563f6f6 979 info("found a tied reader");
75d64210
RK
980 /* If there is a reader still around we just untie it */
981 w->reader->writer = 0;
982 shutdown(w->fd, SHUT_WR); /* there'll be no more writes */
983 } else {
1563f6f6 984 info("no tied reader");
75d64210
RK
985 /* There's no reader so we are free to close the FD */
986 xclose(w->fd);
987 }
e4a9c7c5 988 w->fd = -1;
75d64210 989 return w->callback(ev, w->error, w->u);
cb9a695c
RK
990}
991
992/** @brief Called when a writer's @p timebound expires */
993static int writer_timebound_exceeded(ev_source *ev,
75d64210 994 const struct timeval *now,
cb9a695c
RK
995 void *u) {
996 ev_writer *const w = u;
997
998 error(0, "abandoning writer %s because no writes within %ds",
999 w->what, w->timebound);
75d64210
RK
1000 w->error = ETIMEDOUT;
1001 return writer_shutdown(ev, now, u);
cb9a695c
RK
1002}
1003
1004/** @brief Set the time bound callback (if not set already) */
1005static void writer_set_timebound(ev_writer *w) {
1006 if(w->timebound && !w->timeout) {
1007 struct timeval when;
1008 ev_source *const ev = w->ev;
1009
1010 xgettimeofday(&when, 0);
1011 when.tv_sec += w->timebound;
1012 ev_timeout(ev, &w->timeout, &when, writer_timebound_exceeded, w);
1013 }
1014}
1015
768d7355 1016/** @brief Called when a writer's file descriptor is writable */
460b9539 1017static int writer_callback(ev_source *ev, int fd, void *u) {
cb9a695c 1018 ev_writer *const w = u;
460b9539 1019 int n;
1020
1021 n = write(fd, w->b.start, w->b.end - w->b.start);
1022 D(("callback for writer fd %d, %ld bytes, n=%d, errno=%d",
1023 fd, (long)(w->b.end - w->b.start), n, errno));
1024 if(n >= 0) {
75d64210 1025 /* Consume bytes from the buffer */
460b9539 1026 w->b.start += n;
75d64210 1027 /* Suppress any outstanding timeout */
cb9a695c
RK
1028 ev_timeout_cancel(ev, w->timeout);
1029 w->timeout = 0;
460b9539 1030 if(w->b.start == w->b.end) {
75d64210 1031 /* The buffer is empty */
460b9539 1032 if(w->eof) {
75d64210
RK
1033 /* We're done, we can shut down this writer */
1034 w->error = 0;
1035 return writer_shutdown(ev, 0, w);
460b9539 1036 } else
75d64210
RK
1037 /* There might be more to come but we don't need writer_callback() to
1038 * be called for the time being */
460b9539 1039 ev_fd_disable(ev, ev_write, fd);
cb9a695c 1040 } else
75d64210
RK
1041 /* The buffer isn't empty, set a timeout so we give up if we don't manage
1042 * to write some more within a reasonable time */
cb9a695c 1043 writer_set_timebound(w);
460b9539 1044 } else {
1045 switch(errno) {
1046 case EINTR:
1047 case EAGAIN:
1048 break;
1049 default:
75d64210
RK
1050 w->error = errno;
1051 return writer_shutdown(ev, 0, w);
460b9539 1052 }
1053 }
1054 return 0;
1055}
1056
768d7355
RK
1057/** @brief Write bytes to a writer's buffer
1058 *
1059 * This is the sink write callback.
1060 *
1061 * Calls ev_fd_enable() if necessary (i.e. if the buffer was empty but
1062 * now is not).
1063 */
460b9539 1064static int ev_writer_write(struct sink *sk, const void *s, int n) {
1065 ev_writer *w = (ev_writer *)sk;
cb9a695c
RK
1066
1067 if(!n)
1068 return 0; /* avoid silliness */
75d64210
RK
1069 if(w->spacebound && w->b.end - w->b.start + n > w->spacebound) {
1070 /* The new buffer contents will exceed the space bound. We assume that the
cb9a695c
RK
1071 * remote client has gone away and TCP hasn't noticed yet, or that it's got
1072 * hopelessly stuck. */
1073 error(0, "abandoning writer %s because buffer has reached %td bytes",
1074 w->what, w->b.end - w->b.start);
75d64210
RK
1075 ev_fd_disable(w->ev, ev_write, w->fd);
1076 w->error = EPIPE;
cb9a695c
RK
1077 return ev_timeout(w->ev, 0, 0, writer_shutdown, w);
1078 }
75d64210
RK
1079 /* Make sure there is space */
1080 buffer_space(&w->b, n);
1081 /* If the buffer was formerly empty then we'll need to re-enable the FD */
1082 if(w->b.start == w->b.end)
1083 ev_fd_enable(w->ev, ev_write, w->fd);
1084 memcpy(w->b.end, s, n);
1085 w->b.end += n;
1086 /* Arrange a timeout if there wasn't one set already */
cb9a695c 1087 writer_set_timebound(w);
460b9539 1088 return 0;
1089}
1090
768d7355
RK
1091/** @brief Create a new buffered writer
1092 * @param ev Event loop
1093 * @param fd File descriptor to write to
1094 * @param callback Called if an error occurs and when finished
1095 * @param u Passed to @p callback
1096 * @param what Text description
1097 * @return New writer or @c NULL
75d64210
RK
1098 *
1099 * Writers own their file descriptor and close it when they have finished with
1100 * it.
1101 *
1102 * If you pass the same fd to a reader and writer, you must tie them together
1103 * with ev_tie().
768d7355 1104 */
460b9539 1105ev_writer *ev_writer_new(ev_source *ev,
1106 int fd,
1107 ev_error_callback *callback,
e8c92ba7
RK
1108 void *u,
1109 const char *what) {
460b9539 1110 ev_writer *w = xmalloc(sizeof *w);
1111
1112 D(("registering writer fd %d callback %p %p", fd, (void *)callback, u));
1113 w->s.write = ev_writer_write;
1114 w->fd = fd;
1115 w->callback = callback;
1116 w->u = u;
1117 w->ev = ev;
cb9a695c
RK
1118 w->timebound = 10 * 60;
1119 w->spacebound = 512 * 1024;
1120 w->what = what;
e8c92ba7 1121 if(ev_fd(ev, ev_write, fd, writer_callback, w, what))
460b9539 1122 return 0;
75d64210 1123 /* Buffer is initially empty so we don't want a callback */
460b9539 1124 ev_fd_disable(ev, ev_write, fd);
1125 return w;
1126}
1127
cb9a695c
RK
1128/** @brief Get/set the time bound
1129 * @param w Writer
1130 * @param new_time_bound New bound or -1 for no change
1131 * @return Latest time bound
1132 *
1133 * If @p new_time_bound is negative then the current time bound is returned.
1134 * Otherwise it is set and the new value returned.
1135 *
1136 * The time bound is the number of seconds allowed between writes. If it takes
1137 * longer than this to flush a buffer then the peer will be assumed to be dead
1138 * and an error will be synthesized. 0 means "don't care". The default time
1139 * bound is 10 minutes.
1140 *
1141 * Note that this value does not take into account kernel buffering and
1142 * timeouts.
1143 */
1144int ev_writer_time_bound(ev_writer *w,
1145 int new_time_bound) {
1146 if(new_time_bound >= 0)
1147 w->timebound = new_time_bound;
1148 return w->timebound;
1149}
1150
1151/** @brief Get/set the space bound
1152 * @param w Writer
1153 * @param new_space_bound New bound or -1 for no change
1154 * @return Latest space bound
1155 *
1156 * If @p new_space_bound is negative then the current space bound is returned.
1157 * Otherwise it is set and the new value returned.
1158 *
1159 * The space bound is the number of bytes allowed between in the buffer. If
1160 * the buffer exceeds this size an error will be synthesized. 0 means "don't
1161 * care". The default space bound is 512Kbyte.
1162 *
1163 * Note that this value does not take into account kernel buffering.
1164 */
1165int ev_writer_space_bound(ev_writer *w,
1166 int new_space_bound) {
1167 if(new_space_bound >= 0)
1168 w->spacebound = new_space_bound;
1169 return w->spacebound;
1170}
1171
768d7355
RK
1172/** @brief Return the sink associated with a writer
1173 * @param w Writer
1174 * @return Pointer to sink
1175 *
1176 * Writing to the sink will arrange for those bytes to be written to the file
1177 * descriptor as and when it is writable.
1178 */
460b9539 1179struct sink *ev_writer_sink(ev_writer *w) {
f6033c46
RK
1180 if(!w)
1181 fatal(0, "ev_write_sink called with null writer");
460b9539 1182 return &w->s;
1183}
1184
768d7355
RK
1185/** @brief Close a writer
1186 * @param w Writer to close
1187 * @return 0 on success, non-0 on error
1188 *
1189 * Close a writer. No more bytes should be written to its sink.
1190 *
1191 * When the last byte has been written the callback will be called with an
1192 * error code of 0. It is guaranteed that this will NOT happen before
1193 * ev_writer_close() returns (although the file descriptor for the writer might
1194 * be cancelled by the time it returns).
1195 */
460b9539 1196int ev_writer_close(ev_writer *w) {
1197 D(("close writer fd %d", w->fd));
75d64210
RK
1198 if(w->eof)
1199 return 0; /* already closed */
460b9539 1200 w->eof = 1;
1201 if(w->b.start == w->b.end) {
75d64210
RK
1202 /* We're already finished */
1203 w->error = 0; /* no error */
460b9539 1204 return ev_timeout(w->ev, 0, 0, writer_shutdown, w);
1205 }
1206 return 0;
1207}
1208
768d7355
RK
1209/** @brief Attempt to flush a writer
1210 * @param w Writer to flush
1211 * @return 0 on success, non-0 on error
1212 *
1213 * Does a speculative write of any buffered data. Does not block if it cannot
1214 * be written.
1215 */
460b9539 1216int ev_writer_flush(ev_writer *w) {
1217 return writer_callback(w->ev, w->fd, w);
1218}
1219
1220/* buffered reader ************************************************************/
1221
75d64210
RK
1222/** @brief Shut down a reader*
1223 *
1224 * This is the only path through which we cancel and close the file descriptor.
1225 * As with the writer case it is given timeout signature to allow it be
1226 * deferred to the next iteration of the event loop.
1227 *
1228 * We only call @p error_callback if @p error is nonzero (unlike the writer
1229 * case).
1230 */
1231static int reader_shutdown(ev_source *ev,
1232 const attribute((unused)) struct timeval *now,
1233 void *u) {
1234 ev_reader *const r = u;
1235
1236 if(r->fd == -1)
1237 return 0; /* already shut down */
1238 info("reader_shutdown fd=%d", r->fd);
1239 ev_fd_cancel(ev, ev_read, r->fd);
1240 r->eof = 1;
1241 if(r->writer) {
1563f6f6 1242 info("found a tied writer");
75d64210
RK
1243 /* If there is a writer still around we just untie it */
1244 r->writer->reader = 0;
1245 shutdown(r->fd, SHUT_RD); /* there'll be no more reads */
1246 } else {
1563f6f6 1247 info("no tied writer found");
75d64210
RK
1248 /* There's no writer so we are free to close the FD */
1249 xclose(r->fd);
1250 }
1251 r->fd = -1;
1252 if(r->error)
1253 return r->error_callback(ev, r->error, r->u);
1254 else
1255 return 0;
1256}
460b9539 1257
768d7355 1258/** @brief Called when a reader's @p fd is readable */
460b9539 1259static int reader_callback(ev_source *ev, int fd, void *u) {
1260 ev_reader *r = u;
1261 int n;
1262
1263 buffer_space(&r->b, 1);
1264 n = read(fd, r->b.end, r->b.top - r->b.end);
1265 D(("read fd %d buffer %d returned %d errno %d",
1266 fd, (int)(r->b.top - r->b.end), n, errno));
1267 if(n > 0) {
1268 r->b.end += n;
75d64210 1269 return r->callback(ev, r, r->b.start, r->b.end - r->b.start, 0, r->u);
460b9539 1270 } else if(n == 0) {
75d64210
RK
1271 /* No more read callbacks needed */
1272 ev_fd_disable(r->ev, ev_read, r->fd);
1273 ev_timeout(r->ev, 0, 0, reader_shutdown, r);
1274 /* Pass the remaining data and an eof indicator to the user */
1275 return r->callback(ev, r, r->b.start, r->b.end - r->b.start, 1, r->u);
460b9539 1276 } else {
1277 switch(errno) {
1278 case EINTR:
1279 case EAGAIN:
1280 break;
1281 default:
75d64210
RK
1282 /* Fatal error, kill the reader now */
1283 r->error = errno;
1284 return reader_shutdown(ev, 0, r);
460b9539 1285 }
1286 }
1287 return 0;
1288}
1289
768d7355
RK
1290/** @brief Create a new buffered reader
1291 * @param ev Event loop
1292 * @param fd File descriptor to read from
1293 * @param callback Called when new data is available
1294 * @param error_callback Called if an error occurs
1295 * @param u Passed to callbacks
1296 * @param what Text description
1297 * @return New reader or @c NULL
75d64210
RK
1298 *
1299 * Readers own their fd and close it when they are finished with it.
1300 *
1301 * If you pass the same fd to a reader and writer, you must tie them together
1302 * with ev_tie().
768d7355 1303 */
460b9539 1304ev_reader *ev_reader_new(ev_source *ev,
1305 int fd,
1306 ev_reader_callback *callback,
1307 ev_error_callback *error_callback,
e8c92ba7
RK
1308 void *u,
1309 const char *what) {
460b9539 1310 ev_reader *r = xmalloc(sizeof *r);
1311
1312 D(("registering reader fd %d callback %p %p %p",
1313 fd, (void *)callback, (void *)error_callback, u));
1314 r->fd = fd;
1315 r->callback = callback;
1316 r->error_callback = error_callback;
1317 r->u = u;
1318 r->ev = ev;
e8c92ba7 1319 if(ev_fd(ev, ev_read, fd, reader_callback, r, what))
460b9539 1320 return 0;
1321 return r;
1322}
1323
1324void ev_reader_buffer(ev_reader *r, size_t nbytes) {
1325 buffer_space(&r->b, nbytes - (r->b.end - r->b.start));
1326}
1327
768d7355
RK
1328/** @brief Consume @p n bytes from the reader's buffer
1329 * @param r Reader
1330 * @param n Number of bytes to consume
1331 *
1332 * Tells the reader than the next @p n bytes have been dealt with and can now
1333 * be discarded.
1334 */
460b9539 1335void ev_reader_consume(ev_reader *r, size_t n) {
1336 r->b.start += n;
1337}
1338
768d7355
RK
1339/** @brief Cancel a reader
1340 * @param r Reader
1341 * @return 0 on success, non-0 on error
75d64210
RK
1342 *
1343 * No further callbacks will be made, and the FD will be closed (in a later
1344 * iteration of the event loop).
768d7355 1345 */
460b9539 1346int ev_reader_cancel(ev_reader *r) {
1347 D(("cancel reader fd %d", r->fd));
75d64210
RK
1348 if(r->fd == -1)
1349 return 0; /* already thoroughly cancelled */
1350 ev_fd_disable(r->ev, ev_read, r->fd);
1351 return ev_timeout(r->ev, 0, 0, reader_shutdown, r);
460b9539 1352}
1353
768d7355
RK
1354/** @brief Temporarily disable a reader
1355 * @param r Reader
1356 * @return 0 on success, non-0 on error
1357 *
1358 * No further callbacks for this reader will be made. Re-enable with
1359 * ev_reader_enable().
1360 */
460b9539 1361int ev_reader_disable(ev_reader *r) {
1362 D(("disable reader fd %d", r->fd));
75d64210 1363 return ev_fd_disable(r->ev, ev_read, r->fd);
460b9539 1364}
1365
768d7355 1366/** @brief Called from ev_run() for ev_reader_incomplete() */
460b9539 1367static int reader_continuation(ev_source attribute((unused)) *ev,
1368 const attribute((unused)) struct timeval *now,
1369 void *u) {
1370 ev_reader *r = u;
1371
1372 D(("reader continuation callback fd %d", r->fd));
75d64210
RK
1373 /* If not at EOF turn the FD back on */
1374 if(!r->eof)
1375 if(ev_fd_enable(r->ev, ev_read, r->fd))
1376 return -1;
1377 /* We're already in a timeout callback so there's no reason we can't call the
1378 * user callback directly (compare ev_reader_enable()). */
1379 return r->callback(ev, r, r->b.start, r->b.end - r->b.start, r->eof, r->u);
460b9539 1380}
1381
768d7355
RK
1382/** @brief Arrange another callback
1383 * @param r reader
1384 * @return 0 on success, non-0 on error
1385 *
1386 * Indicates that the reader can process more input but would like to yield to
1387 * other clients of the event loop. Input will be disabled but it will be
1388 * re-enabled on the next iteration of the event loop and the read callback
1389 * will be called again (even if no further bytes are available).
1390 */
460b9539 1391int ev_reader_incomplete(ev_reader *r) {
1392 if(ev_fd_disable(r->ev, ev_read, r->fd)) return -1;
1393 return ev_timeout(r->ev, 0, 0, reader_continuation, r);
1394}
1395
1396static int reader_enabled(ev_source *ev,
1397 const attribute((unused)) struct timeval *now,
1398 void *u) {
1399 ev_reader *r = u;
1400
1401 D(("reader enabled callback fd %d", r->fd));
75d64210 1402 return r->callback(ev, r, r->b.start, r->b.end - r->b.start, r->eof, r->u);
460b9539 1403}
1404
768d7355
RK
1405/** @brief Re-enable reading
1406 * @param r reader
1407 * @return 0 on success, non-0 on error
1408 *
1409 * If there is unconsumed data then you get a callback next time round the
1410 * event loop even if nothing new has been read.
1411 *
1412 * The idea is in your read callback you come across a line (or whatever) that
1413 * can't be processed immediately. So you set up processing and disable
1414 * reading with ev_reader_disable(). Later when you finish processing you
1415 * re-enable. You'll automatically get another callback directly from the
1416 * event loop (i.e. not from inside ev_reader_enable()) so you can handle the
1417 * next line (or whatever) if the whole thing has in fact already arrived.
75d64210
RK
1418 *
1419 * The difference between this process and calling ev_reader_incomplete() is
1420 * ev_reader_incomplete() deals with the case where you can process now but
1421 * would rather yield to other clients of the event loop, while using
1422 * ev_reader_disable() and ev_reader_enable() deals with the case where you
1423 * cannot process input yet because some other process is actually not
1424 * complete.
768d7355 1425 */
460b9539 1426int ev_reader_enable(ev_reader *r) {
1427 D(("enable reader fd %d", r->fd));
75d64210
RK
1428
1429 /* First if we're not at EOF then we re-enable reading */
1430 if(!r->eof)
1431 if(ev_fd_enable(r->ev, ev_read, r->fd))
1432 return -1;
1433 /* Arrange another callback next time round the event loop */
1434 return ev_timeout(r->ev, 0, 0, reader_enabled, r);
1435}
1436
1437/** @brief Tie a reader and a writer together
1438 * @param r Reader
1439 * @param w Writer
1440 * @return 0 on success, non-0 on error
1441 *
1442 * This function must be called if @p r and @p w share a file descritptor.
1443 */
1444int ev_tie(ev_reader *r, ev_writer *w) {
1445 assert(r->writer == 0);
1446 assert(w->reader == 0);
1447 r->writer = w;
1448 w->reader = r;
1449 return 0;
460b9539 1450}
1451
1452/*
1453Local Variables:
1454c-basic-offset:2
1455comment-column:40
1456fill-column:79
1457End:
1458*/