aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2016-02-15 20:33:43 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2016-02-15 20:33:43 -0300
commit1bad289a8085aa5e550f70c50b3e63362ddbd31f (patch)
tree34c8b1272c677c2848d8b443ecc60db9b03fdd11
parentd2ab9b0ac3e59f6423913669f14a9fe15ab6dc59 (diff)
downloadpostgresql-1bad289a8085aa5e550f70c50b3e63362ddbd31f.tar.gz
postgresql-1bad289a8085aa5e550f70c50b3e63362ddbd31f.zip
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.
-rw-r--r--src/bin/pgbench/pgbench.c20
1 files changed, 15 insertions, 5 deletions
diff --git a/src/bin/pgbench/pgbench.c b/src/bin/pgbench/pgbench.c
index 1e1806fad9a..25141edd843 100644
--- a/src/bin/pgbench/pgbench.c
+++ b/src/bin/pgbench/pgbench.c
@@ -3683,7 +3683,7 @@ threadRun(void *arg)
sock = PQsocket(st->con);
if (sock < 0)
{
- fprintf(stderr, "bad socket: %s\n", strerror(errno));
+ fprintf(stderr, "bad socket: %s", PQerrorMessage(st->con));
goto done;
}
@@ -3751,11 +3751,21 @@ threadRun(void *arg)
Command **commands = sql_files[st->use_file];
int prev_ecnt = st->ecnt;
- if (st->con && (FD_ISSET(PQsocket(st->con), &input_mask)
- || commands[st->state]->type == META_COMMAND))
+ if (st->con)
{
- if (!doCustom(thread, st, &result->conn_time, logfile, &aggs))
- remains--; /* I've aborted */
+ int sock = PQsocket(st->con);
+
+ if (sock < 0)
+ {
+ fprintf(stderr, "bad socket: %s", PQerrorMessage(st->con));
+ goto done;
+ }
+ if (FD_ISSET(sock, &input_mask) ||
+ commands[st->state]->type == META_COMMAND)
+ {
+ if (!doCustom(thread, st, &result->conn_time, logfile, &aggs))
+ remains--; /* I've aborted */
+ }
}
if (st->ecnt > prev_ecnt && commands[st->state]->type == META_COMMAND)