]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/DS.pm
ds: add_timer: allow passing arg to callback.
[public-inbox.git] / lib / PublicInbox / DS.pm
1 # This library is free software; you can redistribute it and/or modify
2 # it under the same terms as Perl itself.
3 #
4 # This license differs from the rest of public-inbox
5 #
6 # This is a fork of the unmaintained Danga::Socket (1.61) with
7 # significant changes.  See Documentation/technical/ds.txt in our
8 # source for details.
9 #
10 # Do not expect this to be a stable API like Danga::Socket,
11 # but it will evolve to suite our needs and to take advantage of
12 # newer Linux and *BSD features.
13 # Bugs encountered were reported to bug-Danga-Socket@rt.cpan.org,
14 # fixed in Danga::Socket 1.62 and visible at:
15 # https://rt.cpan.org/Public/Dist/Display.html?Name=Danga-Socket
16 #
17 # fields:
18 # sock: underlying socket
19 # rbuf: scalarref, usually undef
20 # wbuf: arrayref of coderefs or tmpio (autovivified))
21 #        (tmpio = [ GLOB, offset, [ length ] ])
22 package PublicInbox::DS;
23 use strict;
24 use bytes;
25 use POSIX qw(WNOHANG);
26 use IO::Handle qw();
27 use Fcntl qw(SEEK_SET :DEFAULT O_APPEND);
28 use Time::HiRes qw(clock_gettime CLOCK_MONOTONIC);
29 use parent qw(Exporter);
30 our @EXPORT_OK = qw(now msg_more);
31 use 5.010_001;
32 use Scalar::Util qw(blessed);
33 use PublicInbox::Syscall qw(:epoll);
34 use PublicInbox::Tmpfile;
35 use Errno qw(EAGAIN EINVAL);
36 use Carp qw(confess carp);
37
38 my $nextq; # queue for next_tick
39 my $wait_pids; # list of [ pid, callback, callback_arg ]
40 my $later_queue; # list of callbacks to run at some later interval
41 my $EXPMAP; # fd -> idle_time
42 our $EXPTIME = 180; # 3 minutes
43 my ($later_timer, $reap_timer, $exp_timer);
44 my $ToClose; # sockets to close when event loop is done
45 our (
46      %DescriptorMap,             # fd (num) -> PublicInbox::DS object
47      $Epoll,                     # Global epoll fd (or DSKQXS ref)
48      $_io,                       # IO::Handle for Epoll
49
50      $PostLoopCallback,          # subref to call at the end of each loop, if defined (global)
51
52      $LoopTimeout,               # timeout of event loop in milliseconds
53      $DoneInit,                  # if we've done the one-time module init yet
54      @Timers,                    # timers
55      $in_loop,
56      );
57
58 Reset();
59
60 #####################################################################
61 ### C L A S S   M E T H O D S
62 #####################################################################
63
64 =head2 C<< CLASS->Reset() >>
65
66 Reset all state
67
68 =cut
69 sub Reset {
70     %DescriptorMap = ();
71     $in_loop = $wait_pids = $later_queue = undef;
72     $EXPMAP = {};
73     $nextq = $ToClose = $reap_timer = $later_timer = $exp_timer = undef;
74     $LoopTimeout = -1;  # no timeout by default
75     @Timers = ();
76
77     $PostLoopCallback = undef;
78     $DoneInit = 0;
79
80     $_io = undef; # closes real $Epoll FD
81     $Epoll = undef; # may call DSKQXS::DESTROY
82
83     *EventLoop = *FirstTimeEventLoop;
84 }
85
86 =head2 C<< CLASS->SetLoopTimeout( $timeout ) >>
87
88 Set the loop timeout for the event loop to some value in milliseconds.
89
90 A timeout of 0 (zero) means poll forever. A timeout of -1 means poll and return
91 immediately.
92
93 =cut
94 sub SetLoopTimeout {
95     return $LoopTimeout = $_[1] + 0;
96 }
97
98 =head2 C<< PublicInbox::DS::add_timer( $seconds, $coderef, $arg) >>
99
100 Add a timer to occur $seconds from now. $seconds may be fractional, but timers
101 are not guaranteed to fire at the exact time you ask for.
102
103 =cut
104 sub add_timer ($$;$) {
105     my ($secs, $coderef, $arg) = @_;
106
107     my $fire_time = now() + $secs;
108
109     my $timer = [$fire_time, $coderef, $arg];
110
111     if (!@Timers || $fire_time >= $Timers[-1][0]) {
112         push @Timers, $timer;
113         return $timer;
114     }
115
116     # Now, where do we insert?  (NOTE: this appears slow, algorithm-wise,
117     # but it was compared against calendar queues, heaps, naive push/sort,
118     # and a bunch of other versions, and found to be fastest with a large
119     # variety of datasets.)
120     for (my $i = 0; $i < @Timers; $i++) {
121         if ($Timers[$i][0] > $fire_time) {
122             splice(@Timers, $i, 0, $timer);
123             return $timer;
124         }
125     }
126
127     die "Shouldn't get here.";
128 }
129
130 # keeping this around in case we support other FD types for now,
131 # epoll_create1(EPOLL_CLOEXEC) requires Linux 2.6.27+...
132 sub set_cloexec ($) {
133     my ($fd) = @_;
134
135     $_io = IO::Handle->new_from_fd($fd, 'r+') or return;
136     defined(my $fl = fcntl($_io, F_GETFD, 0)) or return;
137     fcntl($_io, F_SETFD, $fl | FD_CLOEXEC);
138 }
139
140 sub _InitPoller
141 {
142     return if $DoneInit;
143     $DoneInit = 1;
144
145     if (PublicInbox::Syscall::epoll_defined())  {
146         $Epoll = epoll_create();
147         set_cloexec($Epoll) if (defined($Epoll) && $Epoll >= 0);
148     } else {
149         my $cls;
150         for (qw(DSKQXS DSPoll)) {
151             $cls = "PublicInbox::$_";
152             last if eval "require $cls";
153         }
154         $cls->import(qw(epoll_ctl epoll_wait));
155         $Epoll = $cls->new;
156     }
157     *EventLoop = *EpollEventLoop;
158 }
159
160 =head2 C<< CLASS->EventLoop() >>
161
162 Start processing IO events. In most daemon programs this never exits. See
163 C<PostLoopCallback> below for how to exit the loop.
164
165 =cut
166 sub FirstTimeEventLoop {
167     my $class = shift;
168
169     _InitPoller();
170
171     EventLoop($class);
172 }
173
174 sub now () { clock_gettime(CLOCK_MONOTONIC) }
175
176 sub next_tick () {
177     my $q = $nextq or return;
178     $nextq = undef;
179     for (@$q) {
180         # we avoid "ref" on blessed refs to workaround a Perl 5.16.3 leak:
181         # https://rt.perl.org/Public/Bug/Display.html?id=114340
182         if (blessed($_)) {
183             $_->event_step;
184         } else {
185             $_->();
186         }
187     }
188 }
189
190 # runs timers and returns milliseconds for next one, or next event loop
191 sub RunTimers {
192     next_tick();
193
194     return (($nextq || $ToClose) ? 0 : $LoopTimeout) unless @Timers;
195
196     my $now = now();
197
198     # Run expired timers
199     while (@Timers && $Timers[0][0] <= $now) {
200         my $to_run = shift(@Timers);
201         $to_run->[1]->($to_run->[2]);
202     }
203
204     # timers may enqueue into nextq:
205     return 0 if ($nextq || $ToClose);
206
207     return $LoopTimeout unless @Timers;
208
209     # convert time to an even number of milliseconds, adding 1
210     # extra, otherwise floating point fun can occur and we'll
211     # call RunTimers like 20-30 times, each returning a timeout
212     # of 0.0000212 seconds
213     my $timeout = int(($Timers[0][0] - $now) * 1000) + 1;
214
215     # -1 is an infinite timeout, so prefer a real timeout
216     return $timeout     if $LoopTimeout == -1;
217
218     # otherwise pick the lower of our regular timeout and time until
219     # the next timer
220     return $LoopTimeout if $LoopTimeout < $timeout;
221     return $timeout;
222 }
223
224 # We can't use waitpid(-1) safely here since it can hit ``, system(),
225 # and other things.  So we scan the $wait_pids list, which is hopefully
226 # not too big.  We keep $wait_pids small by not calling dwaitpid()
227 # until we've hit EOF when reading the stdout of the child.
228 sub reap_pids {
229     my $tmp = $wait_pids or return;
230     $wait_pids = $reap_timer = undef;
231     foreach my $ary (@$tmp) {
232         my ($pid, $cb, $arg) = @$ary;
233         my $ret = waitpid($pid, WNOHANG);
234         if ($ret == 0) {
235             push @$wait_pids, $ary; # autovivifies @$wait_pids
236         } elsif ($cb) {
237             eval { $cb->($arg, $pid) };
238         }
239     }
240     # we may not be done, yet, and could've missed/masked a SIGCHLD:
241     $reap_timer = add_timer(1, \&reap_pids) if $wait_pids;
242 }
243
244 # reentrant SIGCHLD handler (since reap_pids is not reentrant)
245 sub enqueue_reap ($) { push @$nextq, \&reap_pids }; # autovivifies
246
247 sub in_loop () { $in_loop }
248
249 # Internal function: run the post-event callback, send read events
250 # for pushed-back data, and close pending connections.  returns 1
251 # if event loop should continue, or 0 to shut it all down.
252 sub PostEventLoop () {
253         # now we can close sockets that wanted to close during our event
254         # processing.  (we didn't want to close them during the loop, as we
255         # didn't want fd numbers being reused and confused during the event
256         # loop)
257         if (my $close_now = $ToClose) {
258                 $ToClose = undef; # will be autovivified on push
259                 @$close_now = map { fileno($_) } @$close_now;
260
261                 # order matters, destroy expiry times, first:
262                 delete @$EXPMAP{@$close_now};
263
264                 # ->DESTROY methods may populate ToClose
265                 delete @DescriptorMap{@$close_now};
266         }
267
268         # by default we keep running, unless a postloop callback cancels it
269         $PostLoopCallback ? $PostLoopCallback->(\%DescriptorMap) : 1;
270 }
271
272 sub EpollEventLoop {
273     local $in_loop = 1;
274     do {
275         my @events;
276         my $i;
277         my $timeout = RunTimers();
278
279         # get up to 1000 events
280         my $evcount = epoll_wait($Epoll, 1000, $timeout, \@events);
281         for ($i=0; $i<$evcount; $i++) {
282             # it's possible epoll_wait returned many events, including some at the end
283             # that ones in the front triggered unregister-interest actions.  if we
284             # can't find the %sock entry, it's because we're no longer interested
285             # in that event.
286             $DescriptorMap{$events[$i]->[0]}->event_step;
287         }
288     } while (PostEventLoop());
289     _run_later();
290 }
291
292 =head2 C<< CLASS->SetPostLoopCallback( CODEREF ) >>
293
294 Sets post loop callback function.  Pass a subref and it will be
295 called every time the event loop finishes.
296
297 Return 1 (or any true value) from the sub to make the loop continue, 0 or false
298 and it will exit.
299
300 The callback function will be passed two parameters: \%DescriptorMap
301
302 =cut
303 sub SetPostLoopCallback {
304     my ($class, $ref) = @_;
305
306     # global callback
307     $PostLoopCallback = (defined $ref && ref $ref eq 'CODE') ? $ref : undef;
308 }
309
310 #####################################################################
311 ### PublicInbox::DS-the-object code
312 #####################################################################
313
314 =head2 OBJECT METHODS
315
316 =head2 C<< CLASS->new( $socket ) >>
317
318 Create a new PublicInbox::DS subclass object for the given I<socket> which will
319 react to events on it during the C<EventLoop>.
320
321 This is normally (always?) called from your subclass via:
322
323   $class->SUPER::new($socket);
324
325 =cut
326 sub new {
327     my ($self, $sock, $ev) = @_;
328     $self->{sock} = $sock;
329     my $fd = fileno($sock);
330
331     _InitPoller();
332
333     if (epoll_ctl($Epoll, EPOLL_CTL_ADD, $fd, $ev)) {
334         if ($! == EINVAL && ($ev & EPOLLEXCLUSIVE)) {
335             $ev &= ~EPOLLEXCLUSIVE;
336             goto retry;
337         }
338         die "couldn't add epoll watch for $fd: $!\n";
339     }
340     confess("DescriptorMap{$fd} defined ($DescriptorMap{$fd})")
341         if defined($DescriptorMap{$fd});
342
343     $DescriptorMap{$fd} = $self;
344 }
345
346
347 #####################################################################
348 ### I N S T A N C E   M E T H O D S
349 #####################################################################
350
351 sub requeue ($) { push @$nextq, $_[0] } # autovivifies
352
353 =head2 C<< $obj->close >>
354
355 Close the socket.
356
357 =cut
358 sub close {
359     my ($self) = @_;
360     my $sock = delete $self->{sock} or return;
361
362     # we need to flush our write buffer, as there may
363     # be self-referential closures (sub { $client->close })
364     # preventing the object from being destroyed
365     delete $self->{wbuf};
366
367     # if we're using epoll, we have to remove this from our epoll fd so we stop getting
368     # notifications about it
369     my $fd = fileno($sock);
370     epoll_ctl($Epoll, EPOLL_CTL_DEL, $fd, 0) and
371         confess("EPOLL_CTL_DEL: $!");
372
373     # we explicitly don't delete from DescriptorMap here until we
374     # actually close the socket, as we might be in the middle of
375     # processing an epoll_wait/etc that returned hundreds of fds, one
376     # of which is not yet processed and is what we're closing.  if we
377     # keep it in DescriptorMap, then the event harnesses can just
378     # looked at $pob->{sock} == undef and ignore it.  but if it's an
379     # un-accounted for fd, then it (understandably) freak out a bit
380     # and emit warnings, thinking their state got off.
381
382     # defer closing the actual socket until the event loop is done
383     # processing this round of events.  (otherwise we might reuse fds)
384     push @$ToClose, $sock; # autovivifies $ToClose
385
386     return 0;
387 }
388
389 # portable, non-thread-safe sendfile emulation (no pread, yet)
390 sub send_tmpio ($$) {
391     my ($sock, $tmpio) = @_;
392
393     sysseek($tmpio->[0], $tmpio->[1], SEEK_SET) or return;
394     my $n = $tmpio->[2] // 65536;
395     $n = 65536 if $n > 65536;
396     defined(my $to_write = sysread($tmpio->[0], my $buf, $n)) or return;
397     my $written = 0;
398     while ($to_write > 0) {
399         if (defined(my $w = syswrite($sock, $buf, $to_write, $written))) {
400             $written += $w;
401             $to_write -= $w;
402         } else {
403             return if $written == 0;
404             last;
405         }
406     }
407     $tmpio->[1] += $written; # offset
408     $tmpio->[2] -= $written if defined($tmpio->[2]); # length
409     $written;
410 }
411
412 sub epbit ($$) { # (sock, default)
413         $_[0]->can('stop_SSL') ? PublicInbox::TLS::epollbit() : $_[1];
414 }
415
416 # returns 1 if done, 0 if incomplete
417 sub flush_write ($) {
418     my ($self) = @_;
419     my $sock = $self->{sock} or return;
420     my $wbuf = $self->{wbuf} or return 1;
421
422 next_buf:
423     while (my $bref = $wbuf->[0]) {
424         if (ref($bref) ne 'CODE') {
425             while ($sock) {
426                 my $w = send_tmpio($sock, $bref); # bref is tmpio
427                 if (defined $w) {
428                     if ($w == 0) {
429                         shift @$wbuf;
430                         goto next_buf;
431                     }
432                 } elsif ($! == EAGAIN) {
433                     epwait($sock, epbit($sock, EPOLLOUT) | EPOLLONESHOT);
434                     return 0;
435                 } else {
436                     return $self->close;
437                 }
438             }
439         } else { #(ref($bref) eq 'CODE') {
440             shift @$wbuf;
441             my $before = scalar(@$wbuf);
442             $bref->($self);
443
444             # bref may be enqueueing more CODE to call (see accept_tls_step)
445             return 0 if (scalar(@$wbuf) > $before);
446         }
447     } # while @$wbuf
448
449     delete $self->{wbuf};
450     1; # all done
451 }
452
453 sub rbuf_idle ($$) {
454     my ($self, $rbuf) = @_;
455     if ($$rbuf eq '') { # who knows how long till we can read again
456         delete $self->{rbuf};
457     } else {
458         $self->{rbuf} = $rbuf;
459     }
460 }
461
462 sub do_read ($$$;$) {
463     my ($self, $rbuf, $len, $off) = @_;
464     my $r = sysread(my $sock = $self->{sock}, $$rbuf, $len, $off // 0);
465     return ($r == 0 ? $self->close : $r) if defined $r;
466     # common for clients to break connections without warning,
467     # would be too noisy to log here:
468     if ($! == EAGAIN) {
469         epwait($sock, epbit($sock, EPOLLIN) | EPOLLONESHOT);
470         rbuf_idle($self, $rbuf);
471         0;
472     } else {
473         $self->close;
474     }
475 }
476
477 # drop the socket if we hit unrecoverable errors on our system which
478 # require BOFH attention: ENOSPC, EFBIG, EIO, EMFILE, ENFILE...
479 sub drop {
480     my $self = shift;
481     carp(@_);
482     $self->close;
483 }
484
485 # n.b.: use ->write/->read for this buffer to allow compatibility with
486 # PerlIO::mmap or PerlIO::scalar if needed
487 sub tmpio ($$$) {
488     my ($self, $bref, $off) = @_;
489     my $fh = tmpfile('wbuf', $self->{sock}, O_APPEND) or
490         return drop($self, "tmpfile $!");
491     $fh->autoflush(1);
492     my $len = bytes::length($$bref) - $off;
493     $fh->write($$bref, $len, $off) or return drop($self, "write ($len): $!");
494     [ $fh, 0 ] # [1] = offset, [2] = length, not set by us
495 }
496
497 =head2 C<< $obj->write( $data ) >>
498
499 Write the specified data to the underlying handle.  I<data> may be scalar,
500 scalar ref, code ref (to run when there).
501 Returns 1 if writes all went through, or 0 if there are writes in queue. If
502 it returns 1, caller should stop waiting for 'writable' events)
503
504 =cut
505 sub write {
506     my ($self, $data) = @_;
507
508     # nobody should be writing to closed sockets, but caller code can
509     # do two writes within an event, have the first fail and
510     # disconnect the other side (whose destructor then closes the
511     # calling object, but it's still in a method), and then the
512     # now-dead object does its second write.  that is this case.  we
513     # just lie and say it worked.  it'll be dead soon and won't be
514     # hurt by this lie.
515     my $sock = $self->{sock} or return 1;
516     my $ref = ref $data;
517     my $bref = $ref ? $data : \$data;
518     my $wbuf = $self->{wbuf};
519     if ($wbuf && scalar(@$wbuf)) { # already buffering, can't write more...
520         if ($ref eq 'CODE') {
521             push @$wbuf, $bref;
522         } else {
523             my $tmpio = $wbuf->[-1];
524             if ($tmpio && !defined($tmpio->[2])) { # append to tmp file buffer
525                 $tmpio->[0]->print($$bref) or return drop($self, "print: $!");
526             } else {
527                 my $tmpio = tmpio($self, $bref, 0) or return 0;
528                 push @$wbuf, $tmpio;
529             }
530         }
531         return 0;
532     } elsif ($ref eq 'CODE') {
533         $bref->($self);
534         return 1;
535     } else {
536         my $to_write = bytes::length($$bref);
537         my $written = syswrite($sock, $$bref, $to_write);
538
539         if (defined $written) {
540             return 1 if $written == $to_write;
541             requeue($self); # runs: event_step -> flush_write
542         } elsif ($! == EAGAIN) {
543             epwait($sock, epbit($sock, EPOLLOUT) | EPOLLONESHOT);
544             $written = 0;
545         } else {
546             return $self->close;
547         }
548
549         # deal with EAGAIN or partial write:
550         my $tmpio = tmpio($self, $bref, $written) or return 0;
551
552         # wbuf may be an empty array if we're being called inside
553         # ->flush_write via CODE bref:
554         push @{$self->{wbuf}}, $tmpio; # autovivifies
555         return 0;
556     }
557 }
558
559 use constant MSG_MORE => ($^O eq 'linux') ? 0x8000 : 0;
560
561 sub msg_more ($$) {
562     my $self = $_[0];
563     my $sock = $self->{sock} or return 1;
564     my $wbuf = $self->{wbuf};
565
566     if (MSG_MORE && (!defined($wbuf) || !scalar(@$wbuf)) &&
567                 !$sock->can('stop_SSL')) {
568         my $n = send($sock, $_[1], MSG_MORE);
569         if (defined $n) {
570             my $nlen = bytes::length($_[1]) - $n;
571             return 1 if $nlen == 0; # all done!
572             # queue up the unwritten substring:
573             my $tmpio = tmpio($self, \($_[1]), $n) or return 0;
574             push @{$self->{wbuf}}, $tmpio; # autovivifies
575             epwait($sock, EPOLLOUT|EPOLLONESHOT);
576             return 0;
577         }
578     }
579
580     # don't redispatch into NNTPdeflate::write
581     PublicInbox::DS::write($self, \($_[1]));
582 }
583
584 sub epwait ($$) {
585     my ($sock, $ev) = @_;
586     epoll_ctl($Epoll, EPOLL_CTL_MOD, fileno($sock), $ev) and
587         confess("EPOLL_CTL_MOD $!");
588 }
589
590 # return true if complete, false if incomplete (or failure)
591 sub accept_tls_step ($) {
592     my ($self) = @_;
593     my $sock = $self->{sock} or return;
594     return 1 if $sock->accept_SSL;
595     return $self->close if $! != EAGAIN;
596     epwait($sock, PublicInbox::TLS::epollbit() | EPOLLONESHOT);
597     unshift(@{$self->{wbuf}}, \&accept_tls_step); # autovivifies
598     0;
599 }
600
601 # return true if complete, false if incomplete (or failure)
602 sub shutdn_tls_step ($) {
603     my ($self) = @_;
604     my $sock = $self->{sock} or return;
605     return $self->close if $sock->stop_SSL(SSL_fast_shutdown => 1);
606     return $self->close if $! != EAGAIN;
607     epwait($sock, PublicInbox::TLS::epollbit() | EPOLLONESHOT);
608     unshift(@{$self->{wbuf}}, \&shutdn_tls_step); # autovivifies
609     0;
610 }
611
612 # don't bother with shutdown($sock, 2), we don't fork+exec w/o CLOEXEC
613 # or fork w/o exec, so no inadvertent socket sharing
614 sub shutdn ($) {
615     my ($self) = @_;
616     my $sock = $self->{sock} or return;
617     if ($sock->can('stop_SSL')) {
618         shutdn_tls_step($self);
619     } else {
620         $self->close;
621     }
622 }
623
624 # must be called with eval, PublicInbox::DS may not be loaded (see t/qspawn.t)
625 sub dwaitpid ($$$) {
626         die "Not in EventLoop\n" unless $in_loop;
627         push @$wait_pids, [ @_ ]; # [ $pid, $cb, $arg ]
628
629         # We could've just missed our SIGCHLD, cover it, here:
630         requeue(\&reap_pids);
631 }
632
633 sub _run_later () {
634         my $run = $later_queue or return;
635         $later_timer = $later_queue = undef;
636         $_->() for @$run;
637 }
638
639 sub later ($) {
640         push @$later_queue, $_[0]; # autovivifies @$later_queue
641         $later_timer //= add_timer(60, \&_run_later);
642 }
643
644 sub expire_old () {
645         my $now = now();
646         my $exp = $EXPTIME;
647         my $old = $now - $exp;
648         my %new;
649         while (my ($fd, $idle_at) = each %$EXPMAP) {
650                 if ($idle_at < $old) {
651                         my $ds_obj = $DescriptorMap{$fd};
652                         $new{$fd} = $idle_at if !$ds_obj->shutdn;
653                 } else {
654                         $new{$fd} = $idle_at;
655                 }
656         }
657         $EXPMAP = \%new;
658         $exp_timer = scalar(keys %new) ? later(\&expire_old) : undef;
659 }
660
661 sub update_idle_time {
662         my ($self) = @_;
663         my $sock = $self->{sock} or return;
664         $EXPMAP->{fileno($sock)} = now();
665         $exp_timer //= later(\&expire_old);
666 }
667
668 sub not_idle_long {
669         my ($self, $now) = @_;
670         my $sock = $self->{sock} or return;
671         my $idle_at = $EXPMAP->{fileno($sock)} or return;
672         ($idle_at + $EXPTIME) > $now;
673 }
674
675 1;
676
677 =head1 AUTHORS (Danga::Socket)
678
679 Brad Fitzpatrick <brad@danga.com> - author
680
681 Michael Granger <ged@danga.com> - docs, testing
682
683 Mark Smith <junior@danga.com> - contributor, heavy user, testing
684
685 Matt Sergeant <matt@sergeant.org> - kqueue support, docs, timers, other bits