Ban role pg_signal_backend from more superuser backend types.
authorNoah Misch
Mon, 6 Nov 2023 14:14:13 +0000 (06:14 -0800)
committerNoah Misch
Mon, 6 Nov 2023 14:14:16 +0000 (06:14 -0800)
Documentation says it cannot signal "a backend owned by a superuser".
On the contrary, it could signal background workers, including the
logical replication launcher.  It could signal autovacuum workers and
the autovacuum launcher.  Block all that.  Signaling autovacuum workers
and those two launchers doesn't stall progress beyond what one could
achieve other ways.  If a cluster uses a non-core extension with a
background worker that does not auto-restart, this could create a denial
of service with respect to that background worker.  A background worker
with bugs in its code for responding to terminations or cancellations
could experience those bugs at a time the pg_signal_backend member
chooses.  Back-patch to v11 (all supported versions).

Reviewed by Jelte Fennema-Nio.  Reported by Hemanth Sandrana and
Mahendrakar Srinivasarao.

Security: CVE-2023-5870

src/backend/storage/ipc/signalfuncs.c
src/test/regress/expected/privileges.out
src/test/regress/sql/privileges.sql

index 6e310b14ebda1a24441ea308190de30602b0decf..3d4598d4a11ac61fa8b1c9833ad2f7b2560a2538 100644 (file)
@@ -74,8 +74,13 @@ pg_signal_backend(int pid, int sig)
        return SIGNAL_BACKEND_ERROR;
    }
 
-   /* Only allow superusers to signal superuser-owned backends. */
-   if (superuser_arg(proc->roleId) && !superuser())
+   /*
+    * Only allow superusers to signal superuser-owned backends.  Any process
+    * not advertising a role might have the importance of a superuser-owned
+    * backend, so treat it that way.
+    */
+   if ((!OidIsValid(proc->roleId) || superuser_arg(proc->roleId)) &&
+       !superuser())
        return SIGNAL_BACKEND_NOSUPERUSER;
 
    /* Users can signal backends they have role membership in. */
index 03df567d50f6699f32ff96ab5409609b3f288000..8213be3d2166ee6c4f1d29d72ce20ebdc516e249 100644 (file)
@@ -1960,6 +1960,24 @@ SELECT * FROM pg_largeobject LIMIT 0;
 SET SESSION AUTHORIZATION regress_priv_user1;
 SELECT * FROM pg_largeobject LIMIT 0;          -- to be denied
 ERROR:  permission denied for table pg_largeobject
+-- pg_signal_backend can't signal superusers
+RESET SESSION AUTHORIZATION;
+BEGIN;
+CREATE OR REPLACE FUNCTION terminate_nothrow(pid int) RETURNS bool
+   LANGUAGE plpgsql SECURITY DEFINER SET client_min_messages = error AS $$
+BEGIN
+   RETURN pg_terminate_backend($1);
+EXCEPTION WHEN OTHERS THEN
+   RETURN false;
+END$$;
+ALTER FUNCTION terminate_nothrow OWNER TO pg_signal_backend;
+SELECT backend_type FROM pg_stat_activity
+WHERE CASE WHEN COALESCE(usesysid, 10) = 10 THEN terminate_nothrow(pid) END;
+ backend_type 
+--------------
+(0 rows)
+
+ROLLBACK;
 -- test pg_database_owner
 RESET SESSION AUTHORIZATION;
 GRANT pg_database_owner TO regress_priv_user1;
index 2a6ba38e523729444b31ae648e29af21065e5a30..55b5df584bb66382debde31d265c7e4a55d914d2 100644 (file)
@@ -1266,6 +1266,21 @@ SELECT * FROM pg_largeobject LIMIT 0;
 SET SESSION AUTHORIZATION regress_priv_user1;
 SELECT * FROM pg_largeobject LIMIT 0;          -- to be denied
 
+-- pg_signal_backend can't signal superusers
+RESET SESSION AUTHORIZATION;
+BEGIN;
+CREATE OR REPLACE FUNCTION terminate_nothrow(pid int) RETURNS bool
+   LANGUAGE plpgsql SECURITY DEFINER SET client_min_messages = error AS $$
+BEGIN
+   RETURN pg_terminate_backend($1);
+EXCEPTION WHEN OTHERS THEN
+   RETURN false;
+END$$;
+ALTER FUNCTION terminate_nothrow OWNER TO pg_signal_backend;
+SELECT backend_type FROM pg_stat_activity
+WHERE CASE WHEN COALESCE(usesysid, 10) = 10 THEN terminate_nothrow(pid) END;
+ROLLBACK;
+
 -- test pg_database_owner
 RESET SESSION AUTHORIZATION;
 GRANT pg_database_owner TO regress_priv_user1;