2016-09-14 13:40:14 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
2017-08-16 03:16:38 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
2017-03-14 16:07:22 +00:00
|
|
|
'status': ['preview'],
|
2017-08-16 04:10:36 +00:00
|
|
|
'supported_by': 'network'}
|
2017-03-14 16:07:22 +00:00
|
|
|
|
2016-12-06 10:35:05 +00:00
|
|
|
|
2016-09-14 13:40:14 +00:00
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: nxos_snapshot
|
2017-03-06 13:53:33 +00:00
|
|
|
extends_documentation_fragment: nxos
|
2016-09-14 13:40:14 +00:00
|
|
|
version_added: "2.2"
|
|
|
|
short_description: Manage snapshots of the running states of selected features.
|
|
|
|
description:
|
|
|
|
- Create snapshots of the running states of selected features, add
|
|
|
|
new show commands for snapshot creation, delete and compare
|
|
|
|
existing snapshots.
|
|
|
|
author:
|
|
|
|
- Gabriele Gerbino (@GGabriele)
|
|
|
|
notes:
|
2017-08-24 12:27:39 +00:00
|
|
|
- Tested against NXOSv 7.3.(0)D1(1) on VIRL
|
2016-10-13 14:47:50 +00:00
|
|
|
- C(transport=cli) may cause timeout errors.
|
2016-09-14 13:40:14 +00:00
|
|
|
- The C(element_key1) and C(element_key2) parameter specify the tags used
|
|
|
|
to distinguish among row entries. In most cases, only the element_key1
|
|
|
|
parameter needs to specified to be able to distinguish among row entries.
|
|
|
|
- C(action=compare) will always store a comparison report on a local file.
|
|
|
|
options:
|
|
|
|
action:
|
|
|
|
description:
|
|
|
|
- Define what snapshot action the module would perform.
|
|
|
|
required: true
|
|
|
|
choices: ['create','add','compare','delete']
|
|
|
|
snapshot_name:
|
|
|
|
description:
|
|
|
|
- Snapshot name, to be used when C(action=create)
|
|
|
|
or C(action=delete).
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
description:
|
|
|
|
description:
|
|
|
|
- Snapshot description to be used when C(action=create).
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
snapshot1:
|
|
|
|
description:
|
|
|
|
- First snapshot to be used when C(action=compare).
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
snapshot2:
|
|
|
|
description:
|
|
|
|
- Second snapshot to be used when C(action=compare).
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
comparison_results_file:
|
|
|
|
description:
|
2018-03-09 08:38:01 +00:00
|
|
|
- Name of the file where snapshots comparison will be stored when C(action=compare).
|
2016-09-14 13:40:14 +00:00
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
compare_option:
|
|
|
|
description:
|
|
|
|
- Snapshot options to be used when C(action=compare).
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
choices: ['summary','ipv4routes','ipv6routes']
|
|
|
|
section:
|
|
|
|
description:
|
|
|
|
- Used to name the show command output, to be used
|
|
|
|
when C(action=add).
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
show_command:
|
|
|
|
description:
|
|
|
|
- Specify a new show command, to be used when C(action=add).
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
row_id:
|
|
|
|
description:
|
|
|
|
- Specifies the tag of each row entry of the show command's
|
|
|
|
XML output, to be used when C(action=add).
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
element_key1:
|
|
|
|
description:
|
|
|
|
- Specify the tags used to distinguish among row entries,
|
|
|
|
to be used when C(action=add).
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
element_key2:
|
|
|
|
description:
|
|
|
|
- Specify the tags used to distinguish among row entries,
|
|
|
|
to be used when C(action=add).
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
save_snapshot_locally:
|
|
|
|
description:
|
|
|
|
- Specify to locally store a new created snapshot,
|
|
|
|
to be used when C(action=create).
|
|
|
|
required: false
|
|
|
|
default: false
|
|
|
|
choices: ['true','false']
|
|
|
|
path:
|
|
|
|
description:
|
|
|
|
- Specify the path of the file where new created snapshot or
|
|
|
|
snapshots comparison will be stored, to be used when
|
|
|
|
C(action=create) and C(save_snapshot_locally=true) or
|
|
|
|
C(action=compare).
|
|
|
|
required: false
|
|
|
|
default: './'
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
# Create a snapshot and store it locally
|
|
|
|
- nxos_snapshot:
|
|
|
|
action: create
|
|
|
|
snapshot_name: test_snapshot
|
|
|
|
description: Done with Ansible
|
|
|
|
save_snapshot_locally: true
|
|
|
|
path: /home/user/snapshots/
|
|
|
|
|
|
|
|
# Delete a snapshot
|
|
|
|
- nxos_snapshot:
|
|
|
|
action: delete
|
|
|
|
snapshot_name: test_snapshot
|
|
|
|
|
|
|
|
# Delete all existing snapshots
|
|
|
|
- nxos_snapshot:
|
|
|
|
action: delete_all
|
|
|
|
|
|
|
|
# Add a show command for snapshots creation
|
|
|
|
- nxos_snapshot:
|
|
|
|
section: myshow
|
|
|
|
show_command: show ip interface brief
|
|
|
|
row_id: ROW_intf
|
|
|
|
element_key1: intf-name
|
|
|
|
|
|
|
|
# Compare two snapshots
|
|
|
|
- nxos_snapshot:
|
|
|
|
action: compare
|
|
|
|
snapshot1: pre_snapshot
|
|
|
|
snapshot2: post_snapshot
|
|
|
|
comparison_results_file: compare_snapshots.txt
|
|
|
|
compare_option: summary
|
|
|
|
path: '../snapshot_reports/'
|
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = '''
|
2017-08-11 16:16:37 +00:00
|
|
|
commands:
|
2016-09-14 13:40:14 +00:00
|
|
|
description: commands sent to the device
|
|
|
|
returned: verbose mode
|
|
|
|
type: list
|
|
|
|
sample: ["snapshot create post_snapshot Post-snapshot"]
|
|
|
|
'''
|
2017-08-11 16:16:37 +00:00
|
|
|
|
2016-09-14 13:40:14 +00:00
|
|
|
import os
|
|
|
|
import re
|
2017-02-27 04:14:56 +00:00
|
|
|
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
2017-12-03 16:12:30 +00:00
|
|
|
from ansible.module_utils.network.nxos.nxos import load_config, run_commands
|
|
|
|
from ansible.module_utils.network.nxos.nxos import nxos_argument_spec, check_args
|
2016-09-14 13:40:14 +00:00
|
|
|
|
|
|
|
|
2017-08-11 16:16:37 +00:00
|
|
|
def execute_show_command(command, module):
|
|
|
|
command = [{
|
|
|
|
'command': command,
|
|
|
|
'output': 'text',
|
|
|
|
}]
|
2016-09-14 13:40:14 +00:00
|
|
|
|
2017-08-11 16:16:37 +00:00
|
|
|
return run_commands(module, command)
|
2016-09-14 13:40:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_existing(module):
|
|
|
|
existing = []
|
|
|
|
command = 'show snapshots'
|
|
|
|
|
|
|
|
body = execute_show_command(command, module)[0]
|
|
|
|
if body:
|
|
|
|
split_body = body.splitlines()
|
2017-11-22 06:22:40 +00:00
|
|
|
snapshot_regex = (r'(?P<name>\S+)\s+(?P<date>\w+\s+\w+\s+\d+\s+\d+'
|
|
|
|
r':\d+:\d+\s+\d+)\s+(?P<description>.*)')
|
2016-09-14 13:40:14 +00:00
|
|
|
for snapshot in split_body:
|
|
|
|
temp = {}
|
|
|
|
try:
|
|
|
|
match_snapshot = re.match(snapshot_regex, snapshot, re.DOTALL)
|
|
|
|
snapshot_group = match_snapshot.groupdict()
|
|
|
|
temp['name'] = snapshot_group['name']
|
|
|
|
temp['date'] = snapshot_group['date']
|
|
|
|
temp['description'] = snapshot_group['description']
|
|
|
|
existing.append(temp)
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return existing
|
|
|
|
|
|
|
|
|
|
|
|
def action_create(module, existing_snapshots):
|
|
|
|
commands = list()
|
|
|
|
exist = False
|
|
|
|
for snapshot in existing_snapshots:
|
|
|
|
if module.params['snapshot_name'] == snapshot['name']:
|
|
|
|
exist = True
|
|
|
|
|
|
|
|
if exist is False:
|
|
|
|
commands.append('snapshot create {0} {1}'.format(
|
|
|
|
module.params['snapshot_name'], module.params['description']))
|
|
|
|
|
|
|
|
return commands
|
|
|
|
|
|
|
|
|
|
|
|
def action_add(module, existing_snapshots):
|
|
|
|
commands = list()
|
|
|
|
command = 'show snapshot sections'
|
|
|
|
sections = []
|
|
|
|
body = execute_show_command(command, module)[0]
|
|
|
|
|
|
|
|
if body:
|
2017-11-22 06:22:40 +00:00
|
|
|
section_regex = r'.*\[(?P<section>\S+)\].*'
|
2016-09-14 13:40:14 +00:00
|
|
|
split_body = body.split('\n\n')
|
|
|
|
for section in split_body:
|
|
|
|
temp = {}
|
|
|
|
for line in section.splitlines():
|
|
|
|
try:
|
|
|
|
match_section = re.match(section_regex, section, re.DOTALL)
|
|
|
|
temp['section'] = match_section.groupdict()['section']
|
|
|
|
except (AttributeError, KeyError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
if 'show command' in line:
|
|
|
|
temp['show_command'] = line.split('show command: ')[1]
|
|
|
|
elif 'row id' in line:
|
|
|
|
temp['row_id'] = line.split('row id: ')[1]
|
|
|
|
elif 'key1' in line:
|
|
|
|
temp['element_key1'] = line.split('key1: ')[1]
|
|
|
|
elif 'key2' in line:
|
|
|
|
temp['element_key2'] = line.split('key2: ')[1]
|
|
|
|
|
|
|
|
if temp:
|
|
|
|
sections.append(temp)
|
|
|
|
|
|
|
|
proposed = {
|
|
|
|
'section': module.params['section'],
|
|
|
|
'show_command': module.params['show_command'],
|
|
|
|
'row_id': module.params['row_id'],
|
|
|
|
'element_key1': module.params['element_key1'],
|
|
|
|
'element_key2': module.params['element_key2'] or '-',
|
|
|
|
}
|
|
|
|
|
|
|
|
if proposed not in sections:
|
|
|
|
if module.params['element_key2']:
|
|
|
|
commands.append('snapshot section add {0} "{1}" {2} {3} {4}'.format(
|
2017-01-29 07:28:53 +00:00
|
|
|
module.params['section'], module.params['show_command'],
|
|
|
|
module.params['row_id'], module.params['element_key1'],
|
|
|
|
module.params['element_key2']))
|
2016-09-14 13:40:14 +00:00
|
|
|
else:
|
|
|
|
commands.append('snapshot section add {0} "{1}" {2} {3}'.format(
|
2017-01-29 07:28:53 +00:00
|
|
|
module.params['section'], module.params['show_command'],
|
|
|
|
module.params['row_id'], module.params['element_key1']))
|
2016-09-14 13:40:14 +00:00
|
|
|
|
|
|
|
return commands
|
|
|
|
|
|
|
|
|
|
|
|
def action_compare(module, existing_snapshots):
|
|
|
|
command = 'show snapshot compare {0} {1}'.format(
|
|
|
|
module.params['snapshot1'], module.params['snapshot2'])
|
|
|
|
|
|
|
|
if module.params['compare_option']:
|
|
|
|
command += ' {0}'.format(module.params['compare_option'])
|
|
|
|
|
|
|
|
body = execute_show_command(command, module)[0]
|
|
|
|
return body
|
|
|
|
|
|
|
|
|
|
|
|
def action_delete(module, existing_snapshots):
|
|
|
|
commands = list()
|
|
|
|
|
|
|
|
exist = False
|
|
|
|
for snapshot in existing_snapshots:
|
|
|
|
if module.params['snapshot_name'] == snapshot['name']:
|
|
|
|
exist = True
|
|
|
|
|
|
|
|
if exist:
|
|
|
|
commands.append('snapshot delete {0}'.format(
|
|
|
|
module.params['snapshot_name']))
|
|
|
|
|
|
|
|
return commands
|
|
|
|
|
|
|
|
|
|
|
|
def action_delete_all(module, existing_snapshots):
|
|
|
|
commands = list()
|
|
|
|
if existing_snapshots:
|
|
|
|
commands.append('snapshot delete all')
|
|
|
|
return commands
|
|
|
|
|
|
|
|
|
|
|
|
def invoke(name, *args, **kwargs):
|
|
|
|
func = globals().get(name)
|
|
|
|
if func:
|
|
|
|
return func(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
def get_snapshot(module):
|
|
|
|
command = 'show snapshot dump {0}'.format(module.params['snapshot_name'])
|
|
|
|
body = execute_show_command(command, module)[0]
|
|
|
|
return body
|
|
|
|
|
|
|
|
|
|
|
|
def write_on_file(content, filename, module):
|
|
|
|
path = module.params['path']
|
|
|
|
if path[-1] != '/':
|
|
|
|
path += '/'
|
|
|
|
filepath = '{0}{1}'.format(path, filename)
|
|
|
|
try:
|
2016-09-14 14:01:12 +00:00
|
|
|
report = open(filepath, 'w')
|
|
|
|
report.write(content)
|
|
|
|
report.close()
|
2016-09-14 13:40:14 +00:00
|
|
|
except:
|
|
|
|
module.fail_json(msg="Error while writing on file.")
|
|
|
|
|
|
|
|
return filepath
|
|
|
|
|
2017-12-07 16:27:06 +00:00
|
|
|
|
2016-09-14 13:40:14 +00:00
|
|
|
def main():
|
|
|
|
argument_spec = dict(
|
2017-02-27 04:14:56 +00:00
|
|
|
action=dict(required=True, choices=['create', 'add', 'compare', 'delete', 'delete_all']),
|
|
|
|
snapshot_name=dict(type='str'),
|
|
|
|
description=dict(type='str'),
|
|
|
|
snapshot1=dict(type='str'),
|
|
|
|
snapshot2=dict(type='str'),
|
|
|
|
compare_option=dict(choices=['summary', 'ipv4routes', 'ipv6routes']),
|
|
|
|
comparison_results_file=dict(type='str'),
|
|
|
|
section=dict(type='str'),
|
|
|
|
show_command=dict(type='str'),
|
|
|
|
row_id=dict(type='str'),
|
|
|
|
element_key1=dict(type='str'),
|
|
|
|
element_key2=dict(type='str'),
|
|
|
|
save_snapshot_locally=dict(type='bool', default=False),
|
|
|
|
path=dict(type='str', default='./')
|
2016-09-14 13:40:14 +00:00
|
|
|
)
|
2017-02-15 16:43:09 +00:00
|
|
|
|
|
|
|
argument_spec.update(nxos_argument_spec)
|
|
|
|
|
2018-03-09 08:38:01 +00:00
|
|
|
required_if = [("action", "compare", ["snapshot1", "snapshot2", "comparison_results_file"]),
|
|
|
|
("action", "create", ["snapshot_name", "description"]),
|
|
|
|
("action", "add", ["section", "show_command", "row_id", "element_key1"]),
|
|
|
|
("action", "delete", ["snapshot_name"])]
|
|
|
|
|
2017-02-15 16:43:09 +00:00
|
|
|
module = AnsibleModule(argument_spec=argument_spec,
|
2018-03-09 12:17:14 +00:00
|
|
|
required_if=required_if,
|
2017-02-27 04:14:56 +00:00
|
|
|
supports_check_mode=True)
|
2016-09-14 13:40:14 +00:00
|
|
|
|
2017-02-15 16:43:09 +00:00
|
|
|
warnings = list()
|
|
|
|
check_args(module, warnings)
|
|
|
|
|
2016-09-14 13:40:14 +00:00
|
|
|
action = module.params['action']
|
|
|
|
comparison_results_file = module.params['comparison_results_file']
|
|
|
|
|
|
|
|
if not os.path.isdir(module.params['path']):
|
|
|
|
module.fail_json(msg='{0} is not a valid directory name.'.format(
|
2017-01-29 07:28:53 +00:00
|
|
|
module.params['path']))
|
2016-09-14 13:40:14 +00:00
|
|
|
|
|
|
|
existing_snapshots = invoke('get_existing', module)
|
|
|
|
action_results = invoke('action_%s' % action, module, existing_snapshots)
|
|
|
|
|
2017-08-11 16:16:37 +00:00
|
|
|
result = {'changed': False, 'commands': []}
|
|
|
|
|
|
|
|
if not module.check_mode:
|
2016-09-14 13:40:14 +00:00
|
|
|
if action == 'compare':
|
2017-08-11 16:16:37 +00:00
|
|
|
result['commands'] = []
|
2017-09-20 04:36:38 +00:00
|
|
|
|
|
|
|
if module.params['path'] and comparison_results_file:
|
|
|
|
snapshot1 = module.params['snapshot1']
|
|
|
|
snapshot2 = module.params['snapshot2']
|
|
|
|
compare_option = module.params['compare_option']
|
|
|
|
command = 'show snapshot compare {0} {1} {2}'.format(snapshot1, snapshot2, compare_option)
|
|
|
|
content = execute_show_command(command, module)[0]
|
|
|
|
if content:
|
|
|
|
write_on_file(content, comparison_results_file, module)
|
2016-09-14 13:40:14 +00:00
|
|
|
else:
|
|
|
|
if action_results:
|
2017-02-15 16:43:09 +00:00
|
|
|
load_config(module, action_results)
|
2017-08-11 16:16:37 +00:00
|
|
|
result['commands'] = action_results
|
|
|
|
result['changed'] = True
|
2016-09-14 13:40:14 +00:00
|
|
|
|
2017-09-20 04:36:38 +00:00
|
|
|
if action == 'create' and module.params['path']:
|
|
|
|
command = 'show snapshot | include {}'.format(module.params['snapshot_name'])
|
|
|
|
content = execute_show_command(command, module)[0]
|
|
|
|
if content:
|
|
|
|
write_on_file(content, module.params['snapshot_name'], module)
|
|
|
|
|
2016-09-14 13:40:14 +00:00
|
|
|
module.exit_json(**result)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2017-12-07 16:27:06 +00:00
|
|
|
main()
|