2015-08-11 18:45:38 +02:00
|
|
|
# This test is checking that old password authentication works
|
2022-06-09 05:32:51 +02:00
|
|
|
--disable_service_connection
|
2015-08-11 18:45:38 +02:00
|
|
|
set global secure_auth=0;
|
2010-03-29 17:13:53 +02:00
|
|
|
#
|
|
|
|
# functional change user tests
|
|
|
|
#
|
2015-08-11 18:45:38 +02:00
|
|
|
create user test_nopw;
|
2010-03-29 17:13:53 +02:00
|
|
|
grant select on test.* to test_nopw;
|
2015-08-11 18:45:38 +02:00
|
|
|
create user test_oldpw identified by password "09301740536db389";
|
|
|
|
grant select on test.* to test_oldpw;
|
|
|
|
create user test_newpw identified by "newpw";
|
|
|
|
grant select on test.* to test_newpw;
|
2010-03-29 17:13:53 +02:00
|
|
|
|
2010-05-14 23:45:32 +02:00
|
|
|
select concat('<', user(), '>'), concat('<', current_user(), '>'), database();
|
|
|
|
|
2010-03-29 17:13:53 +02:00
|
|
|
#
|
|
|
|
# massaging the data for tests to pass in the embedded server,
|
2010-05-14 23:45:32 +02:00
|
|
|
# that has authentication completely disabled or, if enabled, can
|
|
|
|
# only do new auth (20-byte scramble).
|
2010-03-29 17:13:53 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
change_user test_nopw;
|
|
|
|
--replace_result <@> <test_nopw@%> @> @localhost>
|
|
|
|
select concat('<', user(), '>'), concat('<', current_user(), '>'), database();
|
2010-05-14 23:45:32 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# embedded with enabled privilege control cannot do plugin negotiation.
|
|
|
|
# that is, it cannot try to authenticate with a new scramble, receive a request
|
|
|
|
# to switch to an old scramble, and retry with an old scramble.
|
|
|
|
# As a result, it cannot change to a user that has old scramble and
|
|
|
|
# and it stays logged as a previous user - test_nopw in this test file.
|
|
|
|
# For the embedded with auth we replace nopw with oldpw in the results.
|
|
|
|
#
|
|
|
|
let $repl = `select if(version() like '%embedded%' and user() like '%nopw%', 'nopw', 'oldpw')`;
|
|
|
|
|
2010-03-29 17:13:53 +02:00
|
|
|
change_user test_oldpw, oldpw;
|
2010-05-14 23:45:32 +02:00
|
|
|
--replace_result <@> <test_oldpw@%> @> @localhost> $repl oldpw
|
2010-03-29 17:13:53 +02:00
|
|
|
select concat('<', user(), '>'), concat('<', current_user(), '>'), database();
|
|
|
|
change_user test_newpw, newpw;
|
|
|
|
--replace_result <@> <test_newpw@%> @> @localhost>
|
|
|
|
select concat('<', user(), '>'), concat('<', current_user(), '>'), database();
|
|
|
|
change_user root;
|
|
|
|
--replace_result <@> <root@localhost> @> @localhost>
|
|
|
|
select concat('<', user(), '>'), concat('<', current_user(), '>'), database();
|
|
|
|
|
|
|
|
change_user test_nopw,,test;
|
|
|
|
--replace_result <@> <test_nopw@%> @> @localhost>
|
|
|
|
select concat('<', user(), '>'), concat('<', current_user(), '>'), database();
|
|
|
|
change_user test_oldpw,oldpw,test;
|
2010-05-14 23:45:32 +02:00
|
|
|
--replace_result <@> <test_oldpw@%> @> @localhost> $repl oldpw
|
2010-03-29 17:13:53 +02:00
|
|
|
select concat('<', user(), '>'), concat('<', current_user(), '>'), database();
|
|
|
|
change_user test_newpw,newpw,test;
|
|
|
|
--replace_result <@> <test_newpw@%> @> @localhost>
|
|
|
|
select concat('<', user(), '>'), concat('<', current_user(), '>'), database();
|
|
|
|
change_user root,,test;
|
|
|
|
--replace_result <@> <root@localhost> @> @localhost>
|
|
|
|
select concat('<', user(), '>'), concat('<', current_user(), '>'), database();
|
|
|
|
|
|
|
|
drop user test_nopw;
|
|
|
|
drop user test_oldpw;
|
|
|
|
drop user test_newpw;
|
|
|
|
|
2007-10-16 17:29:22 +02:00
|
|
|
#
|
|
|
|
# Bug#20023 mysql_change_user() resets the value of SQL_BIG_SELECTS
|
2008-01-11 00:47:52 +01:00
|
|
|
# The replace's are here to fix things for 32 bit systems
|
2007-10-16 17:29:22 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
--echo Bug#20023
|
|
|
|
SELECT @@session.sql_big_selects;
|
2008-03-07 19:14:34 +01:00
|
|
|
# The exact value depends on the server build flags
|
2008-03-28 11:14:27 +01:00
|
|
|
--replace_result 18446744073709551615 HA_POS_ERROR 4294967295 HA_POS_ERROR
|
2007-10-16 17:29:22 +02:00
|
|
|
SELECT @@global.max_join_size;
|
|
|
|
--echo change_user
|
|
|
|
--change_user
|
|
|
|
SELECT @@session.sql_big_selects;
|
2008-03-07 19:14:34 +01:00
|
|
|
# The exact value depends on the server build flags
|
2008-03-28 11:14:27 +01:00
|
|
|
--replace_result 18446744073709551615 HA_POS_ERROR 4294967295 HA_POS_ERROR
|
2007-10-16 17:29:22 +02:00
|
|
|
SELECT @@global.max_join_size;
|
|
|
|
SET @@global.max_join_size = 10000;
|
|
|
|
SET @@session.max_join_size = default;
|
|
|
|
--echo change_user
|
|
|
|
--change_user
|
|
|
|
SELECT @@session.sql_big_selects;
|
2008-02-20 15:59:03 +01:00
|
|
|
# On some machines the following will result into a warning
|
2008-03-07 19:14:34 +01:00
|
|
|
--disable_warnings
|
2009-12-22 10:35:56 +01:00
|
|
|
SET @@global.max_join_size = 18446744073709551615;
|
2008-03-07 19:14:34 +01:00
|
|
|
--enable_warnings
|
2007-10-16 17:29:22 +02:00
|
|
|
SET @@session.max_join_size = default;
|
|
|
|
--echo change_user
|
|
|
|
--change_user
|
|
|
|
SELECT @@session.sql_big_selects;
|
2008-01-11 00:47:52 +01:00
|
|
|
--replace_result 4294967295 18446744073709551615
|
2007-12-28 00:15:29 +01:00
|
|
|
SELECT @@global.max_join_size;
|
2008-01-11 00:47:52 +01:00
|
|
|
--replace_result 4294967295 18446744073709551615
|
2007-12-28 00:15:29 +01:00
|
|
|
SELECT @@session.max_join_size;
|
2007-10-16 17:29:22 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Bug#31418 User locks misfunctioning after mysql_change_user()
|
|
|
|
#
|
|
|
|
|
|
|
|
--echo Bug#31418
|
|
|
|
SELECT IS_FREE_LOCK('bug31418');
|
|
|
|
SELECT IS_USED_LOCK('bug31418');
|
|
|
|
SELECT GET_LOCK('bug31418', 1);
|
2007-10-17 21:43:30 +02:00
|
|
|
SELECT IS_USED_LOCK('bug31418') = CONNECTION_ID();
|
2007-10-16 17:29:22 +02:00
|
|
|
--echo change_user
|
|
|
|
--change_user
|
|
|
|
SELECT IS_FREE_LOCK('bug31418');
|
|
|
|
SELECT IS_USED_LOCK('bug31418');
|
2008-02-12 18:59:09 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Bug#31222: com_% global status counters behave randomly with
|
|
|
|
# mysql_change_user.
|
|
|
|
#
|
2009-01-15 10:56:05 +01:00
|
|
|
|
|
|
|
FLUSH STATUS;
|
|
|
|
|
|
|
|
--disable_result_log
|
|
|
|
--disable_query_log
|
|
|
|
|
|
|
|
let $i = 100;
|
2009-10-28 08:52:34 +01:00
|
|
|
begin;
|
2009-01-15 10:56:05 +01:00
|
|
|
while ($i)
|
|
|
|
{
|
|
|
|
dec $i;
|
|
|
|
SELECT 1;
|
|
|
|
}
|
2009-10-28 08:52:34 +01:00
|
|
|
commit;
|
2009-01-15 10:56:05 +01:00
|
|
|
|
|
|
|
--enable_query_log
|
|
|
|
--enable_result_log
|
|
|
|
|
2009-02-01 01:04:57 +01:00
|
|
|
let $before= query_get_value(SHOW GLOBAL STATUS LIKE 'com_select',Value,1);
|
2009-01-15 10:56:05 +01:00
|
|
|
|
|
|
|
--change_user
|
|
|
|
|
2009-02-01 01:04:57 +01:00
|
|
|
let $after= query_get_value(SHOW GLOBAL STATUS LIKE 'com_select',Value,1);
|
|
|
|
|
2010-11-17 11:16:13 +01:00
|
|
|
if ($after != $before){
|
2009-02-01 01:04:57 +01:00
|
|
|
SHOW GLOBAL STATUS LIKE 'com_select';
|
|
|
|
die The value of com_select changed during change_user;
|
|
|
|
}
|
|
|
|
echo Value of com_select did not change;
|
2015-08-11 18:45:38 +02:00
|
|
|
|
|
|
|
set global secure_auth=default;
|
2016-04-11 08:18:21 +02:00
|
|
|
|
|
|
|
set timestamp=unix_timestamp('2010-10-10 10:10:10');
|
|
|
|
select now();
|
|
|
|
select year(now()) > 2011;
|
|
|
|
--echo change_user
|
|
|
|
--change_user
|
|
|
|
select year(now()) > 2011;
|
2022-06-09 05:32:51 +02:00
|
|
|
--enable_service_connection
|