Skip to content

Commit ac6e875

Browse files
committed
Ensure libpq reports a suitable error message on unexpected socket EOF.
The EOF-detection logic in pqReadData was a bit confused about who should set up the error message in case the kernel gives us read-ready-but-no-data rather than ECONNRESET or some other explicit error condition. Since the whole point of this situation is that the lower-level functions don't know there's anything wrong, pqReadData itself must set up the message. But keep the assumption that if an errno was reported, a message was set up at lower levels. Per bug #11712 from Marko Tiikkaja. It's been like this for a very long time, so back-patch to all supported branches.
1 parent 98170fa commit ac6e875

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

src/interfaces/libpq/fe-misc.c

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -730,12 +730,8 @@ pqReadData(PGconn *conn)
730730
/* ready for read */
731731
break;
732732
default:
733-
printfPQExpBuffer(&conn->errorMessage,
734-
libpq_gettext(
735-
"server closed the connection unexpectedly\n"
736-
"\tThis probably means the server terminated abnormally\n"
737-
"\tbefore or while processing the request.\n"));
738-
goto definitelyFailed;
733+
/* we override pqReadReady's message with something more useful */
734+
goto definitelyEOF;
739735
}
740736

741737
/*
@@ -774,9 +770,16 @@ pqReadData(PGconn *conn)
774770

775771
/*
776772
* OK, we are getting a zero read even though select() says ready. This
777-
* means the connection has been closed. Cope. Note that errorMessage
778-
* has been set already.
773+
* means the connection has been closed. Cope.
779774
*/
775+
definitelyEOF:
776+
printfPQExpBuffer(&conn->errorMessage,
777+
libpq_gettext(
778+
"server closed the connection unexpectedly\n"
779+
"\tThis probably means the server terminated abnormally\n"
780+
"\tbefore or while processing the request.\n"));
781+
782+
/* Come here if lower-level code already set a suitable errorMessage */
780783
definitelyFailed:
781784
conn->status = CONNECTION_BAD; /* No more connection to backend */
782785
pqsecure_close(conn);

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy