diff options
author | Noah Misch <noah@leadboat.com> | 2023-11-06 06:14:13 -0800 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2023-11-06 06:14:17 -0800 |
commit | 2c7a2a00a0867754d9e6e103057406ce953964cc (patch) | |
tree | ca78968c967ceaf9f4b996721d1db99c64e7b9fa | |
parent | 28b609550af0f8e6e09e5af0d090eda331992ef5 (diff) | |
download | postgresql-2c7a2a00a0867754d9e6e103057406ce953964cc.tar.gz postgresql-2c7a2a00a0867754d9e6e103057406ce953964cc.zip |
Set GUC "is_superuser" in all processes that set AuthenticatedUserId.
It was always false in single-user mode, in autovacuum workers, and in
background workers. This had no specifically-identified security
consequences, but non-core code or future work might make it
security-relevant. Back-patch to v11 (all supported versions).
Jelte Fennema-Nio. Reported by Jelte Fennema-Nio.
-rw-r--r-- | src/backend/utils/init/miscinit.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/backend/utils/init/miscinit.c b/src/backend/utils/init/miscinit.c index edbd838ba52..7828791ed26 100644 --- a/src/backend/utils/init/miscinit.c +++ b/src/backend/utils/init/miscinit.c @@ -767,6 +767,14 @@ InitializeSessionUserIdStandalone(void) AuthenticatedUserIsSuperuser = true; SetSessionUserId(BOOTSTRAP_SUPERUSERID, true); + + /* + * XXX This should set SetConfigOption("session_authorization"), too. + * Since we don't, C code will get NULL, and current_setting() will get an + * empty string. + */ + SetConfigOption("is_superuser", "on", + PGC_INTERNAL, PGC_S_DYNAMIC_DEFAULT); } |