]> git.kaiwu.me - nginx.git/commit
Events: improved error event handling for UDP sockets.
authorDmitry Volyntsev <xeioex@nginx.com>
Mon, 21 Nov 2016 13:03:42 +0000 (16:03 +0300)
committerDmitry Volyntsev <xeioex@nginx.com>
Mon, 21 Nov 2016 13:03:42 +0000 (16:03 +0300)
commit433fdbf8b6f2e60acd510cbd6ac1e4f67b17d52d
treefc332fcca43a880a9acfe7cb5c0eed9034cbd213
parent89f92b32430c1df2a25580d15f1b047cde8fb792
Events: improved error event handling for UDP sockets.

Normally, the epoll module calls the read and write handlers depending
on whether EPOLLIN and EPOLLOUT are reported by epoll_wait().  No error
processing is done in the module, the handlers are expected to get an
error when doing I/O.

If an error event is reported without EPOLLIN and EPOLLOUT, the module
set both EPOLLIN and EPOLLOUT to ensure the error event is handled at
least in one active handler.

This works well unless the error is delivered along with only one of
EPOLLIN or EPOLLOUT, and the corresponding handler does not do any I/O.
For example, it happened when getting EPOLLERR|EPOLLOUT from
epoll_wait() upon receiving "ICMP port unreachable" while proxying UDP.
As the write handler had nothing to send it was not able to detect and
log an error, and did not switch to the next upstream.

The fix is to unconditionally set EPOLLIN and EPOLLOUT in case of an
error event.  In the aforementioned case, this causes the read handler
to be called which does recv() and detects an error.

In addition to the epoll module, analogous changes were made in
devpoll/eventport/poll.
src/event/modules/ngx_devpoll_module.c
src/event/modules/ngx_epoll_module.c
src/event/modules/ngx_eventport_module.c
src/event/modules/ngx_poll_module.c