mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
mysql-5.1.67 merge
This commit is contained in:
@@ -350,6 +350,7 @@ check_user(THD *thd, enum enum_server_command command,
|
||||
|
||||
USER_RESOURCES ur;
|
||||
int res= acl_getroot(thd, &ur, passwd, passwd_len);
|
||||
DBUG_EXECUTE_IF("password_format_mismatch",{res= -1;};);
|
||||
#ifndef EMBEDDED_LIBRARY
|
||||
if (res == -1)
|
||||
{
|
||||
@@ -360,6 +361,12 @@ check_user(THD *thd, enum enum_server_command command,
|
||||
in old format.
|
||||
*/
|
||||
NET *net= &thd->net;
|
||||
DBUG_EXECUTE_IF("password_format_mismatch",
|
||||
{
|
||||
inc_host_errors(&thd->remote.sin_addr);
|
||||
my_error(ER_HANDSHAKE_ERROR, MYF(0));
|
||||
DBUG_RETURN(1);
|
||||
};);
|
||||
if (opt_secure_auth_local)
|
||||
{
|
||||
my_error(ER_SERVER_IS_IN_SECURE_AUTH_MODE, MYF(0),
|
||||
@@ -696,6 +703,19 @@ static int check_connection(THD *thd)
|
||||
my_error(ER_BAD_HOST_ERROR, MYF(0));
|
||||
return 1;
|
||||
}
|
||||
/* BEGIN : DEBUG */
|
||||
DBUG_EXECUTE_IF("addr_fake_ipv4",
|
||||
{
|
||||
struct sockaddr *sa= (sockaddr *) &net->vio->remote;
|
||||
sa->sa_family= AF_INET;
|
||||
struct in_addr *ip4= &((struct sockaddr_in *)sa)->sin_addr;
|
||||
/* See RFC 5737, 192.0.2.0/23 is reserved */
|
||||
const char* fake= "192.0.2.4";
|
||||
ip4->s_addr= inet_addr(fake);
|
||||
strcpy(ip, fake);
|
||||
};);
|
||||
/* END : DEBUG */
|
||||
|
||||
if (!(thd->main_security_ctx.ip= my_strdup(ip,MYF(MY_WME))))
|
||||
return 1; /* The error is set by my_strdup(). */
|
||||
thd->main_security_ctx.host_or_ip= thd->main_security_ctx.ip;
|
||||
@@ -796,8 +816,6 @@ static int check_connection(THD *thd)
|
||||
#ifdef _CUSTOMCONFIG_
|
||||
#include "_cust_sql_parse.h"
|
||||
#endif
|
||||
if (connect_errors)
|
||||
reset_host_errors(&thd->remote.sin_addr);
|
||||
if (thd->packet.alloc(thd->variables.net_buffer_length))
|
||||
return 1; /* The error is set by alloc(). */
|
||||
|
||||
@@ -942,11 +960,23 @@ static int check_connection(THD *thd)
|
||||
user[user_len]= '\0';
|
||||
}
|
||||
|
||||
if (thd->main_security_ctx.user)
|
||||
x_free(thd->main_security_ctx.user);
|
||||
x_free(thd->main_security_ctx.user);
|
||||
if (!(thd->main_security_ctx.user= my_strdup(user, MYF(MY_WME))))
|
||||
return 1; /* The error is set by my_strdup(). */
|
||||
return check_user(thd, COM_CONNECT, passwd, passwd_len, db, TRUE);
|
||||
|
||||
if (!check_user(thd, COM_CONNECT, passwd, passwd_len, db, TRUE))
|
||||
{
|
||||
/*
|
||||
Call to reset_host_errors() should be made only when all sanity checks
|
||||
are done and connection is going to be a successful.
|
||||
*/
|
||||
reset_host_errors(&thd->remote.sin_addr);
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
error:
|
||||
inc_host_errors(&thd->remote.sin_addr);
|
||||
|
Reference in New Issue
Block a user