You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* superuser.c
|
|
|
|
|
*
|
|
|
|
|
* The superuser() function. Determines if user has superuser privilege.
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* IDENTIFICATION
|
|
|
|
|
* $Header: /cvsroot/pgsql/src/backend/utils/misc/superuser.c,v 1.12 1999/11/24 16:52:45 momjian Exp $
|
|
|
|
|
*
|
|
|
|
|
* DESCRIPTION
|
|
|
|
|
* See superuser().
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "postgres.h"
|
|
|
|
|
#include "catalog/pg_shadow.h"
|
|
|
|
|
#include "utils/syscache.h"
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
superuser(void)
|
|
|
|
|
{
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
The Postgres user running this command has Postgres superuser
|
|
|
|
|
privileges.
|
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
extern char *UserName; /* defined in global.c */
|
|
|
|
|
|
|
|
|
|
HeapTuple utup;
|
|
|
|
|
|
|
|
|
|
utup = SearchSysCacheTuple(SHADOWNAME,
|
|
|
|
|
PointerGetDatum(UserName),
|
|
|
|
|
0, 0, 0);
|
|
|
|
|
Assert(utup != NULL);
|
|
|
|
|
return ((Form_pg_shadow) GETSTRUCT(utup))->usesuper;
|
|
|
|
|
}
|