pgsql: Restrict access to reindex of shared catalogs fornon-privileged - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: Restrict access to reindex of shared catalogs fornon-privileged
Date
Msg-id E1fnfao-0007AW-0T@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Restrict access to reindex of shared catalogs for non-privileged users

A database owner running a database-level REINDEX has the possibility to
also do the operation on shared system catalogs without being an owner
of them, which allows him to block resources it should not have access
to.  The same goes for a schema owner.  For example, PostgreSQL would go
unresponsive and even block authentication if a lock is waited for
pg_authid.  This commit makes sure that a user running a REINDEX SYSTEM,
DATABASE or SCHEMA only works on the following relations:
- The user is a superuser
- The user is the table owner
- The user is the database/schema owner, only if the relation worked on
is not shared.

Robert has worded most the documentation changes, and I have coded the
core part.

Reported-by: Lloyd Albin, Jeremy Schneider
Author: Michael Paquier, Robert Haas
Reviewed by: Nathan Bossart, Kyotaro Horiguchi
Discussion: https://postgr.es/m/152512087100.19803.12733865831237526317@wrigleys.postgresql.org
Discussion: https://postgr.es/m/20180805211059.GA2185@paquier.xyz
Backpatch-through: 11- as the current behavior has been around for a
very long time and could be disruptive for already released branches.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/661dd23950f2e64646404605e99315d2379de0e5

Modified Files
--------------
doc/src/sgml/ref/reindex.sgml    | 13 +++++++++----
src/backend/commands/indexcmds.c | 12 ++++++++++++
2 files changed, 21 insertions(+), 4 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Remove bogus Assert in make_partitionedrel_pruneinfo().
Next
From: Heikki Linnakangas
Date:
Subject: pgsql: Spell "partitionwise" consistently.