Fix off-by-one loop termination condition in pg_stat_get_subscription().
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 7 Jun 2022 19:34:30 +0000 (15:34 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 7 Jun 2022 19:34:30 +0000 (15:34 -0400)
commitbf4717b0910763e81ffbf0358de06a88faee5132
tree9f6deed5441c22cfde473a15b8a2157a5cb2432c
parent51da231597a9e414174cf621b219559e18269dc3
Fix off-by-one loop termination condition in pg_stat_get_subscription().

pg_stat_get_subscription scanned one more LogicalRepWorker array entry
than is really allocated.  In the worst case this could lead to SIGSEGV,
if the LogicalRepCtx data structure is near the end of shared memory.
That seems quite unlikely though (thanks to the ordering of calls in
CreateSharedMemoryAndSemaphores) and we've heard no field reports of it.
A more likely misbehavior is one row of garbage data in the function's
result, but even that is not real likely because of the check that the
pid field matches some live backend.

Report and fix by Kuntal Ghosh.  This bug is old, so back-patch
to all supported branches.

Discussion: https://postgr.es/m/CAGz5QCJykEDzW6jQK6Yz7Qh_PMtD=95de_7QoocbVR2Qy8hWZA@mail.gmail.com
src/backend/replication/logical/launcher.c