-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsupautils.c
1334 lines (1089 loc) · 41.9 KB
/
supautils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "pg_prelude.h"
#include "constrained_extensions.h"
#include "drop_trigger_grants.h"
#include "extensions_parameter_overrides.h"
#include "policy_grants.h"
#include "privileged_extensions.h"
#include "utils.h"
#include "event_triggers.h"
#define EREPORT_RESERVED_MEMBERSHIP(name) \
ereport(ERROR, \
(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), \
errmsg("\"%s\" role memberships are reserved, only superusers "\
"can grant them", name)))
#define EREPORT_RESERVED_ROLE(name) \
ereport(ERROR, \
(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), \
errmsg("\"%s\" is a reserved role, only superusers can modify "\
"it", name)))
#define EREPORT_INVALID_PARAMETER(name) \
ereport(ERROR, \
(errcode(ERRCODE_INVALID_PARAMETER_VALUE), \
errmsg("parameter \"%s\" must be a comma-separated list of " \
"identifiers", name)));
#define MAX_CONSTRAINED_EXTENSIONS 100
#define MAX_EXTENSIONS_PARAMETER_OVERRIDES 100
#define MAX_DROP_TRIGGER_GRANTS 100
#define MAX_POLICY_GRANTS 100
/* required macro for extension libraries to work */
PG_MODULE_MAGIC;
static char *reserved_roles = NULL;
static char *reserved_memberships = NULL;
static char *placeholders = NULL;
static char *placeholders_disallowed_values = NULL;
static char *empty_placeholder = NULL;
static char *privileged_extensions = NULL;
static char *supautils_superuser = NULL;
static char *privileged_extensions_custom_scripts_path = NULL;
static char *privileged_role = NULL; // the privileged_role is a proxy role for the `supautils.superuser` role
static char *privileged_role_allowed_configs = NULL;
static ProcessUtility_hook_type prev_hook = NULL;
static fmgr_hook_type next_fmgr_hook = NULL;
static needs_fmgr_hook_type next_needs_fmgr_hook = NULL;
static char *constrained_extensions_str = NULL;
static constrained_extension cexts[MAX_CONSTRAINED_EXTENSIONS] = {0};
static size_t total_cexts = 0;
static char *extensions_parameter_overrides_str = NULL;
static extension_parameter_overrides epos[MAX_EXTENSIONS_PARAMETER_OVERRIDES] = {0};
static size_t total_epos = 0;
static char *policy_grants_str = NULL;
static policy_grants pgs[MAX_POLICY_GRANTS] = {0};
static size_t total_pgs = 0;
static char *drop_trigger_grants_str = NULL;
static drop_trigger_grants dtgs[MAX_DROP_TRIGGER_GRANTS] = {0};
static size_t total_dtgs = 0;
void _PG_init(void);
void _PG_fini(void);
static bool
is_reserved_role(const char *target, bool allow_configurable_roles);
static void
confirm_reserved_memberships(const char *target);
static void check_parameter(char *val, char *name);
static bool
is_current_role_privileged(void);
static bool
is_role_privileged(const char *role);
// the hook will only be attached to functions that `RETURN event_trigger`
static bool supautils_needs_fmgr_hook(Oid functionId) {
if (next_needs_fmgr_hook && (*next_needs_fmgr_hook) (functionId))
return true;
if (get_func_rettype(functionId) == SUPAUTILS_EVENT_TRIGGER_OID)
return true;
else
return false;
}
// This function will fire twice: once before execution of the database function (event=FHET_START)
// and once after execution has finished or failed (event=FHET_END/FHET_ABORT).
static void supautils_fmgr_hook(FmgrHookEventType event, FmgrInfo *flinfo, Datum *private) {
switch (event) {
// we only need to change behavior before the function gets executed
case FHET_START: {
const char *current_role_name = GetUserNameFromId(GetUserId(), false);
if (superuser() || is_reserved_role(current_role_name, false)) {
bool function_is_owned_by_super = superuser_arg(get_function_owner((func_owner_search){ .as = FO_SEARCH_FINFO, .val.finfo = flinfo }));
if (!function_is_owned_by_super)
// we can't skip execution directly inside the fmgr_hook (although we can abort it with ereport)
// so instead we use the workaround of changing the event trigger function to a noop function
force_noop(flinfo);
}
if (next_fmgr_hook)
(*next_fmgr_hook) (event, flinfo, private);
break;
}
// do nothing when the function already executed
case FHET_END:
case FHET_ABORT:
if (next_fmgr_hook)
(*next_fmgr_hook) (event, flinfo, private);
break;
default:
elog(ERROR, "unexpected event type: %d", (int) event);
break;
}
}
static void supautils_hook(PROCESS_UTILITY_PARAMS) {
/* Get the utility statement from the planned statement */
Node *utility_stmt = pstmt->utilityStmt;
switch (utility_stmt->type){
/*
* ALTER ROLE <role> NOLOGIN NOINHERIT..
*/
case T_AlterRoleStmt: {
AlterRoleStmt *stmt = (AlterRoleStmt *)utility_stmt;
ListCell *option_cell = NULL;
bool already_switched_to_superuser = false;
if (!IsTransactionState()) {
break;
}
if (superuser()) {
break;
}
char *role_name = get_rolespec_name(stmt->role);
if(is_reserved_role(role_name, false))
EREPORT_RESERVED_ROLE(role_name);
if (!is_current_role_privileged()){
break;
}
if (is_role_privileged(stmt->role->rolename)) {
ereport(ERROR,
(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
errmsg("permission denied to alter role"),
errdetail("Only superusers can alter privileged roles.")));
}
// Setting the superuser attribute is not allowed.
foreach(option_cell, stmt->options)
{
DefElem *defel = (DefElem *) lfirst(option_cell);
if (strcmp(defel->defname, "superuser") == 0) {
ereport(ERROR,
(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
errmsg("permission denied to alter role"),
errdetail("Only roles with the %s attribute may alter roles with the %s attribute.",
"SUPERUSER", "SUPERUSER")));
}
}
// Allow setting bypassrls & replication.
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
/*
* ALTER ROLE <role> SET search_path TO ...
*/
case T_AlterRoleSetStmt: {
AlterRoleSetStmt *stmt = (AlterRoleSetStmt *)utility_stmt;
bool role_is_privileged = false;
if (!IsTransactionState()) {
break;
}
if (superuser()) {
break;
}
role_is_privileged = is_current_role_privileged();
char *role_name = get_rolespec_name(stmt->role);
if(is_reserved_role(role_name, role_is_privileged))
EREPORT_RESERVED_ROLE(role_name);
if (!role_is_privileged){
break;
}
if (privileged_role_allowed_configs == NULL) {
break;
} else {
bool is_privileged_role_allowed_config = is_string_in_comma_delimited_string(((VariableSetStmt *)stmt->setstmt)->name, privileged_role_allowed_configs);
if (!is_privileged_role_allowed_config) {
break;
}
}
{
bool already_switched_to_superuser = false;
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
return;
}
/*
* CREATE ROLE
*/
case T_CreateRoleStmt: {
if (IsTransactionState() && !superuser())
{
CreateRoleStmt *stmt = (CreateRoleStmt *) utility_stmt;
const char *created_role = stmt->role;
List *addroleto = NIL; /* roles to make this a member of */
bool hasrolemembers = false; /* has roles to be members of this role */
ListCell *option_cell;
/* if role already exists, bypass the hook to let it fail with the usual error */
if (OidIsValid(get_role_oid(created_role, true)))
break;
/* CREATE ROLE <reserved_role> */
if(is_reserved_role(created_role, false))
EREPORT_RESERVED_ROLE(created_role);
/* Check to see if there are any descriptions related to membership. */
foreach(option_cell, stmt->options)
{
DefElem *defel = (DefElem *) lfirst(option_cell);
if (strcmp(defel->defname, "addroleto") == 0)
addroleto = (List *) defel->arg;
if (strcmp(defel->defname, "rolemembers") == 0 ||
strcmp(defel->defname, "adminmembers") == 0)
hasrolemembers = true;
// Setting the superuser attribute is not allowed.
if (strcmp(defel->defname, "superuser") == 0 && defGetBoolean(defel)) {
ereport(ERROR,
(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
errmsg("permission denied to create role"),
errdetail("Only roles with the %s attribute may create roles with the %s attribute.",
"SUPERUSER", "SUPERUSER")));
}
}
/* CREATE ROLE <any_role> IN ROLE/GROUP <role_with_reserved_membership> */
if (addroleto)
{
ListCell *role_cell;
foreach(role_cell, addroleto)
{
RoleSpec *rolemember = lfirst(role_cell);
confirm_reserved_memberships(get_rolespec_name(rolemember));
}
}
/*
* CREATE ROLE <role_with_reserved_membership> ROLE/ADMIN/USER <any_role>
*
* This is a contrived case because the "role_with_reserved_membership"
* should already exist, but handle it anyway.
*/
if (hasrolemembers)
confirm_reserved_memberships(created_role);
// We don't want to switch to superuser on PG16+ because the
// creating role is implicitly granted ADMIN on the new
// role:
// https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-CREATEROLE-SELF-GRANT
//
// This ADMIN will be missing if we switch to superuser
// since the creating role becomes the superuser.
//
// We also no longer need superuser to grant BYPASSRLS &
// REPLICATION anyway.
#if PG16_GTE
run_process_utility_hook(prev_hook);
#else
if (is_current_role_privileged()) {
bool already_switched_to_superuser = false;
// Allow `privileged_role` (in addition to superusers) to
// set bypassrls & replication attributes.
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
} else {
run_process_utility_hook(prev_hook);
}
#endif
return;
}
break;
}
/*
* DROP ROLE
*/
case T_DropRoleStmt: {
if (IsTransactionState() && !superuser())
{
DropRoleStmt *stmt = (DropRoleStmt *) utility_stmt;
ListCell *item;
foreach(item, stmt->roles)
{
RoleSpec *role = lfirst(item);
/*
* We check only for a named role being dropped; we ignore
* the special values like PUBLIC, CURRENT_USER, and
* SESSION_USER. We let Postgres throw its usual error messages
* for those special values.
*/
if (role->roletype != ROLESPEC_CSTRING)
break;
if(is_reserved_role(role->rolename, false))
EREPORT_RESERVED_ROLE(role->rolename);
}
}
break;
}
/*
* GRANT <role> and REVOKE <role>
*/
case T_GrantRoleStmt: {
if (IsTransactionState() && !superuser())
{
GrantRoleStmt *stmt = (GrantRoleStmt *) utility_stmt;
ListCell *grantee_role_cell;
ListCell *role_cell;
bool role_is_privileged = false;
/* GRANT <reserved_role> TO <role> */
if (stmt->is_grant)
{
foreach(role_cell, stmt->granted_roles)
{
AccessPriv *priv = (AccessPriv *) lfirst(role_cell);
confirm_reserved_memberships(priv->priv_name);
}
}
role_is_privileged = is_current_role_privileged();
/*
* GRANT <role> TO <reserved_roles>
* REVOKE <role> FROM <reserved_roles>
*/
foreach(grantee_role_cell, stmt->grantee_roles)
{
AccessPriv *priv = (AccessPriv *) lfirst(grantee_role_cell);
// privileged_role can do GRANT <role> to <reserved_role>
if(is_reserved_role(priv->priv_name, role_is_privileged))
EREPORT_RESERVED_ROLE(priv->priv_name);
}
}
break;
}
/*
* All RENAME statements are caught here
*/
case T_RenameStmt: {
if (IsTransactionState() && !superuser())
{
RenameStmt *stmt = (RenameStmt *) utility_stmt;
/* Make sure we only catch "ALTER ROLE <role> RENAME TO" */
if (stmt->renameType != OBJECT_ROLE)
break;
if(is_reserved_role(stmt->subname, false))
EREPORT_RESERVED_ROLE(stmt->subname);
if(is_reserved_role(stmt->newname, false))
EREPORT_RESERVED_ROLE(stmt->newname);
}
break;
}
/*
* CREATE EXTENSION <extension>
*/
case T_CreateExtensionStmt: {
CreateExtensionStmt *stmt = (CreateExtensionStmt *)utility_stmt;
constrain_extension(stmt->extname, cexts, total_cexts);
handle_create_extension(prev_hook,
PROCESS_UTILITY_ARGS,
privileged_extensions,
supautils_superuser,
privileged_extensions_custom_scripts_path,
epos, total_epos);
return;
}
/*
* ALTER EXTENSION <extension> [ ADD | DROP | UPDATE ]
*/
case T_AlterExtensionStmt: {
if (superuser()) {
break;
}
if (privileged_extensions == NULL) {
break;
}
AlterExtensionStmt *stmt = (AlterExtensionStmt *)pstmt->utilityStmt;
handle_alter_extension(prev_hook,
PROCESS_UTILITY_ARGS,
stmt->extname,
privileged_extensions,
supautils_superuser);
return;
}
/*
* ALTER EXTENSION <extension> SET SCHEMA
*/
case T_AlterObjectSchemaStmt: {
AlterObjectSchemaStmt *stmt = (AlterObjectSchemaStmt *)pstmt->utilityStmt;
if (stmt->objectType == OBJECT_EXTENSION){
if (superuser()) {
break;
}
if (privileged_extensions == NULL) {
break;
}
handle_alter_extension(prev_hook,
PROCESS_UTILITY_ARGS,
strVal(stmt->object),
privileged_extensions,
supautils_superuser);
return;
}
break;
}
/*
* ALTER EXTENSION <extension> [ ADD | DROP ]
*
* Not supported. Fall back to normal behavior.
*/
case T_AlterExtensionContentsStmt:
break;
/**
* CREATE FOREIGN DATA WRAPPER <fdw>
*/
case T_CreateFdwStmt: {
const Oid current_user_id = GetUserId();
bool already_switched_to_superuser = false;
if (superuser()) {
break;
}
if (!is_current_role_privileged()) {
break;
}
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
CreateFdwStmt *stmt = (CreateFdwStmt *)utility_stmt;
const char *current_role_name = GetUserNameFromId(current_user_id, false);
// Change FDW owner to the current role (which is a privileged role)
alter_owner(stmt->fdwname, current_role_name, ALT_FDW);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
/**
* CREATE PUBLICATION
*/
case T_CreatePublicationStmt: {
const Oid current_user_id = GetUserId();
bool already_switched_to_superuser = false;
if (superuser()) {
break;
}
if (!is_current_role_privileged()) {
break;
}
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
CreatePublicationStmt *stmt = (CreatePublicationStmt *)utility_stmt;
const char *current_role_name = GetUserNameFromId(current_user_id, false);
// Change publication owner to the current role (which is a privileged role)
alter_owner(stmt->pubname, current_role_name, ALT_PUB);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
/**
* ALTER PUBLICATION <name> ADD TABLES IN SCHEMA ...
*/
case T_AlterPublicationStmt: {
bool already_switched_to_superuser = false;
if (superuser()) {
break;
}
if (!is_current_role_privileged()) {
break;
}
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
/**
* CREATE POLICY
*/
case T_CreatePolicyStmt: {
CreatePolicyStmt *stmt = (CreatePolicyStmt *)utility_stmt;
if (superuser()) {
break;
}
if (is_current_role_granted_table_policy(stmt->table, pgs, total_pgs)) {
bool already_switched_to_superuser = false;
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
break;
}
/**
* ALTER POLICY
*/
case T_AlterPolicyStmt: {
AlterPolicyStmt *stmt = (AlterPolicyStmt *)utility_stmt;
if (superuser()) {
break;
}
if (is_current_role_granted_table_policy(stmt->table, pgs, total_pgs)) {
bool already_switched_to_superuser = false;
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
break;
}
case T_DropStmt: {
DropStmt *stmt = (DropStmt *)utility_stmt;
if (superuser()) {
break;
}
switch (stmt->removeType)
{
/*
* DROP EXTENSION <extension>
*/
case OBJECT_EXTENSION:
{
if (privileged_extensions == NULL) {
break;
}
handle_drop_extension(prev_hook,
PROCESS_UTILITY_ARGS,
privileged_extensions,
supautils_superuser);
return;
}
/*
* DROP POLICY
*/
case OBJECT_POLICY:
{
// DROP POLICY always has one object.
ListCell *object_cell = list_head(stmt->objects);
List *object = castNode(List, lfirst(object_cell));
// Last element is the policy name, the rest is the table name.
// Take everything but the last.
List *table_name_list = list_truncate(list_copy(object), list_length(object) - 1);
RangeVar *table_range_var = makeRangeVarFromNameList(table_name_list);
bool already_switched_to_superuser = false;
if (!is_current_role_granted_table_policy(table_range_var, pgs, total_pgs)) {
break;
}
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
/*
* DROP TRIGGER
*/
case OBJECT_TRIGGER:
{
// DROP TRIGGER always has one object.
ListCell *object_cell = list_head(stmt->objects);
List *object = castNode(List, lfirst(object_cell));
// Last element is the trigger name, the rest is the table name.
// Take everything but the last.
List *table_name_list = list_truncate(list_copy(object), list_length(object) - 1);
RangeVar *table_range_var = makeRangeVarFromNameList(table_name_list);
bool already_switched_to_superuser = false;
if (!is_current_role_granted_table_drop_trigger(table_range_var, dtgs, total_dtgs)) {
break;
}
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
default:
break;
}
break;
}
case T_CommentStmt: {
if (!IsTransactionState()) {
break;
}
if (superuser()) {
break;
}
if (((CommentStmt *)utility_stmt)->objtype != OBJECT_EXTENSION) {
break;
}
if (!is_current_role_privileged()) {
break;
}
{
bool already_switched_to_superuser = false;
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
}
case T_VariableSetStmt: {
if (!IsTransactionState()) {
break;
}
if (superuser()) {
break;
}
if (privileged_role_allowed_configs == NULL) {
break;
} else {
bool is_privileged_role_allowed_config = is_string_in_comma_delimited_string(((VariableSetStmt *)utility_stmt)->name, privileged_role_allowed_configs);
if (!is_privileged_role_allowed_config) {
break;
}
}
if (!is_current_role_privileged()) {
break;
}
{
bool already_switched_to_superuser = false;
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
}
case T_CreateEventTrigStmt: {
if (!IsTransactionState()) {
break;
}
if (!is_current_role_privileged()) {
break;
}
{
bool already_switched_to_superuser = false;
const Oid current_user_id = GetUserId();
CreateEventTrigStmt *stmt = (CreateEventTrigStmt *)utility_stmt;
const char *current_role_name = GetUserNameFromId(current_user_id, false);
bool current_user_is_super = superuser_arg(current_user_id);
Oid function_owner = get_function_owner((func_owner_search){FO_SEARCH_NAME, {stmt->funcname}});
bool function_is_owned_by_super = superuser_arg(function_owner);
if(!current_user_is_super && function_is_owned_by_super){
ereport(ERROR, (
errmsg("Non-superuser owned event trigger must execute a non-superuser owned function")
, errdetail("The current user \"%s\" is not a superuser and the function \"%s\" is owned by a superuser", current_role_name, NameListToString(stmt->funcname))
));
}
if(current_user_is_super && !function_is_owned_by_super){
ereport(ERROR, (
errmsg("Superuser owned event trigger must execute a superuser owned function")
, errdetail("The current user \"%s\" is a superuser and the function \"%s\" is owned by a non-superuser", current_role_name, NameListToString(stmt->funcname))
));
}
switch_to_superuser(supautils_superuser, &already_switched_to_superuser);
run_process_utility_hook(prev_hook);
if (!current_user_is_super)
// Change event trigger owner to the current role (which is a privileged role)
alter_owner(stmt->trigname, current_role_name, ALT_EVTRIG);
if (!already_switched_to_superuser) {
switch_to_original_role();
}
return;
}
}
default:
break;
}
/* Chain to previously defined hooks */
run_process_utility_hook(prev_hook);
}
static bool
extensions_parameter_overrides_check_hook( char **newval, __attribute__ ((unused)) void **extra, __attribute__ ((unused)) GucSource source)
{
char *val = *newval;
if (total_epos > 0) {
for (size_t i = 0; i < total_epos; i++){
pfree(epos[i].name);
pfree(epos[i].schema);
}
total_epos = 0;
}
if (val) {
json_extension_parameter_overrides_parse_state state = parse_extensions_parameter_overrides(val, epos);
if (state.error_msg) {
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("supautils.extensions_parameter_overrides: %s", state.error_msg)));
}
total_epos = state.total_epos;
}
return true;
}
static bool
policy_grants_check_hook(char **newval, __attribute__ ((unused)) void **extra, __attribute__ ((unused)) GucSource source)
{
char *val = *newval;
for (size_t i = 0; i < total_pgs; i++){
pfree(pgs[i].role_name);
for (size_t j = 0; j < pgs[i].total_tables; j++) {
pfree(pgs[i].table_names[j]);
}
pgs[i].total_tables = 0;
}
total_pgs = 0;
if (val) {
json_policy_grants_parse_state state = parse_policy_grants(val, pgs);
if (state.error_msg) {
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("supautils.policy_grants: %s", state.error_msg)));
}
total_pgs = state.total_pgs;
}
return true;
}
static bool
drop_trigger_grants_check_hook(char **newval, __attribute__ ((unused)) void **extra, __attribute__ ((unused)) GucSource source)
{
char *val = *newval;
for (size_t i = 0; i < total_dtgs; i++){
pfree(dtgs[i].role_name);
for (size_t j = 0; j < dtgs[i].total_tables; j++) {
pfree(dtgs[i].table_names[j]);
}
dtgs[i].total_tables = 0;
}
total_dtgs = 0;
if (val) {
json_drop_trigger_grants_parse_state state = parse_drop_trigger_grants(val, dtgs);
if (state.error_msg) {
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("supautils.drop_trigger_grants: %s", state.error_msg)));
}
total_dtgs = state.total_dtgs;
}
return true;
}
static bool
reserved_roles_check_hook(char **newval, __attribute__ ((unused)) void **extra, __attribute__ ((unused)) GucSource source)
{
check_parameter(*newval, "supautils.reserved_roles");
return true;
}
static bool
reserved_memberships_check_hook(char **newval, __attribute__ ((unused)) void **extra, __attribute__ ((unused)) GucSource source)
{
check_parameter(*newval, "supautils.reserved_memberships");
return true;
}
static bool
placeholders_disallowed_values_check_hook(char **newval, __attribute__ ((unused)) void **extra, __attribute__ ((unused)) GucSource source)
{
check_parameter(*newval, "supautils.placeholders_disallowed_values");
return true;
}
static bool
privileged_extensions_check_hook(char **newval, __attribute__ ((unused)) void **extra, __attribute__ ((unused)) GucSource source)
{
check_parameter(*newval, "supautils.privileged_extensions");
return true;
}
static bool
privileged_role_allowed_configs_check_hook(char **newval, __attribute__ ((unused)) void **extra, __attribute__ ((unused)) GucSource source)
{
check_parameter(*newval, "supautils.privileged_role_allowed_configs");
return true;
}
static void
check_parameter(char *val, char *name)
{
List *comma_separated_list;
if (val != NULL)
{
if (!SplitIdentifierString(pstrdup(val), ',', &comma_separated_list))
EREPORT_INVALID_PARAMETER(name);
list_free(comma_separated_list);
}
}
static void constrained_extensions_assign_hook(const char *newval, __attribute__ ((unused)) void *extra){
if (total_cexts > 0) {
for (size_t i = 0; i < total_cexts; i++){
pfree(cexts[i].name);
}
total_cexts = 0;
}
if (newval) {
json_constrained_extension_parse_state state = parse_constrained_extensions(newval, cexts);
total_cexts = state.total_cexts;
if(state.error_msg){
ereport(ERROR, \
(errcode(ERRCODE_INVALID_PARAMETER_VALUE), \
errmsg("supautils.constrained_extensions: %s", state.error_msg)));
}
}
}
static bool
is_reserved_role(const char *target, bool allow_configurable_roles)
{
List *reserved_roles_list;