]> granicus.if.org Git - postgresql/commit
Be more paranoid about null return values from libpq status functions.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 25 Nov 2015 22:31:53 +0000 (17:31 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 25 Nov 2015 22:31:53 +0000 (17:31 -0500)
commitc5ef8ce53d37e276d70593ff0f4b06dd119cd3ff
tree79ceb8ee57576c4c1a0dc7662589baef8cf5ec38
parent46166197c3b3748c3266c694d7c2f5a312ea928e
Be more paranoid about null return values from libpq status functions.

PQhost() can return NULL in non-error situations, namely when a Unix-socket
connection has been selected by default.  That behavior is a tad debatable
perhaps, but for the moment we should make sure that psql copes with it.
Unfortunately, do_connect() failed to: it could pass a NULL pointer to
strcmp(), resulting in crashes on most platforms.  This was reported as a
security issue by ChenQin of Topsec Security Team, but the consensus of
the security list is that it's just a garden-variety bug with no security
implications.

For paranoia's sake, I made the keep_password test not trust PQuser or
PQport either, even though I believe those will never return NULL given
a valid PGconn.

Back-patch to all supported branches.
src/bin/psql/command.c