Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
6127292b
Commit
6127292b
authored
Sep 27, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge gkodinov@bk-internal.mysql.com:/home/bk/mysql-5.1-opt
into magare.gmz:/home/kgeorge/mysql/autopush/B30468-5.1-opt
parents
9768ecb5
f576b09d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
111 additions
and
38 deletions
+111
-38
mysql-test/r/grant2.result
mysql-test/r/grant2.result
+18
-0
mysql-test/t/grant2.test
mysql-test/t/grant2.test
+32
-0
sql/sql_acl.cc
sql/sql_acl.cc
+55
-26
sql/sql_acl.h
sql/sql_acl.h
+2
-3
sql/sql_base.cc
sql/sql_base.cc
+1
-4
sql/sql_insert.cc
sql/sql_insert.cc
+3
-5
No files found.
mysql-test/r/grant2.result
View file @
6127292b
...
@@ -422,4 +422,22 @@ revoke all privileges, grant option from mysqltest_1@localhost;
...
@@ -422,4 +422,22 @@ revoke all privileges, grant option from mysqltest_1@localhost;
revoke all privileges, grant option from mysqltest_2@localhost;
revoke all privileges, grant option from mysqltest_2@localhost;
drop user mysqltest_1@localhost;
drop user mysqltest_1@localhost;
drop user mysqltest_2@localhost;
drop user mysqltest_2@localhost;
CREATE DATABASE db1;
USE db1;
CREATE TABLE t1 (a INT, b INT);
INSERT INTO t1 VALUES (1,1),(2,2);
CREATE TABLE t2 (b INT, c INT);
INSERT INTO t2 VALUES (1,100),(2,200);
GRANT SELECT ON t1 TO mysqltest1@localhost;
GRANT SELECT (b) ON t2 TO mysqltest1@localhost;
USE db1;
SELECT c FROM t2;
ERROR 42000: SELECT command denied to user 'mysqltest1'@'localhost' for column 'c' in table 't2'
SELECT * FROM t2;
ERROR 42000: SELECT command denied to user 'mysqltest1'@'localhost' for column 'c' in table 't2'
SELECT * FROM t1 JOIN t2 USING (b);
ERROR 42000: SELECT command denied to user 'mysqltest1'@'localhost' for column 'c' in table 't2'
DROP TABLE db1.t1, db1.t2;
DROP USER mysqltest1@localhost;
DROP DATABASE db1;
End of 5.0 tests
End of 5.0 tests
mysql-test/t/grant2.test
View file @
6127292b
...
@@ -585,5 +585,37 @@ drop user mysqltest_1@localhost;
...
@@ -585,5 +585,37 @@ drop user mysqltest_1@localhost;
drop
user
mysqltest_2
@
localhost
;
drop
user
mysqltest_2
@
localhost
;
#
# Bug #30468: column level privileges not respected when joining tables
#
CREATE
DATABASE
db1
;
USE
db1
;
CREATE
TABLE
t1
(
a
INT
,
b
INT
);
INSERT
INTO
t1
VALUES
(
1
,
1
),(
2
,
2
);
CREATE
TABLE
t2
(
b
INT
,
c
INT
);
INSERT
INTO
t2
VALUES
(
1
,
100
),(
2
,
200
);
GRANT
SELECT
ON
t1
TO
mysqltest1
@
localhost
;
GRANT
SELECT
(
b
)
ON
t2
TO
mysqltest1
@
localhost
;
connect
(
conn1
,
localhost
,
mysqltest1
,,);
connection
conn1
;
USE
db1
;
--
error
ER_COLUMNACCESS_DENIED_ERROR
SELECT
c
FROM
t2
;
--
error
ER_COLUMNACCESS_DENIED_ERROR
SELECT
*
FROM
t2
;
--
error
ER_COLUMNACCESS_DENIED_ERROR
SELECT
*
FROM
t1
JOIN
t2
USING
(
b
);
connection
default
;
disconnect
conn1
;
DROP
TABLE
db1
.
t1
,
db1
.
t2
;
DROP
USER
mysqltest1
@
localhost
;
DROP
DATABASE
db1
;
--
echo
End
of
5.0
tests
--
echo
End
of
5.0
tests
sql/sql_acl.cc
View file @
6127292b
...
@@ -3991,47 +3991,76 @@ bool check_column_grant_in_table_ref(THD *thd, TABLE_LIST * table_ref,
...
@@ -3991,47 +3991,76 @@ bool check_column_grant_in_table_ref(THD *thd, TABLE_LIST * table_ref,
}
}
bool
check_grant_all_columns
(
THD
*
thd
,
ulong
want_access
,
GRANT_INFO
*
grant
,
/**
const
char
*
db_name
,
const
char
*
table_name
,
@brief check if a query can access a set of columns
Field_iterator
*
fields
)
@param thd the current thread
@param want_access_arg the privileges requested
@param fields an iterator over the fields of a table reference.
@return Operation status
@retval 0 Success
@retval 1 Falure
@details This function walks over the columns of a table reference
The columns may originate from different tables, depending on the kind of
table reference, e.g. join.
For each table it will retrieve the grant information and will use it
to check the required access privileges for the fields requested from it.
*/
bool
check_grant_all_columns
(
THD
*
thd
,
ulong
want_access_arg
,
Field_iterator_table_ref
*
fields
)
{
{
Security_context
*
sctx
=
thd
->
security_ctx
;
Security_context
*
sctx
=
thd
->
security_ctx
;
GRANT_TABLE
*
grant_table
;
ulong
want_access
=
want_access_arg
;
GRANT_COLUMN
*
grant_column
;
const
char
*
table_name
=
NULL
;
want_access
&=
~
grant
->
privilege
;
const
char
*
db_name
;
if
(
!
want_access
)
GRANT_INFO
*
grant
;
return
0
;
// Already checked
GRANT_TABLE
*
grant_table
;
rw_rdlock
(
&
LOCK_grant
);
rw_rdlock
(
&
LOCK_grant
);
/* reload table if someone has modified any grants */
if
(
grant
->
version
!=
grant_version
)
{
grant
->
grant_table
=
table_hash_search
(
sctx
->
host
,
sctx
->
ip
,
db_name
,
sctx
->
priv_user
,
table_name
,
0
);
/* purecov: inspected */
grant
->
version
=
grant_version
;
/* purecov: inspected */
}
/* The following should always be true */
if
(
!
(
grant_table
=
grant
->
grant_table
))
goto
err
;
/* purecov: inspected */
for
(;
!
fields
->
end_of_fields
();
fields
->
next
())
for
(;
!
fields
->
end_of_fields
();
fields
->
next
())
{
{
const
char
*
field_name
=
fields
->
name
();
const
char
*
field_name
=
fields
->
name
();
grant_column
=
column_hash_search
(
grant_table
,
field_name
,
(
uint
)
strlen
(
field_name
));
if
(
table_name
!=
fields
->
table_name
())
if
(
!
grant_column
||
(
~
grant_column
->
rights
&
want_access
))
{
goto
err
;
table_name
=
fields
->
table_name
();
db_name
=
fields
->
db_name
();
grant
=
fields
->
grant
();
/* get a fresh one for each table */
want_access
=
want_access_arg
&
~
grant
->
privilege
;
if
(
want_access
)
{
/* reload table if someone has modified any grants */
if
(
grant
->
version
!=
grant_version
)
{
grant
->
grant_table
=
table_hash_search
(
sctx
->
host
,
sctx
->
ip
,
db_name
,
sctx
->
priv_user
,
table_name
,
0
);
/* purecov: inspected */
grant
->
version
=
grant_version
;
/* purecov: inspected */
}
DBUG_ASSERT
((
grant_table
=
grant
->
grant_table
)
!=
NULL
);
}
}
if
(
want_access
)
{
GRANT_COLUMN
*
grant_column
=
column_hash_search
(
grant_table
,
field_name
,
(
uint
)
strlen
(
field_name
));
if
(
!
grant_column
||
(
~
grant_column
->
rights
&
want_access
))
goto
err
;
}
}
}
rw_unlock
(
&
LOCK_grant
);
rw_unlock
(
&
LOCK_grant
);
return
0
;
return
0
;
err:
err:
rw_unlock
(
&
LOCK_grant
);
rw_unlock
(
&
LOCK_grant
);
char
command
[
128
];
char
command
[
128
];
get_privilege_desc
(
command
,
sizeof
(
command
),
want_access
);
get_privilege_desc
(
command
,
sizeof
(
command
),
want_access
);
my_error
(
ER_COLUMNACCESS_DENIED_ERROR
,
MYF
(
0
),
my_error
(
ER_COLUMNACCESS_DENIED_ERROR
,
MYF
(
0
),
...
...
sql/sql_acl.h
View file @
6127292b
...
@@ -244,9 +244,8 @@ bool check_grant_column (THD *thd, GRANT_INFO *grant,
...
@@ -244,9 +244,8 @@ bool check_grant_column (THD *thd, GRANT_INFO *grant,
const
char
*
name
,
uint
length
,
Security_context
*
sctx
);
const
char
*
name
,
uint
length
,
Security_context
*
sctx
);
bool
check_column_grant_in_table_ref
(
THD
*
thd
,
TABLE_LIST
*
table_ref
,
bool
check_column_grant_in_table_ref
(
THD
*
thd
,
TABLE_LIST
*
table_ref
,
const
char
*
name
,
uint
length
);
const
char
*
name
,
uint
length
);
bool
check_grant_all_columns
(
THD
*
thd
,
ulong
want_access
,
GRANT_INFO
*
grant
,
bool
check_grant_all_columns
(
THD
*
thd
,
ulong
want_access
,
const
char
*
db_name
,
const
char
*
table_name
,
Field_iterator_table_ref
*
fields
);
Field_iterator
*
fields
);
bool
check_grant_routine
(
THD
*
thd
,
ulong
want_access
,
bool
check_grant_routine
(
THD
*
thd
,
ulong
want_access
,
TABLE_LIST
*
procs
,
bool
is_proc
,
bool
no_error
);
TABLE_LIST
*
procs
,
bool
is_proc
,
bool
no_error
);
bool
check_grant_db
(
THD
*
thd
,
const
char
*
db
);
bool
check_grant_db
(
THD
*
thd
,
const
char
*
db
);
...
...
sql/sql_base.cc
View file @
6127292b
...
@@ -6553,10 +6553,7 @@ insert_fields(THD *thd, Name_resolution_context *context, const char *db_name,
...
@@ -6553,10 +6553,7 @@ insert_fields(THD *thd, Name_resolution_context *context, const char *db_name,
!
any_privileges
)
!
any_privileges
)
{
{
field_iterator
.
set
(
tables
);
field_iterator
.
set
(
tables
);
if
(
check_grant_all_columns
(
thd
,
SELECT_ACL
,
field_iterator
.
grant
(),
if
(
check_grant_all_columns
(
thd
,
SELECT_ACL
,
&
field_iterator
))
field_iterator
.
db_name
(),
field_iterator
.
table_name
(),
&
field_iterator
))
DBUG_RETURN
(
TRUE
);
DBUG_RETURN
(
TRUE
);
}
}
#endif
#endif
...
...
sql/sql_insert.cc
View file @
6127292b
...
@@ -189,11 +189,9 @@ static int check_insert_fields(THD *thd, TABLE_LIST *table_list,
...
@@ -189,11 +189,9 @@ static int check_insert_fields(THD *thd, TABLE_LIST *table_list,
return
-
1
;
return
-
1
;
}
}
#ifndef NO_EMBEDDED_ACCESS_CHECKS
#ifndef NO_EMBEDDED_ACCESS_CHECKS
Field_iterator_table
field_it
;
Field_iterator_table_ref
field_it
;
field_it
.
set_table
(
table
);
field_it
.
set
(
table_list
);
if
(
check_grant_all_columns
(
thd
,
INSERT_ACL
,
&
table
->
grant
,
if
(
check_grant_all_columns
(
thd
,
INSERT_ACL
,
&
field_it
))
table
->
s
->
db
.
str
,
table
->
s
->
table_name
.
str
,
&
field_it
))
return
-
1
;
return
-
1
;
#endif
#endif
clear_timestamp_auto_bits
(
table
->
timestamp_field_type
,
clear_timestamp_auto_bits
(
table
->
timestamp_field_type
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment