* [PATCH] ds: fix and test for FD leaks with kqueue on ->Reset
@ 2019-06-01 21:43 Eric Wong
2019-06-01 22:26 ` Eric Wong
0 siblings, 1 reply; 2+ messages in thread
From: Eric Wong @ 2019-06-01 21:43 UTC (permalink / raw)
To: meta
Even though we currently don't use it repeatedly, ->Reset
should close() kqueue FDs and not cause the process to run
out of descriptors.
Add a close-on-exec test while we're at it.
---
MANIFEST | 1 +
lib/PublicInbox/DS.pm | 21 +++++++++--------
t/ds-leak.t | 52 +++++++++++++++++++++++++++++++++++++++++++
3 files changed, 65 insertions(+), 9 deletions(-)
create mode 100644 t/ds-leak.t
diff --git a/MANIFEST b/MANIFEST
index 2add154..c1a5d67 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -181,6 +181,7 @@ t/config_limiter.t
t/content_id.t
t/convert-compact.t
t/data/0001.patch
+t/ds-leak.t
t/emergency.t
t/fail-bin/spamc
t/feed.t
diff --git a/lib/PublicInbox/DS.pm b/lib/PublicInbox/DS.pm
index c165559..9142f21 100644
--- a/lib/PublicInbox/DS.pm
+++ b/lib/PublicInbox/DS.pm
@@ -49,8 +49,8 @@ our (
$HaveKQueue,
%DescriptorMap, # fd (num) -> PublicInbox::DS object
$Epoll, # Global epoll fd (for epoll mode only)
- $KQueue, # Global kqueue fd (for kqueue mode only)
- $_io, # IO::Handle for Epoll or KQueue
+ $KQueue, # Global kqueue fd ref (for kqueue mode only)
+ $_io, # IO::Handle for Epoll
@ToClose, # sockets to close when event loop is done
$PostLoopCallback, # subref to call at the end of each loop, if defined (global)
@@ -84,9 +84,13 @@ sub Reset {
%PLCMap = ();
$DoneInit = 0;
- POSIX::close($Epoll) if defined $Epoll && $Epoll >= 0;
- POSIX::close($KQueue) if defined $KQueue && $KQueue >= 0;
- $_io = undef;
+ # NOTE kqueue is close-on-fork, and we don't account for it, yet
+ # OTOH, we (public-inbox) don't need this sub outside of tests...
+ POSIX::close($$KQueue) if !$_io && $KQueue && $$KQueue >= 0;
+ $KQueue = undef;
+
+ $_io = undef; # close $Epoll
+ $Epoll = undef;
*EventLoop = *FirstTimeEventLoop;
}
@@ -168,11 +172,11 @@ sub AddTimer {
die "Shouldn't get here.";
}
+# keeping this around in case we support other FD types for now,
+# epoll_create1(EPOLL_CLOEXEC) requires Linux 2.6.27+...
sub set_cloexec ($) {
my ($fd) = @_;
- # new_from_fd fails on real kqueue, but is needed for libkqueue
- # (which emulates kqueue via epoll)
$_io = IO::Handle->new_from_fd($fd, 'r+') or return;
defined(my $fl = fcntl($_io, F_GETFD, 0)) or return;
fcntl($_io, F_SETFD, $fl | FD_CLOEXEC);
@@ -185,9 +189,8 @@ sub _InitPoller
if ($HAVE_KQUEUE) {
$KQueue = IO::KQueue->new();
- $HaveKQueue = $KQueue >= 0;
+ $HaveKQueue = defined $KQueue;
if ($HaveKQueue) {
- set_cloexec($KQueue); # needed if using libkqueue & epoll
*EventLoop = *KQueueEventLoop;
}
}
diff --git a/t/ds-leak.t b/t/ds-leak.t
new file mode 100644
index 0000000..9e3243e
--- /dev/null
+++ b/t/ds-leak.t
@@ -0,0 +1,52 @@
+# Copyright (C) 2019 all contributors <meta@public-inbox.org>
+# Licensed the same as Danga::Socket (and Perl5)
+# License: GPL-1.0+ or Artistic-1.0-Perl
+# <https://www.gnu.org/licenses/gpl-1.0.txt>
+# <https://dev.perl.org/licenses/artistic.html>
+use strict;
+use warnings;
+use Test::More;
+use_ok 'PublicInbox::DS';
+
+subtest('close-on-exec for epoll and kqueue' => sub {
+ use PublicInbox::Spawn qw(spawn);
+ my $pid;
+ my $evfd_re = qr/(?:kqueue|eventpoll)/i;
+
+ PublicInbox::DS->SetLoopTimeout(0);
+ PublicInbox::DS->SetPostLoopCallback(sub { 0 });
+ PublicInbox::DS->AddTimer(0, sub { $pid = spawn([qw(sleep 10)]) });
+ PublicInbox::DS->EventLoop;
+ ok($pid, 'subprocess spawned');
+ my @of = grep(/$evfd_re/, `lsof -p $pid 2>/dev/null`);
+ my $err = $?;
+ SKIP: {
+ skip "lsof missing? (\$?=$err)", 1 if $err;
+ is_deeply(\@of, [], 'no FDs leaked to subprocess');
+ };
+ if (defined $pid) {
+ kill(9, $pid);
+ waitpid($pid, 0);
+ }
+ PublicInbox::DS->Reset;
+});
+
+SKIP: {
+ # not bothering with BSD::Resource
+ chomp(my $n = `/bin/sh -c 'ulimit -n'`);
+
+ # FreeBSD 11.2 with 2GB RAM gives RLIMIT_NOFILE=57987!
+ if ($n > 1024 && !$ENV{TEST_EXPENSIVE}) {
+ skip "RLIMIT_NOFILE=$n too big w/o TEST_EXPENSIVE for $0", 1;
+ }
+ my $cb = sub {};
+ for my $i (0..$n) {
+ PublicInbox::DS->SetLoopTimeout(0);
+ PublicInbox::DS->SetPostLoopCallback($cb);
+ PublicInbox::DS->EventLoop;
+ PublicInbox::DS->Reset;
+ }
+ ok(1, "Reset works and doesn't hit RLIMIT_NOFILE ($n)");
+};
+
+done_testing;
--
EW
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ds: fix and test for FD leaks with kqueue on ->Reset
2019-06-01 21:43 [PATCH] ds: fix and test for FD leaks with kqueue on ->Reset Eric Wong
@ 2019-06-01 22:26 ` Eric Wong
0 siblings, 0 replies; 2+ messages in thread
From: Eric Wong @ 2019-06-01 22:26 UTC (permalink / raw)
To: meta
I forgot to note this drops "support" for libkqueue (which
emulates kqueue using epoll on Linux) because emulating
the unique close-on-fork behavior of kqueue is tricky
and libkqueue currently does not emulate close-on-fork.
Detecting the presence of close-on-fork in libkqueue is
also tricky, but maybe it can be fixed:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=929857
So yeah, tt's too time-consuming to ensure libkqueue works
on Linux and ultimately pointless since we already support
epoll. And I doubt there's any relevant kernels which
aren't covered by native kqueue besides Linux.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-06-01 22:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-01 21:43 [PATCH] ds: fix and test for FD leaks with kqueue on ->Reset Eric Wong
2019-06-01 22:26 ` Eric Wong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).