| Server IP : 85.214.239.14 / Your IP : 216.73.216.178 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/arista/eos/plugins/module_utils/network/eos/ |
Upload File : |
#
# This code is part of Ansible, but is an independent component.
#
# This particular file snippet, and this file snippet only, is BSD licensed.
# Modules you write using this snippet, which is embedded dynamically by Ansible
# still belong to the author of the module, and may assign their own license
# to the complete work.
#
# (c) 2017 Red Hat, Inc.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
from __future__ import absolute_import, division, print_function
__metaclass__ = type
import json
import os
import time
from ansible.module_utils._text import to_text
from ansible.module_utils.connection import Connection, ConnectionError
from ansible_collections.ansible.netcommon.plugins.module_utils.network.common.config import (
NetworkConfig,
dumps,
)
from ansible_collections.ansible.netcommon.plugins.module_utils.network.common.utils import (
ComplexList,
to_list,
)
_DEVICE_CONNECTION = None
def get_connection(module):
global _DEVICE_CONNECTION
if not _DEVICE_CONNECTION:
connection_proxy = Connection(module._socket_path)
cap = json.loads(connection_proxy.get_capabilities())
if cap["network_api"] == "cliconf":
conn = Cli(module)
elif cap["network_api"] == "eapi":
conn = HttpApi(module)
_DEVICE_CONNECTION = conn
return _DEVICE_CONNECTION
def transform_commands(module):
transform = ComplexList(
dict(
command=dict(key=True),
output=dict(),
prompt=dict(type="list"),
answer=dict(type="list"),
newline=dict(type="bool", default=True),
sendonly=dict(type="bool", default=False),
check_all=dict(type="bool", default=False),
version=dict(
type="str",
default="latest",
choices=["latest", "1"],
),
),
module,
)
return transform(module.params["commands"])
def session_name():
"""Generate a unique string to be used as a configuration session name."""
return "ansible_%d" % (time.time() * 100)
class Cli:
def __init__(self, module):
self._module = module
self._device_configs = {}
self._session_support = None
self._connection = None
@property
def supports_sessions(self):
if self._session_support is None:
self._session_support = self._get_connection().supports_sessions()
return self._session_support
def _get_connection(self):
if self._connection:
return self._connection
self._connection = Connection(self._module._socket_path)
return self._connection
def get_config(self, flags=None):
"""Retrieves the current config from the device or cache"""
flags = [] if flags is None else flags
cmd = "show running-config "
cmd += " ".join(flags)
cmd = cmd.strip()
try:
return self._device_configs[cmd]
except KeyError:
conn = self._get_connection()
try:
out = conn.get_config(flags=flags)
except ConnectionError as exc:
self._module.fail_json(
msg=to_text(exc, errors="surrogate_then_replace"),
)
cfg = to_text(out, errors="surrogate_then_replace").strip()
self._device_configs[cmd] = cfg
return cfg
def run_commands(self, commands, check_rc=True):
"""Run list of commands on remote device and return results"""
connection = self._get_connection()
try:
response = connection.run_commands(
commands=commands,
check_rc=check_rc,
)
except ConnectionError as exc:
self._module.fail_json(
msg=to_text(exc, errors="surrogate_then_replace"),
)
return response
def get_session_config(self, commands, commit=False, replace=False):
"""Loads the config commands onto the remote device"""
conn = self._get_connection()
try:
response = conn.get_session_config(commands, commit, replace)
except ConnectionError as exc:
message = getattr(exc, "err", to_text(exc))
if (
"check mode is not supported without configuration session"
in message
):
self._module.warn(
"EOS can not check config without config session",
)
response = {"changed": True}
else:
self._module.fail_json(
msg="%s" % message,
data=to_text(message, errors="surrogate_then_replace"),
)
return response
def load_config(self, commands, commit=False, replace=False):
"""Loads the config commands onto the remote device"""
conn = self._get_connection()
try:
response = conn.edit_config(commands, commit, replace)
except ConnectionError as exc:
message = getattr(exc, "err", to_text(exc))
if (
"check mode is not supported without configuration session"
in message
):
self._module.warn(
"EOS can not check config without config session",
)
response = {"changed": True}
else:
self._module.fail_json(
msg="%s" % message,
data=to_text(message, errors="surrogate_then_replace"),
)
return response
def get_diff(
self,
candidate=None,
running=None,
diff_match="line",
diff_ignore_lines=None,
path=None,
diff_replace="line",
):
conn = self._get_connection()
try:
diff = conn.get_diff(
candidate=candidate,
running=running,
diff_match=diff_match,
diff_ignore_lines=diff_ignore_lines,
path=path,
diff_replace=diff_replace,
)
except ConnectionError as exc:
self._module.fail_json(
msg=to_text(exc, errors="surrogate_then_replace"),
)
return diff
def get_capabilities(self):
"""Returns platform info of the remove device"""
if hasattr(self._module, "_capabilities"):
return self._module._capabilities
connection = self._get_connection()
try:
capabilities = connection.get_capabilities()
except ConnectionError as exc:
self._module.fail_json(
msg=to_text(exc, errors="surrogate_then_replace"),
)
self._module._capabilities = json.loads(capabilities)
return self._module._capabilities
class HttpApi:
def __init__(self, module):
self._module = module
self._device_configs = {}
self._session_support = None
self._connection_obj = None
@property
def _connection(self):
if not self._connection_obj:
self._connection_obj = Connection(self._module._socket_path)
return self._connection_obj
@property
def supports_sessions(self):
if self._session_support is None:
self._session_support = self._connection.supports_sessions()
return self._session_support
def run_commands(self, commands, check_rc=True):
"""Runs list of commands on remote device and returns results"""
output = None
queue = list()
responses = list()
def run_queue(queue, output, version):
try:
response = to_list(
self._connection.send_request(
queue,
output=output,
version=version,
),
)
except ConnectionError as exc:
if check_rc:
raise
return to_list(to_text(exc))
if output == "json":
response = [json.loads(item) for item in response]
return response
for item in to_list(commands):
cmd_output = "text"
if isinstance(item, dict):
command = item["command"]
if "output" in item:
cmd_output = item["output"]
if "version" in item:
version = item["version"]
else:
command = item
# Emulate '| json' from CLI
if is_json(command):
command = command.rsplit("|", 1)[0]
cmd_output = "json"
if output and output != cmd_output:
responses.extend(run_queue(queue, output, version))
queue = list()
output = cmd_output
queue.append(command)
if queue:
responses.extend(run_queue(queue, output, version))
return responses
def get_config(self, flags=None):
"""Retrieves the current config from the device or cache"""
flags = [] if flags is None else flags
cmd = "show running-config "
cmd += " ".join(flags)
cmd = cmd.strip()
try:
return self._device_configs[cmd]
except KeyError:
try:
out = self._connection.send_request(cmd)
except ConnectionError as exc:
self._module.fail_json(
msg=to_text(exc, errors="surrogate_then_replace"),
)
cfg = to_text(out).strip()
self._device_configs[cmd] = cfg
return cfg
def get_diff(
self,
candidate=None,
running=None,
diff_match="line",
diff_ignore_lines=None,
path=None,
diff_replace="line",
):
diff = {}
# prepare candidate configuration
candidate_obj = NetworkConfig(indent=3)
candidate_obj.load(candidate)
if running and diff_match != "none" and diff_replace != "config":
# running configuration
running_obj = NetworkConfig(
indent=3,
contents=running,
ignore_lines=diff_ignore_lines,
)
configdiffobjs = candidate_obj.difference(
running_obj,
path=path,
match=diff_match,
replace=diff_replace,
)
else:
configdiffobjs = candidate_obj.items
diff["config_diff"] = (
dumps(configdiffobjs, "commands") if configdiffobjs else {}
)
return diff
def load_config(self, config, commit=False, replace=False):
"""Loads the configuration onto the remote devices
If the device doesn't support configuration sessions, this will
fallback to using configure() to load the commands. If that happens,
there will be no returned diff or session values
"""
return self.edit_config(config, commit, replace)
def edit_config(self, config, commit=False, replace=False):
"""Loads the configuration onto the remote devices
If the device doesn't support configuration sessions, this will
fallback to using configure() to load the commands. If that happens,
there will be no returned diff or session values
"""
session = session_name()
result = {"session": session}
banner_cmd = None
banner_input = []
commands = ["configure session %s" % session]
if replace:
commands.append("rollback clean-config")
for command in config:
if command.startswith("banner"):
banner_cmd = command
banner_input = []
elif banner_cmd:
if command == "EOF":
command = {
"cmd": banner_cmd,
"input": "\n".join(banner_input),
}
banner_cmd = None
commands.append(command)
else:
banner_input.append(command)
continue
else:
commands.append(command)
try:
response = self._connection.send_request(commands)
except Exception:
commands = ["configure session %s" % session, "abort"]
response = self._connection.send_request(commands, output="text")
raise
commands = [
"configure session %s" % session,
"show session-config diffs",
]
if commit:
commands.append("commit")
else:
commands.append("abort")
response = self._connection.send_request(commands, output="text")
diff = response[1].strip()
if diff:
result["diff"] = diff
return result
def get_session_config(self, config, commit=False, replace=False):
"""Loads the configuration onto the remote devices
If the device doesn't support configuration sessions, this will
fallback to using configure() to load the commands. If that happens,
there will be no returned diff or session values
"""
resp = ""
use_session = os.getenv("ANSIBLE_EOS_USE_SESSIONS", True)
try:
use_session = int(use_session)
except ValueError:
pass
if not all((bool(use_session), self.supports_sessions)):
if commit:
return self.configure(config)
else:
self._module.warn(
"EOS can not check config without config session",
)
result = {"changed": True}
return result
session = session_name()
result = {"session": session}
commands = ["configure session %s" % session]
if replace:
commands.append("rollback clean-config")
commands.extend(config)
response = self._connection.send_request(commands)
if "error" in response:
commands = ["configure session %s" % session, "abort"]
self._connection.send_request(commands)
err = response["error"]
error_text = []
for data in err["data"]:
error_text.extend(data.get("errors", []))
error_text = "\n".join(error_text) or err["message"]
self._module.fail_json(msg=error_text, code=err["code"])
commands = [
"configure session %s" % session,
"show session-config",
]
if commit:
commands.append("commit")
else:
commands.append("abort")
response = self._connection.send_request(commands, output="text")
for out in response:
if out:
resp += out + ""
return resp.rstrip()
def get_capabilities(self):
"""Returns platform info of the remove device"""
try:
capabilities = self._connection.get_capabilities()
except ConnectionError as exc:
self._module.fail_json(
msg=to_text(exc, errors="surrogate_then_replace"),
)
return json.loads(capabilities)
def is_json(cmd):
return to_text(cmd, errors="surrogate_then_replace").endswith("| json")
def to_command(module, commands):
transform = ComplexList(
dict(
command=dict(key=True),
output=dict(type="str", default="text"),
prompt=dict(type="list"),
answer=dict(type="list"),
newline=dict(type="bool", default=True),
sendonly=dict(type="bool", default=False),
check_all=dict(type="bool", default=False),
version=dict(type="str", default="latest"),
),
module,
)
return transform(to_list(commands))
def get_config(module, flags=None):
flags = None if flags is None else flags
conn = get_connection(module)
return conn.get_config(flags)
def run_commands(module, commands, check_rc=True):
conn = get_connection(module)
return conn.run_commands(to_command(module, commands), check_rc=check_rc)
def load_config(module, config, commit=False, replace=False):
conn = get_connection(module)
return conn.load_config(config, commit, replace)
def get_session_config(module, config, commit=False, replace=False):
conn = get_connection(module)
return conn.get_session_config(config, commit, replace)
def get_diff(
self,
candidate=None,
running=None,
diff_match="line",
diff_ignore_lines=None,
path=None,
diff_replace="line",
):
conn = self.get_connection()
return conn.get_diff(
candidate=candidate,
running=running,
diff_match=diff_match,
diff_ignore_lines=diff_ignore_lines,
path=path,
diff_replace=diff_replace,
)
def get_capabilities(module):
conn = get_connection(module)
return conn.get_capabilities()