Problem: Program crashes if memory allocation in socket_poller_t::rebuild fails.

Solution: Report memory allocation failure as ENOMEM so applications can handle it gracefully.

Fixes #3427.
This commit is contained in:
Eelis van der Weegen 2019-02-23 01:35:30 +01:00
parent cdc4b8c6c6
commit 8259c519b3
3 changed files with 18 additions and 6 deletions

View File

@ -223,6 +223,8 @@ On _zmq_poller_add_fd_, _zmq_poller_modify_fd_ and _zmq_poller_remove_fd_:
The _fd_ specified was the retired fd.
On _zmq_poller_wait_ and _zmq_poller_wait_all_:
*ENOMEM*::
Necessary resources could not be allocated.
*ETERM*::
At least one of the registered objects is a 'socket' whose associated 0MQ
'context' was terminated.

View File

@ -260,7 +260,7 @@ int zmq::socket_poller_t::remove_fd (fd_t fd_)
return 0;
}
void zmq::socket_poller_t::rebuild ()
int zmq::socket_poller_t::rebuild ()
{
_use_signaler = false;
_pollset_size = 0;
@ -287,10 +287,15 @@ void zmq::socket_poller_t::rebuild ()
}
if (_pollset_size == 0)
return;
return 0;
_pollfds = static_cast<pollfd *> (malloc (_pollset_size * sizeof (pollfd)));
alloc_assert (_pollfds);
if (!_pollfds) {
errno = ENOMEM;
_need_rebuild = true;
return -1;
}
int item_nbr = 0;
@ -390,6 +395,8 @@ void zmq::socket_poller_t::rebuild ()
}
#endif
return 0;
}
void zmq::socket_poller_t::zero_trail_events (
@ -523,8 +530,11 @@ int zmq::socket_poller_t::wait (zmq::socket_poller_t::event_t *events_,
return -1;
}
if (_need_rebuild)
rebuild ();
if (_need_rebuild) {
int rc = rebuild ();
if (rc == -1)
return -1;
}
if (unlikely (_pollset_size == 0)) {
// We'll report an error (timed out) as if the list was non-empty and

View File

@ -101,7 +101,7 @@ class socket_poller_t
uint64_t &now_,
uint64_t &end_,
bool &first_pass_);
void rebuild ();
int rebuild ();
// Used to check whether the object is a socket_poller.
uint32_t _tag;