]> git.kaiwu.me - nginx.git/commit
Fixed runtime handling of systems without EPOLLRDHUP support.
authorMarcus Ball <marcus.ball@live.com>
Sun, 29 May 2022 23:38:07 +0000 (02:38 +0300)
committerMarcus Ball <marcus.ball@live.com>
Sun, 29 May 2022 23:38:07 +0000 (02:38 +0300)
commita4eddea7112cf5db86bea5ab9c8dcc597f2a1344
tree0944308c4fe671172ff9260251ecc1fbec1e9dc2
parent0c1d3268a6e4f138d2ebf1f859a4a9b1f2777513
Fixed runtime handling of systems without EPOLLRDHUP support.

In 7583:efd71d49bde0 (nginx 1.17.5) along with introduction of the
ioctl(FIONREAD) support proper handling of systems without EPOLLRDHUP
support in the kernel (but with EPOLLRDHUP in headers) was broken.

Before the change, rev->available was never set to 0 unless
ngx_use_epoll_rdhup was also set (that is, runtime test for EPOLLRDHUP
introduced in 6536:f7849bfb6d21 succeeded).  After the change,
rev->available might reach 0 on systems without runtime EPOLLRDHUP
support, stopping further reading in ngx_readv_chain() and ngx_unix_recv().
And, if EOF happened to be already reported along with the last event,
it is not reported again by epoll_wait(), leading to connection hangs
and timeouts on such systems.

This affects Linux kernels before 2.6.17 if nginx was compiled
with newer headers, and, more importantly, emulation layers, such as
DigitalOcean's App Platform's / gVisor's epoll emulation layer.

Fix is to explicitly check ngx_use_epoll_rdhup before the corresponding
rev->pending_eof tests in ngx_readv_chain() and ngx_unix_recv().
src/os/unix/ngx_readv_chain.c
src/os/unix/ngx_recv.c