mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-5876: MySQL bug #11766767 - "59957: VIEW USING MERGE PERMISSIONS IN MULTI-TABLE UPDATE"
Backported multi_update_check_table_access() from 5.6 The code is slightly different in MariaDB, becasue we instansiate fields in merged tables earlier. mysql-test/mysql-test-run.pl: Fixed comment mysql-test/r/view_grant.result: Merged test case from 5.6 mysql-test/t/view_grant.test: Merged test case from 5.6 sql/sql_parse.cc: Reset orig_want_privilege as this will be rechecked later. If not, we will have a problem in mysql_multi_update_prepare() for the call to mysql_handle_derived() sql/sql_update.cc: Backport multi_update_check_table_access() from 5.6
This commit is contained in:
committed by
Michael Widenius
parent
7c81a51516
commit
4cc3fd48f6
@ -1575,3 +1575,152 @@ USE test;
|
||||
DROP DATABASE mysqltest1;
|
||||
DROP USER 'mysqluser1'@'%';
|
||||
DROP USER 'mysqluser2'@'%';
|
||||
#
|
||||
# Test for bug #11766767 - "59957: VIEW USING MERGE PERMISSIONS
|
||||
# IN MULTI-TABLE UPDATE".
|
||||
#
|
||||
drop database if exists mysqltest1;
|
||||
drop database if exists mysqltest2;
|
||||
#
|
||||
# Prepare playground.
|
||||
create database mysqltest1;
|
||||
create database mysqltest2;
|
||||
create user user_11766767;
|
||||
grant select on mysqltest1.* to user_11766767;
|
||||
grant all on mysqltest2.* to user_11766767;
|
||||
use mysqltest1;
|
||||
create table t1 (id int primary key, val varchar(20));
|
||||
insert into t1 values (1, 'test1');
|
||||
create table t11 (id int primary key);
|
||||
insert into t11 values (1);
|
||||
create algorithm=temptable view v1_temp as select * from t1;
|
||||
create algorithm=merge view v1_merge as select * from t1;
|
||||
create algorithm=temptable view v11_temp as
|
||||
select t1.id as id, t1.val as val from t1, t11 where t1.id= t11.id;
|
||||
create algorithm=merge view v11_merge as
|
||||
select t1.id as id, t1.val as val from t1, t11 where t1.id= t11.id;
|
||||
use mysqltest2;
|
||||
create table t2 (id int primary key, val varchar(20));
|
||||
insert into t2 values (1, 'test2');
|
||||
create table t21 (id int primary key);
|
||||
insert into t21 values (1);
|
||||
create algorithm=temptable view v2_temp as select * from t2;
|
||||
create algorithm=merge view v2_merge as select * from t2;
|
||||
create algorithm=temptable view v21_temp as
|
||||
select t2.id as id, t2.val as val from t2, t21 where t2.id= t21.id;
|
||||
create algorithm=merge view v21_merge as
|
||||
select t2.id as id, t2.val as val from t2, t21 where t2.id= t21.id;
|
||||
create algorithm=temptable sql security invoker view v3_temp as
|
||||
select t1.id as id, t1.val as val from mysqltest1.t1 as t1, mysqltest1.t11 as t11
|
||||
where t1.id = t11.id;
|
||||
create algorithm=merge sql security invoker view v3_merge as
|
||||
select t1.id as id, t1.val as val from mysqltest1.t1 as t1, mysqltest1.t11 as t11
|
||||
where t1.id = t11.id;
|
||||
create sql security invoker view v31 as
|
||||
select t2.id as id, t2.val as val from mysqltest2.t2 as t2, mysqltest1.t11 as t11
|
||||
where t2.id = t11.id;
|
||||
create sql security invoker view v4 as
|
||||
select t2.id as id, t2.val as val from mysqltest2.t2 as t2, mysqltest1.v1_merge as v1
|
||||
where t2.id = v1.id;
|
||||
create sql security invoker view v41 as
|
||||
select v1.id as id, v1.val as val from mysqltest2.t2 as t2, mysqltest1.v1_merge as v1
|
||||
where t2.id = v1.id;
|
||||
create sql security invoker view v42 as
|
||||
select v2.id as id, v2.val as val from mysqltest2.t2 as t2, mysqltest2.v2_merge as v2
|
||||
where t2.id = v2.id;
|
||||
#
|
||||
# Connect as user_11766767
|
||||
#
|
||||
# A) Check how we handle privilege checking in multi-update for
|
||||
# directly used views.
|
||||
#
|
||||
# A.1) Originally reported problem, view is used in read-only mode.
|
||||
# This should work with only SELECT privilege for both mergeable
|
||||
# and temptable algorithms.
|
||||
update mysqltest2.t2 as t2, mysqltest1.v1_merge as v1 set t2.val= 'test3'
|
||||
where t2.id= v1.id;
|
||||
update mysqltest2.t2 as t2, mysqltest1.v1_temp as v1 set t2.val= 'test4'
|
||||
where t2.id= v1.id;
|
||||
#
|
||||
# A.2) If view is updated an UPDATE privilege on it is required.
|
||||
# Temptable views can't be updated.
|
||||
update mysqltest2.t2 as t2, mysqltest1.v1_merge as v1 set v1.val= 'test5'
|
||||
where t2.id= v1.id;
|
||||
ERROR 42000: UPDATE command denied to user 'user_11766767'@'localhost' for table 'v1_merge'
|
||||
update mysqltest1.t1 as t1, mysqltest2.v2_merge as v2 set v2.val= 'test6'
|
||||
where t1.id= v2.id;
|
||||
#
|
||||
# Note that the below error is OK even though user lacks UPDATE
|
||||
# privilege on v1_temp since he/she still has SELECT privilege on
|
||||
# this view.
|
||||
update mysqltest2.t2 as t2, mysqltest1.v1_temp as v1 set v1.val= 'test7'
|
||||
where t2.id= v1.id;
|
||||
ERROR HY000: The target table v1 of the UPDATE is not updatable
|
||||
update mysqltest1.t1 as t1, mysqltest2.v2_temp as v2 set v2.val= 'test8'
|
||||
where t1.id= v2.id;
|
||||
ERROR HY000: The target table v2 of the UPDATE is not updatable
|
||||
#
|
||||
# A.3) This also works for correctly for multi-table views.
|
||||
# When usage is read-only SELECT is enough.
|
||||
update mysqltest2.t2 as t2, mysqltest1.v11_merge as v11 set t2.val= 'test9'
|
||||
where t2.id= v11.id;
|
||||
update mysqltest2.t2 as t2, mysqltest1.v11_temp as v11 set t2.val= 'test10'
|
||||
where t2.id= v11.id;
|
||||
# When one of view's tables is updated, UPDATE is required
|
||||
# on a view.
|
||||
update mysqltest2.t2 as t2, mysqltest1.v11_merge as v11 set v11.val= 'test11'
|
||||
where t2.id= v11.id;
|
||||
ERROR 42000: UPDATE command denied to user 'user_11766767'@'localhost' for table 'v11_merge'
|
||||
update mysqltest1.t1 as t1, mysqltest2.v21_merge as v21 set v21.val= 'test12'
|
||||
where t1.id= v21.id;
|
||||
# As before, temptable views are not updateable.
|
||||
update mysqltest2.t2 as t2, mysqltest1.v11_temp as v11 set v11.val= 'test13'
|
||||
where t2.id= v11.id;
|
||||
ERROR HY000: The target table v11 of the UPDATE is not updatable
|
||||
update mysqltest1.t1 as t1, mysqltest2.v21_temp as v21 set v21.val= 'test14'
|
||||
where t1.id= v21.id;
|
||||
ERROR HY000: The target table v21 of the UPDATE is not updatable
|
||||
#
|
||||
# B) Now check that correct privileges are required on underlying
|
||||
# tables. To simplify this part of test we will use SECURITY
|
||||
# INVOKER views in it.
|
||||
#
|
||||
# B.1) In case when view is used for read only it is enough to have
|
||||
# SELECT on its underlying tables.
|
||||
update mysqltest2.t2 as t2, mysqltest2.v3_merge as v3 set t2.val= 'test15'
|
||||
where t2.id= v3.id;
|
||||
update mysqltest2.t2 as t2, mysqltest2.v3_temp as v3 set t2.val= 'test16'
|
||||
where t2.id= v3.id;
|
||||
#
|
||||
# B.2) If view is updated, UPDATE privilege on the table being updated
|
||||
# is required (since we already checked that temptable views are
|
||||
# not updateable we don't test them here).
|
||||
update mysqltest2.t2 as t2, mysqltest2.v3_merge as v3 set v3.val= 'test17'
|
||||
where t2.id= v3.id;
|
||||
ERROR HY000: View 'mysqltest2.v3_merge' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
|
||||
update mysqltest1.t11 as t11, mysqltest2.v31 as v31 set v31.val= 'test18'
|
||||
where t11.id= v31.id;
|
||||
#
|
||||
# C) Finally, check how we handle privilege checking in case when
|
||||
# view is used through another view. Again we will use SECURITY
|
||||
# INVOKER views for simplicity.
|
||||
#
|
||||
# C.1) As usual, when a view used by another view is going to be used
|
||||
# in read-only fashion, only SELECT privilege is necessary.
|
||||
update mysqltest1.t11 as t11, mysqltest2.v4 as v4 set v4.val= 'test19'
|
||||
where t11.id= v4.id;
|
||||
#
|
||||
# C.2) If one of underlying tables of the view is updated then
|
||||
# UPDATE on a view is necessary.
|
||||
update mysqltest1.t11 as t11, mysqltest2.v41 as v4 set v4.val= 'test20'
|
||||
where t11.id= v4.id;
|
||||
ERROR HY000: View 'mysqltest2.v41' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
|
||||
update mysqltest1.t11 as t11, mysqltest2.v42 as v4 set v4.val= 'test20'
|
||||
where t11.id= v4.id;
|
||||
#
|
||||
# Clean-up.
|
||||
#
|
||||
# Switching to connection 'default'.
|
||||
drop user user_11766767;
|
||||
drop database mysqltest1;
|
||||
drop database mysqltest2;
|
||||
|
Reference in New Issue
Block a user