]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Parallel workers use AuthenticatedUserId for connection privilege checks.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 11 Nov 2024 22:05:53 +0000 (17:05 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 11 Nov 2024 22:05:53 +0000 (17:05 -0500)
commit95f5a523729f6814c8757860d9a2264148b7b0df
treee090b4f3a3dfdffce1d258c7bdb1a807ccc585dc
parent64df8870097aa286363a5d81462802783abbfa61
Parallel workers use AuthenticatedUserId for connection privilege checks.

Commit 5a2fed911 had an unexpected side-effect: the parallel worker
launched for the new test case would fail if it couldn't use a
superuser-reserved connection slot.  The reason that test failed
while all our pre-existing ones worked is that the connection
privilege tests in InitPostgres had been based on the superuserness
of the leader's AuthenticatedUserId, but after the rearrangements
of 5a2fed911 we were testing the superuserness of CurrentUserId,
which the new test case deliberately made to be a non-superuser.

This all seems very accidental and probably not the behavior we really
want, but a security patch is no time to be redesigning things.
Pending some discussion about desirable semantics, hack it so that
InitPostgres continues to pay attention to the superuserness of
AuthenticatedUserId when starting a parallel worker.

Nathan Bossart and Tom Lane, per buildfarm member sawshark.

Security: CVE-2024-10978
src/backend/utils/init/postinit.c