On Wed, Apr 15, 2020 at 9:14 AM Andrey M. Borodin <x4...@yandex-team.ru> wrote:
> Hi! > > One of our users asked me why they cannot read details of > pg_stat_progress_vacuum while they have pg_read_all_stats role. > Maybe I'm missing something, but I think they should be able to read > stats... > > PFA fix. > This affects pg_stat_progress_analyze, pg_stat_progress_basebackup, > pg_stat_progress_cluster, pg_stat_progress_create_index and > pg_stat_progress_vacuum. > > With patch > postgres=# set role pg_read_all_stats ; > postgres=> select * from pg_stat_progress_vacuum ; > pid | datid | datname | relid | phase | heap_blks_total | > heap_blks_scanned | heap_blks_vacuumed | index_vacuum_count | > max_dead_tuples | num_dead_tuples > > -------+-------+----------+-------+---------------+-----------------+-------------------+--------------------+--------------------+-----------------+----------------- > 76331 | 12923 | postgres | 1247 | scanning heap | 10 | > 1 | 0 | 0 | 2910 | > 0 > (1 row) > > Without patch > postgres=# set role pg_read_all_stats ; > SET > postgres=> select * from pg_stat_progress_vacuum ; > pid | datid | datname | relid | phase | heap_blks_total | > heap_blks_scanned | heap_blks_vacuumed | index_vacuum_count | > max_dead_tuples | num_dead_tuples > > -------+-------+----------+-------+-------+-----------------+-------------------+--------------------+--------------------+-----------------+----------------- > 76331 | 12923 | postgres | | | | > | | | | > > (1 row) > I think that makes perfect sense. The documentation explicitly says "can read all pg_stat_* views", which is clearly wrong -- so either the code or the docs should be fixed, and it looks like it's the code that should be fixed to me. As for the patch, one could argue that we should just store the resulting boolean instead of re-running the check (e.g. have a "bool has_stats_privilege" or such), but perhaps that's an unnecessary micro-optimization, like the attached. -- Magnus Hagander Me: https://www.hagander.net/ <http://www.hagander.net/> Work: https://www.redpill-linpro.com/ <http://www.redpill-linpro.com/>
diff --git a/src/backend/utils/adt/pgstatfuncs.c b/src/backend/utils/adt/pgstatfuncs.c index 175f4fd26b..60fc94d89c 100644 --- a/src/backend/utils/adt/pgstatfuncs.c +++ b/src/backend/utils/adt/pgstatfuncs.c @@ -466,6 +466,7 @@ pg_stat_get_progress_info(PG_FUNCTION_ARGS) ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo; MemoryContext per_query_ctx; MemoryContext oldcontext; + bool has_stats_role = is_member_of_role(GetUserId(), DEFAULT_ROLE_READ_ALL_STATS); /* check to see if caller supports us returning a tuplestore */ if (rsinfo == NULL || !IsA(rsinfo, ReturnSetInfo)) @@ -537,7 +538,8 @@ pg_stat_get_progress_info(PG_FUNCTION_ARGS) values[1] = ObjectIdGetDatum(beentry->st_databaseid); /* show rest of the values including relid only to role members */ - if (has_privs_of_role(GetUserId(), beentry->st_userid)) + if (has_stats_role || + has_privs_of_role(GetUserId(), beentry->st_userid)) { values[2] = ObjectIdGetDatum(beentry->st_progress_command_target); for (i = 0; i < PGSTAT_NUM_PROGRESS_PARAM; i++)