mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
fix for a bug #2953.
When password was granted with a global grant, then granting privileges on database level, without password being specified, will temporary (in memory) set password to ''.
This commit is contained in:
parent
9f11123f75
commit
7f3771bc76
3 changed files with 17 additions and 2 deletions
|
@ -165,3 +165,9 @@ drop_user3@localhost, drop_user4@localhost;
|
|||
drop user drop_user1@localhost, drop_user2@localhost, drop_user3@localhost,
|
||||
drop_user4@localhost;
|
||||
drop table t1;
|
||||
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;
|
||||
Grants for mysqltest_1@localhost
|
||||
GRANT USAGE ON *.* TO 'mysqltest_1'@'localhost' IDENTIFIED BY PASSWORD '*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19'
|
||||
drop user mysqltest_1@localhost;
|
||||
|
|
|
@ -125,3 +125,7 @@ drop_user3@localhost, drop_user4@localhost;
|
|||
drop user drop_user1@localhost, drop_user2@localhost, drop_user3@localhost,
|
||||
drop_user4@localhost;
|
||||
drop table t1;
|
||||
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;
|
||||
|
|
|
@ -829,8 +829,8 @@ static void acl_update_user(const char *user, const char *host,
|
|||
acl_user->x509_subject= (x509_subject ?
|
||||
strdup_root(&mem,x509_subject) : 0);
|
||||
}
|
||||
|
||||
set_user_salt(acl_user, password, password_len);
|
||||
if (password)
|
||||
set_user_salt(acl_user, password, password_len);
|
||||
/* search complete: */
|
||||
break;
|
||||
}
|
||||
|
@ -1456,6 +1456,11 @@ static int replace_user_table(THD *thd, TABLE *table, const LEX_USER &combo,
|
|||
store_record(table,record[1]); // Save copy for update
|
||||
if (combo.password.str) // If password given
|
||||
table->field[2]->store(password, password_len, &my_charset_latin1);
|
||||
else if (!rights && !revoke_grant && thd->lex->ssl_type == SSL_TYPE_NOT_SPECIFIED &&
|
||||
!thd->lex->mqh.bits)
|
||||
{
|
||||
DBUG_RETURN(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Update table columns with new privileges */
|
||||
|
|
Loading…
Reference in a new issue