Fix assorted bugs in ecpg's macro mechanism.
[pgsql.git] / contrib / sepgsql / database.c
blob4f5662e141e78de5c10fd2792ad43c03fb429aee
1 /* -------------------------------------------------------------------------
3 * contrib/sepgsql/database.c
5 * Routines corresponding to database objects
7 * Copyright (c) 2010-2023, PostgreSQL Global Development Group
9 * -------------------------------------------------------------------------
11 #include "postgres.h"
13 #include "access/genam.h"
14 #include "access/htup_details.h"
15 #include "access/sysattr.h"
16 #include "access/table.h"
17 #include "catalog/dependency.h"
18 #include "catalog/pg_database.h"
19 #include "commands/dbcommands.h"
20 #include "commands/seclabel.h"
21 #include "sepgsql.h"
22 #include "utils/builtins.h"
23 #include "utils/fmgroids.h"
24 #include "utils/snapmgr.h"
27 * sepgsql_database_post_create
29 * This routine assigns a default security label on a newly defined
30 * database, and check permission needed for its creation.
32 void
33 sepgsql_database_post_create(Oid databaseId, const char *dtemplate)
35 Relation rel;
36 ScanKeyData skey;
37 SysScanDesc sscan;
38 HeapTuple tuple;
39 char *tcontext;
40 char *ncontext;
41 ObjectAddress object;
42 Form_pg_database datForm;
43 StringInfoData audit_name;
46 * Oid of the source database is not saved in pg_database catalog, so we
47 * collect its identifier using contextual information. If NULL, its
48 * default is "template1" according to createdb().
50 if (!dtemplate)
51 dtemplate = "template1";
53 object.classId = DatabaseRelationId;
54 object.objectId = get_database_oid(dtemplate, false);
55 object.objectSubId = 0;
57 tcontext = sepgsql_get_label(object.classId,
58 object.objectId,
59 object.objectSubId);
62 * check db_database:{getattr} permission
64 initStringInfo(&audit_name);
65 appendStringInfoString(&audit_name, quote_identifier(dtemplate));
66 sepgsql_avc_check_perms_label(tcontext,
67 SEPG_CLASS_DB_DATABASE,
68 SEPG_DB_DATABASE__GETATTR,
69 audit_name.data,
70 true);
73 * Compute a default security label of the newly created database based on
74 * a pair of security label of client and source database.
76 * XXX - upcoming version of libselinux supports to take object name to
77 * handle special treatment on default security label.
79 rel = table_open(DatabaseRelationId, AccessShareLock);
81 ScanKeyInit(&skey,
82 Anum_pg_database_oid,
83 BTEqualStrategyNumber, F_OIDEQ,
84 ObjectIdGetDatum(databaseId));
86 sscan = systable_beginscan(rel, DatabaseOidIndexId, true,
87 SnapshotSelf, 1, &skey);
88 tuple = systable_getnext(sscan);
89 if (!HeapTupleIsValid(tuple))
90 elog(ERROR, "could not find tuple for database %u", databaseId);
92 datForm = (Form_pg_database) GETSTRUCT(tuple);
94 ncontext = sepgsql_compute_create(sepgsql_get_client_label(),
95 tcontext,
96 SEPG_CLASS_DB_DATABASE,
97 NameStr(datForm->datname));
100 * check db_database:{create} permission
102 resetStringInfo(&audit_name);
103 appendStringInfoString(&audit_name,
104 quote_identifier(NameStr(datForm->datname)));
105 sepgsql_avc_check_perms_label(ncontext,
106 SEPG_CLASS_DB_DATABASE,
107 SEPG_DB_DATABASE__CREATE,
108 audit_name.data,
109 true);
111 systable_endscan(sscan);
112 table_close(rel, AccessShareLock);
115 * Assign the default security label on the new database
117 object.classId = DatabaseRelationId;
118 object.objectId = databaseId;
119 object.objectSubId = 0;
121 SetSecurityLabel(&object, SEPGSQL_LABEL_TAG, ncontext);
123 pfree(ncontext);
124 pfree(tcontext);
128 * sepgsql_database_drop
130 * It checks privileges to drop the supplied database
132 void
133 sepgsql_database_drop(Oid databaseId)
135 ObjectAddress object;
136 char *audit_name;
139 * check db_database:{drop} permission
141 object.classId = DatabaseRelationId;
142 object.objectId = databaseId;
143 object.objectSubId = 0;
144 audit_name = getObjectIdentity(&object, false);
146 sepgsql_avc_check_perms(&object,
147 SEPG_CLASS_DB_DATABASE,
148 SEPG_DB_DATABASE__DROP,
149 audit_name,
150 true);
151 pfree(audit_name);
155 * sepgsql_database_post_alter
157 * It checks privileges to alter the supplied database
159 void
160 sepgsql_database_setattr(Oid databaseId)
162 ObjectAddress object;
163 char *audit_name;
166 * check db_database:{setattr} permission
168 object.classId = DatabaseRelationId;
169 object.objectId = databaseId;
170 object.objectSubId = 0;
171 audit_name = getObjectIdentity(&object, false);
173 sepgsql_avc_check_perms(&object,
174 SEPG_CLASS_DB_DATABASE,
175 SEPG_DB_DATABASE__SETATTR,
176 audit_name,
177 true);
178 pfree(audit_name);
182 * sepgsql_database_relabel
184 * It checks privileges to relabel the supplied database with the `seclabel'
186 void
187 sepgsql_database_relabel(Oid databaseId, const char *seclabel)
189 ObjectAddress object;
190 char *audit_name;
192 object.classId = DatabaseRelationId;
193 object.objectId = databaseId;
194 object.objectSubId = 0;
195 audit_name = getObjectIdentity(&object, false);
198 * check db_database:{setattr relabelfrom} permission
200 sepgsql_avc_check_perms(&object,
201 SEPG_CLASS_DB_DATABASE,
202 SEPG_DB_DATABASE__SETATTR |
203 SEPG_DB_DATABASE__RELABELFROM,
204 audit_name,
205 true);
208 * check db_database:{relabelto} permission
210 sepgsql_avc_check_perms_label(seclabel,
211 SEPG_CLASS_DB_DATABASE,
212 SEPG_DB_DATABASE__RELABELTO,
213 audit_name,
214 true);
215 pfree(audit_name);