]> granicus.if.org Git - postgresql/blob - src/backend/utils/misc/superuser.c
2f092028480a24bd180ead9c892bce75b7a63c16
[postgresql] / src / backend / utils / misc / superuser.c
1 /*-------------------------------------------------------------------------
2  *
3  * superuser.c
4  *        The superuser() function.  Determines if user has superuser privilege.
5  *        Also, a function to check for the owner (datdba) of a database.
6  *
7  *
8  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
9  * Portions Copyright (c) 1994, Regents of the University of California
10  *
11  *
12  * IDENTIFICATION
13  *        $Header: /cvsroot/pgsql/src/backend/utils/misc/superuser.c,v 1.19 2001/09/08 15:24:00 petere Exp $
14  *
15  *-------------------------------------------------------------------------
16  */
17 #include "postgres.h"
18
19 #include "access/heapam.h"
20 #include "catalog/catname.h"
21 #include "catalog/pg_database.h"
22 #include "catalog/pg_shadow.h"
23 #include "utils/syscache.h"
24 #include "miscadmin.h"
25 #include "utils/fmgroids.h"
26
27
28 /*
29  * The Postgres user running this command has Postgres superuser privileges
30  */
31 bool
32 superuser(void)
33 {
34         bool            result = false;
35         HeapTuple       utup;
36
37         /* Special escape path in case you deleted all your users. */
38         if (!IsUnderPostmaster && GetUserId() == BOOTSTRAP_USESYSID)
39                 return true;
40
41         utup = SearchSysCache(SHADOWSYSID,
42                                                   ObjectIdGetDatum(GetUserId()),
43                                                   0, 0, 0);
44         if (HeapTupleIsValid(utup))
45         {
46                 result = ((Form_pg_shadow) GETSTRUCT(utup))->usesuper;
47                 ReleaseSysCache(utup);
48         }
49         return result;
50 }
51
52 /*
53  * The Postgres user running this command is the owner of the specified
54  * database.
55  */
56 bool
57 is_dbadmin(Oid dbid)
58 {
59         Relation        pg_database;
60         ScanKeyData entry[1];
61         HeapScanDesc scan;
62         HeapTuple       dbtuple;
63         int32           dba;
64
65         /* There's no syscache for pg_database, so must look the hard way */
66         pg_database = heap_openr(DatabaseRelationName, AccessShareLock);
67         ScanKeyEntryInitialize(&entry[0], 0x0,
68                                                    ObjectIdAttributeNumber, F_OIDEQ,
69                                                    ObjectIdGetDatum(dbid));
70         scan = heap_beginscan(pg_database, 0, SnapshotNow, 1, entry);
71         dbtuple = heap_getnext(scan, 0);
72         if (!HeapTupleIsValid(dbtuple))
73                 elog(ERROR, "database %u does not exist", dbid);
74         dba = ((Form_pg_database) GETSTRUCT(dbtuple))->datdba;
75         heap_endscan(scan);
76         heap_close(pg_database, AccessShareLock);
77
78         /* XXX some confusion about whether userids are OID or int4 ... */
79         return (GetUserId() == (Oid) dba);
80 }