]> granicus.if.org Git - postgresql/commit
pgbench: avoid FD_ISSET on an invalid file descriptor
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 15 Feb 2016 23:33:43 +0000 (20:33 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 15 Feb 2016 23:33:43 +0000 (20:33 -0300)
commit0b2aefe74afaf418ca74f31fc3ef39f2a3cd336a
tree80480250dee5a3e300a62146a506a6f250da9849
parent1f52d23ef2565d1cd7d72292882776ab56ce64ad
pgbench: avoid FD_ISSET on an invalid file descriptor

The original code wasn't careful to test the file descriptor returned by
PQsocket() for an invalid socket.  If an invalid socket did turn up,
that would amount to calling FD_ISSET with fd = -1, whereby undefined
behavior can be invoked.

To fix, test file descriptor for validity and stop further processing if
that fails.

Problem noticed by Coverity.

There is an existing FD_ISSET callsite that does check for invalid
sockets beforehand, but the error message reported by it was
strerror(errno); in testing the aforementioned change, that turns out to
result in "bad socket: Success" which isn't terribly helpful.  Instead
use PQerrorMessage() in both places which is more likely to contain an
useful error message.

Backpatch-through: 9.1.
contrib/pgbench/pgbench.c