]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix privilege checks in pg_stats_ext and pg_stats_ext_exprs.
authorNathan Bossart <nathan@postgresql.org>
Mon, 6 May 2024 14:00:13 +0000 (09:00 -0500)
committerNathan Bossart <nathan@postgresql.org>
Mon, 6 May 2024 14:00:13 +0000 (09:00 -0500)
commit9cc2b62894de6a8b3d78d20bcd1a6647a7553a6c
treef5a878c70fbc5ad057b1910eadc954fb756752bc
parent3672c6cdfd7cb2cb82837cf4a341bf7c0a60bd59
Fix privilege checks in pg_stats_ext and pg_stats_ext_exprs.

The catalog view pg_stats_ext fails to consider privileges for
expression statistics.  The catalog view pg_stats_ext_exprs fails
to consider privileges and row-level security policies.  To fix,
restrict the data in these views to table owners or roles that
inherit privileges of the table owner.  It may be possible to apply
less restrictive privilege checks in some cases, but that is left
as a future exercise.  Furthermore, for pg_stats_ext_exprs, do not
return data for tables with row-level security enabled, as is
already done for pg_stats_ext.

On the back-branches, a fix-CVE-2024-4317.sql script is provided
that will install into the "share" directory.  This file can be
used to apply the fix to existing clusters.

Bumps catversion on 'master' branch only.

Reported-by: Lukas Fittl
Reviewed-by: Noah Misch, Tomas Vondra, Tom Lane
Security: CVE-2024-4317
Backpatch-through: 14
doc/src/sgml/catalogs.sgml
doc/src/sgml/system-views.sgml
src/backend/catalog/Makefile
src/backend/catalog/fix-CVE-2024-4317.sql [new file with mode: 0644]
src/backend/catalog/system_views.sql
src/test/regress/expected/rules.out
src/test/regress/expected/stats_ext.out
src/test/regress/sql/stats_ext.sql