mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
154 lines
4.3 KiB
154 lines
4.3 KiB
#!/usr/bin/python
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
DOCUMENTATION = '''
|
|
---
|
|
module: custom_rdp_ping
|
|
short_description: Use rdp to probe whether an asset is connectable
|
|
description:
|
|
- Use rdp to probe whether an asset is connectable
|
|
'''
|
|
|
|
EXAMPLES = '''
|
|
- name: >
|
|
Ping asset server.
|
|
custom_rdp_ping:
|
|
login_host: 127.0.0.1
|
|
login_port: 3389
|
|
login_user: jms
|
|
login_password: password
|
|
'''
|
|
|
|
RETURN = '''
|
|
is_available:
|
|
description: Windows server availability.
|
|
returned: always
|
|
type: bool
|
|
sample: true
|
|
conn_err_msg:
|
|
description: Connection error message.
|
|
returned: always
|
|
type: str
|
|
sample: ''
|
|
'''
|
|
|
|
import pyfreerdp
|
|
import multiprocessing
|
|
from sshtunnel import SSHTunnelForwarder
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
|
|
# =========================================
|
|
# Module execution.
|
|
#
|
|
|
|
|
|
def common_argument_spec():
|
|
options = dict(
|
|
login_host=dict(type='str', required=False, default='localhost'),
|
|
login_port=dict(type='int', required=False, default=22),
|
|
login_user=dict(type='str', required=False, default='root'),
|
|
login_password=dict(type='str', required=False, no_log=True),
|
|
login_secret_type=dict(type='str', required=False, default='password'),
|
|
gateway_args=dict(type='dict', required=False, default=None),
|
|
)
|
|
return options
|
|
|
|
|
|
class RDPConnectionManager:
|
|
|
|
def __init__(self, module_params):
|
|
self.params = module_params
|
|
self.ssh_tunnel = None
|
|
self.connection_details = self.build_connection_details()
|
|
self.result_queue = multiprocessing.Queue()
|
|
|
|
def build_connection_details(self):
|
|
connection_details = {
|
|
'hostname': self.params['login_host'],
|
|
'port': self.params['login_port'],
|
|
'username': self.params['username'],
|
|
'password': self.params['password']
|
|
}
|
|
return connection_details
|
|
|
|
def setup_ssh_tunnel(self):
|
|
gateway_args = self.params['gateway_args'] or {}
|
|
if not gateway_args:
|
|
return
|
|
|
|
tunnel = SSHTunnelForwarder(
|
|
(gateway_args['address'], gateway_args['port']),
|
|
ssh_username=gateway_args['username'],
|
|
ssh_password=gateway_args['secret'],
|
|
ssh_pkey=gateway_args['private_key_path'],
|
|
remote_bind_address=(
|
|
self.connection_details['hostname'],
|
|
self.connection_details['port']
|
|
)
|
|
)
|
|
|
|
tunnel.start()
|
|
self.connection_details['hostname'] = '127.0.0.1'
|
|
self.connection_details['port'] = tunnel.local_bind_port
|
|
self.ssh_tunnel = tunnel
|
|
|
|
def close_ssh_tunnel(self):
|
|
if self.ssh_tunnel:
|
|
self.ssh_tunnel.stop()
|
|
|
|
def prepare_connection(self):
|
|
self.setup_ssh_tunnel()
|
|
|
|
def cleanup_connection(self):
|
|
self.close_ssh_tunnel()
|
|
|
|
def check_rdp_connectivity(self):
|
|
connect_params = list(self.connection_details.values()) + ['', 0]
|
|
is_reachable = pyfreerdp.check_connectivity(*connect_params)
|
|
self.result_queue.put(is_reachable)
|
|
|
|
def attempt_connection(self):
|
|
if self.params['login_secret_type'] != 'password':
|
|
error_message = f'unsupported authentication method: {self.params["login_secret_type"]}'
|
|
return False, error_message
|
|
|
|
try:
|
|
self.prepare_connection()
|
|
|
|
connection_process = multiprocessing.Process(
|
|
target=self.check_rdp_connectivity
|
|
)
|
|
connection_process.start()
|
|
connection_process.join()
|
|
|
|
is_reachable = self.result_queue.get()
|
|
self.cleanup_connection()
|
|
|
|
if not is_reachable:
|
|
return False, 'RDP connection failed'
|
|
except Exception as ex:
|
|
return False, str(ex)
|
|
return True, ''
|
|
|
|
|
|
def main():
|
|
argument_spec = common_argument_spec()
|
|
module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=True)
|
|
result = {'changed': False}
|
|
module_params = module.params
|
|
rdp_manager = RDPConnectionManager(module_params)
|
|
is_available, error_message = rdp_manager.attempt_connection()
|
|
result['is_available'] = is_available
|
|
|
|
if not is_available:
|
|
module.fail_json(msg=f'Unable to connect to asset: {error_message}')
|
|
|
|
return module.exit_json(**result)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |