Fix sefault in pgpool child process in certain case.
authorTatsuo Ishii <ishii@sraoss.co.jp>
Fri, 21 Aug 2020 10:51:04 +0000 (19:51 +0900)
committerTatsuo Ishii <ishii@sraoss.co.jp>
Fri, 21 Aug 2020 10:51:04 +0000 (19:51 +0900)
When all backend go down, pgpool refuses to accept connection from
clients and try to send a message in
validate_backend_connectivity(). For this purpose it connects to the
client and try to read the startup packet. This is done in a PG_TRY
block. The startup packet is read in memory pointed to by "sp", which
is declared as "StartupPacket *volatile". This is fine. But it was
forgotten to initialize the value with NULL. As a result, if reading
startup packet fails, sp would be garbage a pointer and segfaults later
in pool_free_startup_packet(sp).

Fix is, initialize "sp" with NULL.

I have found this accidentally in following way:

1) shutdown all backends.

2) connect to pgpool with invalid client. I have used pcp_attach_node
with pgpool's port number, not pcp's.

src/protocol/child.c

index a064a5962cac02499ad50176bd71eb7105cd3f31..a20d3018f21e33a25e4e68bddac488a5fcbec7ad 100644 (file)
@@ -1707,7 +1707,7 @@ validate_backend_connectivity(int front_end_fd)
                if (front_end_fd > 0)
                {
                        POOL_CONNECTION *cp;
-                       StartupPacket *volatile sp;
+                       StartupPacket *volatile sp = NULL;
 
                        /*
                         * we do not want to report socket error, as above errors will be