mirror of
https://github.com/postgres/postgres.git
synced 2025-06-30 21:42:05 +03:00
Require the schema qualification in pg_temp.type_name(arg).
Commit aa27977fe2
introduced this
restriction for pg_temp.function_name(arg); do likewise for types
created in temporary schemas. Programs that this breaks should add
"pg_temp." schema qualification or switch to arg::type_name syntax.
Back-patch to 9.4 (all supported versions).
Reviewed by Tom Lane. Reported by Tom Lane.
Security: CVE-2019-10208
This commit is contained in:
@ -1869,7 +1869,12 @@ FuncNameAsType(List *funcname)
|
||||
Oid result;
|
||||
Type typtup;
|
||||
|
||||
typtup = LookupTypeName(NULL, makeTypeNameFromNameList(funcname), NULL, false);
|
||||
/*
|
||||
* temp_ok=false protects the <refsect1 id="sql-createfunction-security">
|
||||
* contract for writing SECURITY DEFINER functions safely.
|
||||
*/
|
||||
typtup = LookupTypeNameExtended(NULL, makeTypeNameFromNameList(funcname),
|
||||
NULL, false, false);
|
||||
if (typtup == NULL)
|
||||
return InvalidOid;
|
||||
|
||||
|
Reference in New Issue
Block a user