pgsql: Avoid using unsafe search_path settings during dump andrestore. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Avoid using unsafe search_path settings during dump andrestore.
Date
Msg-id E1eqKZO-0005e4-5v@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Avoid using unsafe search_path settings during dump and restore.

Historically, pg_dump has "set search_path = foo, pg_catalog" when
dumping an object in schema "foo", and has also caused that setting
to be used while restoring the object.  This is problematic because
functions and operators in schema "foo" could capture references meant
to refer to pg_catalog entries, both in the queries issued by pg_dump
and those issued during the subsequent restore run.  That could
result in dump/restore misbehavior, or in privilege escalation if a
nefarious user installs trojan-horse functions or operators.

This patch changes pg_dump so that it does not change the search_path
dynamically.  The emitted restore script sets the search_path to what
was used at dump time, and then leaves it alone thereafter.  Created
objects are placed in the correct schema, regardless of the active
search_path, by dint of schema-qualifying their names in the CREATE
commands, as well as in subsequent ALTER and ALTER-like commands.

Since this change requires a change in the behavior of pg_restore
when processing an archive file made according to this new convention,
bump the archive file version number; old versions of pg_restore will
therefore refuse to process files made with new versions of pg_dump.

Security: CVE-2018-1058

Branch
------
REL9_3_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/fe8b95b7ea0c6e4294c4c97c555bc7f3492c0e33

Modified Files
--------------
src/backend/utils/adt/ruleutils.c                |   51 +-
src/bin/pg_dump/dumputils.c                      |   82 +-
src/bin/pg_dump/dumputils.h                      |    6 +-
src/bin/pg_dump/pg_backup.h                      |    3 +
src/bin/pg_dump/pg_backup_archiver.c             |   47 +-
src/bin/pg_dump/pg_backup_archiver.h             |    6 +-
src/bin/pg_dump/pg_dump.c                        | 1610 +++++++++-------------
src/bin/pg_dump/pg_dumpall.c                     |   36 +-
src/test/regress/expected/collate.linux.utf8.out |   12 +-
src/test/regress/expected/collate.out            |   12 +-
src/test/regress/expected/rules.out              |  148 +-
src/test/regress/expected/triggers.out           |   12 +-
12 files changed, 889 insertions(+), 1136 deletions(-)


pgsql-committers by date:

Previous
From: Robert Haas
Date:
Subject: pgsql: Add a new upper planner relation for partially-aggregatedresult
Next
From: Noah Misch
Date:
Subject: pgsql: Document security implications of search_path and the publicsch