aboutsummaryrefslogtreecommitdiff
path: root/src/test/modules/test_oat_hooks/expected/test_oat_hooks.out
blob: effdc4914583a0c81da642464d6f78d99fed992f (plain)
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
-- This test script fails if debug_discard_caches is enabled, because cache
-- flushes cause extra calls of the OAT hook in recomputeNamespacePath,
-- resulting in more NOTICE messages than are in the expected output.
SET debug_discard_caches = 0;
-- Creating privileges on a placeholder GUC should create entries in the
-- pg_parameter_acl catalog which conservatively grant no privileges to public.
CREATE ROLE regress_role_joe;
GRANT SET ON PARAMETER test_oat_hooks.user_var1 TO regress_role_joe;
GRANT SET ON PARAMETER test_oat_hooks.super_var1 TO regress_role_joe;
-- SET commands fire both the ProcessUtility_hook and the
-- object_access_hook_str.  Since the auditing GUC starts out false, we miss the
-- initial "attempting" audit message from the ProcessUtility_hook, but we
-- should thereafter see the audit messages.
LOAD 'test_oat_hooks';
SET test_oat_hooks.audit = true;
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [test_oat_hooks.audit]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [test_oat_hooks.audit]
NOTICE:  in process utility: superuser finished SET
-- Creating privileges on an existent custom GUC should create precisely the
-- right privileges, not overly conservative ones.
GRANT SET ON PARAMETER test_oat_hooks.user_var2 TO regress_role_joe;
NOTICE:  in process utility: superuser attempting GRANT
NOTICE:  in process utility: superuser finished GRANT
GRANT SET ON PARAMETER test_oat_hooks.super_var2 TO regress_role_joe;
NOTICE:  in process utility: superuser attempting GRANT
NOTICE:  in process utility: superuser finished GRANT
-- Granting multiple privileges on a parameter should be reported correctly to
-- the OAT hook, but beware that WITH GRANT OPTION is not represented.
GRANT SET, ALTER SYSTEM ON PARAMETER none.such TO regress_role_joe;
NOTICE:  in process utility: superuser attempting GRANT
NOTICE:  in process utility: superuser finished GRANT
GRANT SET, ALTER SYSTEM ON PARAMETER another.bogus TO regress_role_joe WITH GRANT OPTION;
NOTICE:  in process utility: superuser attempting GRANT
NOTICE:  in process utility: superuser finished GRANT
-- Check when the hooks fire relative to dependency based abort of a drop
DROP ROLE regress_role_joe;
NOTICE:  in process utility: superuser attempting DROP ROLE
NOTICE:  in object access: superuser attempting drop (subId=0x0) []
NOTICE:  in object access: superuser finished drop (subId=0x0) []
ERROR:  role "regress_role_joe" cannot be dropped because some objects depend on it
DETAIL:  privileges for parameter test_oat_hooks.user_var1
privileges for parameter test_oat_hooks.super_var1
privileges for parameter test_oat_hooks.user_var2
privileges for parameter test_oat_hooks.super_var2
privileges for parameter none.such
privileges for parameter another.bogus
-- Check the behavior of the hooks relative to do-nothing grants and revokes
GRANT SET ON PARAMETER maintenance_work_mem TO PUBLIC;
NOTICE:  in process utility: superuser attempting GRANT
NOTICE:  in process utility: superuser finished GRANT
REVOKE SET ON PARAMETER maintenance_work_mem FROM PUBLIC;
NOTICE:  in process utility: superuser attempting REVOKE
NOTICE:  in process utility: superuser finished REVOKE
REVOKE ALTER SYSTEM ON PARAMETER maintenance_work_mem FROM PUBLIC;
NOTICE:  in process utility: superuser attempting REVOKE
NOTICE:  in process utility: superuser finished REVOKE
-- Check the behavior of the hooks relative to unrecognized parameters
GRANT ALL ON PARAMETER "none.such" TO PUBLIC;
NOTICE:  in process utility: superuser attempting GRANT
NOTICE:  in process utility: superuser finished GRANT
-- Check relative to an operation that causes the catalog entry to be deleted
REVOKE ALL ON PARAMETER "none.such" FROM PUBLIC;
NOTICE:  in process utility: superuser attempting REVOKE
NOTICE:  in process utility: superuser finished REVOKE
-- Create objects for use in the test
CREATE USER regress_test_user;
NOTICE:  in process utility: superuser attempting CREATE ROLE
NOTICE:  in object access: superuser attempting create (subId=0x0) [explicit]
NOTICE:  in object access: superuser finished create (subId=0x0) [explicit]
NOTICE:  in process utility: superuser finished CREATE ROLE
CREATE TABLE regress_test_table (t text);
NOTICE:  in process utility: superuser attempting CREATE TABLE
NOTICE:  in object access: superuser attempting namespace search (subId=0x0) [no report on violation, allowed]
LINE 1: CREATE TABLE regress_test_table (t text);
                     ^
NOTICE:  in object access: superuser finished namespace search (subId=0x0) [no report on violation, allowed]
LINE 1: CREATE TABLE regress_test_table (t text);
                     ^
NOTICE:  in object access: superuser attempting create (subId=0x0) [explicit]
NOTICE:  in object access: superuser finished create (subId=0x0) [explicit]
NOTICE:  in object access: superuser attempting create (subId=0x0) [explicit]
NOTICE:  in object access: superuser finished create (subId=0x0) [explicit]
NOTICE:  in object access: superuser attempting create (subId=0x0) [explicit]
NOTICE:  in object access: superuser finished create (subId=0x0) [explicit]
NOTICE:  in object access: superuser attempting create (subId=0x0) [internal]
NOTICE:  in object access: superuser finished create (subId=0x0) [internal]
NOTICE:  in object access: superuser attempting create (subId=0x0) [internal]
NOTICE:  in object access: superuser finished create (subId=0x0) [internal]
NOTICE:  in process utility: superuser finished CREATE TABLE
CREATE INDEX regress_test_table_t_idx ON regress_test_table (t);
NOTICE:  in process utility: superuser attempting CREATE INDEX
NOTICE:  in object access: superuser attempting namespace search (subId=0x0) [no report on violation, allowed]
NOTICE:  in object access: superuser finished namespace search (subId=0x0) [no report on violation, allowed]
NOTICE:  in object access: superuser attempting create (subId=0x0) [explicit]
NOTICE:  in object access: superuser finished create (subId=0x0) [explicit]
NOTICE:  in process utility: superuser finished CREATE INDEX
GRANT SELECT ON Table regress_test_table TO public;
NOTICE:  in process utility: superuser attempting GRANT
NOTICE:  in object access: superuser attempting namespace search (subId=0x0) [no report on violation, allowed]
NOTICE:  in object access: superuser finished namespace search (subId=0x0) [no report on violation, allowed]
NOTICE:  in process utility: superuser finished GRANT
CREATE FUNCTION regress_test_func (t text) RETURNS text AS $$
	SELECT $1;
$$ LANGUAGE sql;
NOTICE:  in process utility: superuser attempting CREATE FUNCTION
NOTICE:  in object access: superuser attempting create (subId=0x0) [explicit]
NOTICE:  in object access: superuser finished create (subId=0x0) [explicit]
NOTICE:  in process utility: superuser finished CREATE FUNCTION
GRANT EXECUTE ON FUNCTION regress_test_func (text) TO public;
NOTICE:  in process utility: superuser attempting GRANT
NOTICE:  in process utility: superuser finished GRANT
-- Do a few things as superuser
SELECT * FROM regress_test_table;
NOTICE:  in executor check perms: superuser attempting execute
NOTICE:  in executor check perms: superuser finished execute
 t 
---
(0 rows)

SELECT regress_test_func('arg');
NOTICE:  in executor check perms: superuser attempting execute
NOTICE:  in executor check perms: superuser finished execute
 regress_test_func 
-------------------
 arg
(1 row)

SET work_mem = 8192;
NOTICE:  in process utility: superuser attempting SET
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [work_mem]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [work_mem]
NOTICE:  in process utility: superuser finished SET
RESET work_mem;
NOTICE:  in process utility: superuser attempting RESET
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [work_mem]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [work_mem]
NOTICE:  in process utility: superuser finished RESET
ALTER SYSTEM SET work_mem = 8192;
NOTICE:  in process utility: superuser attempting ALTER SYSTEM
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x2000, alter system) [work_mem]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x2000, alter system) [work_mem]
NOTICE:  in process utility: superuser finished ALTER SYSTEM
ALTER SYSTEM RESET work_mem;
NOTICE:  in process utility: superuser attempting ALTER SYSTEM
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x2000, alter system) [work_mem]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x2000, alter system) [work_mem]
NOTICE:  in process utility: superuser finished ALTER SYSTEM
-- Do those same things as non-superuser
SET SESSION AUTHORIZATION regress_test_user;
NOTICE:  in process utility: superuser attempting SET
NOTICE:  in object_access_hook_str: non-superuser attempting alter (subId=0x1000, set) [session_authorization]
NOTICE:  in object_access_hook_str: non-superuser finished alter (subId=0x1000, set) [session_authorization]
NOTICE:  in process utility: non-superuser finished SET
SELECT * FROM regress_test_table;
NOTICE:  in object access: non-superuser attempting namespace search (subId=0x0) [no report on violation, allowed]
LINE 1: SELECT * FROM regress_test_table;
                      ^
NOTICE:  in object access: non-superuser finished namespace search (subId=0x0) [no report on violation, allowed]
LINE 1: SELECT * FROM regress_test_table;
                      ^
NOTICE:  in executor check perms: non-superuser attempting execute
NOTICE:  in executor check perms: non-superuser finished execute
 t 
---
(0 rows)

SELECT regress_test_func('arg');
NOTICE:  in executor check perms: non-superuser attempting execute
NOTICE:  in executor check perms: non-superuser finished execute
 regress_test_func 
-------------------
 arg
(1 row)

SET work_mem = 8192;
NOTICE:  in process utility: non-superuser attempting SET
NOTICE:  in object_access_hook_str: non-superuser attempting alter (subId=0x1000, set) [work_mem]
NOTICE:  in object_access_hook_str: non-superuser finished alter (subId=0x1000, set) [work_mem]
NOTICE:  in process utility: non-superuser finished SET
RESET work_mem;
NOTICE:  in process utility: non-superuser attempting RESET
NOTICE:  in object_access_hook_str: non-superuser attempting alter (subId=0x1000, set) [work_mem]
NOTICE:  in object_access_hook_str: non-superuser finished alter (subId=0x1000, set) [work_mem]
NOTICE:  in process utility: non-superuser finished RESET
ALTER SYSTEM SET work_mem = 8192;
NOTICE:  in process utility: non-superuser attempting ALTER SYSTEM
ERROR:  permission denied to set parameter "work_mem"
ALTER SYSTEM RESET work_mem;
NOTICE:  in process utility: non-superuser attempting ALTER SYSTEM
ERROR:  permission denied to set parameter "work_mem"
SET test_oat_hooks.user_var1 = true;
NOTICE:  in process utility: non-superuser attempting SET
NOTICE:  in object_access_hook_str: non-superuser attempting alter (subId=0x1000, set) [test_oat_hooks.user_var1]
NOTICE:  in object_access_hook_str: non-superuser finished alter (subId=0x1000, set) [test_oat_hooks.user_var1]
NOTICE:  in process utility: non-superuser finished SET
SET test_oat_hooks.super_var1 = true;
NOTICE:  in process utility: non-superuser attempting SET
ERROR:  permission denied to set parameter "test_oat_hooks.super_var1"
ALTER SYSTEM SET test_oat_hooks.user_var1 = true;
NOTICE:  in process utility: non-superuser attempting ALTER SYSTEM
ERROR:  permission denied to set parameter "test_oat_hooks.user_var1"
ALTER SYSTEM SET test_oat_hooks.super_var1 = true;
NOTICE:  in process utility: non-superuser attempting ALTER SYSTEM
ERROR:  permission denied to set parameter "test_oat_hooks.super_var1"
SET test_oat_hooks.user_var2 = true;
NOTICE:  in process utility: non-superuser attempting SET
NOTICE:  in object_access_hook_str: non-superuser attempting alter (subId=0x1000, set) [test_oat_hooks.user_var2]
NOTICE:  in object_access_hook_str: non-superuser finished alter (subId=0x1000, set) [test_oat_hooks.user_var2]
NOTICE:  in process utility: non-superuser finished SET
SET test_oat_hooks.super_var2 = true;
NOTICE:  in process utility: non-superuser attempting SET
ERROR:  permission denied to set parameter "test_oat_hooks.super_var2"
ALTER SYSTEM SET test_oat_hooks.user_var2 = true;
NOTICE:  in process utility: non-superuser attempting ALTER SYSTEM
ERROR:  permission denied to set parameter "test_oat_hooks.user_var2"
ALTER SYSTEM SET test_oat_hooks.super_var2 = true;
NOTICE:  in process utility: non-superuser attempting ALTER SYSTEM
ERROR:  permission denied to set parameter "test_oat_hooks.super_var2"
RESET SESSION AUTHORIZATION;
NOTICE:  in process utility: non-superuser attempting RESET
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [session_authorization]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [session_authorization]
NOTICE:  in process utility: superuser finished RESET
-- Turn off non-superuser permissions
SET test_oat_hooks.deny_set_variable = true;
NOTICE:  in process utility: superuser attempting SET
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [test_oat_hooks.deny_set_variable]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [test_oat_hooks.deny_set_variable]
NOTICE:  in process utility: superuser finished SET
SET test_oat_hooks.deny_alter_system = true;
NOTICE:  in process utility: superuser attempting SET
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [test_oat_hooks.deny_alter_system]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [test_oat_hooks.deny_alter_system]
NOTICE:  in process utility: superuser finished SET
SET test_oat_hooks.deny_object_access = true;
NOTICE:  in process utility: superuser attempting SET
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [test_oat_hooks.deny_object_access]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [test_oat_hooks.deny_object_access]
NOTICE:  in process utility: superuser finished SET
SET test_oat_hooks.deny_exec_perms = true;
NOTICE:  in process utility: superuser attempting SET
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [test_oat_hooks.deny_exec_perms]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [test_oat_hooks.deny_exec_perms]
NOTICE:  in process utility: superuser finished SET
SET test_oat_hooks.deny_utility_commands = true;
NOTICE:  in process utility: superuser attempting SET
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [test_oat_hooks.deny_utility_commands]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [test_oat_hooks.deny_utility_commands]
NOTICE:  in process utility: superuser finished SET
-- Try again as non-superuser with permissions denied
SET SESSION AUTHORIZATION regress_test_user;
NOTICE:  in process utility: superuser attempting SET
NOTICE:  in object_access_hook_str: non-superuser attempting alter (subId=0x1000, set) [session_authorization]
ERROR:  permission denied: set session_authorization
SELECT * FROM regress_test_table;
NOTICE:  in object access: superuser attempting namespace search (subId=0x0) [no report on violation, allowed]
LINE 1: SELECT * FROM regress_test_table;
                      ^
NOTICE:  in object access: superuser finished namespace search (subId=0x0) [no report on violation, allowed]
LINE 1: SELECT * FROM regress_test_table;
                      ^
NOTICE:  in executor check perms: superuser attempting execute
NOTICE:  in executor check perms: superuser finished execute
 t 
---
(0 rows)

SELECT regress_test_func('arg');
NOTICE:  in executor check perms: superuser attempting execute
NOTICE:  in executor check perms: superuser finished execute
 regress_test_func 
-------------------
 arg
(1 row)

SET work_mem = 8192;
NOTICE:  in process utility: superuser attempting SET
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [work_mem]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [work_mem]
NOTICE:  in process utility: superuser finished SET
RESET work_mem;
NOTICE:  in process utility: superuser attempting RESET
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [work_mem]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [work_mem]
NOTICE:  in process utility: superuser finished RESET
ALTER SYSTEM SET work_mem = 8192;
NOTICE:  in process utility: superuser attempting ALTER SYSTEM
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x2000, alter system) [work_mem]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x2000, alter system) [work_mem]
NOTICE:  in process utility: superuser finished ALTER SYSTEM
ALTER SYSTEM RESET work_mem;
NOTICE:  in process utility: superuser attempting ALTER SYSTEM
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x2000, alter system) [work_mem]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x2000, alter system) [work_mem]
NOTICE:  in process utility: superuser finished ALTER SYSTEM
-- try labelled drops
RESET SESSION AUTHORIZATION;
NOTICE:  in process utility: superuser attempting RESET
NOTICE:  in object_access_hook_str: superuser attempting alter (subId=0x1000, set) [session_authorization]
NOTICE:  in object_access_hook_str: superuser finished alter (subId=0x1000, set) [session_authorization]
NOTICE:  in process utility: superuser finished RESET
DROP INDEX CONCURRENTLY regress_test_table_t_idx;
NOTICE:  in process utility: superuser attempting DROP INDEX
NOTICE:  in object access: superuser attempting drop (subId=0x0) [concurrent drop,]
NOTICE:  in object access: superuser finished drop (subId=0x0) [concurrent drop,]
NOTICE:  in process utility: superuser finished DROP INDEX
-- Clean up
SET test_oat_hooks.audit = false;
NOTICE:  in process utility: superuser attempting SET
DROP ROLE regress_role_joe;  -- fails
ERROR:  role "regress_role_joe" cannot be dropped because some objects depend on it
DETAIL:  privileges for parameter test_oat_hooks.user_var1
privileges for parameter test_oat_hooks.super_var1
privileges for parameter test_oat_hooks.user_var2
privileges for parameter test_oat_hooks.super_var2
privileges for parameter none.such
privileges for parameter another.bogus
REVOKE ALL PRIVILEGES ON PARAMETER
	none.such, another.bogus,
	test_oat_hooks.user_var1, test_oat_hooks.super_var1,
	test_oat_hooks.user_var2, test_oat_hooks.super_var2
	FROM regress_role_joe;
DROP ROLE regress_role_joe;
DROP ROLE regress_test_user;