X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FListener.pm;h=928d9301902fdb059ddbd4a2603af92cb6848736;hb=55b707d788ce13696e4411389583e720ea6dab01;hp=f6a5da694041bfb89656eb43b3ecafc468c234ec;hpb=9bd675d33ad1e49bd2ebe12a1d216216e61380de;p=public-inbox.git diff --git a/lib/PublicInbox/Listener.pm b/lib/PublicInbox/Listener.pm index f6a5da69..928d9301 100644 --- a/lib/PublicInbox/Listener.pm +++ b/lib/PublicInbox/Listener.pm @@ -8,8 +8,15 @@ use warnings; use base 'PublicInbox::DS'; use Socket qw(SOL_SOCKET SO_KEEPALIVE IPPROTO_TCP TCP_NODELAY); use fields qw(post_accept); -require IO::Handle; +use IO::Handle; use PublicInbox::Syscall qw(EPOLLIN EPOLLEXCLUSIVE EPOLLET); +use Errno qw(EAGAIN ECONNABORTED EPERM); + +# Warn on transient errors, mostly resource limitations. +# EINTR would indicate the failure to set NonBlocking in systemd or similar +my %ERR_WARN = map {; + eval("Errno::$_()") => $_ +} qw(EMFILE ENFILE ENOBUFS ENOMEM EINTR); sub new ($$$) { my ($class, $s, $cb) = @_; @@ -35,6 +42,18 @@ sub event_step { IO::Handle::blocking($c, 0); # no accept4 :< $self->{post_accept}->($c, $addr, $sock); $self->requeue; + } elsif ($! == EAGAIN || $! == ECONNABORTED || $! == EPERM) { + # EAGAIN is common and likely + # ECONNABORTED is common with bad connections + # EPERM happens if firewall rules prevent a connection + # on Linux (and everything that emulates Linux). + # Firewall rules are sometimes intentional, so we don't + # warn on EPERM to avoid being too noisy... + return; + } elsif (my $sym = $ERR_WARN{int($!)}) { + warn "W: accept(): $! ($sym)\n"; + } else { + warn "BUG?: accept(): $!\n"; } }