-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathmytap-privilege.sql
1046 lines (841 loc) · 30.8 KB
/
mytap-privilege.sql
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
/*
Test user and role privileges
We are not so much interested in whether a given user can access a particular
object but rather in whether a privilege has been defined for a user. We also
allow for the cascade of privileges from global to columns. Users can,
also gain access via roles and proxies, these can be tested separately.
*/
USE tap;
/*****************************************************************************************/
-- Check that the pytpe is valid for the test
-- There are different privileges that operate at the various object levels
DELIMITER //
DROP FUNCTION IF EXISTS _global_privs //
CREATE FUNCTION _global_privs(ptype VARCHAR(64))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
RETURN FIND_IN_SET(ptype,
'ALTER,ALTER ROUTINE,CREATE,CREATE ROUTINE,CREATE TABLESPACE,CREATE TEMPORARY TABLES,CREATE USER,CREATE VIEW,DELETE,DROP,EVENT,EXECUTE,FILE,GRANT,INDEX,INSERT,LOCK TABLES,PROCESS,REFERENCES,RELOAD,REPLICATION CLIENT,REPLICATION SLAVE,SELECT,SHOW DATABASES,SHOW VIEW,SHUTDOWN,SUPER,TRIGGER,UPDATE,USAGE');
END //
DROP FUNCTION IF EXISTS _schema_privs //
CREATE FUNCTION _schema_privs(ptype VARCHAR(64))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
RETURN FIND_IN_SET(ptype,
'ALTER,ALTER ROUTINE,CREATE,CREATE ROUTINE,CREATE TEMPORARY TABLES,CREATE VIEW,DELETE,DROP,EVENT,EXECUTE,GRANT,INDEX,INSERT,LOCK TABLES,REFERENCES,SELECT,SHOW VIEW,TRIGGER,UPDATE');
END //
DROP FUNCTION IF EXISTS _table_privs //
CREATE FUNCTION _table_privs(ptype VARCHAR(64))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
RETURN FIND_IN_SET(ptype,
'ALTER,CREATE,CREATE VIEW,DELETE,DROP,GRANT,INDEX,INSERT,REFERENCES,SELECT,SHOW VIEW,TRIGGER,UPDATE');
END //
DROP FUNCTION IF EXISTS _column_privs //
CREATE FUNCTION _column_privs(ptype VARCHAR(64))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
RETURN FIND_IN_SET(ptype, 'INSERT,REFERENCES,SELECT,UPDATE');
END //
-- NB CREATE ROUTINE will never appear in procs_priv, only in user and schema level privs
-- but it's needed here to identify those values.
DROP FUNCTION IF EXISTS _routine_privs //
CREATE FUNCTION _routine_privs(ptype VARCHAR(64))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
RETURN FIND_IN_SET(ptype, 'ALTER ROUTINE,CREATE ROUTINE,EXECUTE,GRANT');
END //
/***********************************************************************************/
-- has_privilege
-- This is irrespective of level, does the priv exist in any context
DROP FUNCTION IF EXISTS _has_priv //
CREATE FUNCTION _has_priv(gtee VARCHAR(81), ptype VARCHAR(64))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
DECLARE rtn INT;
SELECT SUM(priv) INTO rtn
FROM
(
SELECT 1 AS priv
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
UNION ALL
SELECT 1 AS priv
FROM `information_schema`.`schema_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
UNION ALL
SELECT 1 AS priv
FROM `information_schema`.`table_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
UNION ALL
SELECT 1 AS priv
FROM `information_schema`.`column_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
) a;
RETURN IF(rtn > 0, 1, 0);
END //
DROP FUNCTION IF EXISTS has_privilege //
CREATE FUNCTION has_privilege(gtee VARCHAR(81), ptype VARCHAR(64), description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
-- normalize the input
SET @gtee = _format_user(gtee);
IF description = '' THEN
SET description = CONCAT('Account ', gtee, ' should have privilege ''', ptype, '''');
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description),'\n',
diag (CONCAT('Account ', gtee, ' does not exist')));
END IF;
RETURN ok(_has_priv(@gtee, ptype), description);
END //
DROP FUNCTION IF EXISTS hasnt_privilege //
CREATE FUNCTION hasnt_privilege(gtee VARCHAR(81), ptype VARCHAR(64), description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
-- normalize the input
SET @gtee = _format_user(gtee);
IF description = '' THEN
SET description = concat('Account ', gtee, ' should not have privilege ''', ptype, '''');
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
RETURN ok(NOT _has_priv(@gtee, ptype), description);
END //
/***********************************************************************************/
DROP FUNCTION IF EXISTS _has_global_priv //
CREATE FUNCTION _has_global_priv(gtee VARCHAR(81), ptype VARCHAR(64))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
DECLARE rtn INT DEFAULT 0;
SELECT 1 INTO rtn
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype;
RETURN rtn;
END //
DROP FUNCTION IF EXISTS has_global_privilege //
CREATE FUNCTION has_global_privilege(gtee VARCHAR(81), ptype VARCHAR(64), description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
-- normalize the input
SET @gtee = _format_user(gtee);
IF description = '' THEN
SET description = concat('Account ', gtee, ' should have global privilege ''', ptype, '''');
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
IF NOT _global_privs(ptype) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Privilege ''', ptype, ''' is not a valid global privilege type')));
END IF;
RETURN ok(_has_global_priv(@gtee, ptype), description);
END //
DROP FUNCTION IF EXISTS hasnt_global_privilege //
CREATE FUNCTION hasnt_global_privilege(gtee VARCHAR(81), ptype VARCHAR(64), description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
-- normalize the input
SET @gtee = _format_user(gtee);
IF description = '' THEN
SET description = concat('Account ', gtee, ' should not have global privilege ''', ptype, '''');
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
IF NOT _global_privs(ptype) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Privilege ''', ptype, ''' is not a valid global privilege type')));
END IF;
RETURN ok(NOT _has_global_priv(@gtee, ptype), description);
END //
/***********************************************************************************/
DROP FUNCTION IF EXISTS _has_schema_priv //
CREATE FUNCTION _has_schema_priv(sname VARCHAR(64), gtee VARCHAR(81), ptype VARCHAR(64))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
DECLARE rtn INT;
IF @rollup = 1 THEN
SELECT SUM(priv) INTO rtn
FROM
(
SELECT 1 AS priv
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
UNION ALL
SELECT 1 AS priv
FROM `information_schema`.`schema_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
AND `table_schema` = sname
) a;
ELSE
SELECT 1 INTO rtn
FROM `information_schema`.`schema_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
AND `table_schema` = sname;
END IF;
RETURN IF(rtn > 0, 1, 0);
END //
DROP FUNCTION IF EXISTS has_schema_privilege //
CREATE FUNCTION has_schema_privilege(sname VARCHAR(64), gtee VARCHAR(81), ptype VARCHAR(64), description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
-- normalize the input
SET @gtee = _format_user(gtee);
IF description = '' THEN
SET description = concat('Account ', gtee, ' should have schema privilege ''', ptype, '''');
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
IF NOT _has_schema(sname) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Schema ', sname, ' does not exist')));
END IF;
IF NOT _schema_privs(ptype) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Privilege ''', ptype, ''' is not a valid schema privilege type')));
END IF;
RETURN ok(_has_schema_priv(sname, @gtee, ptype), description);
END //
DROP FUNCTION IF EXISTS hasnt_schema_privilege //
CREATE FUNCTION hasnt_schema_privilege(sname VARCHAR(64), gtee VARCHAR(81), ptype VARCHAR(64), description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
-- normalize the input
SET @gtee = _format_user(gtee);
IF description = '' THEN
SET description = concat('Account ', gtee, ' should not have schema privilege ''', ptype, '''');
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
IF NOT _has_schema(sname) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Schema ', sname, ' does not exist')));
END IF;
IF NOT _schema_privs(ptype) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Privilege ''', ptype, ''' is not a valid schema privilege type')));
END IF;
RETURN ok(NOT _has_schema_priv(sname, @gtee, ptype), description);
END //
/***********************************************************************************/
DROP FUNCTION IF EXISTS _has_table_priv //
CREATE FUNCTION _has_table_priv(sname VARCHAR(64), tname VARCHAR(64), gtee VARCHAR(81), ptype VARCHAR(64))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
DECLARE rtn INT;
IF @rollup = 1 THEN
SELECT SUM(priv) INTO rtn
FROM
(
SELECT 1 AS priv
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
UNION ALL
SELECT 1 AS priv
FROM `information_schema`.`schema_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
AND `table_schema` = sname
UNION ALL
SELECT 1 AS priv
FROM `information_schema`.`table_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
AND `table_schema` = sname
AND `table_name` = tname
) a;
ELSE
SELECT 1 INTO rtn
FROM `information_schema`.`table_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
AND `table_schema` = sname
AND `table_name` = tname;
END IF;
RETURN IF(rtn > 0, 1, 0);
END //
DROP FUNCTION IF EXISTS has_table_privilege //
CREATE FUNCTION has_table_privilege(sname VARCHAR(64), tname VARCHAR(64), gtee VARCHAR(81), ptype VARCHAR(64), description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
-- normalize the input
SET @gtee = _format_user(gtee);
IF description = '' THEN
SET description = concat('Account ', gtee, ' should have table privilege ''', ptype, '''');
END IF;
IF NOT _has_table(sname,tname) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Table `', sname, '`.`', tname, '` does not exist')));
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
IF NOT _table_privs(ptype) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Privilege ''', ptype, ''' is not a valid table privilege type')));
END IF;
RETURN ok(_has_table_priv(sname, tname, @gtee, ptype), description);
END //
DROP FUNCTION IF EXISTS hasnt_table_privilege //
CREATE FUNCTION hasnt_table_privilege(sname VARCHAR(64), tname VARCHAR(64), gtee VARCHAR(81), ptype VARCHAR(64), description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
-- normalize the input
SET @gtee = _format_user(gtee);
IF description = '' THEN
SET description = concat('Account ', gtee, ' should not have table privilege ''', ptype, '''');
END IF;
IF NOT _has_table(sname,tname) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Table `', sname, '`.`', tname, '` does not exist')));
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
IF NOT _table_privs(ptype) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Privilege ''', ptype, ''' is not a valid table privilege type')));
END IF;
RETURN ok(NOT _has_table_priv(sname, tname, @gtee, ptype), description);
END //
/***********************************************************************************/
DROP FUNCTION IF EXISTS _has_column_priv //
CREATE FUNCTION _has_column_priv(sname VARCHAR(64), tname VARCHAR(64), cname VARCHAR(64), gtee VARCHAR(81), ptype VARCHAR(64))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
DECLARE rtn INT;
IF @rollup = 1 THEN
SELECT SUM(priv) INTO rtn
FROM
(
SELECT 1 AS priv
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
UNION ALL
SELECT 1 AS priv
FROM `information_schema`.`schema_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
AND `table_schema` = sname
UNION ALL
SELECT 1 AS priv
FROM `information_schema`.`table_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
AND `table_schema` = sname
AND `table_name` = tname
UNION ALL
SELECT 1 AS priv
FROM `information_schema`.`column_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
AND `table_schema` = sname
AND `table_name` = tname
AND `column_name` = cname
) a;
ELSE
SELECT 1 INTO rtn
FROM `information_schema`.`column_privileges`
WHERE `grantee` = gtee
AND `privilege_type` = ptype
AND `table_schema` = sname
AND `table_name` = tname
AND `column_name` = cname;
END IF;
RETURN IF(rtn > 0, 1, 0);
END //
DROP FUNCTION IF EXISTS has_column_privilege //
CREATE FUNCTION has_column_privilege(sname VARCHAR(64), tname VARCHAR(64), cname VARCHAR(64), gtee VARCHAR(81), ptype VARCHAR(64), description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
-- normalize the input
SET @gtee = _format_user(gtee);
IF description = '' THEN
SET description = concat('Account ', gtee, ' should have column privilege ''', ptype, '''');
END IF;
IF NOT _has_column(sname,tname,cname) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Column `', tname, '`.`', cname, '` does not exist')));
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
IF NOT _column_privs(ptype) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Privilege ''', ptype, ''' is not a valid column privilege type')));
END IF;
RETURN ok(_has_column_priv(sname, tname, cname, @gtee, ptype), description);
END //
DROP FUNCTION IF EXISTS hasnt_column_privilege //
CREATE FUNCTION hasnt_column_privilege(sname VARCHAR(64), tname VARCHAR(64), cname VARCHAR(64), gtee VARCHAR(81), ptype VARCHAR(64), description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
-- normalize the input
SET @gtee = _format_user(gtee);
IF description = '' THEN
SET description = concat('Account ', gtee,
' should not have column privilege ''', ptype, '''');
END IF;
IF NOT _has_column(sname,tname,cname) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Column `', tname, '`.`', cname, '` does not exist')));
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
IF NOT _column_privs(ptype) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Privilege ''', ptype, ''' is not a valid column privilege type')));
END IF;
RETURN ok(NOT _has_column_priv(sname, tname, cname, @gtee, ptype), description);
END //
/****************************************************************************/
-- *_privileges_are
-- Tests that accounts and roles have the appropriate privileges and
-- only those privileges.
-- The way I have coded this takes in to consideration those privileges that
-- are suitable to the level being tested (e.g. table) but which may be defined
-- at a higher level (e.g. global or schema). The effect of the privileges
-- defined at the higher levels, cascades to the lower levels, so a SELECT
-- granted to a user at the global level will imply a SELECT privilege all
-- the way down to column level
-- require _missing, _extra, _populate functions defined in mytap.sql
/****************************************************************************/
DROP FUNCTION IF EXISTS _global_privileges //
CREATE FUNCTION _global_privileges(gtee VARCHAR(81))
RETURNS TEXT
DETERMINISTIC
BEGIN
DECLARE rtn TEXT;
SELECT GROUP_CONCAT(`privilege_type`) INTO rtn
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee;
RETURN rtn;
END //
DROP FUNCTION IF EXISTS global_privileges_are //
CREATE FUNCTION global_privileges_are(gtee VARCHAR(81), ptypes TEXT, description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
SET @gtee = _format_user(gtee);
SET @want = ptypes;
SET @have = _global_privileges(@gtee);
IF description = '' THEN
SET description = CONCAT('Account ', gtee, ' should have the correct global privileges');
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
CALL _populate_want(@want);
CALL _populate_have(@have);
SET @missing = (SELECT _missing(@have));
SET @extras = (SELECT _extra(@want));
RETURN _are('Global Privileges', @extras, @missing, description);
END //
/***********************************************************************************/
DROP FUNCTION IF EXISTS _schema_privileges //
CREATE FUNCTION _schema_privileges(sname VARCHAR(64), gtee VARCHAR(81))
RETURNS TEXT
DETERMINISTIC
BEGIN
DECLARE rtn TEXT;
IF @rollup = 1 THEN
SELECT GROUP_CONCAT(`privilege_type`) INTO rtn
FROM
( SELECT `privilege_type`
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee AND _schema_privs(`privilege_type`) > 0
UNION -- will make results distinct
SELECT `privilege_type`
FROM `information_schema`.`schema_privileges`
WHERE `grantee` = gtee AND `table_schema` = sname
) u;
ELSE
SELECT GROUP_CONCAT(`privilege_type`) INTO rtn
FROM `information_schema`.`schema_privileges`
WHERE `grantee` = gtee AND `table_schema` = sname;
END IF;
RETURN rtn;
END //
DROP FUNCTION IF EXISTS schema_privileges_are //
CREATE FUNCTION schema_privileges_are(sname VARCHAR(64), gtee VARCHAR(81), ptypes TEXT, description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
SET @gtee = _format_user(gtee);
SET @want = ptypes;
SET @have = _schema_privileges(sname, @gtee);
IF description = '' THEN
SET description = CONCAT('Account ', gtee, ' should have the correct schema privileges');
END IF;
IF NOT _has_schema(sname) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Schema ', sname, ' does not exist')));
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
-- todo diagnostic does the expected list only contain schema level privs
CALL _populate_want(@want);
CALL _populate_have(@have);
SET @missing = (SELECT _missing(@have));
SET @extras = (SELECT _extra(@want));
RETURN _are('Schema Privileges', @extras, @missing, description);
END //
/***********************************************************************************/
-- table level privileges for an account
DROP FUNCTION IF EXISTS _table_privileges //
CREATE FUNCTION _table_privileges(sname VARCHAR(64), tname VARCHAR(64), gtee VARCHAR(81))
RETURNS TEXT
DETERMINISTIC
BEGIN
DECLARE rtn TEXT;
IF @rollup = 1 THEN
SELECT GROUP_CONCAT(`privilege_type`) INTO rtn
FROM
( SELECT `privilege_type`
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee AND _table_privs(`privilege_type`) > 0
UNION -- will make results distinct
SELECT `privilege_type`
FROM `information_schema`.`schema_privileges`
WHERE `grantee` = gtee AND `table_schema` = sname AND _table_privs (`privilege_type`) > 0
UNION
SELECT `privilege_type`
FROM `information_schema`.`table_privileges`
WHERE `grantee` = gtee AND `table_schema` = sname AND `table_name` = tname
) u;
ELSE
SELECT GROUP_CONCAT(`privilege_type`) INTO rtn
FROM `information_schema`.`table_privileges`
WHERE `grantee` = gtee AND `table_schema` = sname AND `table_name` = tname;
END IF;
RETURN rtn;
END //
DROP FUNCTION IF EXISTS table_privileges_are //
CREATE FUNCTION table_privileges_are(sname VARCHAR(64), tname VARCHAR(64), gtee VARCHAR(81), ptypes TEXT, description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
SET @gtee = _format_user(gtee);
SET @want = ptypes;
SET @have = _table_privileges(sname, tname, @gtee);
IF description = '' THEN
SET description = CONCAT('Account ', gtee, ' should have the correct table privileges');
END IF;
IF NOT _has_table(sname, tname) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Table `', sname,'`.`', tname, '` does not exist')));
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
-- todo diagnostic, does the expected list only contain table level privs
CALL _populate_want(@want);
CALL _populate_have(@have);
SET @missing = (SELECT _missing(@have));
SET @extras = (SELECT _extra(@want));
RETURN _are('Table Privileges', @extras, @missing, description);
END //
/***********************************************************************************/
-- column level privileges for an account
DROP FUNCTION IF EXISTS _column_privileges //
CREATE FUNCTION _column_privileges(sname VARCHAR(64), tname VARCHAR(64), cname VARCHAR(64), gtee VARCHAR(81))
RETURNS TEXT
DETERMINISTIC
BEGIN
DECLARE rtn TEXT;
IF @rollup = 1 THEN
SELECT GROUP_CONCAT(`privilege_type`) INTO rtn
FROM
( SELECT `privilege_type`
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee AND _column_privs(`privilege_type`) > 0
UNION
SELECT `privilege_type`
FROM `information_schema`.`schema_privileges`
WHERE `grantee` = gtee AND `table_schema` = sname AND _column_privs (`privilege_type`) > 0
UNION
SELECT `privilege_type`
FROM `information_schema`.`table_privileges`
WHERE `grantee` = gtee AND `table_schema` = sname AND `table_name` = tname AND _column_privs (`privilege_type`) > 0
UNION
SELECT `privilege_type`
FROM `information_schema`.`column_privileges`
WHERE `grantee` = gtee AND `table_schema` = sname AND `table_name` = tname AND `column_name` = cname
) u;
ELSE
SELECT GROUP_CONCAT(`privilege_type`) INTO rtn
FROM `information_schema`.`column_privileges`
WHERE `grantee` = gtee AND `table_schema` = sname AND `table_name` = tname AND `column_name` = cname;
END IF;
RETURN rtn;
END //
DROP FUNCTION IF EXISTS column_privileges_are //
CREATE FUNCTION column_privileges_are(sname VARCHAR(64), tname VARCHAR(64), cname VARCHAR(64), gtee VARCHAR(81), ptypes TEXT, description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
SET @gtee = _format_user(gtee);
SET @want = ptypes;
SET @have = _column_privileges(sname, tname, cname, @gtee);
IF description = '' THEN
SET description = CONCAT('Account ', gtee, ' should have the correct column privileges');
END IF;
IF NOT _has_column(sname, tname, cname) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Column `', tname,'`.`', cname, '` does not exist')));
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
-- todo diagnostic, does the expected list only contain table level privs
CALL _populate_want(@want);
CALL _populate_have(@have);
SET @missing = (SELECT _missing(@have));
SET @extras = (SELECT _extra(@want));
RETURN _are('Column Privileges', @extras, @missing, description);
END //
/***********************************************************************************/
-- As of v8, no informtion schema equivalent of procs_priv
-- so this is based on mysql.procs_priv which doesn't have the same structure
-- as the info_schema tables
-- use view to simulate privilege table
-- NB 5.5 friendly views cannot have sub-selects in the from clause hence long-winded
-- aliasing for all parts of the UNION
DROP VIEW IF EXISTS tap.proc_privileges //
CREATE VIEW `tap`.`proc_privileges` AS
SELECT CONCAT('''',`user`,'''@''',`host`,'''') AS `GRANTEE`, `db` AS `ROUTINE_SCHEMA`, `ROUTINE_NAME`, `ROUTINE_TYPE`, 'EXECUTE' AS `PRIVILEGE_TYPE`
FROM `mysql`.`procs_priv`
WHERE FIND_IN_SET('EXECUTE', `Proc_priv`) > 0
UNION
SELECT CONCAT('''',`user`,'''@''',`host`,'''') AS `GRANTEE`, `db` AS `ROUTINE_SCHEMA`, `ROUTINE_NAME`, `ROUTINE_TYPE`,'ALTER ROUTINE' AS `PRIVILEGE_TYPE`
FROM `mysql`.`procs_priv`
WHERE FIND_IN_SET('ALTER ROUTINE', `Proc_priv`) > 0
UNION
SELECT CONCAT('''',`user`,'''@''',`host`,'''') AS `GRANTEE`, `db` AS `ROUTINE_SCHEMA`, `ROUTINE_NAME`, `ROUTINE_TYPE`, 'GRANT' AS `PRIVILEGE_TYPE`
FROM `mysql`.`procs_priv`
WHERE FIND_IN_SET('GRANT', `Proc_priv`) > 0;
DROP FUNCTION IF EXISTS _routine_privileges //
CREATE FUNCTION _routine_privileges(sname VARCHAR(64), rtype VARCHAR(9), rname VARCHAR(64), gtee VARCHAR(81))
RETURNS TEXT
DETERMINISTIC
BEGIN
DECLARE rtn TEXT;
IF @rollup = 1 THEN
SELECT GROUP_CONCAT(`privilege_type`) INTO rtn
FROM
( SELECT `privilege_type`
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee AND _routine_privs(`privilege_type`) > 0
UNION
SELECT `privilege_type`
FROM `information_schema`.`schema_privileges`
WHERE `table_schema` = sname AND `grantee` = gtee AND _routine_privs(`privilege_type`) > 0
UNION
SELECT `privilege_type`
FROM `tap`.`proc_privileges`
WHERE `routine_schema` = sname AND `routine_name` = rname AND `routine_type` = rtype AND `grantee` = gtee
) u;
ELSE
SELECT GROUP_CONCAT(`privilege_type`) INTO rtn
FROM `tap`.`proc_privileges`
WHERE `routine_schema` = sname AND `routine_name` = rname AND `routine_type` = rtype AND `grantee` = gtee;
END IF;
RETURN rtn;
END //
DROP FUNCTION IF EXISTS routine_privileges_are //
CREATE FUNCTION routine_privileges_are(sname VARCHAR(64), rtype VARCHAR(9), rname VARCHAR(64), gtee VARCHAR(81), ptypes TEXT, description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
SET @gtee = _format_user(gtee);
SET @want = ptypes;
SET @have = _routine_privileges(sname, rtype, rname, @gtee);
IF description = '' THEN
SET description = CONCAT('Account ', gtee, ' should have the correct routine privileges');
END IF;
IF NOT _has_routine(sname, rname, rtype) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT(rtype, ' `', sname, '`.`', rname, '` does not exist')));
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
-- todo diagnostic does the expected list only contain routine level privs
CALL _populate_want(@want);
CALL _populate_have(@have);
SET @missing = (SELECT _missing(@have));
SET @extras = (SELECT _extra(@want));
RETURN _are('Routine Privileges', @extras, @missing, description);
END //
/***********************************************************************************/
DROP FUNCTION IF EXISTS _single_table_priv //
CREATE FUNCTION _single_table_priv(sname VARCHAR(64), tname VARCHAR(64), gtee VARCHAR(81))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
DECLARE rtn INT;
SELECT COUNT(DISTINCT `table_name`) INTO rtn
FROM `information_schema`.`table_privileges`
WHERE `grantee` = gtee
AND `table_schema` = sname
AND `table_name` = tname
AND NOT EXISTS (
SELECT *
FROM `information_schema`.`table_privileges`
WHERE `grantee` = gtee
AND `table_name` != tname
)
AND NOT EXISTS (
SELECT *
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee
AND _table_privs(`privilege_type`) > 0
)
AND NOT EXISTS (
SELECT *
FROM `information_schema`.`schema_privileges`
WHERE `grantee` = gtee
AND _table_privs(`privilege_type`) > 0
)
AND NOT EXISTS (
SELECT *
FROM `information_schema`.`column_privileges`
WHERE `grantee` = gtee
AND `table_name` != tname
);
RETURN rtn;
END //
DROP FUNCTION IF EXISTS single_table_privileges //
CREATE FUNCTION single_table_privileges(sname VARCHAR(64), tname VARCHAR(64), gtee VARCHAR(81), description TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
-- normalize the input
SET @gtee = _format_user(gtee);
IF description = '' THEN
SET description = concat('Account ', gtee, ' should have privileges on a single table');
END IF;
IF NOT _has_table(sname,tname) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Table `', sname, '`.`', tname, '` does not exist')));
END IF;
IF NOT _has_user_at_host(@gtee) THEN
RETURN CONCAT(ok(FALSE, description), '\n',
diag(CONCAT('Account ', gtee, ' does not exist')));
END IF;
RETURN ok(_single_table_priv(sname, tname, @gtee), description);
END //
/***********************************************************************************/
DROP FUNCTION IF EXISTS _single_schema_priv //
CREATE FUNCTION _single_schema_priv(sname VARCHAR(64), gtee VARCHAR(81))
RETURNS BOOLEAN
DETERMINISTIC
BEGIN
DECLARE rtn INT;
SELECT COUNT(DISTINCT `table_schema`) INTO rtn
FROM `information_schema`.`schema_privileges`
WHERE `grantee` = gtee
AND `table_schema` = sname
AND NOT EXISTS (
SELECT *
FROM information_schema.schema_privileges
WHERE `grantee` = gtee
AND `table_schema` != sname
)
AND NOT EXISTS (
SELECT *
FROM `information_schema`.`user_privileges`
WHERE `grantee` = gtee
AND _schema_privs(`privilege_type`) > 0
)
AND NOT EXISTS (
SELECT *
FROM `information_schema`.`table_privileges`
WHERE `grantee` = gtee
AND `table_schema` != sname
)