mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Merge 10.4 into 10.5
This commit is contained in:
@@ -14536,7 +14536,7 @@ static int native_password_authenticate(MYSQL_PLUGIN_VIO *vio,
|
||||
info->password_used= PASSWORD_USED_YES;
|
||||
if (pkt_len == SCRAMBLE_LENGTH)
|
||||
{
|
||||
if (!info->auth_string_length)
|
||||
if (info->auth_string_length != SCRAMBLE_LENGTH)
|
||||
DBUG_RETURN(CR_AUTH_USER_CREDENTIALS);
|
||||
|
||||
if (check_scramble(pkt, thd->scramble, (uchar*)info->auth_string))
|
||||
@@ -14563,9 +14563,13 @@ static int native_password_make_scramble(const char *password,
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* As this contains is a string of not a valid SCRAMBLE_LENGTH */
|
||||
static const char invalid_password[] = "*THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE";
|
||||
|
||||
static int native_password_get_salt(const char *hash, size_t hash_length,
|
||||
unsigned char *out, size_t *out_length)
|
||||
{
|
||||
DBUG_ASSERT(sizeof(invalid_password) > SCRAMBLE_LENGTH);
|
||||
DBUG_ASSERT(*out_length >= SCRAMBLE_LENGTH);
|
||||
if (hash_length == 0)
|
||||
{
|
||||
@@ -14575,6 +14579,12 @@ static int native_password_get_salt(const char *hash, size_t hash_length,
|
||||
|
||||
if (hash_length != SCRAMBLED_PASSWORD_CHAR_LENGTH)
|
||||
{
|
||||
if (hash_length == 7 && strcmp(hash, "invalid") == 0)
|
||||
{
|
||||
memcpy(out, invalid_password, SCRAMBLED_PASSWORD_CHAR_LENGTH);
|
||||
*out_length= SCRAMBLED_PASSWORD_CHAR_LENGTH;
|
||||
return 0;
|
||||
}
|
||||
my_error(ER_PASSWD_LENGTH, MYF(0), SCRAMBLED_PASSWORD_CHAR_LENGTH);
|
||||
return 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user