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;
419 write (sigpipe [1], &signum, 1);
424 sigcb (struct ev_io *iow, int revents)
429 read (sigpipe [0], &revents, 1);
432 for (signum = signalmax; signum--; )
433 if (signals [signum].gotsig)
435 signals [signum].gotsig = 0;
437 for (w = signals [signum].head; w; w = w->next)
438 event ((W)w, EV_SIGNAL);
446 fcntl (sigpipe [0], F_SETFD, FD_CLOEXEC);
447 fcntl (sigpipe [1], F_SETFD, FD_CLOEXEC);
449 /* rather than sort out wether we really need nb, set it */
450 fcntl (sigpipe [0], F_SETFL, O_NONBLOCK);
451 fcntl (sigpipe [1], F_SETFL, O_NONBLOCK);
454 ev_io_set (&sigev, sigpipe [0], EV_READ);
455 ev_io_start (&sigev);
458 /*****************************************************************************/
460 static struct ev_idle **idles;
461 static int idlemax, idlecnt;
463 static struct ev_prepare **prepares;
464 static int preparemax, preparecnt;
466 static struct ev_check **checks;
467 static int checkmax, checkcnt;
469 /*****************************************************************************/
471 static struct ev_child *childs [PID_HASHSIZE];
472 static struct ev_signal childev;
477 # define WCONTINUED 0
481 childcb (struct ev_signal *sw, int revents)
486 while ((pid = waitpid (-1, &status, WNOHANG | WUNTRACED | WCONTINUED)) != -1)
487 for (w = childs [pid & (PID_HASHSIZE - 1)]; w; w = w->next)
488 if (w->pid == pid || !w->pid)
492 event ((W)w, EV_CHILD);
498 /*****************************************************************************/
501 # include "ev_kqueue.c"
504 # include "ev_epoll.c"
507 # include "ev_poll.c"
510 # include "ev_select.c"
514 ev_version_major (void)
516 return EV_VERSION_MAJOR;
520 ev_version_minor (void)
522 return EV_VERSION_MINOR;
525 /* return true if we are running with elevated privileges and ignore env variables */
529 return getuid () != geteuid ()
530 || getgid () != getegid ();
533 int ev_init (int methods)
540 if (!clock_gettime (CLOCK_MONOTONIC, &ts))
553 if (methods == EVMETHOD_AUTO)
554 if (!enable_secure () && getenv ("LIBEV_METHODS"))
555 methods = atoi (getenv ("LIBEV_METHODS"));
557 methods = EVMETHOD_ANY;
561 if (!ev_method && (methods & EVMETHOD_KQUEUE)) kqueue_init (methods);
564 if (!ev_method && (methods & EVMETHOD_EPOLL )) epoll_init (methods);
567 if (!ev_method && (methods & EVMETHOD_POLL )) poll_init (methods);
570 if (!ev_method && (methods & EVMETHOD_SELECT)) select_init (methods);
575 ev_watcher_init (&sigev, sigcb);
579 ev_signal_init (&childev, childcb, SIGCHLD);
580 ev_signal_start (&childev);
588 /*****************************************************************************/
591 ev_fork_prepare (void)
597 ev_fork_parent (void)
606 if (ev_method == EVMETHOD_EPOLL)
607 epoll_postfork_child ();
617 /*****************************************************************************/
624 for (pri = NUMPRI; pri--; )
625 while (pendingcnt [pri])
627 ANPENDING *p = pendings [pri] + --pendingcnt [pri];
632 p->w->cb (p->w, p->events);
640 while (timercnt && timers [0]->at <= now)
642 struct ev_timer *w = timers [0];
644 /* first reschedule or stop timer */
647 assert (("negative ev_timer repeat value found while processing timers", w->repeat > 0.));
648 w->at = now + w->repeat;
649 downheap ((WT *)timers, timercnt, 0);
652 ev_timer_stop (w); /* nonrepeating: stop timer */
654 event ((W)w, EV_TIMEOUT);
659 periodics_reify (void)
661 while (periodiccnt && periodics [0]->at <= ev_now)
663 struct ev_periodic *w = periodics [0];
665 /* first reschedule or stop timer */
668 w->at += floor ((ev_now - w->at) / w->interval + 1.) * w->interval;
669 assert (("ev_periodic timeout in the past detected while processing timers, negative interval?", w->at > ev_now));
670 downheap ((WT *)periodics, periodiccnt, 0);
673 ev_periodic_stop (w); /* nonrepeating: stop timer */
675 event ((W)w, EV_PERIODIC);
680 periodics_reschedule (ev_tstamp diff)
684 /* adjust periodics after time jump */
685 for (i = 0; i < periodiccnt; ++i)
687 struct ev_periodic *w = periodics [i];
691 ev_tstamp diff = ceil ((ev_now - w->at) / w->interval) * w->interval;
693 if (fabs (diff) >= 1e-4)
695 ev_periodic_stop (w);
696 ev_periodic_start (w);
698 i = 0; /* restart loop, inefficient, but time jumps should be rare */
705 time_update_monotonic (void)
709 if (expect_true (now - now_floor < MIN_TIMEJUMP * .5))
728 if (expect_true (have_monotonic))
730 if (time_update_monotonic ())
732 ev_tstamp odiff = diff;
734 for (i = 4; --i; ) /* loop a few times, before making important decisions */
738 if (fabs (odiff - diff) < MIN_TIMEJUMP)
739 return; /* all is well */
746 periodics_reschedule (diff - odiff);
747 /* no timer adjustment, as the monotonic clock doesn't jump */
755 if (expect_false (now > ev_now || now < ev_now - MAX_BLOCKTIME - MIN_TIMEJUMP))
757 periodics_reschedule (ev_now - now);
759 /* adjust timers. this is easy, as the offset is the same for all */
760 for (i = 0; i < timercnt; ++i)
761 timers [i]->at += diff;
770 void ev_loop (int flags)
773 ev_loop_done = flags & (EVLOOP_ONESHOT | EVLOOP_NONBLOCK) ? 1 : 0;
777 /* queue check watchers (and execute them) */
778 if (expect_false (preparecnt))
780 queue_events ((W *)prepares, preparecnt, EV_PREPARE);
784 /* update fd-related kernel structures */
787 /* calculate blocking time */
789 /* we only need this for !monotonic clockor timers, but as we basically
790 always have timers, we just calculate it always */
792 if (expect_true (have_monotonic))
793 time_update_monotonic ();
801 if (flags & EVLOOP_NONBLOCK || idlecnt)
805 block = MAX_BLOCKTIME;
809 ev_tstamp to = timers [0]->at - now + method_fudge;
810 if (block > to) block = to;
815 ev_tstamp to = periodics [0]->at - ev_now + method_fudge;
816 if (block > to) block = to;
819 if (block < 0.) block = 0.;
824 /* update ev_now, do magic */
827 /* queue pending timers and reschedule them */
828 timers_reify (); /* relative timers called last */
829 periodics_reify (); /* absolute timers called first */
831 /* queue idle watchers unless io or timers are pending */
833 queue_events ((W *)idles, idlecnt, EV_IDLE);
835 /* queue check watchers, to be executed first */
837 queue_events ((W *)checks, checkcnt, EV_CHECK);
841 while (!ev_loop_done);
843 if (ev_loop_done != 2)
847 /*****************************************************************************/
850 wlist_add (WL *head, WL elem)
857 wlist_del (WL *head, WL elem)
867 head = &(*head)->next;
872 ev_clear_pending (W w)
876 pendings [ABSPRI (w)][w->pending - 1].w = 0;
882 ev_start (W w, int active)
884 if (w->priority < EV_MINPRI) w->priority = EV_MINPRI;
885 if (w->priority > EV_MAXPRI) w->priority = EV_MAXPRI;
896 /*****************************************************************************/
899 ev_io_start (struct ev_io *w)
903 if (ev_is_active (w))
906 assert (("ev_io_start called with negative fd", fd >= 0));
909 array_needsize (anfds, anfdmax, fd + 1, anfds_init);
910 wlist_add ((WL *)&anfds[fd].head, (WL)w);
916 ev_io_stop (struct ev_io *w)
918 ev_clear_pending ((W)w);
919 if (!ev_is_active (w))
922 wlist_del ((WL *)&anfds[w->fd].head, (WL)w);
929 ev_timer_start (struct ev_timer *w)
931 if (ev_is_active (w))
936 assert (("ev_timer_start called with negative timer repeat value", w->repeat >= 0.));
938 ev_start ((W)w, ++timercnt);
939 array_needsize (timers, timermax, timercnt, );
940 timers [timercnt - 1] = w;
941 upheap ((WT *)timers, timercnt - 1);
945 ev_timer_stop (struct ev_timer *w)
947 ev_clear_pending ((W)w);
948 if (!ev_is_active (w))
951 if (w->active < timercnt--)
953 timers [w->active - 1] = timers [timercnt];
954 downheap ((WT *)timers, timercnt, w->active - 1);
963 ev_timer_again (struct ev_timer *w)
965 if (ev_is_active (w))
969 w->at = now + w->repeat;
970 downheap ((WT *)timers, timercnt, w->active - 1);
980 ev_periodic_start (struct ev_periodic *w)
982 if (ev_is_active (w))
985 assert (("ev_periodic_start called with negative interval value", w->interval >= 0.));
987 /* this formula differs from the one in periodic_reify because we do not always round up */
989 w->at += ceil ((ev_now - w->at) / w->interval) * w->interval;
991 ev_start ((W)w, ++periodiccnt);
992 array_needsize (periodics, periodicmax, periodiccnt, );
993 periodics [periodiccnt - 1] = w;
994 upheap ((WT *)periodics, periodiccnt - 1);
998 ev_periodic_stop (struct ev_periodic *w)
1000 ev_clear_pending ((W)w);
1001 if (!ev_is_active (w))
1004 if (w->active < periodiccnt--)
1006 periodics [w->active - 1] = periodics [periodiccnt];
1007 downheap ((WT *)periodics, periodiccnt, w->active - 1);
1014 ev_signal_start (struct ev_signal *w)
1016 if (ev_is_active (w))
1019 assert (("ev_signal_start called with illegal signal number", w->signum > 0));
1022 array_needsize (signals, signalmax, w->signum, signals_init);
1023 wlist_add ((WL *)&signals [w->signum - 1].head, (WL)w);
1027 struct sigaction sa;
1028 sa.sa_handler = sighandler;
1029 sigfillset (&sa.sa_mask);
1031 sigaction (w->signum, &sa, 0);
1036 ev_signal_stop (struct ev_signal *w)
1038 ev_clear_pending ((W)w);
1039 if (!ev_is_active (w))
1042 wlist_del ((WL *)&signals [w->signum - 1].head, (WL)w);
1045 if (!signals [w->signum - 1].head)
1046 signal (w->signum, SIG_DFL);
1050 ev_idle_start (struct ev_idle *w)
1052 if (ev_is_active (w))
1055 ev_start ((W)w, ++idlecnt);
1056 array_needsize (idles, idlemax, idlecnt, );
1057 idles [idlecnt - 1] = w;
1061 ev_idle_stop (struct ev_idle *w)
1063 ev_clear_pending ((W)w);
1064 if (ev_is_active (w))
1067 idles [w->active - 1] = idles [--idlecnt];
1072 ev_prepare_start (struct ev_prepare *w)
1074 if (ev_is_active (w))
1077 ev_start ((W)w, ++preparecnt);
1078 array_needsize (prepares, preparemax, preparecnt, );
1079 prepares [preparecnt - 1] = w;
1083 ev_prepare_stop (struct ev_prepare *w)
1085 ev_clear_pending ((W)w);
1086 if (ev_is_active (w))
1089 prepares [w->active - 1] = prepares [--preparecnt];
1094 ev_check_start (struct ev_check *w)
1096 if (ev_is_active (w))
1099 ev_start ((W)w, ++checkcnt);
1100 array_needsize (checks, checkmax, checkcnt, );
1101 checks [checkcnt - 1] = w;
1105 ev_check_stop (struct ev_check *w)
1107 ev_clear_pending ((W)w);
1108 if (ev_is_active (w))
1111 checks [w->active - 1] = checks [--checkcnt];
1116 ev_child_start (struct ev_child *w)
1118 if (ev_is_active (w))
1122 wlist_add ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
1126 ev_child_stop (struct ev_child *w)
1128 ev_clear_pending ((W)w);
1129 if (ev_is_active (w))
1132 wlist_del ((WL *)&childs [w->pid & (PID_HASHSIZE - 1)], (WL)w);
1136 /*****************************************************************************/
1142 void (*cb)(int revents, void *arg);
1147 once_cb (struct ev_once *once, int revents)
1149 void (*cb)(int revents, void *arg) = once->cb;
1150 void *arg = once->arg;
1152 ev_io_stop (&once->io);
1153 ev_timer_stop (&once->to);
1160 once_cb_io (struct ev_io *w, int revents)
1162 once_cb ((struct ev_once *)(((char *)w) - offsetof (struct ev_once, io)), revents);
1166 once_cb_to (struct ev_timer *w, int revents)
1168 once_cb ((struct ev_once *)(((char *)w) - offsetof (struct ev_once, to)), revents);
1172 ev_once (int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg)
1174 struct ev_once *once = malloc (sizeof (struct ev_once));
1177 cb (EV_ERROR | EV_READ | EV_WRITE | EV_TIMEOUT, arg);
1183 ev_watcher_init (&once->io, once_cb_io);
1186 ev_io_set (&once->io, fd, events);
1187 ev_io_start (&once->io);
1190 ev_watcher_init (&once->to, once_cb_to);
1193 ev_timer_set (&once->to, timeout, 0.);
1194 ev_timer_start (&once->to);
1199 /*****************************************************************************/
1206 sin_cb (struct ev_io *w, int revents)
1208 fprintf (stderr, "sin %d, revents %d\n", w->fd, revents);
1212 ocb (struct ev_timer *w, int revents)
1214 //fprintf (stderr, "timer %f,%f (%x) (%f) d%p\n", w->at, w->repeat, revents, w->at - ev_time (), w->data);
1220 scb (struct ev_signal *w, int revents)
1222 fprintf (stderr, "signal %x,%d\n", revents, w->signum);
1228 gcb (struct ev_signal *w, int revents)
1230 fprintf (stderr, "generic %x\n", revents);
1238 ev_io_init (&wio, sin_cb, 0, EV_READ);
1241 struct ev_timer t[10000];
1245 for (i = 0; i < 10000; ++i)
1247 struct ev_timer *w = t + i;
1248 ev_watcher_init (w, ocb, i);
1249 ev_timer_init_abs (w, ocb, drand48 (), 0.99775533);
1251 if (drand48 () < 0.5)
1257 ev_timer_init (&t1, ocb, 5, 10);
1258 ev_timer_start (&t1);
1260 struct ev_signal sig;
1261 ev_signal_init (&sig, scb, SIGQUIT);
1262 ev_signal_start (&sig);
1265 ev_check_init (&cw, gcb);
1266 ev_check_start (&cw);
1269 ev_idle_init (&iw, gcb);
1270 ev_idle_start (&iw);