diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2019-05-13 21:34:16 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2019-05-14 09:25:39 +0200 |
commit | fda846b4af2fdb78a9c347650a51931ce499f351 (patch) | |
tree | 953ca3aa6fd11e7de5c1d67f595eaa9c7ae48ab1 /sql/sql_connect.cc | |
parent | 41779561ec543787b073a1506a2291f6f89cff48 (diff) | |
download | mariadb-git-bb-10.4-MDEV-19282.tar.gz |
MDEV-19277: Add status variable that gets incremented if connection is aborted prior to authenticationbb-10.4-MDEV-19282
MDEV-19282: Log more specific warning with log_warnings=2 if connection is aborted prior to authentication
Diffstat (limited to 'sql/sql_connect.cc')
-rw-r--r-- | sql/sql_connect.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/sql_connect.cc b/sql/sql_connect.cc index 6ce2aeb095c..1d1057cf6c2 100644 --- a/sql/sql_connect.cc +++ b/sql/sql_connect.cc @@ -1036,12 +1036,16 @@ static int check_connection(THD *thd) */ statistic_increment(connection_errors_peer_addr, &LOCK_status); my_error(ER_BAD_HOST_ERROR, MYF(0)); + statistic_increment(aborted_connects_preauth, &LOCK_status); return 1; } if (thd_set_peer_addr(thd, &net->vio->remote, ip, peer_port, true, &connect_errors)) + { + statistic_increment(aborted_connects_preauth, &LOCK_status); return 1; + } } else /* Hostname given means that the connection was on a socket */ { @@ -1069,6 +1073,7 @@ static int check_connection(THD *thd) */ statistic_increment(aborted_connects,&LOCK_status); statistic_increment(connection_errors_internal, &LOCK_status); + statistic_increment(aborted_connects_preauth, &LOCK_status); return 1; /* The error is set by alloc(). */ } |