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
fd3e6e37
Commit
fd3e6e37
authored
Apr 06, 2010
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
keep acl_user->auth_string and acl_user->salt always in sync
print authenticated via in show grants
parent
d04d8aa6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
14 deletions
+35
-14
sql/sql_acl.cc
sql/sql_acl.cc
+35
-14
No files found.
sql/sql_acl.cc
View file @
fd3e6e37
...
@@ -287,9 +287,8 @@ static void init_check_host(void);
...
@@ -287,9 +287,8 @@ static void init_check_host(void);
static
void
rebuild_check_host
(
void
);
static
void
rebuild_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
);
my_bool
exact
);
static
bool
update_user_table
(
THD
*
thd
,
TABLE
*
table
,
static
bool
update_user_table
(
THD
*
,
TABLE
*
,
const
char
*
,
const
char
*
,
const
char
*
host
,
const
char
*
user
,
const
char
*
,
uint
);
const
char
*
new_password
,
uint
new_password_len
);
static
void
update_hostname
(
acl_host_and_ip
*
host
,
const
char
*
hostname
);
static
void
update_hostname
(
acl_host_and_ip
*
host
,
const
char
*
hostname
);
static
bool
compare_hostname
(
const
acl_host_and_ip
*
host
,
const
char
*
hostname
,
static
bool
compare_hostname
(
const
acl_host_and_ip
*
host
,
const
char
*
hostname
,
const
char
*
ip
);
const
char
*
ip
);
...
@@ -1161,7 +1160,12 @@ static void acl_update_user(const char *user, const char *host,
...
@@ -1161,7 +1160,12 @@ static void acl_update_user(const char *user, const char *host,
acl_user
->
plugin
.
str
=
strmake_root
(
&
mem
,
plugin
->
str
,
plugin
->
length
);
acl_user
->
plugin
.
str
=
strmake_root
(
&
mem
,
plugin
->
str
,
plugin
->
length
);
}
}
else
else
set_user_salt
(
acl_user
,
password
,
password_len
);
if
(
password
)
{
acl_user
->
auth_string
.
str
=
strmake_root
(
&
mem
,
password
,
password_len
);
acl_user
->
auth_string
.
length
=
password_len
;
set_user_salt
(
acl_user
,
password
,
password_len
);
}
acl_user
->
access
=
privileges
;
acl_user
->
access
=
privileges
;
if
(
mqh
->
specified_limits
&
USER_RESOURCES
::
QUERIES_PER_HOUR
)
if
(
mqh
->
specified_limits
&
USER_RESOURCES
::
QUERIES_PER_HOUR
)
acl_user
->
user_resource
.
questions
=
mqh
->
questions
;
acl_user
->
user_resource
.
questions
=
mqh
->
questions
;
...
@@ -1611,7 +1615,13 @@ bool change_password(THD *thd, const char *host, const char *user,
...
@@ -1611,7 +1615,13 @@ bool change_password(THD *thd, const char *host, const char *user,
goto
end
;
goto
end
;
}
}
/* update loaded acl entry: */
/* update loaded acl entry: */
set_user_salt
(
acl_user
,
new_password
,
new_password_len
);
if
(
acl_user
->
plugin
.
str
==
native_password_plugin_name
.
str
||
acl_user
->
plugin
.
str
==
old_password_plugin_name
.
str
)
{
acl_user
->
auth_string
.
str
=
strmake_root
(
&
mem
,
new_password
,
new_password_len
);
acl_user
->
auth_string
.
length
=
new_password_len
;
set_user_salt
(
acl_user
,
new_password
,
new_password_len
);
}
if
(
update_user_table
(
thd
,
table
,
if
(
update_user_table
(
thd
,
table
,
acl_user
->
host
.
hostname
?
acl_user
->
host
.
hostname
:
""
,
acl_user
->
host
.
hostname
?
acl_user
->
host
.
hostname
:
""
,
...
@@ -4642,16 +4652,27 @@ bool mysql_show_grants(THD *thd,LEX_USER *lex_user)
...
@@ -4642,16 +4652,27 @@ bool mysql_show_grants(THD *thd,LEX_USER *lex_user)
global
.
append
(
lex_user
->
host
.
str
,
lex_user
->
host
.
length
,
global
.
append
(
lex_user
->
host
.
str
,
lex_user
->
host
.
length
,
system_charset_info
);
system_charset_info
);
global
.
append
(
'\''
);
global
.
append
(
'\''
);
if
(
acl_user
->
salt_len
)
if
(
acl_user
->
plugin
.
str
==
native_password_plugin_name
.
str
||
acl_user
->
plugin
.
str
==
old_password_plugin_name
.
str
)
{
{
char
passwd_buff
[
SCRAMBLED_PASSWORD_CHAR_LENGTH
+
1
];
if
(
acl_user
->
auth_string
.
length
)
if
(
acl_user
->
salt_len
==
SCRAMBLE_LENGTH
)
{
make_password_from_salt
(
passwd_buff
,
acl_user
->
salt
);
DBUG_ASSERT
(
acl_user
->
salt_len
);
else
global
.
append
(
STRING_WITH_LEN
(
" IDENTIFIED BY PASSWORD '"
));
make_password_from_salt_323
(
passwd_buff
,
(
ulong
*
)
acl_user
->
salt
);
global
.
append
(
acl_user
->
auth_string
.
str
,
acl_user
->
auth_string
.
length
);
global
.
append
(
STRING_WITH_LEN
(
" IDENTIFIED BY PASSWORD '"
));
global
.
append
(
'\''
);
global
.
append
(
passwd_buff
);
}
global
.
append
(
'\''
);
}
else
{
global
.
append
(
STRING_WITH_LEN
(
" IDENTIFIED VIA "
));
global
.
append
(
acl_user
->
plugin
.
str
,
acl_user
->
plugin
.
length
);
if
(
acl_user
->
auth_string
.
length
)
{
global
.
append
(
STRING_WITH_LEN
(
" USING '"
));
global
.
append
(
acl_user
->
auth_string
.
str
,
acl_user
->
auth_string
.
length
);
global
.
append
(
'\''
);
}
}
}
/* "show grants" SSL related stuff */
/* "show grants" SSL related stuff */
if
(
acl_user
->
ssl_type
==
SSL_TYPE_ANY
)
if
(
acl_user
->
ssl_type
==
SSL_TYPE_ANY
)
...
...
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