|
|
@ -21,7 +21,12 @@ description:
|
|
|
|
read from the device. This module includes an argument that will cause
|
|
|
|
read from the device. This module includes an argument that will cause
|
|
|
|
the module to wait for a specific condition before returning or timing
|
|
|
|
the module to wait for a specific condition before returning or timing
|
|
|
|
out if the condition is not met.
|
|
|
|
out if the condition is not met.
|
|
|
|
version_added: "2.4"
|
|
|
|
- This module is B(not) idempotent, nor will it ever be. It is intended as
|
|
|
|
|
|
|
|
a stop-gap measure to satisfy automation requirements until such a time as
|
|
|
|
|
|
|
|
a real module has been developed to configure in the way you need.
|
|
|
|
|
|
|
|
- If you are using this module, you should probably also be filing an issue
|
|
|
|
|
|
|
|
to have a B(real) module created for your needs.
|
|
|
|
|
|
|
|
version_added: 2.4
|
|
|
|
options:
|
|
|
|
options:
|
|
|
|
commands:
|
|
|
|
commands:
|
|
|
|
description:
|
|
|
|
description:
|
|
|
@ -30,12 +35,9 @@ options:
|
|
|
|
is returned. If the I(wait_for) argument is provided, the
|
|
|
|
is returned. If the I(wait_for) argument is provided, the
|
|
|
|
module is not returned until the condition is satisfied or
|
|
|
|
module is not returned until the condition is satisfied or
|
|
|
|
the number of retries as expired.
|
|
|
|
the number of retries as expired.
|
|
|
|
- The I(commands) argument also accepts an alternative form
|
|
|
|
- Only C(tmsh) commands are supported. If you are piping or adding additional
|
|
|
|
that allows for complex values that specify the command
|
|
|
|
logic that is outside of C(tmsh) (such as grep'ing, awk'ing or other shell
|
|
|
|
to run and the output format to return. This can be done
|
|
|
|
related things that are not C(tmsh), this behavior is not supported.
|
|
|
|
on a command by command basis. The complex argument supports
|
|
|
|
|
|
|
|
the keywords C(command) and C(output) where C(command) is the
|
|
|
|
|
|
|
|
command to run and C(output) is 'text' or 'one-line'.
|
|
|
|
|
|
|
|
required: True
|
|
|
|
required: True
|
|
|
|
wait_for:
|
|
|
|
wait_for:
|
|
|
|
description:
|
|
|
|
description:
|
|
|
@ -78,7 +80,21 @@ options:
|
|
|
|
- rest
|
|
|
|
- rest
|
|
|
|
- cli
|
|
|
|
- cli
|
|
|
|
default: rest
|
|
|
|
default: rest
|
|
|
|
version_added: "2.5"
|
|
|
|
version_added: 2.5
|
|
|
|
|
|
|
|
warn:
|
|
|
|
|
|
|
|
description:
|
|
|
|
|
|
|
|
- Whether the module should raise warnings related to command idempotency
|
|
|
|
|
|
|
|
or not.
|
|
|
|
|
|
|
|
- Note that the F5 Ansible developers specifically leave this on to make you
|
|
|
|
|
|
|
|
aware that your usage of this module may be better served by official F5
|
|
|
|
|
|
|
|
Ansible modules. This module should always be used as a last resort.
|
|
|
|
|
|
|
|
default: True
|
|
|
|
|
|
|
|
type: bool
|
|
|
|
|
|
|
|
version_added: 2.6
|
|
|
|
|
|
|
|
chdir:
|
|
|
|
|
|
|
|
description:
|
|
|
|
|
|
|
|
- Change into this directory before running the command.
|
|
|
|
|
|
|
|
version_added: 2.6
|
|
|
|
extends_documentation_fragment: f5
|
|
|
|
extends_documentation_fragment: f5
|
|
|
|
author:
|
|
|
|
author:
|
|
|
|
- Tim Rupp (@caphrim007)
|
|
|
|
- Tim Rupp (@caphrim007)
|
|
|
@ -102,6 +118,7 @@ EXAMPLES = r'''
|
|
|
|
password: secret
|
|
|
|
password: secret
|
|
|
|
user: admin
|
|
|
|
user: admin
|
|
|
|
validate_certs: no
|
|
|
|
validate_certs: no
|
|
|
|
|
|
|
|
register: result
|
|
|
|
delegate_to: localhost
|
|
|
|
delegate_to: localhost
|
|
|
|
|
|
|
|
|
|
|
|
- name: run multiple commands on remote nodes
|
|
|
|
- name: run multiple commands on remote nodes
|
|
|
@ -127,6 +144,7 @@ EXAMPLES = r'''
|
|
|
|
password: secret
|
|
|
|
password: secret
|
|
|
|
user: admin
|
|
|
|
user: admin
|
|
|
|
validate_certs: no
|
|
|
|
validate_certs: no
|
|
|
|
|
|
|
|
register: result
|
|
|
|
delegate_to: localhost
|
|
|
|
delegate_to: localhost
|
|
|
|
|
|
|
|
|
|
|
|
- name: tmsh prefixes will automatically be handled
|
|
|
|
- name: tmsh prefixes will automatically be handled
|
|
|
@ -139,127 +157,239 @@ EXAMPLES = r'''
|
|
|
|
user: admin
|
|
|
|
user: admin
|
|
|
|
validate_certs: no
|
|
|
|
validate_certs: no
|
|
|
|
delegate_to: localhost
|
|
|
|
delegate_to: localhost
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Delete all LTM nodes in Partition1, assuming no dependencies exist
|
|
|
|
|
|
|
|
bigip_command:
|
|
|
|
|
|
|
|
commands:
|
|
|
|
|
|
|
|
- delete ltm node all
|
|
|
|
|
|
|
|
chdir: Partition1
|
|
|
|
|
|
|
|
server: lb.mydomain.com
|
|
|
|
|
|
|
|
password: secret
|
|
|
|
|
|
|
|
user: admin
|
|
|
|
|
|
|
|
validate_certs: no
|
|
|
|
|
|
|
|
delegate_to: localhost
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
RETURN = r'''
|
|
|
|
RETURN = r'''
|
|
|
|
stdout:
|
|
|
|
stdout:
|
|
|
|
description: The set of responses from the commands
|
|
|
|
description: The set of responses from the commands.
|
|
|
|
returned: always
|
|
|
|
returned: always
|
|
|
|
type: list
|
|
|
|
type: list
|
|
|
|
sample: ['...', '...']
|
|
|
|
sample: ['...', '...']
|
|
|
|
stdout_lines:
|
|
|
|
stdout_lines:
|
|
|
|
description: The value of stdout split into a list
|
|
|
|
description: The value of stdout split into a list.
|
|
|
|
returned: always
|
|
|
|
returned: always
|
|
|
|
type: list
|
|
|
|
type: list
|
|
|
|
sample: [['...', '...'], ['...'], ['...']]
|
|
|
|
sample: [['...', '...'], ['...'], ['...']]
|
|
|
|
failed_conditions:
|
|
|
|
failed_conditions:
|
|
|
|
description: The list of conditionals that have failed
|
|
|
|
description: The list of conditionals that have failed.
|
|
|
|
returned: failed
|
|
|
|
returned: failed
|
|
|
|
type: list
|
|
|
|
type: list
|
|
|
|
sample: ['...', '...']
|
|
|
|
sample: ['...', '...']
|
|
|
|
|
|
|
|
warn:
|
|
|
|
|
|
|
|
description: Whether or not to raise warnings about modification commands.
|
|
|
|
|
|
|
|
returned: changed
|
|
|
|
|
|
|
|
type: bool
|
|
|
|
|
|
|
|
sample: True
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
import re
|
|
|
|
import re
|
|
|
|
import time
|
|
|
|
import time
|
|
|
|
|
|
|
|
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible.module_utils.six import string_types
|
|
|
|
|
|
|
|
from ansible.module_utils.network.common.parsing import FailedConditionsError
|
|
|
|
from ansible.module_utils.network.common.parsing import FailedConditionsError
|
|
|
|
from ansible.module_utils.network.common.parsing import Conditional
|
|
|
|
from ansible.module_utils.network.common.parsing import Conditional
|
|
|
|
from ansible.module_utils.network.common.utils import ComplexList
|
|
|
|
from ansible.module_utils.network.common.utils import ComplexList
|
|
|
|
from ansible.module_utils.network.common.utils import to_list
|
|
|
|
from ansible.module_utils.network.common.utils import to_list
|
|
|
|
|
|
|
|
from ansible.module_utils.six import string_types
|
|
|
|
from collections import deque
|
|
|
|
from collections import deque
|
|
|
|
|
|
|
|
|
|
|
|
HAS_DEVEL_IMPORTS = False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
# Sideband repository used for dev
|
|
|
|
|
|
|
|
from library.module_utils.network.f5.bigip import HAS_F5SDK
|
|
|
|
from library.module_utils.network.f5.bigip import HAS_F5SDK
|
|
|
|
from library.module_utils.network.f5.bigip import F5Client
|
|
|
|
from library.module_utils.network.f5.bigip import F5Client
|
|
|
|
from library.module_utils.network.f5.common import F5ModuleError
|
|
|
|
from library.module_utils.network.f5.common import F5ModuleError
|
|
|
|
from library.module_utils.network.f5.common import AnsibleF5Parameters
|
|
|
|
from library.module_utils.network.f5.common import AnsibleF5Parameters
|
|
|
|
from library.module_utils.network.f5.common import cleanup_tokens
|
|
|
|
from library.module_utils.network.f5.common import cleanup_tokens
|
|
|
|
from library.module_utils.network.f5.common import fqdn_name
|
|
|
|
|
|
|
|
from library.module_utils.network.f5.common import is_cli
|
|
|
|
from library.module_utils.network.f5.common import is_cli
|
|
|
|
from library.module_utils.network.f5.common import f5_argument_spec
|
|
|
|
from library.module_utils.network.f5.common import f5_argument_spec
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
from library.module_utils.network.f5.common import iControlUnexpectedHTTPError
|
|
|
|
from library.module_utils.network.f5.common import iControlUnexpectedHTTPError
|
|
|
|
except ImportError:
|
|
|
|
except ImportError:
|
|
|
|
HAS_F5SDK = False
|
|
|
|
HAS_F5SDK = False
|
|
|
|
HAS_DEVEL_IMPORTS = True
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
from library.module_utils.network.f5.common import run_commands
|
|
|
|
|
|
|
|
HAS_CLI_TRANSPORT = True
|
|
|
|
|
|
|
|
except ImportError:
|
|
|
|
|
|
|
|
HAS_CLI_TRANSPORT = False
|
|
|
|
|
|
|
|
except ImportError:
|
|
|
|
except ImportError:
|
|
|
|
# Upstream Ansible
|
|
|
|
|
|
|
|
from ansible.module_utils.network.f5.bigip import HAS_F5SDK
|
|
|
|
from ansible.module_utils.network.f5.bigip import HAS_F5SDK
|
|
|
|
from ansible.module_utils.network.f5.bigip import F5Client
|
|
|
|
from ansible.module_utils.network.f5.bigip import F5Client
|
|
|
|
from ansible.module_utils.network.f5.common import F5ModuleError
|
|
|
|
from ansible.module_utils.network.f5.common import F5ModuleError
|
|
|
|
from ansible.module_utils.network.f5.common import AnsibleF5Parameters
|
|
|
|
from ansible.module_utils.network.f5.common import AnsibleF5Parameters
|
|
|
|
from ansible.module_utils.network.f5.common import cleanup_tokens
|
|
|
|
from ansible.module_utils.network.f5.common import cleanup_tokens
|
|
|
|
from ansible.module_utils.network.f5.common import fqdn_name
|
|
|
|
|
|
|
|
from ansible.module_utils.network.f5.common import is_cli
|
|
|
|
from ansible.module_utils.network.f5.common import is_cli
|
|
|
|
from ansible.module_utils.network.f5.common import f5_argument_spec
|
|
|
|
from ansible.module_utils.network.f5.common import f5_argument_spec
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
from ansible.module_utils.network.f5.common import iControlUnexpectedHTTPError
|
|
|
|
from ansible.module_utils.network.f5.common import iControlUnexpectedHTTPError
|
|
|
|
except ImportError:
|
|
|
|
except ImportError:
|
|
|
|
HAS_F5SDK = False
|
|
|
|
HAS_F5SDK = False
|
|
|
|
try:
|
|
|
|
|
|
|
|
from ansible.module_utils.network.f5.common import run_commands
|
|
|
|
try:
|
|
|
|
HAS_CLI_TRANSPORT = True
|
|
|
|
from ansible.module_utils.network.f5.common import run_commands
|
|
|
|
except ImportError:
|
|
|
|
HAS_CLI_TRANSPORT = True
|
|
|
|
HAS_CLI_TRANSPORT = False
|
|
|
|
except ImportError:
|
|
|
|
|
|
|
|
HAS_CLI_TRANSPORT = False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Parameters(AnsibleF5Parameters):
|
|
|
|
class Parameters(AnsibleF5Parameters):
|
|
|
|
returnables = ['stdout', 'stdout_lines', 'warnings']
|
|
|
|
returnables = ['stdout', 'stdout_lines', 'warnings', 'executed_commands']
|
|
|
|
|
|
|
|
|
|
|
|
def to_return(self):
|
|
|
|
def to_return(self):
|
|
|
|
result = {}
|
|
|
|
result = {}
|
|
|
|
for returnable in self.returnables:
|
|
|
|
try:
|
|
|
|
result[returnable] = getattr(self, returnable)
|
|
|
|
for returnable in self.returnables:
|
|
|
|
result = self._filter_params(result)
|
|
|
|
result[returnable] = getattr(self, returnable)
|
|
|
|
return result
|
|
|
|
result = self._filter_params(result)
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
except Exception:
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def _listify(self, item):
|
|
|
|
@property
|
|
|
|
if isinstance(item, string_types):
|
|
|
|
def raw_commands(self):
|
|
|
|
result = [item]
|
|
|
|
if self._values['commands'] is None:
|
|
|
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
if isinstance(self._values['commands'], string_types):
|
|
|
|
|
|
|
|
result = [self._values['commands']]
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
result = item
|
|
|
|
result = self._values['commands']
|
|
|
|
return result
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
def convert_commands(self, commands):
|
|
|
|
def commands(self):
|
|
|
|
result = []
|
|
|
|
commands = self._listify(self._values['commands'])
|
|
|
|
for command in commands:
|
|
|
|
commands = deque(commands)
|
|
|
|
tmp = dict(
|
|
|
|
if not is_cli(self.module):
|
|
|
|
command='',
|
|
|
|
commands.appendleft(
|
|
|
|
pipeline=''
|
|
|
|
'tmsh modify cli preference pager disabled'
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
command = command.replace("'", "\\'")
|
|
|
|
|
|
|
|
pipeline = command.split('|', 1)
|
|
|
|
|
|
|
|
tmp['command'] = pipeline[0]
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
tmp['pipeline'] = pipeline[1]
|
|
|
|
|
|
|
|
except IndexError:
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
result.append(tmp)
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def convert_commands_cli(self, commands):
|
|
|
|
|
|
|
|
result = []
|
|
|
|
|
|
|
|
for command in commands:
|
|
|
|
|
|
|
|
tmp = dict(
|
|
|
|
|
|
|
|
command='',
|
|
|
|
|
|
|
|
pipeline=''
|
|
|
|
)
|
|
|
|
)
|
|
|
|
commands = map(self._ensure_tmsh_prefix, list(commands))
|
|
|
|
|
|
|
|
return list(commands)
|
|
|
|
pipeline = command.split('|', 1)
|
|
|
|
|
|
|
|
tmp['command'] = pipeline[0]
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
tmp['pipeline'] = pipeline[1]
|
|
|
|
|
|
|
|
except IndexError:
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
result.append(tmp)
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def merge_command_dict(self, command):
|
|
|
|
|
|
|
|
if command['pipeline'] != '':
|
|
|
|
|
|
|
|
escape_patterns = r'([$"])'
|
|
|
|
|
|
|
|
command['pipeline'] = re.sub(escape_patterns, r'\\\1', command['pipeline'])
|
|
|
|
|
|
|
|
command['command'] = '{0} | {1}'.format(command['command'], command['pipeline']).strip()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def merge_command_dict_cli(self, command):
|
|
|
|
|
|
|
|
if command['pipeline'] != '':
|
|
|
|
|
|
|
|
command['command'] = '{0} | {1}'.format(command['command'], command['pipeline']).strip()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
|
|
|
def rest_commands(self):
|
|
|
|
|
|
|
|
# ['list ltm virtual']
|
|
|
|
|
|
|
|
commands = self.normalized_commands
|
|
|
|
|
|
|
|
commands = self.convert_commands(commands)
|
|
|
|
|
|
|
|
if self.chdir:
|
|
|
|
|
|
|
|
# ['cd /Common; list ltm virtual']
|
|
|
|
|
|
|
|
for command in commands:
|
|
|
|
|
|
|
|
self.addon_chdir(command)
|
|
|
|
|
|
|
|
# ['tmsh -c "cd /Common; list ltm virtual"']
|
|
|
|
|
|
|
|
for command in commands:
|
|
|
|
|
|
|
|
self.addon_tmsh(command)
|
|
|
|
|
|
|
|
for command in commands:
|
|
|
|
|
|
|
|
self.merge_command_dict(command)
|
|
|
|
|
|
|
|
result = [x['command'] for x in commands]
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
|
|
|
def cli_commands(self):
|
|
|
|
|
|
|
|
# ['list ltm virtual']
|
|
|
|
|
|
|
|
commands = self.normalized_commands
|
|
|
|
|
|
|
|
commands = self.convert_commands_cli(commands)
|
|
|
|
|
|
|
|
if self.chdir:
|
|
|
|
|
|
|
|
# ['cd /Common; list ltm virtual']
|
|
|
|
|
|
|
|
for command in commands:
|
|
|
|
|
|
|
|
self.addon_chdir(command)
|
|
|
|
|
|
|
|
if not self.is_tmsh:
|
|
|
|
|
|
|
|
# ['tmsh -c "cd /Common; list ltm virtual"']
|
|
|
|
|
|
|
|
for command in commands:
|
|
|
|
|
|
|
|
self.addon_tmsh_cli(command)
|
|
|
|
|
|
|
|
for command in commands:
|
|
|
|
|
|
|
|
self.merge_command_dict_cli(command)
|
|
|
|
|
|
|
|
result = [x['command'] for x in commands]
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
|
|
|
def normalized_commands(self):
|
|
|
|
|
|
|
|
if self._values['normalized_commands'] is None:
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
return deque(self._values['normalized_commands'])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
|
|
|
def chdir(self):
|
|
|
|
|
|
|
|
if self._values['chdir'] is None:
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
if self._values['chdir'].startswith('/'):
|
|
|
|
|
|
|
|
return self._values['chdir']
|
|
|
|
|
|
|
|
return '/{0}'.format(self._values['chdir'])
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
@property
|
|
|
|
def user_commands(self):
|
|
|
|
def user_commands(self):
|
|
|
|
commands = self._listify(self._values['commands'])
|
|
|
|
commands = self.raw_commands
|
|
|
|
return map(self._ensure_tmsh_prefix, commands)
|
|
|
|
return map(self._ensure_tmsh_prefix, commands)
|
|
|
|
|
|
|
|
|
|
|
|
def _ensure_tmsh_prefix(self, cmd):
|
|
|
|
@property
|
|
|
|
cmd = cmd.strip()
|
|
|
|
def wait_for(self):
|
|
|
|
if cmd[0:5] != 'tmsh ':
|
|
|
|
return self._values['wait_for'] or list()
|
|
|
|
cmd = 'tmsh ' + cmd.strip()
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def addon_tmsh(self, command):
|
|
|
|
|
|
|
|
escape_patterns = r'([$"])'
|
|
|
|
|
|
|
|
if command['command'].count('"') % 2 != 0:
|
|
|
|
|
|
|
|
raise Exception('Double quotes are unbalanced')
|
|
|
|
|
|
|
|
command['command'] = re.sub(escape_patterns, r'\\\\\\\1', command['command'])
|
|
|
|
|
|
|
|
command['command'] = 'tmsh -c \\\"{0}\\\"'.format(command['command'])
|
|
|
|
|
|
|
|
|
|
|
|
class ModuleManager(object):
|
|
|
|
def addon_tmsh_cli(self, command):
|
|
|
|
|
|
|
|
if command['command'].count('"') % 2 != 0:
|
|
|
|
|
|
|
|
raise Exception('Double quotes are unbalanced')
|
|
|
|
|
|
|
|
command['command'] = 'tmsh -c "{0}"'.format(command['command'])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def addon_chdir(self, command):
|
|
|
|
|
|
|
|
command['command'] = "cd {0}; {1}".format(self.chdir, command['command'])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class BaseManager(object):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.module = kwargs.get('module', None)
|
|
|
|
self.module = kwargs.get('module', None)
|
|
|
|
self.client = kwargs.get('client', None)
|
|
|
|
self.client = kwargs.get('client', None)
|
|
|
|
self.want = Parameters(params=self.module.params)
|
|
|
|
self.want = Parameters(params=self.module.params)
|
|
|
|
self.want.update({'module': self.module})
|
|
|
|
self.want.update({'module': self.module})
|
|
|
|
self.changes = Parameters(module=self.module)
|
|
|
|
self.changes = Parameters(module=self.module)
|
|
|
|
|
|
|
|
self.valid_configs = [
|
|
|
|
|
|
|
|
'list', 'show', 'modify cli preference pager disabled'
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
self.changed_command_prefixes = ('modify', 'create', 'delete')
|
|
|
|
|
|
|
|
self.warnings = list()
|
|
|
|
|
|
|
|
|
|
|
|
def _to_lines(self, stdout):
|
|
|
|
def _to_lines(self, stdout):
|
|
|
|
lines = list()
|
|
|
|
lines = list()
|
|
|
@ -269,26 +399,6 @@ class ModuleManager(object):
|
|
|
|
lines.append(item)
|
|
|
|
lines.append(item)
|
|
|
|
return lines
|
|
|
|
return lines
|
|
|
|
|
|
|
|
|
|
|
|
def _is_valid_mode(self, cmd):
|
|
|
|
|
|
|
|
valid_configs = [
|
|
|
|
|
|
|
|
'list', 'show',
|
|
|
|
|
|
|
|
'modify cli preference pager disabled'
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
if not is_cli(self.module):
|
|
|
|
|
|
|
|
valid_configs = list(map(self.want._ensure_tmsh_prefix, valid_configs))
|
|
|
|
|
|
|
|
if any(cmd.startswith(x) for x in valid_configs):
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def is_tmsh(self):
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
self._run_commands(self.module, 'tmsh help')
|
|
|
|
|
|
|
|
except F5ModuleError as ex:
|
|
|
|
|
|
|
|
if 'Syntax Error:' in str(ex):
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
raise
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def exec_module(self):
|
|
|
|
def exec_module(self):
|
|
|
|
result = dict()
|
|
|
|
result = dict()
|
|
|
|
|
|
|
|
|
|
|
@ -299,38 +409,81 @@ class ModuleManager(object):
|
|
|
|
|
|
|
|
|
|
|
|
result.update(**self.changes.to_return())
|
|
|
|
result.update(**self.changes.to_return())
|
|
|
|
result.update(dict(changed=changed))
|
|
|
|
result.update(dict(changed=changed))
|
|
|
|
|
|
|
|
self._announce_warnings(result)
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _announce_warnings(self, result):
|
|
|
|
|
|
|
|
warnings = result.pop('warnings', [])
|
|
|
|
|
|
|
|
for warning in warnings:
|
|
|
|
|
|
|
|
self.module.warn(warning)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def notify_non_idempotent_commands(self, commands):
|
|
|
|
|
|
|
|
for index, item in enumerate(commands):
|
|
|
|
|
|
|
|
if any(item.startswith(x) for x in self.valid_configs):
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
self.warnings.append(
|
|
|
|
|
|
|
|
'Using "write" commands is not idempotent. You should use '
|
|
|
|
|
|
|
|
'a module that is specifically made for that. If such a '
|
|
|
|
|
|
|
|
'module does not exist, then please file a bug. The command '
|
|
|
|
|
|
|
|
'in question is "{0}..."'.format(item[0:40])
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
|
|
|
def normalize_commands(raw_commands):
|
|
|
|
|
|
|
|
if not raw_commands:
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
result = []
|
|
|
|
|
|
|
|
for command in raw_commands:
|
|
|
|
|
|
|
|
command = command.strip()
|
|
|
|
|
|
|
|
if command[0:5] == 'tmsh ':
|
|
|
|
|
|
|
|
command = command[4:].strip()
|
|
|
|
|
|
|
|
result.append(command)
|
|
|
|
return result
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def _run_commands(self, module, commands):
|
|
|
|
def parse_commands(self):
|
|
|
|
return run_commands(module, commands)
|
|
|
|
results = []
|
|
|
|
|
|
|
|
commands = self._transform_to_complex_commands(self.commands)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for index, item in enumerate(commands):
|
|
|
|
|
|
|
|
# This needs to be removed so that the ComplexList used in to_commands
|
|
|
|
|
|
|
|
# will work correctly.
|
|
|
|
|
|
|
|
output = item.pop('output', None)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if output == 'one-line' and 'one-line' not in item['command']:
|
|
|
|
|
|
|
|
item['command'] += ' one-line'
|
|
|
|
|
|
|
|
elif output == 'text' and 'one-line' in item['command']:
|
|
|
|
|
|
|
|
item['command'] = item['command'].replace('one-line', '')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
results.append(item)
|
|
|
|
|
|
|
|
return results
|
|
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
def execute(self):
|
|
|
|
warnings = list()
|
|
|
|
if self.want.normalized_commands:
|
|
|
|
changed = ('tmsh modify', 'tmsh create', 'tmsh delete')
|
|
|
|
result = self.want.normalized_commands
|
|
|
|
commands = self.parse_commands(warnings)
|
|
|
|
else:
|
|
|
|
wait_for = self.want.wait_for or list()
|
|
|
|
result = self.normalize_commands(self.want.raw_commands)
|
|
|
|
|
|
|
|
self.want.update({'normalized_commands': result})
|
|
|
|
|
|
|
|
if not result:
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
self.notify_non_idempotent_commands(self.want.normalized_commands)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
commands = self.parse_commands()
|
|
|
|
retries = self.want.retries
|
|
|
|
retries = self.want.retries
|
|
|
|
conditionals = [Conditional(c) for c in wait_for]
|
|
|
|
conditionals = [Conditional(c) for c in self.want.wait_for]
|
|
|
|
|
|
|
|
|
|
|
|
if self.module.check_mode:
|
|
|
|
if self.module.check_mode:
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
while retries > 0:
|
|
|
|
while retries > 0:
|
|
|
|
if is_cli(self.module) and HAS_CLI_TRANSPORT:
|
|
|
|
responses = self._execute(commands)
|
|
|
|
if self.is_tmsh():
|
|
|
|
self._check_known_errors(responses)
|
|
|
|
for command in commands:
|
|
|
|
|
|
|
|
command['command'] = command['command'][4:].strip()
|
|
|
|
|
|
|
|
responses = self._run_commands(self.module, commands)
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
responses = self.execute_on_device(commands)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for item in list(conditionals):
|
|
|
|
for item in list(conditionals):
|
|
|
|
if item(responses):
|
|
|
|
if item(responses):
|
|
|
|
if self.want.match == 'any':
|
|
|
|
if self.want.match == 'any':
|
|
|
|
conditionals = list()
|
|
|
|
conditionals = list()
|
|
|
|
break
|
|
|
|
break
|
|
|
|
conditionals.remove(item)
|
|
|
|
conditionals.remove(item)
|
|
|
|
|
|
|
|
|
|
|
|
if not conditionals:
|
|
|
|
if not conditionals:
|
|
|
|
break
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
|
@ -338,22 +491,35 @@ class ModuleManager(object):
|
|
|
|
retries -= 1
|
|
|
|
retries -= 1
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
failed_conditions = [item.raw for item in conditionals]
|
|
|
|
failed_conditions = [item.raw for item in conditionals]
|
|
|
|
errmsg = 'One or more conditional statements have not been satisfied'
|
|
|
|
errmsg = 'One or more conditional statements have not been satisfied.'
|
|
|
|
raise FailedConditionsError(errmsg, failed_conditions)
|
|
|
|
raise FailedConditionsError(errmsg, failed_conditions)
|
|
|
|
|
|
|
|
stdout_lines = self._to_lines(responses)
|
|
|
|
changes = {
|
|
|
|
changes = {
|
|
|
|
'stdout': responses,
|
|
|
|
'stdout': responses,
|
|
|
|
'stdout_lines': self._to_lines(responses),
|
|
|
|
'stdout_lines': stdout_lines,
|
|
|
|
'warnings': warnings
|
|
|
|
'executed_commands': self.commands
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.want.warn:
|
|
|
|
|
|
|
|
changes['warnings'] = self.warnings
|
|
|
|
self.changes = Parameters(params=changes, module=self.module)
|
|
|
|
self.changes = Parameters(params=changes, module=self.module)
|
|
|
|
if any(x for x in self.want.user_commands if x.startswith(changed)):
|
|
|
|
if any(x for x in self.want.normalized_commands if x.startswith(self.changed_command_prefixes)):
|
|
|
|
return True
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
def parse_commands(self, warnings):
|
|
|
|
def _check_known_errors(self, responses):
|
|
|
|
results = []
|
|
|
|
# A regex to match the error IDs used in the F5 v2 logging framework.
|
|
|
|
commands = list(deque(set(self.want.commands)))
|
|
|
|
pattern = r'^[0-9A-Fa-f]+:?\d+?:'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for resp in responses:
|
|
|
|
|
|
|
|
if 'usage: tmsh' in resp:
|
|
|
|
|
|
|
|
raise F5ModuleError(
|
|
|
|
|
|
|
|
"tmsh command printed its 'help' message instead of running your command. "
|
|
|
|
|
|
|
|
"This usually indicates unbalanced quotes."
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
if re.match(pattern, resp):
|
|
|
|
|
|
|
|
raise F5ModuleError(str(resp))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _transform_to_complex_commands(self, commands):
|
|
|
|
spec = dict(
|
|
|
|
spec = dict(
|
|
|
|
command=dict(key=True),
|
|
|
|
command=dict(key=True),
|
|
|
|
output=dict(
|
|
|
|
output=dict(
|
|
|
@ -361,44 +527,100 @@ class ModuleManager(object):
|
|
|
|
choices=['text', 'one-line']
|
|
|
|
choices=['text', 'one-line']
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
transform = ComplexList(spec, self.module)
|
|
|
|
transform = ComplexList(spec, self.module)
|
|
|
|
commands = transform(commands)
|
|
|
|
result = transform(commands)
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
for index, item in enumerate(commands):
|
|
|
|
|
|
|
|
if not self._is_valid_mode(item['command']) and is_cli(self.module):
|
|
|
|
|
|
|
|
warnings.append(
|
|
|
|
|
|
|
|
'Using "write" commands is not idempotent. You should use '
|
|
|
|
|
|
|
|
'a module that is specifically made for that. If such a '
|
|
|
|
|
|
|
|
'module does not exist, then please file a bug. The command '
|
|
|
|
|
|
|
|
'in question is "%s..."' % item['command'][0:40]
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
# This needs to be removed so that the ComplexList used in to_commands
|
|
|
|
|
|
|
|
# will work correctly.
|
|
|
|
|
|
|
|
output = item.pop('output', None)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if output == 'one-line' and 'one-line' not in item['command']:
|
|
|
|
class V1Manager(BaseManager):
|
|
|
|
item['command'] += ' one-line'
|
|
|
|
"""Supports CLI (SSH) communication with the remote device
|
|
|
|
elif output == 'text' and 'one-line' in item['command']:
|
|
|
|
|
|
|
|
item['command'] = item['command'].replace('one-line', '')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
results.append(item)
|
|
|
|
"""
|
|
|
|
return results
|
|
|
|
def _execute(self, commands):
|
|
|
|
|
|
|
|
if self.want.is_tmsh:
|
|
|
|
|
|
|
|
command = dict(
|
|
|
|
|
|
|
|
command="modify cli preference pager disabled"
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
command = dict(
|
|
|
|
|
|
|
|
command="tmsh modify cli preference pager disabled"
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
self.execute_on_device(command)
|
|
|
|
|
|
|
|
return self.execute_on_device(commands)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
|
|
|
def commands(self):
|
|
|
|
|
|
|
|
return self.want.cli_commands
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def is_tmsh(self):
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
self.execute_on_device('tmsh -v')
|
|
|
|
|
|
|
|
except Exception as ex:
|
|
|
|
|
|
|
|
if 'Syntax Error:' in str(ex):
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
raise
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
|
|
|
|
self.want.update({'is_tmsh': self.is_tmsh()})
|
|
|
|
|
|
|
|
return super(V1Manager, self).execute()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def execute_on_device(self, commands):
|
|
|
|
|
|
|
|
result = run_commands(self.module, commands)
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class V2Manager(BaseManager):
|
|
|
|
|
|
|
|
"""Supports REST communication with the remote device
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
def _execute(self, commands):
|
|
|
|
|
|
|
|
command = dict(
|
|
|
|
|
|
|
|
command="tmsh modify cli preference pager disabled"
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
self.execute_on_device(command)
|
|
|
|
|
|
|
|
return self.execute_on_device(commands)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
|
|
|
def commands(self):
|
|
|
|
|
|
|
|
return self.want.rest_commands
|
|
|
|
|
|
|
|
|
|
|
|
def execute_on_device(self, commands):
|
|
|
|
def execute_on_device(self, commands):
|
|
|
|
responses = []
|
|
|
|
responses = []
|
|
|
|
escape_patterns = r'([$' + "'])"
|
|
|
|
|
|
|
|
for item in to_list(commands):
|
|
|
|
for item in to_list(commands):
|
|
|
|
command = re.sub(escape_patterns, r'\\\1', item['command'])
|
|
|
|
try:
|
|
|
|
output = self.client.api.tm.util.bash.exec_cmd(
|
|
|
|
command = '-c "{0}"'.format(item['command'])
|
|
|
|
'run',
|
|
|
|
output = self.client.api.tm.util.bash.exec_cmd(
|
|
|
|
utilCmdArgs='-c "{0}"'.format(command)
|
|
|
|
'run',
|
|
|
|
)
|
|
|
|
utilCmdArgs=command
|
|
|
|
if hasattr(output, 'commandResult'):
|
|
|
|
)
|
|
|
|
responses.append(str(output.commandResult))
|
|
|
|
if hasattr(output, 'commandResult'):
|
|
|
|
|
|
|
|
responses.append(str(output.commandResult).strip())
|
|
|
|
|
|
|
|
except Exception as ex:
|
|
|
|
|
|
|
|
pass
|
|
|
|
return responses
|
|
|
|
return responses
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ModuleManager(object):
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
|
|
|
|
self.kwargs = kwargs
|
|
|
|
|
|
|
|
self.module = kwargs.get('module', None)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def exec_module(self):
|
|
|
|
|
|
|
|
if is_cli(self.module) and HAS_CLI_TRANSPORT:
|
|
|
|
|
|
|
|
manager = self.get_manager('v1')
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
manager = self.get_manager('v2')
|
|
|
|
|
|
|
|
result = manager.exec_module()
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_manager(self, type):
|
|
|
|
|
|
|
|
if type == 'v1':
|
|
|
|
|
|
|
|
return V1Manager(**self.kwargs)
|
|
|
|
|
|
|
|
elif type == 'v2':
|
|
|
|
|
|
|
|
return V2Manager(**self.kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ArgumentSpec(object):
|
|
|
|
class ArgumentSpec(object):
|
|
|
|
def __init__(self):
|
|
|
|
def __init__(self):
|
|
|
|
self.supports_check_mode = True
|
|
|
|
self.supports_check_mode = True
|
|
|
@ -427,7 +649,12 @@ class ArgumentSpec(object):
|
|
|
|
type='str',
|
|
|
|
type='str',
|
|
|
|
default='rest',
|
|
|
|
default='rest',
|
|
|
|
choices=['cli', 'rest']
|
|
|
|
choices=['cli', 'rest']
|
|
|
|
)
|
|
|
|
),
|
|
|
|
|
|
|
|
warn=dict(
|
|
|
|
|
|
|
|
type='bool',
|
|
|
|
|
|
|
|
default='yes'
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
chdir=dict()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.argument_spec = {}
|
|
|
|
self.argument_spec = {}
|
|
|
|
self.argument_spec.update(f5_argument_spec)
|
|
|
|
self.argument_spec.update(f5_argument_spec)
|
|
|
@ -442,16 +669,18 @@ def main():
|
|
|
|
supports_check_mode=spec.supports_check_mode
|
|
|
|
supports_check_mode=spec.supports_check_mode
|
|
|
|
)
|
|
|
|
)
|
|
|
|
if is_cli(module) and not HAS_F5SDK:
|
|
|
|
if is_cli(module) and not HAS_F5SDK:
|
|
|
|
module.fail_json(msg="The python f5-sdk module is required to use the rest api")
|
|
|
|
module.fail_json(msg="The python f5-sdk module is required to use the REST api")
|
|
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
client = F5Client(**module.params)
|
|
|
|
client = F5Client(**module.params)
|
|
|
|
mm = ModuleManager(module=module, client=client)
|
|
|
|
mm = ModuleManager(module=module, client=client)
|
|
|
|
results = mm.exec_module()
|
|
|
|
results = mm.exec_module()
|
|
|
|
cleanup_tokens(client)
|
|
|
|
if not is_cli(module):
|
|
|
|
|
|
|
|
cleanup_tokens(client)
|
|
|
|
module.exit_json(**results)
|
|
|
|
module.exit_json(**results)
|
|
|
|
except F5ModuleError as e:
|
|
|
|
except F5ModuleError as e:
|
|
|
|
cleanup_tokens(client)
|
|
|
|
if not is_cli(module):
|
|
|
|
|
|
|
|
cleanup_tokens(client)
|
|
|
|
module.fail_json(msg=str(e))
|
|
|
|
module.fail_json(msg=str(e))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|