diff options
author | Noah Misch <noah@leadboat.com> | 2023-05-08 06:14:07 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2023-05-08 06:14:11 -0700 |
commit | 01e8182c73b24ec45849e369ad8b3ecd4ed1ba2b (patch) | |
tree | 86a919a9546a39fc8e09e6504689864935f9e955 /src/backend | |
parent | 76a3e1d7a8cb66a6f5f827623b37ea7bb22c1970 (diff) | |
download | postgresql-01e8182c73b24ec45849e369ad8b3ecd4ed1ba2b.tar.gz postgresql-01e8182c73b24ec45849e369ad8b3ecd4ed1ba2b.zip |
Replace last PushOverrideSearchPath() call with set_config_option().
The two methods don't cooperate, so set_config_option("search_path",
...) has been ineffective under non-empty overrideStack. This defect
enabled an attacker having database-level CREATE privilege to execute
arbitrary code as the bootstrap superuser. While that particular attack
requires v13+ for the trusted extension attribute, other attacks are
feasible in all supported versions.
Standardize on the combination of NewGUCNestLevel() and
set_config_option("search_path", ...). It is newer than
PushOverrideSearchPath(), more-prevalent, and has no known
disadvantages. The "override" mechanism remains for now, for
compatibility with out-of-tree code. Users should update such code,
which likely suffers from the same sort of vulnerability closed here.
Back-patch to v11 (all supported versions).
Alexander Lakhin. Reported by Alexander Lakhin.
Security: CVE-2023-2454
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/catalog/namespace.c | 4 | ||||
-rw-r--r-- | src/backend/commands/schemacmds.c | 37 |
2 files changed, 31 insertions, 10 deletions
diff --git a/src/backend/catalog/namespace.c b/src/backend/catalog/namespace.c index 81b6472ab02..0175a912556 100644 --- a/src/backend/catalog/namespace.c +++ b/src/backend/catalog/namespace.c @@ -3518,6 +3518,10 @@ OverrideSearchPathMatchesCurrent(OverrideSearchPath *path) /* * PushOverrideSearchPath - temporarily override the search path * + * Do not use this function; almost any usage introduces a security + * vulnerability. It exists for the benefit of legacy code running in + * non-security-sensitive environments. + * * We allow nested overrides, hence the push/pop terminology. The GUC * search_path variable is ignored while an override is active. * diff --git a/src/backend/commands/schemacmds.c b/src/backend/commands/schemacmds.c index ffa42f134fe..68ccbb4fbe3 100644 --- a/src/backend/commands/schemacmds.c +++ b/src/backend/commands/schemacmds.c @@ -29,6 +29,7 @@ #include "commands/schemacmds.h" #include "miscadmin.h" #include "parser/parse_utilcmd.h" +#include "parser/scansup.h" #include "tcop/utility.h" #include "utils/acl.h" #include "utils/builtins.h" @@ -52,14 +53,16 @@ CreateSchemaCommand(CreateSchemaStmt *stmt, const char *queryString, { const char *schemaName = stmt->schemaname; Oid namespaceId; - OverrideSearchPath *overridePath; List *parsetree_list; ListCell *parsetree_item; Oid owner_uid; Oid saved_uid; int save_sec_context; + int save_nestlevel; + char *nsp = namespace_search_path; AclResult aclresult; ObjectAddress address; + StringInfoData pathbuf; GetUserIdAndSecContext(&saved_uid, &save_sec_context); @@ -152,14 +155,26 @@ CreateSchemaCommand(CreateSchemaStmt *stmt, const char *queryString, CommandCounterIncrement(); /* - * Temporarily make the new namespace be the front of the search path, as - * well as the default creation target namespace. This will be undone at - * the end of this routine, or upon error. + * Prepend the new schema to the current search path. + * + * We use the equivalent of a function SET option to allow the setting to + * persist for exactly the duration of the schema creation. guc.c also + * takes care of undoing the setting on error. */ - overridePath = GetOverrideSearchPath(CurrentMemoryContext); - overridePath->schemas = lcons_oid(namespaceId, overridePath->schemas); - /* XXX should we clear overridePath->useTemp? */ - PushOverrideSearchPath(overridePath); + save_nestlevel = NewGUCNestLevel(); + + initStringInfo(&pathbuf); + appendStringInfoString(&pathbuf, quote_identifier(schemaName)); + + while (scanner_isspace(*nsp)) + nsp++; + + if (*nsp != '\0') + appendStringInfo(&pathbuf, ", %s", nsp); + + (void) set_config_option("search_path", pathbuf.data, + PGC_USERSET, PGC_S_SESSION, + GUC_ACTION_SAVE, true, 0, false); /* * Report the new schema to possibly interested event triggers. Note we @@ -214,8 +229,10 @@ CreateSchemaCommand(CreateSchemaStmt *stmt, const char *queryString, CommandCounterIncrement(); } - /* Reset search path to normal state */ - PopOverrideSearchPath(); + /* + * Restore the GUC variable search_path we set above. + */ + AtEOXact_GUC(true, save_nestlevel); /* Reset current user and security context */ SetUserIdAndSecContext(saved_uid, save_sec_context); |