2 * libev event processing core, watcher management
4 * Copyright (c) 2007 Marc Alexander Lehmann <libev@schmorp.de>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
46 #include <sys/types.h>
48 # include <sys/wait.h>
55 #ifndef EV_USE_MONOTONIC
56 # define EV_USE_MONOTONIC 1
60 # define EV_USE_SELECT 1
64 # define EV_USE_POLL 0 /* poll is usually slower than select, and not as well tested */
68 # define EV_USE_EPOLL 0
72 # define EV_USE_KQUEUE 0
75 #ifndef EV_USE_REALTIME
76 # define EV_USE_REALTIME 1
81 #ifndef CLOCK_MONOTONIC
82 # undef EV_USE_MONOTONIC
83 # define EV_USE_MONOTONIC 0
86 #ifndef CLOCK_REALTIME
87 # undef EV_USE_REALTIME
88 # define EV_USE_REALTIME 0
93 #define MIN_TIMEJUMP 1. /* minimum timejump that gets detected (if monotonic clock available) */
94 #define MAX_BLOCKTIME 59.731 /* never wait longer than this time (to detect time jumps) */
95 #define PID_HASHSIZE 16 /* size of pid hash table, must be power of two */
96 /*#define CLEANUP_INTERVAL 300. /* how often to try to free memory and re-check fds */
101 # define expect(expr,value) __builtin_expect ((expr),(value))
102 # define inline inline
104 # define expect(expr,value) (expr)
105 # define inline static
108 #define expect_false(expr) expect ((expr) != 0, 0)
109 #define expect_true(expr) expect ((expr) != 0, 1)
111 #define NUMPRI (EV_MAXPRI - EV_MINPRI + 1)
112 #define ABSPRI(w) ((w)->priority - EV_MINPRI)
114 typedef struct ev_watcher *W;
115 typedef struct ev_watcher_list *WL;
116 typedef struct ev_watcher_time *WT;
118 static ev_tstamp now_floor, now, diff; /* monotonic clock */
122 static int have_monotonic; /* runtime */
124 static ev_tstamp method_fudge; /* stupid epoll-returns-early bug */
125 static void (*method_modify)(int fd, int oev, int nev);
126 static void (*method_poll)(ev_tstamp timeout);
128 /*****************************************************************************/
135 clock_gettime (CLOCK_REALTIME, &ts);
136 return ts.tv_sec + ts.tv_nsec * 1e-9;
139 gettimeofday (&tv, 0);
140 return tv.tv_sec + tv.tv_usec * 1e-6;
148 if (expect_true (have_monotonic))
151 clock_gettime (CLOCK_MONOTONIC, &ts);
152 return ts.tv_sec + ts.tv_nsec * 1e-9;
159 #define array_roundsize(base,n) ((n) | 4 & ~3)
161 #define array_needsize(base,cur,cnt,init) \
162 if (expect_false ((cnt) > cur)) \
167 newcnt = array_roundsize (base, newcnt << 1); \
169 while ((cnt) > newcnt); \
171 base = realloc (base, sizeof (*base) * (newcnt)); \
172 init (base + cur, newcnt - cur); \
176 /*****************************************************************************/
181 unsigned char events;
189 anfds_init (ANFD *base, int count)
194 base->events = EV_NONE;
207 static ANPENDING *pendings [NUMPRI];
208 static int pendingmax [NUMPRI], pendingcnt [NUMPRI];
211 event (W w, int events)
215 pendings [ABSPRI (w)][w->pending - 1].events |= events;
219 w->pending = ++pendingcnt [ABSPRI (w)];
220 array_needsize (pendings [ABSPRI (w)], pendingmax [ABSPRI (w)], pendingcnt [ABSPRI (w)], );
221 pendings [ABSPRI (w)][w->pending - 1].w = w;
222 pendings [ABSPRI (w)][w->pending - 1].events = events;
226 queue_events (W *events, int eventcnt, int type)
230 for (i = 0; i < eventcnt; ++i)
231 event (events [i], type);
235 fd_event (int fd, int events)
237 ANFD *anfd = anfds + fd;
240 for (w = anfd->head; w; w = w->next)
242 int ev = w->events & events;
249 /*****************************************************************************/
251 static int *fdchanges;
252 static int fdchangemax, fdchangecnt;
259 for (i = 0; i < fdchangecnt; ++i)
261 int fd = fdchanges [i];
262 ANFD *anfd = anfds + fd;
267 for (w = anfd->head; w; w = w->next)
272 if (anfd->events != events)
274 method_modify (fd, anfd->events, events);
275 anfd->events = events;
285 if (anfds [fd].reify || fdchangecnt < 0)
288 anfds [fd].reify = 1;
291 array_needsize (fdchanges, fdchangemax, fdchangecnt, );
292 fdchanges [fdchangecnt - 1] = fd;
300 printf ("killing fd %d\n", fd);//D
301 while ((w = anfds [fd].head))
304 event ((W)w, EV_ERROR | EV_READ | EV_WRITE);
308 /* called on EBADF to verify fds */
314 for (fd = 0; fd < anfdmax; ++fd)
315 if (anfds [fd].events)
316 if (fcntl (fd, F_GETFD) == -1 && errno == EBADF)
320 /* called on ENOMEM in select/poll to kill some fds and retry */
327 if (anfds [fd].events)
335 /*****************************************************************************/
337 static struct ev_timer **timers;
338 static int timermax, timercnt;
340 static struct ev_periodic **periodics;
341 static int periodicmax, periodiccnt;
344 upheap (WT *timers, int k)
348 while (k && timers [k >> 1]->at > w->at)
350 timers [k] = timers [k >> 1];
351 timers [k]->active = k + 1;
356 timers [k]->active = k + 1;
361 downheap (WT *timers, int N, int k)
369 if (j + 1 < N && timers [j]->at > timers [j + 1]->at)
372 if (w->at <= timers [j]->at)
375 timers [k] = timers [j];
376 timers [k]->active = k + 1;
381 timers [k]->active = k + 1;
384 /*****************************************************************************/
388 struct ev_signal *head;
389 sig_atomic_t volatile gotsig;
392 static ANSIG *signals;
393 static int signalmax;
395 static int sigpipe [2];
396 static sig_atomic_t volatile gotsig;
397 static struct ev_io sigev;
400 signals_init (ANSIG *base, int count)
412 sighandler (int signum)
414 signals [signum - 1].gotsig = 1;
418 int old_errno = errno;
420 write (sigpipe [1], &signum, 1);
426 sigcb (struct ev_io *iow, int revents)
431 read (sigpipe [0], &revents, 1);
434 for (signum = signalmax; signum--; )
435 if (signals [signum].gotsig)
437 signals [signum].gotsig = 0;
439 for (w = signals [signum].head; w; w = w->next)
440 event ((W)w, EV_SIGNAL);
448 fcntl (sigpipe [0], F_SETFD, FD_CLOEXEC);
449 fcntl (sigpipe [1], F_SETFD, FD_CLOEXEC);
451 /* rather than sort out wether we really need nb, set it */
452 fcntl (sigpipe [0], F_SETFL, O_NONBLOCK);
453 fcntl (sigpipe [1], F_SETFL, O_NONBLOCK);
456 ev_io_set (&sigev, sigpipe [0], EV_READ);
457 ev_io_start (&sigev);
460 /*****************************************************************************/
462 static struct ev_idle **idles;
463 static int idlemax, idlecnt;
465 static struct ev_prepare **prepares;
466 static int preparemax, preparecnt;
468 static struct ev_check **checks;
469 static int checkmax, checkcnt;
471 /*****************************************************************************/
473 static struct ev_child *childs [PID_HASHSIZE];
474 static struct ev_signal childev;
479 # define WCONTINUED 0
483 child_reap (struct ev_signal *sw, int chain, int pid, int status)
487 for (w = childs [chain & (PID_HASHSIZE - 1)]; w; w = w->next)
488 if (w->pid == pid || !w->pid)
490 w->priority = sw->priority; /* need to do it *now* */
493 printf ("rpid %p %d %d\n", w, pid, w->pid);//D
494 event ((W)w, EV_CHILD);
499 childcb (struct ev_signal *sw, int revents)
503 printf ("chld %x\n", revents);//D
504 if (0 < (pid = waitpid (-1, &status, WNOHANG | WUNTRACED | WCONTINUED)))
506 /* make sure we are called again until all childs have been reaped */
507 event ((W)sw, EV_SIGNAL);
509 child_reap (sw, pid, pid, status);
510 child_reap (sw, 0, pid, status); /* this might trigger a watcher twice, but event catches that */
516 /*****************************************************************************/
519 # include "ev_kqueue.c"
522 # include "ev_epoll.c"
525 # include "ev_poll.c"
528 # include "ev_select.c"
532 ev_version_major (void)
534 return EV_VERSION_MAJOR;
538 ev_version_minor (void)
540 return EV_VERSION_MINOR;
543 /* return true if we are running with elevated privileges and ignore env variables */
547 return getuid () != geteuid ()
548 || getgid () != getegid ();
551 int ev_init (int methods)
558 if (!clock_gettime (CLOCK_MONOTONIC, &ts))
571 if (methods == EVMETHOD_AUTO)
572 if (!enable_secure () && getenv ("LIBEV_METHODS"))
573 methods = atoi (getenv ("LIBEV_METHODS"));
575 methods = EVMETHOD_ANY;
579 if (!ev_method && (methods & EVMETHOD_KQUEUE)) kqueue_init (methods);
582 if (!ev_method && (methods & EVMETHOD_EPOLL )) epoll_init (methods);
585 if (!ev_method && (methods & EVMETHOD_POLL )) poll_init (methods);
588 if (!ev_method && (methods & EVMETHOD_SELECT)) select_init (methods);
593 ev_watcher_init (&sigev, sigcb);
594 ev_set_priority (&sigev, EV_MAXPRI);
598 ev_signal_init (&childev, childcb, SIGCHLD);
599 ev_set_priority (&childev, EV_MAXPRI);
600 ev_signal_start (&childev);
608 /*****************************************************************************/
611 ev_fork_prepare (void)
617 ev_fork_parent (void)
626 if (ev_method == EVMETHOD_EPOLL)
627 epoll_postfork_child ();
637 /*****************************************************************************/
644 for (pri = NUMPRI; pri--; )
645 while (pendingcnt [pri])
647 ANPENDING *p = pendings [pri] + --pendingcnt [pri];
652 p->w->cb (p->w, p->events);
660 while (timercnt && timers [0]->at <= now)
662 struct ev_timer *w = timers [0];
664 /* first reschedule or stop timer */
667 assert (("negative ev_timer repeat value found while processing timers", w->repeat > 0.));
668 w->at = now + w->repeat;
669 downheap ((WT *)timers, timercnt, 0);
672 ev_timer_stop (w); /* nonrepeating: stop timer */
674 event ((W)w, EV_TIMEOUT);
679 periodics_reify (void)
681 while (periodiccnt && periodics [0]->at <= ev_now)
683 struct ev_periodic *w = periodics [0];
685 /* first reschedule or stop timer */
688 w->at += floor ((ev_now - w->at) / w->interval + 1.) * w->interval;
689 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", w->at > ev_now));
690 downheap ((WT *)periodics, periodiccnt, 0);
693 ev_periodic_stop (w); /* nonrepeating: stop timer */
695 event ((W)w, EV_PERIODIC);
700 periodics_reschedule (ev_tstamp diff)
704 /* adjust periodics after time jump */
705 for (i = 0; i < periodiccnt; ++i)
707 struct ev_periodic *w = periodics [i];
711 ev_tstamp diff = ceil ((ev_now - w->at) / w->interval) * w->interval;
713 if (fabs (diff) >= 1e-4)
715 ev_periodic_stop (w);
716 ev_periodic_start (w);
718 i = 0; /* restart loop, inefficient, but time jumps should be rare */
725 time_update_monotonic (void)
729 if (expect_true (now - now_floor < MIN_TIMEJUMP * .5))
748 if (expect_true (have_monotonic))
750 if (time_update_monotonic ())
752 ev_tstamp odiff = diff;
754 for (i = 4; --i; ) /* loop a few times, before making important decisions */
758 if (fabs (odiff - diff) < MIN_TIMEJUMP)
759 return; /* all is well */
766 periodics_reschedule (diff - odiff);
767 /* no timer adjustment, as the monotonic clock doesn't jump */
775 if (expect_false (now > ev_now || now < ev_now - MAX_BLOCKTIME - MIN_TIMEJUMP))
777 periodics_reschedule (ev_now - now);
779 /* adjust timers. this is easy, as the offset is the same for all */
780 for (i = 0; i < timercnt; ++i)
781 timers [i]->at += diff;
790 void ev_loop (int flags)
793 ev_loop_done = flags & (EVLOOP_ONESHOT | EVLOOP_NONBLOCK) ? 1 : 0;
797 /* queue check watchers (and execute them) */
798 if (expect_false (preparecnt))
800 queue_events ((W *)prepares, preparecnt, EV_PREPARE);
804 /* update fd-related kernel structures */
807 /* calculate blocking time */
809 /* we only need this for !monotonic clockor timers, but as we basically
810 always have timers, we just calculate it always */
812 if (expect_true (have_monotonic))
813 time_update_monotonic ();
821 if (flags & EVLOOP_NONBLOCK || idlecnt)
825 block = MAX_BLOCKTIME;
829 ev_tstamp to = timers [0]->at - now + method_fudge;
830 if (block > to) block = to;
835 ev_tstamp to = periodics [0]->at - ev_now + method_fudge;
836 if (block > to) block = to;
839 if (block < 0.) block = 0.;
844 /* update ev_now, do magic */
847 /* queue pending timers and reschedule them */
848 timers_reify (); /* relative timers called last */
849 periodics_reify (); /* absolute timers called first */
851 /* queue idle watchers unless io or timers are pending */
853 queue_events ((W *)idles, idlecnt, EV_IDLE);
855 /* queue check watchers, to be executed first */
857 queue_events ((W *)checks, checkcnt, EV_CHECK);
861 while (!ev_loop_done);
863 if (ev_loop_done != 2)
867 /*****************************************************************************/
870 wlist_add (WL *head, WL elem)
877 wlist_del (WL *head, WL elem)
887 head = &(*head)->next;
892 ev_clear_pending (W w)
896 pendings [ABSPRI (w)][w->pending - 1].w = 0;
902 ev_start (W w, int active)
904 if (w->priority < EV_MINPRI) w->priority = EV_MINPRI;
905 if (w->priority > EV_MAXPRI) w->priority = EV_MAXPRI;
916 /*****************************************************************************/
919 ev_io_start (struct ev_io *w)
923 if (ev_is_active (w))
926 assert (("ev_io_start called with negative fd", fd >= 0));
929 array_needsize (anfds, anfdmax, fd + 1, anfds_init);
930 wlist_add ((WL *)&anfds[fd].head, (WL)w);
936 ev_io_stop (struct ev_io *w)
938 ev_clear_pending ((W)w);
939 if (!ev_is_active (w))
942 wlist_del ((WL *)&anfds[w->fd].head, (WL)w);
949 ev_timer_start (struct ev_timer *w)
951 if (ev_is_active (w))
956 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.));
958 ev_start ((W)w, ++timercnt);
959 array_needsize (timers, timermax, timercnt, );
960 timers [timercnt - 1] = w;
961 upheap ((WT *)timers, timercnt - 1);
965 ev_timer_stop (struct ev_timer *w)
967 ev_clear_pending ((W)w);
968 if (!ev_is_active (w))
971 if (w->active < timercnt--)
973 timers [w->active - 1] = timers [timercnt];
974 downheap ((WT *)timers, timercnt, w->active - 1);
983 ev_timer_again (struct ev_timer *w)
985 if (ev_is_active (w))
989 w->at = now + w->repeat;
990 downheap ((WT *)timers, timercnt, w->active - 1);
1000 ev_periodic_start (struct ev_periodic *w)
1002 if (ev_is_active (w))
1005 assert (("ev_periodic_start called with negative interval value", w->interval >= 0.));
1007 /* this formula differs from the one in periodic_reify because we do not always round up */
1009 w->at += ceil ((ev_now - w->at) / w->interval) * w->interval;
1011 ev_start ((W)w, ++periodiccnt);
1012 array_needsize (periodics, periodicmax, periodiccnt, );
1013 periodics [periodiccnt - 1] = w;
1014 upheap ((WT *)periodics, periodiccnt - 1);
1018 ev_periodic_stop (struct ev_periodic *w)
1020 ev_clear_pending ((W)w);
1021 if (!ev_is_active (w))
1024 if (w->active < periodiccnt--)
1026 periodics [w->active - 1] = periodics [periodiccnt];
1027 downheap ((WT *)periodics, periodiccnt, w->active - 1);
1034 # define SA_RESTART 0
1038 ev_signal_start (struct ev_signal *w)
1040 if (ev_is_active (w))
1043 assert (("ev_signal_start called with illegal signal number", w->signum > 0));
1046 array_needsize (signals, signalmax, w->signum, signals_init);
1047 wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w);
1051 struct sigaction sa;
1052 sa.sa_handler = sighandler;
1053 sigfillset (&sa.sa_mask);
1054 sa.sa_flags = SA_RESTART; /* if restarting works we save one iteration */
1055 sigaction (w->signum, &sa, 0);
1060 ev_signal_stop (struct ev_signal *w)
1062 ev_clear_pending ((W)w);
1063 if (!ev_is_active (w))
1066 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w);
1069 if (!signals [w->signum - 1].head)
1070 signal (w->signum, SIG_DFL);
1074 ev_idle_start (struct ev_idle *w)
1076 if (ev_is_active (w))
1079 ev_start ((W)w, ++idlecnt);
1080 array_needsize (idles, idlemax, idlecnt, );
1081 idles [idlecnt - 1] = w;
1085 ev_idle_stop (struct ev_idle *w)
1087 ev_clear_pending ((W)w);
1088 if (ev_is_active (w))
1091 idles [w->active - 1] = idles [--idlecnt];
1096 ev_prepare_start (struct ev_prepare *w)
1098 if (ev_is_active (w))
1101 ev_start ((W)w, ++preparecnt);
1102 array_needsize (prepares, preparemax, preparecnt, );
1103 prepares [preparecnt - 1] = w;
1107 ev_prepare_stop (struct ev_prepare *w)
1109 ev_clear_pending ((W)w);
1110 if (ev_is_active (w))
1113 prepares [w->active - 1] = prepares [--preparecnt];
1118 ev_check_start (struct ev_check *w)
1120 if (ev_is_active (w))
1123 ev_start ((W)w, ++checkcnt);
1124 array_needsize (checks, checkmax, checkcnt, );
1125 checks [checkcnt - 1] = w;
1129 ev_check_stop (struct ev_check *w)
1131 ev_clear_pending ((W)w);
1132 if (ev_is_active (w))
1135 checks [w->active - 1] = checks [--checkcnt];
1140 ev_child_start (struct ev_child *w)
1142 if (ev_is_active (w))
1146 wlist_add ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
1150 ev_child_stop (struct ev_child *w)
1152 ev_clear_pending ((W)w);
1153 if (ev_is_active (w))
1156 wlist_del ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
1160 /*****************************************************************************/
1166 void (*cb)(int revents, void *arg);
1171 once_cb (struct ev_once *once, int revents)
1173 void (*cb)(int revents, void *arg) = once->cb;
1174 void *arg = once->arg;
1176 ev_io_stop (&once->io);
1177 ev_timer_stop (&once->to);
1184 once_cb_io (struct ev_io *w, int revents)
1186 once_cb ((struct ev_once *)(((char *)w) - offsetof (struct ev_once, io)), revents);
1190 once_cb_to (struct ev_timer *w, int revents)
1192 once_cb ((struct ev_once *)(((char *)w) - offsetof (struct ev_once, to)), revents);
1196 ev_once (int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg)
1198 struct ev_once *once = malloc (sizeof (struct ev_once));
1201 cb (EV_ERROR | EV_READ | EV_WRITE | EV_TIMEOUT, arg);
1207 ev_watcher_init (&once->io, once_cb_io);
1210 ev_io_set (&once->io, fd, events);
1211 ev_io_start (&once->io);
1214 ev_watcher_init (&once->to, once_cb_to);
1217 ev_timer_set (&once->to, timeout, 0.);
1218 ev_timer_start (&once->to);
1223 /*****************************************************************************/
1230 sin_cb (struct ev_io *w, int revents)
1232 fprintf (stderr, "sin %d, revents %d\n", w->fd, revents);
1236 ocb (struct ev_timer *w, int revents)
1238 //fprintf (stderr, "timer %f,%f (%x) (%f) d%p\n", w->at, w->repeat, revents, w->at - ev_time (), w->data);
1244 scb (struct ev_signal *w, int revents)
1246 fprintf (stderr, "signal %x,%d\n", revents, w->signum);
1252 gcb (struct ev_signal *w, int revents)
1254 fprintf (stderr, "generic %x\n", revents);
1262 ev_io_init (&wio, sin_cb, 0, EV_READ);
1265 struct ev_timer t[10000];
1269 for (i = 0; i < 10000; ++i)
1271 struct ev_timer *w = t + i;
1272 ev_watcher_init (w, ocb, i);
1273 ev_timer_init_abs (w, ocb, drand48 (), 0.99775533);
1275 if (drand48 () < 0.5)
1281 ev_timer_init (&t1, ocb, 5, 10);
1282 ev_timer_start (&t1);
1284 struct ev_signal sig;
1285 ev_signal_init (&sig, scb, SIGQUIT);
1286 ev_signal_start (&sig);
1289 ev_check_init (&cw, gcb);
1290 ev_check_start (&cw);
1293 ev_idle_init (&iw, gcb);
1294 ev_idle_start (&iw);