diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-01 20:30:49 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-01 20:30:49 +0000 |
commit | d6f8a76cf234079b6c616c93e214458478c8bd0b (patch) | |
tree | d2d0ab164dff993ed88d19bd15defb57ea64be9e /src/backend/commands/functioncmds.c | |
parent | 35ff782d714fec1f415bffb588df7b7271c1f9c1 (diff) | |
download | postgresql-d6f8a76cf234079b6c616c93e214458478c8bd0b.tar.gz postgresql-d6f8a76cf234079b6c616c93e214458478c8bd0b.zip |
Cause ALTER OWNER commands to update the object's ACL, replacing references
to the old owner with the new owner. This is not necessarily right, but
it's sure a lot more likely to be what the user wants than doing nothing.
Christopher Kings-Lynne, some rework by Tom Lane.
Diffstat (limited to 'src/backend/commands/functioncmds.c')
-rw-r--r-- | src/backend/commands/functioncmds.c | 43 |
1 files changed, 36 insertions, 7 deletions
diff --git a/src/backend/commands/functioncmds.c b/src/backend/commands/functioncmds.c index 20ee9fa3445..58d767d4f76 100644 --- a/src/backend/commands/functioncmds.c +++ b/src/backend/commands/functioncmds.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/functioncmds.c,v 1.49 2004/06/25 21:55:53 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/commands/functioncmds.c,v 1.50 2004/08/01 20:30:48 tgl Exp $ * * DESCRIPTION * These routines take the parse tree and pick out the @@ -738,7 +738,7 @@ AlterFunctionOwner(List *name, List *argtypes, AclId newOwnerSysId) procOid = LookupFuncNameTypeNames(name, argtypes, false); - tup = SearchSysCacheCopy(PROCOID, + tup = SearchSysCache(PROCOID, ObjectIdGetDatum(procOid), 0, 0, 0); if (!HeapTupleIsValid(tup)) /* should not happen */ @@ -758,22 +758,51 @@ AlterFunctionOwner(List *name, List *argtypes, AclId newOwnerSysId) */ if (procForm->proowner != newOwnerSysId) { + Datum repl_val[Natts_pg_proc]; + char repl_null[Natts_pg_proc]; + char repl_repl[Natts_pg_proc]; + Acl *newAcl; + Datum aclDatum; + bool isNull; + HeapTuple newtuple; + /* Otherwise, must be superuser to change object ownership */ if (!superuser()) ereport(ERROR, (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), errmsg("must be superuser to change owner"))); - /* Modify the owner --- okay to scribble on tup because it's a copy */ - procForm->proowner = newOwnerSysId; + memset(repl_null, ' ', sizeof(repl_null)); + memset(repl_repl, ' ', sizeof(repl_repl)); + + repl_repl[Anum_pg_proc_proowner - 1] = 'r'; + repl_val[Anum_pg_proc_proowner - 1] = Int32GetDatum(newOwnerSysId); + + /* + * Determine the modified ACL for the new owner. This is only + * necessary when the ACL is non-null. + */ + aclDatum = SysCacheGetAttr(PROCOID, tup, + Anum_pg_proc_proacl, + &isNull); + if (!isNull) + { + newAcl = aclnewowner(DatumGetAclP(aclDatum), + procForm->proowner, newOwnerSysId); + repl_repl[Anum_pg_proc_proacl - 1] = 'r'; + repl_val[Anum_pg_proc_proacl - 1] = PointerGetDatum(newAcl); + } + + newtuple = heap_modifytuple(tup, rel, repl_val, repl_null, repl_repl); - simple_heap_update(rel, &tup->t_self, tup); + simple_heap_update(rel, &newtuple->t_self, newtuple); + CatalogUpdateIndexes(rel, newtuple); - CatalogUpdateIndexes(rel, tup); + heap_freetuple(newtuple); } + ReleaseSysCache(tup); heap_close(rel, NoLock); - heap_freetuple(tup); } |