postgresql/contrib/btree_gist
Tom Lane 7eeb1d9861 Make contrib modules' installation scripts more secure.
Hostile objects located within the installation-time search_path could
capture references in an extension's installation or upgrade script.
If the extension is being installed with superuser privileges, this
opens the door to privilege escalation.  While such hazards have existed
all along, their urgency increases with the v13 "trusted extensions"
feature, because that lets a non-superuser control the installation path
for a superuser-privileged script.  Therefore, make a number of changes
to make such situations more secure:

* Tweak the construction of the installation-time search_path to ensure
that references to objects in pg_catalog can't be subverted; and
explicitly add pg_temp to the end of the path to prevent attacks using
temporary objects.

* Disable check_function_bodies within installation/upgrade scripts,
so that any security gaps in SQL-language or PL-language function bodies
cannot create a risk of unwanted installation-time code execution.

* Adjust lookup of type input/receive functions and join estimator
functions to complain if there are multiple candidate functions.  This
prevents capture of references to functions whose signature is not the
first one checked; and it's arguably more user-friendly anyway.

* Modify various contrib upgrade scripts to ensure that catalog
modification queries are executed with secure search paths.  (These
are in-place modifications with no extension version changes, since
it is the update process itself that is at issue, not the end result.)

Extensions that depend on other extensions cannot be made fully secure
by these methods alone; therefore, revert the "trusted" marking that
commit eb67623c9 applied to earthdistance and hstore_plperl, pending
some better solution to that set of issues.

Also add documentation around these issues, to help extension authors
write secure installation scripts.

Patch by me, following an observation by Andres Freund; thanks
to Noah Misch for review.

Security: CVE-2020-14350
2020-08-10 10:44:42 -04:00
..
data Add btree_gist support for enum types. 2017-03-21 10:43:27 -04:00
expected Change floating-point output format for improved performance. 2019-02-13 15:20:33 +00:00
sql Remove WITH OIDS support, change oid catalog column visibility. 2018-11-20 16:00:17 -08:00
.gitignore Support "make check" in contrib 2011-04-25 22:27:11 +03:00
Makefile Update btree_gist extension for parallel query 2020-07-20 13:59:50 +03:00
btree_bit.c Change TRUE/FALSE to true/false 2017-11-08 11:37:28 -05:00
btree_bytea.c Change TRUE/FALSE to true/false 2017-11-08 11:37:28 -05:00
btree_cash.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_date.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_enum.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_float4.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_float8.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_gist--1.0--1.1.sql Add index-only scan support to btree_gist. 2015-03-27 23:35:16 +02:00
btree_gist--1.1--1.2.sql Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
btree_gist--1.2--1.3.sql Add uuid to the set of types supported by contrib/btree_gist. 2016-11-29 14:08:34 -05:00
btree_gist--1.2.sql Handle contrib's GIN/GIST support function signature changes honestly. 2016-06-09 16:44:25 -04:00
btree_gist--1.3--1.4.sql Add support for EUI-64 MAC addresses as macaddr8 2017-03-15 11:16:25 -04:00
btree_gist--1.4--1.5.sql Add btree_gist support for enum types. 2017-03-21 10:43:27 -04:00
btree_gist--1.5--1.6.sql Update btree_gist extension for parallel query 2020-07-20 13:59:50 +03:00
btree_gist.c Create function prototype as part of PG_FUNCTION_INFO_V1 macro 2014-04-18 00:03:19 -04:00
btree_gist.control Update btree_gist extension for parallel query 2020-07-20 13:59:50 +03:00
btree_gist.h Make the order of the header file includes consistent. 2019-11-25 08:08:57 +05:30
btree_inet.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_int2.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_int4.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_int8.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_interval.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_macaddr.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_macaddr8.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_numeric.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_oid.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_text.c Change TRUE/FALSE to true/false 2017-11-08 11:37:28 -05:00
btree_time.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_ts.c Get rid of trailing semicolons in C macro definitions. 2020-05-01 17:28:00 -04:00
btree_utils_num.c More unconstify use 2019-02-13 11:50:16 +01:00
btree_utils_num.h Get rid of trailing semicolons in C macro definitions. 2020-05-01 17:28:00 -04:00
btree_utils_var.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00
btree_utils_var.h Make the order of the header file includes consistent. 2019-11-25 08:08:57 +05:30
btree_uuid.c Clean up newlines following left parentheses 2020-01-30 13:42:14 -03:00