]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Produce a more useful error message for over-length Unix socket paths.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 30 Nov 2012 00:57:17 +0000 (19:57 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 30 Nov 2012 00:57:17 +0000 (19:57 -0500)
commitc6a91c92b51a13f204495851cf7a90e55ec16f0a
tree41156f9ca710adfef5901d613b87fb4b62175f17
parent6f9a9da85c9015e773d12e8571c469e5a2a6b3fb
Produce a more useful error message for over-length Unix socket paths.

The length of a socket path name is constrained by the size of struct
sockaddr_un, and there's not a lot we can do about it since that is a
kernel API.  However, it would be a good thing if we produced an
intelligible error message when the user specifies a socket path that's too
long --- and getaddrinfo's standard API is too impoverished to do this in
the natural way.  So insert explicit tests at the places where we construct
a socket path name.  Now you'll get an error that makes sense and even
tells you what the limit is, rather than something generic like
"Non-recoverable failure in name resolution".

Per trouble report from Jeremy Drake and a fix idea from Andrew Dunstan.
src/backend/libpq/pqcomm.c
src/include/libpq/pqcomm.h
src/interfaces/libpq/fe-connect.c