2003-08-18 23:08:08 +02:00
|
|
|
|
# Test of GRANT commands
|
|
|
|
|
|
|
|
|
|
# Cleanup
|
2003-06-06 14:43:23 +02:00
|
|
|
|
--disable_warnings
|
|
|
|
|
drop table if exists t1;
|
|
|
|
|
--enable_warnings
|
|
|
|
|
|
2004-07-08 15:54:07 +02:00
|
|
|
|
SET NAMES binary;
|
|
|
|
|
|
2002-09-05 15:17:08 +02:00
|
|
|
|
#
|
|
|
|
|
# Test that SSL options works properly
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
delete from mysql.user where user='mysqltest_1';
|
|
|
|
|
delete from mysql.db where user='mysqltest_1';
|
|
|
|
|
flush privileges;
|
|
|
|
|
grant select on mysqltest.* to mysqltest_1@localhost require cipher "EDH-RSA-DES-CBC3-SHA";
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
grant delete on mysqltest.* to mysqltest_1@localhost;
|
2002-09-11 05:40:08 +02:00
|
|
|
|
select * from mysql.user where user="mysqltest_1";
|
2002-09-05 15:17:08 +02:00
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
revoke delete on mysqltest.* from mysqltest_1@localhost;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
grant select on mysqltest.* to mysqltest_1@localhost require NONE;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
grant USAGE on mysqltest.* to mysqltest_1@localhost require cipher "EDH-RSA-DES-CBC3-SHA" AND SUBJECT "testsubject" ISSUER "MySQL AB";
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
revoke all privileges on mysqltest.* from mysqltest_1@localhost;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
delete from mysql.user where user='mysqltest_1';
|
|
|
|
|
flush privileges;
|
2002-09-16 14:55:19 +02:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Test that the new db privileges are stored/retrieved correctly
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
grant CREATE TEMPORARY TABLES, LOCK TABLES on mysqltest.* to mysqltest_1@localhost;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
flush privileges;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
revoke CREATE TEMPORARY TABLES on mysqltest.* from mysqltest_1@localhost;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
grant ALL PRIVILEGES on mysqltest.* to mysqltest_1@localhost with GRANT OPTION;
|
|
|
|
|
flush privileges;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
revoke LOCK TABLES, ALTER on mysqltest.* from mysqltest_1@localhost;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
revoke all privileges on mysqltest.* from mysqltest_1@localhost;
|
|
|
|
|
delete from mysql.user where user='mysqltest_1';
|
|
|
|
|
flush privileges;
|
2003-06-23 19:03:59 +02:00
|
|
|
|
grant usage on test.* to mysqltest_1@localhost with grant option;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
delete from mysql.user where user='mysqltest_1';
|
|
|
|
|
delete from mysql.db where user='mysqltest_1';
|
|
|
|
|
delete from mysql.tables_priv where user='mysqltest_1';
|
|
|
|
|
delete from mysql.columns_priv where user='mysqltest_1';
|
|
|
|
|
flush privileges;
|
2004-04-08 12:58:06 +02:00
|
|
|
|
--error 1141
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
2003-06-23 19:03:59 +02:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Test what happens when you have same table and colum level grants
|
|
|
|
|
#
|
2003-01-11 17:02:10 +01:00
|
|
|
|
|
2003-06-23 19:03:59 +02:00
|
|
|
|
create table t1 (a int);
|
|
|
|
|
GRANT select,update,insert on t1 to mysqltest_1@localhost;
|
|
|
|
|
GRANT select (a), update (a),insert(a), references(a) on t1 to mysqltest_1@localhost;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
select table_priv,column_priv from mysql.tables_priv where user="mysqltest_1";
|
|
|
|
|
REVOKE select (a), update on t1 from mysqltest_1@localhost;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
2003-09-09 19:06:50 +02:00
|
|
|
|
REVOKE select,update,insert,insert (a) on t1 from mysqltest_1@localhost;
|
2003-06-23 19:03:59 +02:00
|
|
|
|
show grants for mysqltest_1@localhost;
|
2003-09-09 19:06:50 +02:00
|
|
|
|
GRANT select,references on t1 to mysqltest_1@localhost;
|
2003-06-23 19:03:59 +02:00
|
|
|
|
select table_priv,column_priv from mysql.tables_priv where user="mysqltest_1";
|
2003-09-09 19:06:50 +02:00
|
|
|
|
grant all on test.* to mysqltest_3@localhost with grant option;
|
|
|
|
|
revoke all on test.* from mysqltest_3@localhost;
|
|
|
|
|
show grants for mysqltest_3@localhost;
|
|
|
|
|
revoke grant option on test.* from mysqltest_3@localhost;
|
|
|
|
|
show grants for mysqltest_3@localhost;
|
|
|
|
|
grant all on test.t1 to mysqltest_2@localhost with grant option;
|
|
|
|
|
revoke all on test.t1 from mysqltest_2@localhost;
|
|
|
|
|
show grants for mysqltest_2@localhost;
|
|
|
|
|
revoke grant option on test.t1 from mysqltest_2@localhost;
|
|
|
|
|
show grants for mysqltest_2@localhost;
|
|
|
|
|
delete from mysql.user where user='mysqltest_1' or user="mysqltest_2" or user="mysqltest_3";
|
|
|
|
|
delete from mysql.db where user='mysqltest_1' or user="mysqltest_2" or user="mysqltest_3";
|
|
|
|
|
delete from mysql.tables_priv where user='mysqltest_1' or user="mysqltest_2" or user="mysqltest_3";
|
|
|
|
|
delete from mysql.columns_priv where user='mysqltest_1' or user="mysqltest_2" or user="mysqltest_3";
|
2003-06-23 19:03:59 +02:00
|
|
|
|
flush privileges;
|
|
|
|
|
drop table t1;
|
2003-08-18 23:08:08 +02:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Test some error conditions
|
|
|
|
|
#
|
2003-07-02 00:24:05 +02:00
|
|
|
|
--error 1221
|
2003-07-01 23:10:47 +02:00
|
|
|
|
GRANT FILE on mysqltest.* to mysqltest_1@localhost;
|
2003-08-18 23:08:08 +02:00
|
|
|
|
select 1; -- To test that the previous command didn't cause problems
|
2003-01-11 17:02:10 +01:00
|
|
|
|
|
2004-08-12 11:49:16 +02:00
|
|
|
|
#
|
|
|
|
|
# Bug #4898: User privileges depending on ORDER BY Settings of table db
|
|
|
|
|
#
|
|
|
|
|
insert into mysql.user (host, user) values ('localhost', 'test11');
|
|
|
|
|
insert into mysql.db (host, db, user, select_priv) values
|
|
|
|
|
('localhost', 'a%', 'test11', 'Y'), ('localhost', 'ab%', 'test11', 'Y');
|
2004-08-12 13:02:12 +02:00
|
|
|
|
alter table mysql.db order by db asc;
|
2004-08-12 11:49:16 +02:00
|
|
|
|
flush privileges;
|
|
|
|
|
show grants for test11@localhost;
|
|
|
|
|
alter table mysql.db order by db desc;
|
|
|
|
|
flush privileges;
|
|
|
|
|
show grants for test11@localhost;
|
|
|
|
|
delete from mysql.user where user='test11';
|
|
|
|
|
delete from mysql.db where user='test11';
|
2004-11-11 21:59:03 +01:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Bug#6123: GRANT USAGE inserts useless Db row
|
|
|
|
|
#
|
2004-11-12 10:17:53 +01:00
|
|
|
|
create database mysqltest1;
|
|
|
|
|
grant usage on mysqltest1.* to test6123 identified by 'magic123';
|
|
|
|
|
select host,db,user,select_priv,insert_priv from mysql.db where db="mysqltest1";
|
2004-11-11 21:59:03 +01:00
|
|
|
|
delete from mysql.user where user='test6123';
|
2004-11-12 10:17:53 +01:00
|
|
|
|
drop database mysqltest1;
|
|
|
|
|
|
2003-06-06 14:43:23 +02:00
|
|
|
|
#
|
|
|
|
|
# Test for 'drop user', 'revoke privileges, grant'
|
|
|
|
|
#
|
|
|
|
|
|
2003-08-18 23:08:08 +02:00
|
|
|
|
create table t1 (a int);
|
2003-06-06 14:43:23 +02:00
|
|
|
|
grant ALL PRIVILEGES on *.* to drop_user2@localhost with GRANT OPTION;
|
|
|
|
|
show grants for drop_user2@localhost;
|
2004-02-15 17:59:52 +01:00
|
|
|
|
revoke all privileges, grant option from drop_user2@localhost;
|
2003-06-06 14:43:23 +02:00
|
|
|
|
drop user drop_user2@localhost;
|
|
|
|
|
|
|
|
|
|
grant ALL PRIVILEGES on *.* to drop_user@localhost with GRANT OPTION;
|
|
|
|
|
grant ALL PRIVILEGES on test.* to drop_user@localhost with GRANT OPTION;
|
|
|
|
|
grant select(a) on test.t1 to drop_user@localhost;
|
|
|
|
|
show grants for drop_user@localhost;
|
2004-03-17 13:19:09 +01:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Bug3086
|
|
|
|
|
#
|
|
|
|
|
set sql_mode=ansi_quotes;
|
|
|
|
|
show grants for drop_user@localhost;
|
|
|
|
|
set sql_mode=default;
|
|
|
|
|
|
|
|
|
|
set sql_quote_show_create=0;
|
|
|
|
|
show grants for drop_user@localhost;
|
|
|
|
|
set sql_mode="ansi_quotes";
|
|
|
|
|
show grants for drop_user@localhost;
|
|
|
|
|
set sql_quote_show_create=1;
|
|
|
|
|
show grants for drop_user@localhost;
|
|
|
|
|
set sql_mode="";
|
|
|
|
|
show grants for drop_user@localhost;
|
|
|
|
|
|
2004-02-15 17:59:52 +01:00
|
|
|
|
revoke all privileges, grant option from drop_user@localhost;
|
2003-06-06 14:43:23 +02:00
|
|
|
|
show grants for drop_user@localhost;
|
|
|
|
|
drop user drop_user@localhost;
|
2004-02-16 09:03:25 +01:00
|
|
|
|
--error 1269
|
2004-02-15 17:59:52 +01:00
|
|
|
|
revoke all privileges, grant option from drop_user@localhost;
|
2003-06-06 14:43:23 +02:00
|
|
|
|
|
|
|
|
|
grant select(a) on test.t1 to drop_user1@localhost;
|
|
|
|
|
grant select on test.t1 to drop_user2@localhost;
|
|
|
|
|
grant select on test.* to drop_user3@localhost;
|
|
|
|
|
grant select on *.* to drop_user4@localhost;
|
2004-02-16 09:03:25 +01:00
|
|
|
|
--error 1268
|
2003-06-06 14:43:23 +02:00
|
|
|
|
drop user drop_user1@localhost, drop_user2@localhost, drop_user3@localhost,
|
|
|
|
|
drop_user4@localhost;
|
2004-02-15 17:59:52 +01:00
|
|
|
|
revoke all privileges, grant option from drop_user1@localhost, drop_user2@localhost,
|
2003-06-06 14:43:23 +02:00
|
|
|
|
drop_user3@localhost, drop_user4@localhost;
|
|
|
|
|
drop user drop_user1@localhost, drop_user2@localhost, drop_user3@localhost,
|
|
|
|
|
drop_user4@localhost;
|
|
|
|
|
drop table t1;
|
2004-03-01 20:54:08 +01:00
|
|
|
|
grant usage on *.* to mysqltest_1@localhost identified by "password";
|
|
|
|
|
grant select, update, insert on test.* to mysqltest@localhost;
|
|
|
|
|
show grants for mysqltest_1@localhost;
|
|
|
|
|
drop user mysqltest_1@localhost;
|
2004-05-14 09:16:27 +02:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Bug #3403 Wrong encodin in SHOW GRANTS output
|
|
|
|
|
#
|
|
|
|
|
SET NAMES koi8r;
|
|
|
|
|
CREATE DATABASE <20><>;
|
|
|
|
|
USE <20><>;
|
|
|
|
|
CREATE TABLE <20><><EFBFBD> (<28><><EFBFBD> int);
|
|
|
|
|
|
|
|
|
|
GRANT SELECT ON <20><>.* TO <20><><EFBFBD><EFBFBD>@localhost;
|
|
|
|
|
SHOW GRANTS FOR <20><><EFBFBD><EFBFBD>@localhost;
|
|
|
|
|
REVOKE SELECT ON <20><>.* FROM <20><><EFBFBD><EFBFBD>@localhost;
|
|
|
|
|
|
|
|
|
|
GRANT SELECT ON <20><>.<2E><><EFBFBD> TO <20><><EFBFBD><EFBFBD>@localhost;
|
|
|
|
|
SHOW GRANTS FOR <20><><EFBFBD><EFBFBD>@localhost;
|
|
|
|
|
REVOKE SELECT ON <20><>.<2E><><EFBFBD> FROM <20><><EFBFBD><EFBFBD>@localhost;
|
|
|
|
|
|
|
|
|
|
GRANT SELECT (<28><><EFBFBD>) ON <20><>.<2E><><EFBFBD> TO <20><><EFBFBD><EFBFBD>@localhost;
|
|
|
|
|
SHOW GRANTS FOR <20><><EFBFBD><EFBFBD>@localhost;
|
|
|
|
|
REVOKE SELECT (<28><><EFBFBD>) ON <20><>.<2E><><EFBFBD> FROM <20><><EFBFBD><EFBFBD>@localhost;
|
|
|
|
|
|
|
|
|
|
DROP DATABASE <20><>;
|
|
|
|
|
SET NAMES latin1;
|
2004-08-12 11:49:16 +02:00
|
|
|
|
|
2004-10-01 14:50:26 +02:00
|
|
|
|
#
|
|
|
|
|
# Bug #5831: REVOKE ALL PRIVILEGES, GRANT OPTION does not revoke everything
|
|
|
|
|
#
|
|
|
|
|
USE test;
|
|
|
|
|
CREATE TABLE t1 (a int );
|
|
|
|
|
CREATE TABLE t2 LIKE t1;
|
|
|
|
|
CREATE TABLE t3 LIKE t1;
|
|
|
|
|
CREATE TABLE t4 LIKE t1;
|
|
|
|
|
CREATE TABLE t5 LIKE t1;
|
|
|
|
|
CREATE TABLE t6 LIKE t1;
|
|
|
|
|
CREATE TABLE t7 LIKE t1;
|
|
|
|
|
CREATE TABLE t8 LIKE t1;
|
|
|
|
|
CREATE TABLE t9 LIKE t1;
|
|
|
|
|
CREATE TABLE t10 LIKE t1;
|
2004-10-01 21:48:48 +02:00
|
|
|
|
CREATE DATABASE testdb1;
|
|
|
|
|
CREATE DATABASE testdb2;
|
|
|
|
|
CREATE DATABASE testdb3;
|
|
|
|
|
CREATE DATABASE testdb4;
|
|
|
|
|
CREATE DATABASE testdb5;
|
|
|
|
|
CREATE DATABASE testdb6;
|
|
|
|
|
CREATE DATABASE testdb7;
|
|
|
|
|
CREATE DATABASE testdb8;
|
|
|
|
|
CREATE DATABASE testdb9;
|
|
|
|
|
CREATE DATABASE testdb10;
|
|
|
|
|
GRANT ALL ON testdb1.* TO testuser@localhost;
|
|
|
|
|
GRANT ALL ON testdb2.* TO testuser@localhost;
|
|
|
|
|
GRANT ALL ON testdb3.* TO testuser@localhost;
|
|
|
|
|
GRANT ALL ON testdb4.* TO testuser@localhost;
|
|
|
|
|
GRANT ALL ON testdb5.* TO testuser@localhost;
|
|
|
|
|
GRANT ALL ON testdb6.* TO testuser@localhost;
|
|
|
|
|
GRANT ALL ON testdb7.* TO testuser@localhost;
|
|
|
|
|
GRANT ALL ON testdb8.* TO testuser@localhost;
|
|
|
|
|
GRANT ALL ON testdb9.* TO testuser@localhost;
|
|
|
|
|
GRANT ALL ON testdb10.* TO testuser@localhost;
|
2004-10-01 14:50:26 +02:00
|
|
|
|
GRANT SELECT ON test.t1 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT ON test.t2 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT ON test.t3 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT ON test.t4 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT ON test.t5 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT ON test.t6 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT ON test.t7 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT ON test.t8 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT ON test.t9 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT ON test.t10 TO testuser@localhost;
|
2004-10-01 21:48:48 +02:00
|
|
|
|
GRANT SELECT (a) ON test.t1 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT (a) ON test.t2 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT (a) ON test.t3 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT (a) ON test.t4 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT (a) ON test.t5 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT (a) ON test.t6 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT (a) ON test.t7 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT (a) ON test.t8 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT (a) ON test.t9 TO testuser@localhost;
|
|
|
|
|
GRANT SELECT (a) ON test.t10 TO testuser@localhost;
|
2004-10-01 14:50:26 +02:00
|
|
|
|
REVOKE ALL PRIVILEGES, GRANT OPTION FROM testuser@localhost;
|
|
|
|
|
SHOW GRANTS FOR testuser@localhost;
|
|
|
|
|
DROP USER testuser@localhost;
|
|
|
|
|
DROP TABLE t1,t2,t3,t4,t5,t6,t7,t8,t9,t10;
|
2004-10-01 21:48:48 +02:00
|
|
|
|
DROP DATABASE testdb1;
|
|
|
|
|
DROP DATABASE testdb2;
|
|
|
|
|
DROP DATABASE testdb3;
|
|
|
|
|
DROP DATABASE testdb4;
|
|
|
|
|
DROP DATABASE testdb5;
|
|
|
|
|
DROP DATABASE testdb6;
|
|
|
|
|
DROP DATABASE testdb7;
|
|
|
|
|
DROP DATABASE testdb8;
|
|
|
|
|
DROP DATABASE testdb9;
|
|
|
|
|
DROP DATABASE testdb10;
|
2004-10-01 14:50:26 +02:00
|
|
|
|
|