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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
f70beef6
Commit
f70beef6
authored
Aug 22, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the hostname with which the user authenticated when determining which
user to update with 'SET PASSWORD = ...'. (Bug #12302)
parent
3831bb56
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
87 additions
and
9 deletions
+87
-9
mysql-test/r/grant2.result
mysql-test/r/grant2.result
+26
-0
mysql-test/t/grant2.test
mysql-test/t/grant2.test
+38
-0
sql/set_var.cc
sql/set_var.cc
+12
-1
sql/sql_acl.cc
sql/sql_acl.cc
+11
-8
No files found.
mysql-test/r/grant2.result
View file @
f70beef6
...
...
@@ -94,5 +94,31 @@ i
2
3
REVOKE ALL ON mysqltest_1.t1 FROM mysqltest_1@'127.0.0.0/255.0.0.0';
delete from mysql.user where user like 'mysqltest\_1';
flush privileges;
drop table mysqltest_1.t1;
grant all on mysqltest_1.* to mysqltest_1@'127.0.0.1';
select current_user();
current_user()
mysqltest_1@127.0.0.1
set password = password('changed');
select host, length(password) from mysql.user where user like 'mysqltest\_1';
host length(password)
127.0.0.1 41
revoke all on mysqltest_1.* from mysqltest_1@'127.0.0.1';
delete from mysql.user where user like 'mysqltest\_1';
flush privileges;
grant all on mysqltest_1.* to mysqltest_1@'127.0.0.0/255.0.0.0';
select current_user();
current_user()
mysqltest_1@127.0.0.0/255.0.0.0
set password = password('changed');
select host, length(password) from mysql.user where user like 'mysqltest\_1';
host length(password)
127.0.0.0/255.0.0.0 41
revoke all on mysqltest_1.* from mysqltest_1@'127.0.0.0/255.0.0.0';
delete from mysql.user where user like 'mysqltest\_1';
flush privileges;
drop database mysqltest_1;
set password = password("changed");
ERROR 42000: Access denied for user ''@'localhost' to database 'mysql'
mysql-test/t/grant2.test
View file @
f70beef6
...
...
@@ -122,7 +122,45 @@ select * from t1;
disconnect
n1
;
connection
default
;
REVOKE
ALL
ON
mysqltest_1
.
t1
FROM
mysqltest_1
@
'127.0.0.0/255.0.0.0'
;
delete
from
mysql
.
user
where
user
like
'mysqltest\_1'
;
flush
privileges
;
drop
table
mysqltest_1
.
t1
;
#
# Bug #12302: 'SET PASSWORD = ...' didn't work if connecting hostname !=
# hostname the current user is authenticated as. Note that a test for this
# was also added to the test above.
#
grant
all
on
mysqltest_1
.*
to
mysqltest_1
@
'127.0.0.1'
;
connect
(
b12302
,
127.0
.
0.1
,
mysqltest_1
,,
mysqltest_1
,
$MASTER_MYPORT
,);
connection
b12302
;
select
current_user
();
set
password
=
password
(
'changed'
);
disconnect
b12302
;
connection
default
;
select
host
,
length
(
password
)
from
mysql
.
user
where
user
like
'mysqltest\_1'
;
revoke
all
on
mysqltest_1
.*
from
mysqltest_1
@
'127.0.0.1'
;
delete
from
mysql
.
user
where
user
like
'mysqltest\_1'
;
flush
privileges
;
grant
all
on
mysqltest_1
.*
to
mysqltest_1
@
'127.0.0.0/255.0.0.0'
;
connect
(
b12302_2
,
127.0
.
0.1
,
mysqltest_1
,,
mysqltest_1
,
$MASTER_MYPORT
,);
connection
b12302_2
;
select
current_user
();
set
password
=
password
(
'changed'
);
disconnect
b12302_2
;
connection
default
;
select
host
,
length
(
password
)
from
mysql
.
user
where
user
like
'mysqltest\_1'
;
revoke
all
on
mysqltest_1
.*
from
mysqltest_1
@
'127.0.0.0/255.0.0.0'
;
delete
from
mysql
.
user
where
user
like
'mysqltest\_1'
;
flush
privileges
;
drop
database
mysqltest_1
;
# But anonymous users can't change their password
connect
(
n5
,
localhost
,
test
,,
test
,
$MASTER_MYPORT
,
$MASTER_MYSOCK
);
connection
n5
;
--
error
1044
set
password
=
password
(
"changed"
);
disconnect
n5
;
connection
default
;
# End of 4.1 tests
sql/set_var.cc
View file @
f70beef6
...
...
@@ -2944,7 +2944,18 @@ int set_var_password::check(THD *thd)
{
#ifndef NO_EMBEDDED_ACCESS_CHECKS
if
(
!
user
->
host
.
str
)
user
->
host
.
str
=
(
char
*
)
thd
->
host_or_ip
;
{
if
(
thd
->
priv_host
!=
0
)
{
user
->
host
.
str
=
(
char
*
)
thd
->
priv_host
;
user
->
host
.
length
=
strlen
(
thd
->
priv_host
);
}
else
{
user
->
host
.
str
=
(
char
*
)
"%"
;
user
->
host
.
length
=
1
;
}
}
/* Returns 1 as the function sends error to client */
return
check_change_password
(
thd
,
user
->
host
.
str
,
user
->
user
.
str
,
password
,
strlen
(
password
))
?
1
:
0
;
...
...
sql/sql_acl.cc
View file @
f70beef6
...
...
@@ -67,7 +67,8 @@ static ulong get_access(TABLE *form,uint fieldnr, uint *next_field=0);
static
int
acl_compare
(
ACL_ACCESS
*
a
,
ACL_ACCESS
*
b
);
static
ulong
get_sort
(
uint
count
,...);
static
void
init_check_host
(
void
);
static
ACL_USER
*
find_acl_user
(
const
char
*
host
,
const
char
*
user
);
static
ACL_USER
*
find_acl_user
(
const
char
*
host
,
const
char
*
user
,
my_bool
exact
);
static
bool
update_user_table
(
THD
*
thd
,
const
char
*
host
,
const
char
*
user
,
const
char
*
new_password
,
uint
new_password_len
);
static
void
update_hostname
(
acl_host_and_ip
*
host
,
const
char
*
hostname
);
...
...
@@ -1188,7 +1189,7 @@ bool check_change_password(THD *thd, const char *host, const char *user,
}
if
(
!
thd
->
slave_thread
&&
(
strcmp
(
thd
->
user
,
user
)
||
my_strcasecmp
(
&
my_charset_latin1
,
host
,
thd
->
host_or_ip
)))
my_strcasecmp
(
&
my_charset_latin1
,
host
,
thd
->
priv_host
)))
{
if
(
check_access
(
thd
,
UPDATE_ACL
,
"mysql"
,
0
,
1
,
0
))
return
(
1
);
...
...
@@ -1240,7 +1241,7 @@ bool change_password(THD *thd, const char *host, const char *user,
VOID
(
pthread_mutex_lock
(
&
acl_cache
->
lock
));
ACL_USER
*
acl_user
;
if
(
!
(
acl_user
=
find_acl_user
(
host
,
user
)))
if
(
!
(
acl_user
=
find_acl_user
(
host
,
user
,
TRUE
)))
{
VOID
(
pthread_mutex_unlock
(
&
acl_cache
->
lock
));
send_error
(
thd
,
ER_PASSWORD_NO_MATCH
);
...
...
@@ -1282,7 +1283,7 @@ bool change_password(THD *thd, const char *host, const char *user,
*/
static
ACL_USER
*
find_acl_user
(
const
char
*
host
,
const
char
*
user
)
find_acl_user
(
const
char
*
host
,
const
char
*
user
,
my_bool
exact
)
{
DBUG_ENTER
(
"find_acl_user"
);
DBUG_PRINT
(
"enter"
,(
"host: '%s' user: '%s'"
,
host
,
user
));
...
...
@@ -1298,7 +1299,9 @@ find_acl_user(const char *host, const char *user)
if
(
!
acl_user
->
user
&&
!
user
[
0
]
||
acl_user
->
user
&&
!
strcmp
(
user
,
acl_user
->
user
))
{
if
(
compare_hostname
(
&
acl_user
->
host
,
host
,
host
))
if
(
exact
?
!
my_strcasecmp
(
&
my_charset_latin1
,
host
,
acl_user
->
host
.
hostname
)
:
compare_hostname
(
&
acl_user
->
host
,
host
,
host
))
{
DBUG_RETURN
(
acl_user
);
}
...
...
@@ -1689,7 +1692,7 @@ static int replace_db_table(TABLE *table, const char *db,
}
/* Check if there is such a user in user table in memory? */
if
(
!
find_acl_user
(
combo
.
host
.
str
,
combo
.
user
.
str
))
if
(
!
find_acl_user
(
combo
.
host
.
str
,
combo
.
user
.
str
,
FALSE
))
{
my_error
(
ER_PASSWORD_NO_MATCH
,
MYF
(
0
));
DBUG_RETURN
(
-
1
);
...
...
@@ -2151,7 +2154,7 @@ static int replace_table_table(THD *thd, GRANT_TABLE *grant_table,
The following should always succeed as new users are created before
this function is called!
*/
if
(
!
find_acl_user
(
combo
.
host
.
str
,
combo
.
user
.
str
))
if
(
!
find_acl_user
(
combo
.
host
.
str
,
combo
.
user
.
str
,
FALSE
))
{
my_error
(
ER_PASSWORD_NO_MATCH
,
MYF
(
0
));
/* purecov: deadcode */
DBUG_RETURN
(
-
1
);
/* purecov: deadcode */
...
...
@@ -3448,7 +3451,7 @@ void get_privilege_desc(char *to, uint max_length, ulong access)
void
get_mqh
(
const
char
*
user
,
const
char
*
host
,
USER_CONN
*
uc
)
{
ACL_USER
*
acl_user
;
if
(
initialized
&&
(
acl_user
=
find_acl_user
(
host
,
user
)))
if
(
initialized
&&
(
acl_user
=
find_acl_user
(
host
,
user
,
FALSE
)))
uc
->
user_resources
=
acl_user
->
user_resource
;
else
bzero
((
char
*
)
&
uc
->
user_resources
,
sizeof
(
uc
->
user_resources
));
...
...
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