mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-28 21:31:26 -07:00
* PostgreSQL modules: move params mapping from main to connect_to_db() function * PostgreSQL modules: fix postgresql_db * PostgreSQL modules: fixes
340 lines
11 KiB
Python
340 lines
11 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright: (c) 2019, Andrew Klychkov (@Andersson007) <aaklychkov@mail.ru>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
ANSIBLE_METADATA = {
|
|
'metadata_version': '1.1',
|
|
'supported_by': 'community',
|
|
'status': ['preview']
|
|
}
|
|
|
|
DOCUMENTATION = r'''
|
|
---
|
|
module: postgresql_membership
|
|
short_description: Add or remove PostgreSQL roles from groups
|
|
description:
|
|
- Adds or removes PostgreSQL roles from groups (other roles)
|
|
U(https://www.postgresql.org/docs/current/role-membership.html).
|
|
- Users are roles with login privilege (see U(https://www.postgresql.org/docs/current/role-attributes.html) for more information).
|
|
- Groups are PostgreSQL roles usually without LOGIN privelege.
|
|
- "Common use case:"
|
|
- 1) add a new group (groups) by M(postgresql_user) module
|
|
U(https://docs.ansible.com/ansible/latest/modules/postgresql_user_module.html) with I(role_attr_flags=NOLOGIN)
|
|
- 2) grant them desired privileges by M(postgresql_privs) module
|
|
U(https://docs.ansible.com/ansible/latest/modules/postgresql_privs_module.html)
|
|
- 3) add desired PostgreSQL users to the new group (groups) by this module
|
|
version_added: '2.8'
|
|
options:
|
|
groups:
|
|
description:
|
|
- The list of groups (roles) that need to be granted to or revoked from I(target_roles).
|
|
required: yes
|
|
type: list
|
|
aliases:
|
|
- group
|
|
- source_role
|
|
- source_roles
|
|
target_roles:
|
|
description:
|
|
- The list of target roles (groups will be granted to them).
|
|
required: yes
|
|
type: list
|
|
aliases:
|
|
- target_role
|
|
- users
|
|
- user
|
|
fail_on_role:
|
|
description:
|
|
- If C(yes), fail when group or target_role doesn't exist. If C(no), just warn and continue.
|
|
default: yes
|
|
type: bool
|
|
state:
|
|
description:
|
|
- Membership state.
|
|
- I(state=present) implies the I(groups)must be granted to I(target_roles).
|
|
- I(state=absent) implies the I(groups) must be revoked from I(target_roles).
|
|
type: str
|
|
default: present
|
|
choices: [ absent, present ]
|
|
db:
|
|
description:
|
|
- Name of database to connect to.
|
|
type: str
|
|
aliases:
|
|
- login_db
|
|
session_role:
|
|
description:
|
|
- Switch to session_role after connecting.
|
|
The specified session_role must be a role that the current login_user is a member of.
|
|
- Permissions checking for SQL commands is carried out as though
|
|
the session_role were the one that had logged in originally.
|
|
type: str
|
|
notes:
|
|
- The default authentication assumes that you are either logging in as or
|
|
sudo'ing to the postgres account on the host.
|
|
- To avoid "Peer authentication failed for user postgres" error,
|
|
use postgres user as a I(become_user).
|
|
- This module uses psycopg2, a Python PostgreSQL database adapter. You must
|
|
ensure that psycopg2 is installed on the host before using this module.
|
|
- If the remote host is the PostgreSQL server (which is the default case), then
|
|
PostgreSQL must also be installed on the remote host.
|
|
- For Ubuntu-based systems, install the postgresql, libpq-dev, and python-psycopg2 packages
|
|
on the remote host before using this module.
|
|
requirements: [ psycopg2 ]
|
|
author:
|
|
- Andrew Klychkov (@Andersson007)
|
|
extends_documentation_fragment: postgres
|
|
'''
|
|
|
|
EXAMPLES = r'''
|
|
- name: Grant role read_only to alice and bob
|
|
postgresql_membership:
|
|
group: read_only
|
|
target_roles:
|
|
- alice
|
|
- bob
|
|
state: present
|
|
|
|
# you can also use target_roles: alice,bob,etc to pass the role list
|
|
|
|
- name: Revoke role read_only and exec_func from bob. Ignore if roles don't exist
|
|
postgresql_membership:
|
|
groups:
|
|
- read_only
|
|
- exec_func
|
|
target_role: bob
|
|
fail_on_role: no
|
|
state: absent
|
|
'''
|
|
|
|
RETURN = r'''
|
|
queries:
|
|
description: List of executed queries.
|
|
returned: always
|
|
type: str
|
|
sample: [ "GRANT \"user_ro\" TO \"alice\"" ]
|
|
granted:
|
|
description: Dict of granted groups and roles.
|
|
returned: if I(state=present)
|
|
type: dict
|
|
sample: { "ro_group": [ "alice", "bob" ] }
|
|
revoked:
|
|
description: Dict of revoked groups and roles.
|
|
returned: if I(state=absent)
|
|
type: dict
|
|
sample: { "ro_group": [ "alice", "bob" ] }
|
|
state:
|
|
description: Membership state that tried to be set.
|
|
returned: always
|
|
type: str
|
|
sample: "present"
|
|
'''
|
|
|
|
try:
|
|
from psycopg2.extras import DictCursor
|
|
except ImportError:
|
|
# psycopg2 is checked by connect_to_db()
|
|
# from ansible.module_utils.postgres
|
|
pass
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
from ansible.module_utils.database import SQLParseError, pg_quote_identifier
|
|
from ansible.module_utils.postgres import connect_to_db, postgres_common_argument_spec
|
|
from ansible.module_utils._text import to_native
|
|
|
|
|
|
class PgMembership(object):
|
|
def __init__(self, module, cursor, groups, target_roles, fail_on_role):
|
|
self.module = module
|
|
self.cursor = cursor
|
|
self.target_roles = [r.strip() for r in target_roles]
|
|
self.groups = [r.strip() for r in groups]
|
|
self.executed_queries = []
|
|
self.granted = {}
|
|
self.revoked = {}
|
|
self.fail_on_role = fail_on_role
|
|
self.non_existent_roles = []
|
|
self.changed = False
|
|
self.__check_roles_exist()
|
|
|
|
def grant(self):
|
|
for group in self.groups:
|
|
self.granted[group] = []
|
|
|
|
for role in self.target_roles:
|
|
# If role is in a group now, pass:
|
|
if self.__check_membership(group, role):
|
|
continue
|
|
|
|
query = "GRANT %s TO %s" % ((pg_quote_identifier(group, 'role'),
|
|
(pg_quote_identifier(role, 'role'))))
|
|
self.changed = self.__exec_sql(query, ddl=True)
|
|
|
|
if self.changed:
|
|
self.granted[group].append(role)
|
|
|
|
return self.changed
|
|
|
|
def revoke(self):
|
|
for group in self.groups:
|
|
self.revoked[group] = []
|
|
|
|
for role in self.target_roles:
|
|
# If role is not in a group now, pass:
|
|
if not self.__check_membership(group, role):
|
|
continue
|
|
|
|
query = "REVOKE %s FROM %s" % ((pg_quote_identifier(group, 'role'),
|
|
(pg_quote_identifier(role, 'role'))))
|
|
self.changed = self.__exec_sql(query, ddl=True)
|
|
|
|
if self.changed:
|
|
self.revoked[group].append(role)
|
|
|
|
return self.changed
|
|
|
|
def __check_membership(self, src_role, dst_role):
|
|
query = ("SELECT ARRAY(SELECT b.rolname FROM "
|
|
"pg_catalog.pg_auth_members m "
|
|
"JOIN pg_catalog.pg_roles b ON (m.roleid = b.oid) "
|
|
"WHERE m.member = r.oid) "
|
|
"FROM pg_catalog.pg_roles r "
|
|
"WHERE r.rolname = '%s'" % dst_role)
|
|
|
|
res = self.__exec_sql(query, add_to_executed=False)
|
|
membership = []
|
|
if res:
|
|
membership = res[0][0]
|
|
|
|
print('MEMBERSHIP ', membership)
|
|
|
|
if not membership:
|
|
return False
|
|
|
|
if src_role in membership:
|
|
return True
|
|
|
|
return False
|
|
|
|
def __check_roles_exist(self):
|
|
for group in self.groups:
|
|
if not self.__role_exists(group):
|
|
if self.fail_on_role:
|
|
self.module.fail_json(msg="Role %s does not exist" % group)
|
|
else:
|
|
self.module.warn("Role %s does not exist, pass" % group)
|
|
self.non_existent_roles.append(group)
|
|
|
|
for role in self.target_roles:
|
|
if not self.__role_exists(role):
|
|
if self.fail_on_role:
|
|
self.module.fail_json(msg="Role %s does not exist" % role)
|
|
else:
|
|
self.module.warn("Role %s does not exist, pass" % role)
|
|
|
|
if role not in self.groups:
|
|
self.non_existent_roles.append(role)
|
|
|
|
else:
|
|
if self.fail_on_role:
|
|
self.module.exit_json(msg="Role role '%s' is a member of role '%s'" % (role, role))
|
|
else:
|
|
self.module.warn("Role role '%s' is a member of role '%s', pass" % (role, role))
|
|
|
|
# Update role lists, excluding non existent roles:
|
|
self.groups = [g for g in self.groups if g not in self.non_existent_roles]
|
|
|
|
self.target_roles = [r for r in self.target_roles if r not in self.non_existent_roles]
|
|
|
|
def __role_exists(self, role):
|
|
return self.__exec_sql("SELECT 1 FROM pg_roles WHERE rolname = '%s'" % role, add_to_executed=False)
|
|
|
|
def __exec_sql(self, query, ddl=False, add_to_executed=True):
|
|
try:
|
|
self.cursor.execute(query)
|
|
|
|
if add_to_executed:
|
|
self.executed_queries.append(query)
|
|
|
|
if not ddl:
|
|
res = self.cursor.fetchall()
|
|
return res
|
|
return True
|
|
except Exception as e:
|
|
self.module.fail_json(msg="Cannot execute SQL '%s': %s" % (query, to_native(e)))
|
|
return False
|
|
|
|
|
|
# ===========================================
|
|
# Module execution.
|
|
#
|
|
|
|
|
|
def main():
|
|
argument_spec = postgres_common_argument_spec()
|
|
argument_spec.update(
|
|
groups=dict(type='list', aliases=['group', 'source_role', 'source_roles']),
|
|
target_roles=dict(type='list', aliases=['target_role', 'user', 'users']),
|
|
fail_on_role=dict(type='bool', default=True),
|
|
state=dict(type='str', default='present', choices=['absent', 'present']),
|
|
db=dict(type='str', aliases=['login_db']),
|
|
session_role=dict(type='str'),
|
|
)
|
|
|
|
module = AnsibleModule(
|
|
argument_spec=argument_spec,
|
|
supports_check_mode=True,
|
|
)
|
|
|
|
groups = module.params['groups']
|
|
target_roles = module.params['target_roles']
|
|
fail_on_role = module.params['fail_on_role']
|
|
state = module.params['state']
|
|
|
|
db_connection = connect_to_db(module, autocommit=False)
|
|
cursor = db_connection.cursor(cursor_factory=DictCursor)
|
|
|
|
##############
|
|
# Create the object and do main job:
|
|
|
|
pg_membership = PgMembership(module, cursor, groups, target_roles, fail_on_role)
|
|
|
|
if state == 'present':
|
|
pg_membership.grant()
|
|
|
|
elif state == 'absent':
|
|
pg_membership.revoke()
|
|
|
|
# Rollback if it's possible and check_mode:
|
|
if module.check_mode:
|
|
db_connection.rollback()
|
|
else:
|
|
db_connection.commit()
|
|
|
|
cursor.close()
|
|
db_connection.close()
|
|
|
|
# Make return values:
|
|
return_dict = dict(
|
|
changed=pg_membership.changed,
|
|
state=state,
|
|
groups=pg_membership.groups,
|
|
target_roles=pg_membership.target_roles,
|
|
queries=pg_membership.executed_queries,
|
|
)
|
|
|
|
if state == 'present':
|
|
return_dict['granted'] = pg_membership.granted
|
|
elif state == 'absent':
|
|
return_dict['revoked'] = pg_membership.revoked
|
|
|
|
module.exit_json(**return_dict)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|