diff options
author | Noah Misch <noah@leadboat.com> | 2020-11-09 07:32:09 -0800 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2020-11-09 07:32:13 -0800 |
commit | 3855e5b4767b189d4daf6e9a774e4e64be72e0ff (patch) | |
tree | 62ac627c93c2f4c42795f0078213b8de3e080bf5 | |
parent | ac8f6243cb002f3386322fb231a0c5daa637941d (diff) | |
download | postgresql-3855e5b4767b189d4daf6e9a774e4e64be72e0ff.tar.gz postgresql-3855e5b4767b189d4daf6e9a774e4e64be72e0ff.zip |
Ignore attempts to \gset into specially treated variables.
If an interactive psql session used \gset when querying a compromised
server, the attacker could execute arbitrary code as the operating
system account running psql. Using a prefix not found among specially
treated variables, e.g. every lowercase string, precluded the attack.
Fix by issuing a warning and setting no variable for the column in
question. Users wanting the old behavior can use a prefix and then a
meta-command like "\set HISTSIZE :prefix_HISTSIZE". Back-patch to 9.5
(all supported versions).
Reviewed by Robert Haas. Reported by Nick Cleaton.
Security: CVE-2020-25696
-rw-r--r-- | src/bin/psql/common.c | 7 | ||||
-rw-r--r-- | src/bin/psql/variables.c | 26 | ||||
-rw-r--r-- | src/bin/psql/variables.h | 1 | ||||
-rw-r--r-- | src/test/regress/expected/psql.out | 4 | ||||
-rw-r--r-- | src/test/regress/sql/psql.sql | 3 |
5 files changed, 41 insertions, 0 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 4b2679360fc..8cb924a861e 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -921,6 +921,13 @@ StoreQueryTuple(const PGresult *result) /* concatenate prefix and column name */ varname = psprintf("%s%s", pset.gset_prefix, colname); + if (VariableHasHook(pset.vars, varname)) + { + pg_log_warning("attempt to \\gset into specially treated variable \"%s\" ignored", + varname); + continue; + } + if (!PQgetisnull(result, 0, i)) value = PQgetvalue(result, 0, i); else diff --git a/src/bin/psql/variables.c b/src/bin/psql/variables.c index 1d2a31cd65d..f32a9854496 100644 --- a/src/bin/psql/variables.c +++ b/src/bin/psql/variables.c @@ -363,6 +363,32 @@ SetVariableHooks(VariableSpace space, const char *name, } /* + * Return true iff the named variable has substitute and/or assign hook + * functions. + */ +bool +VariableHasHook(VariableSpace space, const char *name) +{ + struct _variable *current; + + Assert(space); + Assert(name); + + for (current = space->next; current; current = current->next) + { + int cmp = strcmp(current->name, name); + + if (cmp == 0) + return (current->substitute_hook != NULL || + current->assign_hook != NULL); + if (cmp > 0) + break; /* it's not there */ + } + + return false; +} + +/* * Convenience function to set a variable's value to "on". */ bool diff --git a/src/bin/psql/variables.h b/src/bin/psql/variables.h index 9d4cf547134..c21bc126316 100644 --- a/src/bin/psql/variables.h +++ b/src/bin/psql/variables.h @@ -90,6 +90,7 @@ bool DeleteVariable(VariableSpace space, const char *name); void SetVariableHooks(VariableSpace space, const char *name, VariableSubstituteHook shook, VariableAssignHook ahook); +bool VariableHasHook(VariableSpace space, const char *name); void PsqlVarEnumError(const char *name, const char *value, const char *suggestions); diff --git a/src/test/regress/expected/psql.out b/src/test/regress/expected/psql.out index 4bcf0cc5dfd..a73140543ba 100644 --- a/src/test/regress/expected/psql.out +++ b/src/test/regress/expected/psql.out @@ -84,6 +84,10 @@ select 10 as test01, 20 as test02, 'Hello' as test03 \gset pref01_ select 10 as "bad name" \gset invalid variable name: "bad name" +select 97 as "EOF", 'ok' as _foo \gset IGNORE +attempt to \gset into specially treated variable "IGNOREEOF" ignored +\echo :IGNORE_foo :IGNOREEOF +ok 0 -- multiple backslash commands in one line select 1 as x, 2 as y \gset pref01_ \\ \echo :pref01_x 1 diff --git a/src/test/regress/sql/psql.sql b/src/test/regress/sql/psql.sql index 26f436ae403..f43ed2731b1 100644 --- a/src/test/regress/sql/psql.sql +++ b/src/test/regress/sql/psql.sql @@ -48,6 +48,9 @@ select 10 as test01, 20 as test02, 'Hello' as test03 \gset pref01_ select 10 as "bad name" \gset +select 97 as "EOF", 'ok' as _foo \gset IGNORE +\echo :IGNORE_foo :IGNOREEOF + -- multiple backslash commands in one line select 1 as x, 2 as y \gset pref01_ \\ \echo :pref01_x select 3 as x, 4 as y \gset pref01_ \echo :pref01_x \echo :pref01_y |