mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-18 16:31:26 -07:00
Merge f43676cb1f
into a5ee4b3d1a
This commit is contained in:
commit
cf06d1de28
8 changed files with 597 additions and 20 deletions
|
@ -116,6 +116,27 @@ options:
|
|||
- Used when I(state=present), ignored otherwise.
|
||||
type: dict
|
||||
version_added: '0.1.0'
|
||||
account_locking:
|
||||
description:
|
||||
- Configure user accounts such that too many consecutive login failures cause temporary account locking. Provided since MySQL 8.0.19.
|
||||
- "Available options are C(FAILED_LOGIN_ATTEMPTS: num), C(PASSWORD_LOCK_TIME: num | UNBOUNDED)."
|
||||
- Used when I(state=present) and target server is MySQL >= 8.0.19, ignored otherwise.
|
||||
- U(https://dev.mysql.com/doc/refman/8.0/en/password-management.html#failed-login-tracking).
|
||||
type: dict
|
||||
suboptions:
|
||||
FAILED_LOGIN_ATTEMPTS:
|
||||
description:
|
||||
- Number of failed login attempts before the user account is locked.
|
||||
- Permitted values are in the range from 0 to 32767.
|
||||
- A value of 0 disables the option.
|
||||
type: int
|
||||
PASSWORD_LOCK_TIME:
|
||||
description:
|
||||
- Number of days the account stays locked after the FAILED_LOGIN_ATTEMPTS threshold is exceeded.
|
||||
- Permitted values are in the range from 0 to 32767, or the string ``UNBOUNDED``
|
||||
- A value of 0 disables the option.
|
||||
- A value of ``UNBOUNDED`` permanently locks the account until it's administratively unlocked.
|
||||
version_added: '1.2.0'
|
||||
|
||||
notes:
|
||||
- "MySQL server installs with default I(login_user) of C(root) and no password.
|
||||
|
@ -139,6 +160,7 @@ author:
|
|||
- Jonathan Mainguy (@Jmainguy)
|
||||
- Benjamin Malynovytch (@bmalynovytch)
|
||||
- Lukasz Tomaszkiewicz (@tomaszkiewicz)
|
||||
- Jorge Rodriguez (@Jorge-Rodriguez)
|
||||
extends_documentation_fragment:
|
||||
- community.mysql.mysql
|
||||
|
||||
|
@ -188,6 +210,22 @@ EXAMPLES = r'''
|
|||
'db1.*': 'ALL,GRANT'
|
||||
'db2.*': 'ALL,GRANT'
|
||||
|
||||
- name: Create user with password and locking such that the account locks after three failed attempts
|
||||
community.mysql.mysql_user:
|
||||
name: bob
|
||||
password: 12345
|
||||
account_locking:
|
||||
FAILED_LOGIN_ATTEMPTS: 3
|
||||
PASSWORD_LOCK_TIME: UNBOUNDED
|
||||
|
||||
- name: Create user with password and locking such that the account locks for 5 days after three failed attempts
|
||||
community.mysql.mysql_user:
|
||||
name: bob
|
||||
password: 12345
|
||||
account_locking:
|
||||
FAILED_LOGIN_ATTEMPTS: 3
|
||||
PASSWORD_LOCK_TIME: 5
|
||||
|
||||
# Note that REQUIRESSL is a special privilege that should only apply to *.* by itself.
|
||||
# Setting this privilege in this manner is supported for backwards compatibility only.
|
||||
# Use 'tls_requires' instead.
|
||||
|
@ -217,7 +255,14 @@ EXAMPLES = r'''
|
|||
name: bob
|
||||
tls_requires:
|
||||
|
||||
- name: Ensure no user named 'sally'@'localhost' exists, also passing in the auth credentials
|
||||
- name: Create user with enabled loging tracking.
|
||||
community.mysql.mysql_user:
|
||||
name: bob
|
||||
account_locking:
|
||||
PASSWORD_LOCK_TIME: 2
|
||||
FAILED_LOGIN_ATTEMPTS: 5
|
||||
|
||||
- name: Ensure no user named 'sally'@'localhost' exists, also passing in the auth credentials.
|
||||
community.mysql.mysql_user:
|
||||
login_user: root
|
||||
login_password: 123456
|
||||
|
@ -387,6 +432,57 @@ def supports_identified_by_password(cursor):
|
|||
return LooseVersion(version_str) < LooseVersion('8')
|
||||
|
||||
|
||||
def validate_account_locking(cursor, account_locking, module):
|
||||
cursor.execute("SELECT VERSION()")
|
||||
result = cursor.fetchone()
|
||||
version_str = result[0]
|
||||
version = version_str.split('-')[0].split('.')
|
||||
|
||||
locking = {}
|
||||
|
||||
if 'mariadb' in version_str.lower():
|
||||
module.warn("MariaDB does not support this manner of account locking. Use the MAX_PASSWORD_ERRORS server variable instead.")
|
||||
module.warn("Account locking settings are being ignored.")
|
||||
else:
|
||||
if int(version[0]) * 1000 + int(version[2]) < 8019:
|
||||
module.warn("MySQL is too old to support this manner of account locking.")
|
||||
module.warn("Account locking settings are being ignored.")
|
||||
else:
|
||||
if account_locking is not None:
|
||||
locking = {
|
||||
"FAILED_LOGIN_ATTEMPTS": str(account_locking.get("FAILED_LOGIN_ATTEMPTS", 0)),
|
||||
"PASSWORD_LOCK_TIME": str(account_locking.get("PASSWORD_LOCK_TIME", 0))
|
||||
}
|
||||
if any([int(value) < 0 or int(value) > 32767 for value in locking.values() if re.match("[-+]?\\d+$", value)]):
|
||||
module.fail_json(msg="Account locking values are out of the valid range (0-32767)")
|
||||
if ("PASSWORD_LOCK_TIME" in locking.keys()
|
||||
and not re.match("[-+]?\\d+$", locking.get("PASSWORD_LOCK_TIME"))
|
||||
and locking.get("PASSWORD_LOCK_TIME") != "UNBOUNDED"):
|
||||
module.fail_json(msg="PASSWORD_LOCK_TIME must be an integer between 0 and 32767 or 'UNBOUNDED'")
|
||||
return locking
|
||||
|
||||
|
||||
def get_account_locking(cursor, user, host):
|
||||
cursor.execute("SELECT VERSION()")
|
||||
result = cursor.fetchone()
|
||||
version_str = result[0]
|
||||
version = version_str.split('-')[0].split('.')
|
||||
|
||||
locking = {}
|
||||
|
||||
if 'mariadb' in version_str.lower() or int(version[0]) * 1000 + int(version[2]) < 8019:
|
||||
return locking
|
||||
|
||||
cursor.execute("SHOW CREATE USER %s@%s", (user, host))
|
||||
result = cursor.fetchone()
|
||||
|
||||
for setting in ('FAILED_LOGIN_ATTEMPTS', 'PASSWORD_LOCK_TIME'):
|
||||
match = re.search("%s (\\d+|UNBOUNDED)" % setting, result[0])
|
||||
if match:
|
||||
locking[setting] = match.groups()[0]
|
||||
return locking
|
||||
|
||||
|
||||
def get_mode(cursor):
|
||||
cursor.execute('SELECT @@GLOBAL.sql_mode')
|
||||
result = cursor.fetchone()
|
||||
|
@ -427,7 +523,7 @@ def sanitize_requires(tls_requires):
|
|||
return None
|
||||
|
||||
|
||||
def mogrify_requires(query, params, tls_requires):
|
||||
def mogrify_requires(query, params, tls_requires, account_locking):
|
||||
if tls_requires:
|
||||
if isinstance(tls_requires, dict):
|
||||
k, v = zip(*tls_requires.items())
|
||||
|
@ -436,10 +532,17 @@ def mogrify_requires(query, params, tls_requires):
|
|||
else:
|
||||
requires_query = tls_requires
|
||||
query = " REQUIRE ".join((query, requires_query))
|
||||
return mogrify_account_locking(query, params, account_locking)
|
||||
|
||||
|
||||
def do_not_mogrify_requires(query, params, tls_requires, account_locking):
|
||||
return query, params
|
||||
|
||||
|
||||
def do_not_mogrify_requires(query, params, tls_requires):
|
||||
def mogrify_account_locking(query, params, account_locking):
|
||||
if account_locking:
|
||||
for k, v in account_locking.items():
|
||||
query = ' '.join((query, k, str(v)))
|
||||
return query, params
|
||||
|
||||
|
||||
|
@ -478,11 +581,13 @@ def get_grants(cursor, user, host):
|
|||
|
||||
def user_add(cursor, user, host, host_all, password, encrypted,
|
||||
plugin, plugin_hash_string, plugin_auth_string, new_priv,
|
||||
tls_requires, check_mode):
|
||||
tls_requires, account_locking, check_mode, module):
|
||||
# we cannot create users without a proper hostname
|
||||
if host_all:
|
||||
return False
|
||||
|
||||
locking = validate_account_locking(cursor, account_locking, module)
|
||||
|
||||
if check_mode:
|
||||
return True
|
||||
|
||||
|
@ -512,7 +617,7 @@ def user_add(cursor, user, host, host_all, password, encrypted,
|
|||
else:
|
||||
query_with_args = "CREATE USER %s@%s", (user, host)
|
||||
|
||||
query_with_args_and_tls_requires = query_with_args + (tls_requires,)
|
||||
query_with_args_and_tls_requires = query_with_args + (tls_requires, locking)
|
||||
cursor.execute(*mogrify(*query_with_args_and_tls_requires))
|
||||
|
||||
if new_priv is not None:
|
||||
|
@ -533,7 +638,7 @@ def is_hash(password):
|
|||
|
||||
def user_mod(cursor, user, host, host_all, password, encrypted,
|
||||
plugin, plugin_hash_string, plugin_auth_string, new_priv,
|
||||
append_privs, tls_requires, module):
|
||||
append_privs, tls_requires, account_locking, module):
|
||||
changed = False
|
||||
msg = "User unchanged"
|
||||
grant_option = False
|
||||
|
@ -541,6 +646,8 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
|||
# Determine what user management method server uses
|
||||
old_user_mgmt = use_old_user_mgmt(cursor)
|
||||
|
||||
locking = validate_account_locking(cursor, account_locking, module)
|
||||
|
||||
if host_all:
|
||||
hostnames = user_get_hostnames(cursor, user)
|
||||
else:
|
||||
|
@ -707,7 +814,7 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
|||
|
||||
if tls_requires is not None:
|
||||
query = " ".join((pre_query, "%s@%s"))
|
||||
query_with_args = mogrify_requires(query, (user, host), tls_requires)
|
||||
query_with_args = mogrify_requires(query, (user, host), tls_requires, locking)
|
||||
else:
|
||||
query = " ".join((pre_query, "%s@%s REQUIRE NONE"))
|
||||
query_with_args = query, (user, host)
|
||||
|
@ -715,6 +822,17 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
|||
cursor.execute(*query_with_args)
|
||||
changed = True
|
||||
|
||||
# Handle Account locking
|
||||
locking = validate_account_locking(cursor, account_locking, module)
|
||||
current_locking = get_account_locking(cursor, user, host)
|
||||
clear_locking = dict((x, y) for x, y in locking.items() if y != '0')
|
||||
if current_locking != clear_locking:
|
||||
msg = "Account locking updated"
|
||||
if module.check_mode:
|
||||
return (True, msg)
|
||||
cursor.execute(*mogrify_account_locking("ALTER USER %s@%s", (user, host), locking))
|
||||
changed = True
|
||||
|
||||
return (changed, msg)
|
||||
|
||||
|
||||
|
@ -1158,6 +1276,7 @@ def main():
|
|||
state=dict(type='str', default='present', choices=['absent', 'present']),
|
||||
priv=dict(type='raw'),
|
||||
tls_requires=dict(type='dict'),
|
||||
account_locking=dict(type='dict', default={}),
|
||||
append_privs=dict(type='bool', default=False),
|
||||
check_implicit_admin=dict(type='bool', default=False),
|
||||
update_password=dict(type='str', default='always', choices=['always', 'on_create'], no_log=False),
|
||||
|
@ -1181,6 +1300,7 @@ def main():
|
|||
state = module.params["state"]
|
||||
priv = module.params["priv"]
|
||||
tls_requires = sanitize_requires(module.params["tls_requires"])
|
||||
account_locking = module.params['account_locking']
|
||||
check_implicit_admin = module.params["check_implicit_admin"]
|
||||
connect_timeout = module.params["connect_timeout"]
|
||||
config_file = module.params["config_file"]
|
||||
|
@ -1239,12 +1359,12 @@ def main():
|
|||
try:
|
||||
if update_password == "always":
|
||||
changed, msg = user_mod(cursor, user, host, host_all, password, encrypted,
|
||||
plugin, plugin_hash_string, plugin_auth_string,
|
||||
priv, append_privs, tls_requires, module)
|
||||
plugin, plugin_hash_string, plugin_auth_string, priv,
|
||||
append_privs, tls_requires, account_locking, module)
|
||||
else:
|
||||
changed, msg = user_mod(cursor, user, host, host_all, None, encrypted,
|
||||
plugin, plugin_hash_string, plugin_auth_string,
|
||||
priv, append_privs, tls_requires, module)
|
||||
plugin, plugin_hash_string, plugin_auth_string, priv,
|
||||
append_privs, tls_requires, account_locking, module)
|
||||
|
||||
except (SQLParseError, InvalidPrivsError, mysql_driver.Error) as e:
|
||||
module.fail_json(msg=to_native(e))
|
||||
|
@ -1253,8 +1373,8 @@ def main():
|
|||
module.fail_json(msg="host_all parameter cannot be used when adding a user")
|
||||
try:
|
||||
changed = user_add(cursor, user, host, host_all, password, encrypted,
|
||||
plugin, plugin_hash_string, plugin_auth_string,
|
||||
priv, tls_requires, module.check_mode)
|
||||
plugin, plugin_hash_string, plugin_auth_string, priv,
|
||||
tls_requires, account_locking, module.check_mode, module)
|
||||
if changed:
|
||||
msg = "User added"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue