Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
c58df0cd
Commit
c58df0cd
authored
Dec 20, 2017
by
Alexander Barkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-14031 Password policy causes replication failure
parent
64e1dda0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
1 deletion
+51
-1
mysql-test/suite/plugins/r/binlog-simple_plugin_check.result
mysql-test/suite/plugins/r/binlog-simple_plugin_check.result
+19
-0
mysql-test/suite/plugins/t/binlog-simple_plugin_check.test
mysql-test/suite/plugins/t/binlog-simple_plugin_check.test
+31
-0
sql/sql_acl.cc
sql/sql_acl.cc
+1
-1
No files found.
mysql-test/suite/plugins/r/binlog-simple_plugin_check.result
0 → 100644
View file @
c58df0cd
INSTALL SONAME "simple_password_check";
SELECT PLUGIN_NAME FROM INFORMATION_SCHEMA.PLUGINS
WHERE PLUGIN_NAME='simple_password_check';
PLUGIN_NAME
simple_password_check
#
# MDEV-14031 Password policy causes replication failure
#
CREATE USER user1@localhost IDENTIFIED BY 'BsG9#9.cem#!85';
CREATE USER user2@localhost IDENTIFIED BY 'bsg9#d.cem#!85';
ERROR HY000: Your password does not satisfy the current policy requirements
DROP USER user1@localhost;
include/show_binlog_events.inc
Log_name Pos Event_type Server_id End_log_pos Info
master-bin.000001 # Gtid # # GTID #-#-#
master-bin.000001 # Query # # use `test`; CREATE USER user1@localhost IDENTIFIED BY 'BsG9#9.cem#!85'
master-bin.000001 # Gtid # # GTID #-#-#
master-bin.000001 # Query # # use `test`; DROP USER user1@localhost
UNINSTALL PLUGIN simple_password_check;
mysql-test/suite/plugins/t/binlog-simple_plugin_check.test
0 → 100644
View file @
c58df0cd
--
source
include
/
not_embedded
.
inc
--
source
include
/
have_binlog_format_statement
.
inc
if
(
!
$SIMPLE_PASSWORD_CHECK_SO
)
{
skip
No
SIMPLE_PASSWORD_CHECK
plugin
;
}
INSTALL
SONAME
"simple_password_check"
;
SELECT
PLUGIN_NAME
FROM
INFORMATION_SCHEMA
.
PLUGINS
WHERE
PLUGIN_NAME
=
'simple_password_check'
;
--
echo
#
--
echo
# MDEV-14031 Password policy causes replication failure
--
echo
#
--
disable_query_log
RESET
MASTER
;
# get rid of previous tests binlog
--
enable_query_log
CREATE
USER
user1
@
localhost
IDENTIFIED
BY
'BsG9#9.cem#!85'
;
--
error
ER_NOT_VALID_PASSWORD
CREATE
USER
user2
@
localhost
IDENTIFIED
BY
'bsg9#d.cem#!85'
;
DROP
USER
user1
@
localhost
;
--
let
$binlog_file
=
LAST
source
include
/
show_binlog_events
.
inc
;
UNINSTALL
PLUGIN
simple_password_check
;
sql/sql_acl.cc
View file @
c58df0cd
...
...
@@ -9507,13 +9507,13 @@ bool mysql_create_user(THD *thd, List <LEX_USER> &list, bool handle_as_role)
}
}
binlog
=
true
;
if
(
replace_user_table
(
thd
,
tables
[
USER_TABLE
].
table
,
*
user_name
,
0
,
0
,
1
,
0
))
{
append_user
(
thd
,
&
wrong_users
,
user_name
);
result
=
TRUE
;
continue
;
}
binlog
=
true
;
// every created role is automatically granted to its creator-admin
if
(
handle_as_role
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment