2022-09-04 22:44:06 +02:00
|
|
|
import abc
|
2022-09-07 21:24:07 +02:00
|
|
|
from collections import MutableMapping
|
2022-09-04 22:44:06 +02:00
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
from ansible import constants as C
|
|
|
|
from ansible.errors import AnsibleParserError, AnsibleRuntimeError, AnsibleError
|
|
|
|
from ansible.module_utils.six import string_types
|
|
|
|
from ansible.module_utils.parsing.convert_bool import boolean
|
|
|
|
from ansible.utils.vars import isidentifier
|
|
|
|
from ansible.plugins.inventory import BaseInventoryPlugin
|
|
|
|
|
|
|
|
DOCUMENTATION = """
|
|
|
|
name: reconstructed
|
|
|
|
short_description: A plugin that allows the dynamic construction of groups
|
|
|
|
author: Emmanuel BENOÎT
|
|
|
|
description:
|
|
|
|
- This inventory plugin allows the construction of groups, the optional
|
|
|
|
assignment of hosts to these groups and the computation of arbitrary
|
|
|
|
facts.
|
|
|
|
options:
|
|
|
|
plugin:
|
|
|
|
description:
|
|
|
|
- Token that ensures this is a source file for the C(group_creator)
|
|
|
|
plugin.
|
|
|
|
required: True
|
|
|
|
choices: ['reconstructed']
|
|
|
|
instructions:
|
|
|
|
description:
|
|
|
|
- The list of instructions to be executed in order to generate the
|
|
|
|
inventory parts. Each instruction is represented as a dictionnary
|
|
|
|
with at least an C(action) field which determines which instruction
|
|
|
|
must be executed. The instructions will be executed once for each
|
|
|
|
inventory host.
|
|
|
|
- Instructions may include various fields that act as control flow.
|
|
|
|
- If the C(loop) field is present, it must contain a list (or a Jinja
|
|
|
|
template that will return a list). The instruction will be repeated
|
|
|
|
for each value in the list. The C(loop_var) field may be added to
|
|
|
|
specify the name of the variable into which the current value will
|
2022-09-17 10:30:37 +02:00
|
|
|
be written; by default the C(item) variable will be used. Once the
|
|
|
|
loop execution ends, the loop variable's previous state is restored.
|
2022-09-02 18:00:22 +02:00
|
|
|
- The C(when) field, if present, must contain a Jinja expression
|
|
|
|
representing a condition which will be checked before the instruction
|
|
|
|
is executed.
|
2022-09-17 12:22:40 +02:00
|
|
|
- The C(run_once) field will ensure that the instuction it is attached
|
|
|
|
to will only run one time at most.
|
2022-09-02 18:00:22 +02:00
|
|
|
- The C(action) field must be set to one of the following values.
|
2022-09-02 20:26:36 +02:00
|
|
|
- The C(block) action is another form of flow control, which can be
|
|
|
|
used to repeat multiple instructions or make them obey a single
|
|
|
|
conditional. The instruction must include a C(block) field, containing
|
|
|
|
the list of instructions which are part of the block. In addition, it
|
|
|
|
may have a C(rescue) field, containing a list of instructions which
|
|
|
|
will be executed on error, and C(always), which may contain a list
|
|
|
|
of instructions to execute in all cases. If the C(locals) field is
|
|
|
|
defined, it must contain a table of local variables to define. Any
|
|
|
|
local variable defined by the instructions under C(block), C(rescue)
|
2022-09-17 10:30:37 +02:00
|
|
|
or C(always) will go out of scope once the block finishes executing,
|
|
|
|
and the previous values, if any, will be restored.
|
2022-09-02 18:00:22 +02:00
|
|
|
- C(create_group) creates a group. The name of the group must be
|
|
|
|
provided using the C(group) field, which must be a valid name or a
|
2022-09-03 10:40:46 +02:00
|
|
|
Jinja template that evaluates to a valid name. In addition, a
|
|
|
|
C(parent) field containting the name of a single, existing parent
|
|
|
|
group (or a Jinja template generating the name) may be provided.
|
|
|
|
Finally, the C(add_host) field may be set to a truthy value if the
|
|
|
|
current host must be added to the new group.
|
2022-09-02 18:00:22 +02:00
|
|
|
- C(add_child) adds a child group to another group. The name of the
|
|
|
|
group being added must be provided in the C(child) entry, while
|
|
|
|
the name of the parent must be provided in the C(group) entry. Both
|
|
|
|
groups must exist. In addition, the names may be specified using
|
|
|
|
Jinja templates.
|
|
|
|
- C(add_host) adds the current inventory host to a group. The name
|
|
|
|
of the group must be provided in the C(group) entry. The group
|
|
|
|
must exist.
|
|
|
|
- C(fail) causes the computations for the current host to stop with
|
|
|
|
an error. The error message may be specified in the C(message)
|
|
|
|
entry; if present, it will be evaluated using Jinja.
|
|
|
|
- C(set_fact) and C(set_var) create a fact and a local variable,
|
|
|
|
respectively. Local variables will only be kept during the execution
|
|
|
|
of the script for the current host, while facts will be added to the
|
|
|
|
host's data. The C(name) entry specifies the name of the fact or
|
|
|
|
variable while the C(value) entry specifies its value. Both may be
|
|
|
|
Jinja templates.
|
|
|
|
- C(stop) stops processing the list of instructions for the current
|
|
|
|
host.
|
|
|
|
type: list
|
|
|
|
elements: dict
|
|
|
|
required: True
|
|
|
|
strictness:
|
|
|
|
description:
|
|
|
|
- The C(host) setting will cause an error to skip the host being
|
|
|
|
processed, and the C(full) setting will abort the execution
|
|
|
|
altogether.
|
|
|
|
required: False
|
|
|
|
choices: ['host', 'full']
|
|
|
|
default: host
|
|
|
|
"""
|
|
|
|
|
2022-09-18 10:06:19 +02:00
|
|
|
INSTR_COMMON_FIELDS = ("action", "loop", "loop_var", "run_once", "vars", "when")
|
2022-09-04 11:50:42 +02:00
|
|
|
"""Fields that may be present on all instructions."""
|
|
|
|
|
|
|
|
INSTR_OWN_FIELDS = {
|
|
|
|
"add_child": ("group", "child"),
|
2022-09-18 09:45:38 +02:00
|
|
|
"add_host": ("group",),
|
|
|
|
"block": ("block", "rescue", "always", "locals"),
|
|
|
|
"create_group": ("group", "parent", "add_host"),
|
|
|
|
"fail": ("msg",),
|
2022-09-04 11:50:42 +02:00
|
|
|
"set_fact": ("name", "value"),
|
2022-09-18 09:45:38 +02:00
|
|
|
"set_var": ("name", "value"),
|
2022-09-04 11:50:42 +02:00
|
|
|
"stop": (),
|
|
|
|
}
|
|
|
|
"""Fields that are specific to each instruction."""
|
|
|
|
|
|
|
|
INSTR_FIELDS = {k: set(v + INSTR_COMMON_FIELDS) for k, v in INSTR_OWN_FIELDS.items()}
|
|
|
|
"""All supported fields for each instruction, including common and specific fields."""
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
|
2022-09-07 21:24:07 +02:00
|
|
|
class VariableStorage(MutableMapping):
|
2022-09-17 10:51:35 +02:00
|
|
|
"""Variable storage and cache.
|
|
|
|
|
|
|
|
This class implements storage for local variables, with the ability to save
|
|
|
|
some of them and then restore them. It also implements a cache that combines
|
|
|
|
both local variables and host facts.
|
|
|
|
"""
|
|
|
|
|
2022-09-07 21:24:07 +02:00
|
|
|
def __init__(self, host_vars):
|
2022-09-17 10:51:35 +02:00
|
|
|
"""Initialize the cache using the specified mapping of host variables.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
host_vars: the host variables
|
|
|
|
"""
|
2022-09-07 21:24:07 +02:00
|
|
|
self._host_vars = host_vars
|
2022-09-17 10:10:18 +02:00
|
|
|
self._script_vars = {}
|
|
|
|
self._script_stack = []
|
2022-09-07 21:24:07 +02:00
|
|
|
self._cache = host_vars.copy()
|
|
|
|
|
2022-09-17 10:10:18 +02:00
|
|
|
def _script_stack_push(self, variables):
|
2022-09-17 10:51:35 +02:00
|
|
|
"""Push the state of some local variables to the stack.
|
|
|
|
|
|
|
|
This method will add a record containing the state of some variables to
|
|
|
|
the stack so it may be restored later. The state for a single variable
|
|
|
|
consists in a flag indicating whether the variable existed or not, and
|
|
|
|
its value if it did.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
variables: an iterable of variable names whose state must be pushed
|
|
|
|
"""
|
2022-09-17 10:10:18 +02:00
|
|
|
data = {}
|
|
|
|
for v in variables:
|
|
|
|
if v in self._script_vars:
|
2022-09-17 10:21:06 +02:00
|
|
|
se = (True, self._script_vars[v].copy())
|
2022-09-17 10:10:18 +02:00
|
|
|
else:
|
|
|
|
se = (False, None)
|
|
|
|
data[v] = se
|
|
|
|
self._script_stack.append(data)
|
2022-09-07 21:24:07 +02:00
|
|
|
|
|
|
|
def _script_stack_pop(self):
|
2022-09-17 10:51:35 +02:00
|
|
|
"""Restore the state of local variables from the stack.
|
|
|
|
|
|
|
|
This method will restore state entries that were saved by
|
|
|
|
:py:meth:`_script_stack_push`. Local variables that didn't exist then
|
|
|
|
will be deleted, while variables which actually existed will be
|
|
|
|
restored. The cache will be reset.
|
|
|
|
"""
|
2022-09-17 10:10:18 +02:00
|
|
|
restore = self._script_stack.pop()
|
2022-09-17 10:47:45 +02:00
|
|
|
if not restore:
|
|
|
|
return
|
2022-09-17 10:10:18 +02:00
|
|
|
for vn, vv in restore.items():
|
|
|
|
existed, value = vv
|
|
|
|
if existed:
|
|
|
|
self._script_vars[vn] = value
|
|
|
|
elif vn in self._script_vars:
|
|
|
|
del self._script_vars[vn]
|
2022-09-07 21:24:07 +02:00
|
|
|
self._cache = self._host_vars.copy()
|
2022-09-17 10:10:18 +02:00
|
|
|
self._cache.update(self._script_vars)
|
2022-09-07 21:24:07 +02:00
|
|
|
|
|
|
|
def _set_host_var(self, name, value):
|
2022-09-17 10:51:35 +02:00
|
|
|
"""Set a host variable.
|
|
|
|
|
|
|
|
This method sets the value of a host variable in the appropriate
|
|
|
|
mapping, and updates the cache as will unless a local variable with the
|
|
|
|
same name exists.
|
|
|
|
|
|
|
|
Note: the actual inventory is not modified, only the local copy of
|
|
|
|
host variables is.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
name: the name of the variable
|
|
|
|
value: the value of the variable
|
|
|
|
"""
|
2022-09-07 21:24:07 +02:00
|
|
|
self._host_vars[name] = value
|
2022-09-17 10:10:18 +02:00
|
|
|
if name not in self._script_vars:
|
2022-09-07 21:24:07 +02:00
|
|
|
self._cache[name] = value
|
|
|
|
|
|
|
|
def __getitem__(self, k):
|
|
|
|
return self._cache[k]
|
|
|
|
|
|
|
|
def __setitem__(self, k, v):
|
2022-09-17 10:10:18 +02:00
|
|
|
self._script_vars[k] = v
|
2022-09-07 21:24:07 +02:00
|
|
|
self._cache[k] = v
|
|
|
|
|
|
|
|
def __delitem__(self, k):
|
2022-09-17 10:10:18 +02:00
|
|
|
del self._script_vars[k]
|
2022-09-07 21:24:07 +02:00
|
|
|
if k in self._host_vars:
|
|
|
|
self._cache[k] = self._host_vars[k]
|
|
|
|
else:
|
|
|
|
del self._cache[k]
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self._cache.__iter__()
|
|
|
|
|
|
|
|
def __len__(self):
|
|
|
|
return len(self._cache)
|
|
|
|
|
|
|
|
def keys(self):
|
|
|
|
return self._cache.keys()
|
|
|
|
|
|
|
|
def items(self):
|
|
|
|
return self._cache.items()
|
|
|
|
|
|
|
|
def values(self):
|
|
|
|
return self._cache.values()
|
|
|
|
|
|
|
|
|
2022-09-04 22:44:06 +02:00
|
|
|
class RcInstruction(abc.ABC):
|
2022-09-02 18:00:22 +02:00
|
|
|
"""An instruction that can be executed by the plugin."""
|
|
|
|
|
|
|
|
DEFAULT_LOOP_VAR = "item"
|
2022-09-04 23:44:02 +02:00
|
|
|
"""The name of the default loop variable."""
|
2022-09-02 18:00:22 +02:00
|
|
|
|
2022-09-04 11:50:42 +02:00
|
|
|
def __init__(self, inventory, templar, display, action):
|
2022-09-02 18:00:22 +02:00
|
|
|
self._inventory = inventory
|
|
|
|
self._templar = templar
|
2022-09-04 11:35:07 +02:00
|
|
|
self._display = display
|
2022-09-18 10:06:19 +02:00
|
|
|
self._action = action
|
2022-09-02 18:00:22 +02:00
|
|
|
self._condition = None
|
2022-09-18 10:06:19 +02:00
|
|
|
self._executed_once = None
|
2022-09-02 18:00:22 +02:00
|
|
|
self._loop = None
|
|
|
|
self._loop_var = None
|
2022-09-18 10:06:19 +02:00
|
|
|
self._vars = None
|
|
|
|
self._save = None
|
2022-09-02 18:00:22 +02:00
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def __repr__(self):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Builds a compact debugging representation of the instruction, \
|
|
|
|
including any conditional or iteration clause."""
|
2022-09-04 11:35:07 +02:00
|
|
|
flow = []
|
|
|
|
if self._condition is not None:
|
2022-09-04 12:21:09 +02:00
|
|
|
flow.append("when=%s" % (repr(self._condition),))
|
2022-09-04 11:35:07 +02:00
|
|
|
if self._loop is not None:
|
|
|
|
flow.append(
|
|
|
|
"loop=%s, loop_var=%s" % (repr(self._loop), repr(self._loop_var))
|
|
|
|
)
|
2022-09-18 10:13:37 +02:00
|
|
|
if len(self._vars) != 0:
|
|
|
|
flow.append("vars=%s" % (repr(self._vars),))
|
2022-09-17 12:22:40 +02:00
|
|
|
if self._executed_once is not None:
|
|
|
|
flow.append("run_once")
|
2022-09-04 11:35:07 +02:00
|
|
|
if flow:
|
|
|
|
output = "{%s}" % (", ".join(flow),)
|
|
|
|
else:
|
|
|
|
output = ""
|
|
|
|
output += self.repr_instruction_only()
|
|
|
|
return output
|
|
|
|
|
|
|
|
def repr_instruction_only(self):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Builds a compact debugging representation of the instruction itself."""
|
2022-09-04 11:35:07 +02:00
|
|
|
return "%s()" % (self._action,)
|
|
|
|
|
|
|
|
def dump(self):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Builds a representation of the instruction over multiple lines.
|
|
|
|
|
|
|
|
This method generates a representation of the instruction, including
|
|
|
|
any conditional or iteration clause, over multiple lines. It is meant
|
|
|
|
to be used when generating a dump of the parsed program for high
|
|
|
|
verbosity values.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
a list of strings (one for each line)
|
|
|
|
"""
|
2022-09-04 11:35:07 +02:00
|
|
|
output = []
|
2022-09-17 12:22:40 +02:00
|
|
|
if self._executed_once is not None:
|
|
|
|
output.append("{run_once}")
|
2022-09-18 10:13:37 +02:00
|
|
|
if self._loop is not None:
|
|
|
|
output.append("{loop[%s]: %s}" % (self._loop_var, repr(self._loop)))
|
|
|
|
for var in self._vars:
|
|
|
|
output.append("{var %s=%s}" % (var, repr(self._vars[var])))
|
|
|
|
if self._condition is not None:
|
|
|
|
output.append("{when: %s}" % (repr(self._condition),))
|
2022-09-04 11:35:07 +02:00
|
|
|
output.extend(self.dump_instruction())
|
|
|
|
return output
|
|
|
|
|
|
|
|
def dump_instruction(self):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Builds the multi-line debugging representation of the instruction.
|
|
|
|
|
|
|
|
This method returns a list of strings that correspond to the output
|
|
|
|
lines that represent the instruction.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
a list of strings (one for each line)
|
|
|
|
"""
|
2022-09-04 11:35:07 +02:00
|
|
|
return [self.repr_instruction_only()]
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
def parse(self, record):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Parse the instruction's record.
|
|
|
|
|
|
|
|
This method ensures that no unsupported fields are present in the
|
|
|
|
instruction's record. It then extracts the conditional clause and the
|
|
|
|
iteration clause, if they are present. Finally it calls ``parse_action``
|
|
|
|
in order to extract the instruction itself.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
record: the dictionnary that contains the instruction
|
|
|
|
"""
|
2022-09-02 18:00:22 +02:00
|
|
|
assert "action" in record and record["action"] == self._action
|
|
|
|
# Ensure there are no unsupported fields
|
2022-09-04 11:50:42 +02:00
|
|
|
extra_fields = set(record.keys()).difference(INSTR_FIELDS[self._action])
|
2022-09-02 18:00:22 +02:00
|
|
|
if extra_fields:
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: unsupported fields: %s" % (self._action, ", ".join(extra_fields))
|
|
|
|
)
|
|
|
|
# Extract the condition
|
|
|
|
if "when" in record:
|
|
|
|
if not isinstance(record["when"], string_types):
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: 'when' clause is not a string" % (self._action,)
|
|
|
|
)
|
|
|
|
self._condition = record["when"]
|
|
|
|
# Extract the loop data and configuration
|
|
|
|
if "loop" in record:
|
|
|
|
loop = record["loop"]
|
|
|
|
if not isinstance(loop, string_types + (list,)):
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: 'loop' clause is neither a string nor a list" % (self._action,)
|
|
|
|
)
|
|
|
|
loop_var = record.get("loop_var", RcInstruction.DEFAULT_LOOP_VAR)
|
|
|
|
if not isinstance(loop_var, string_types):
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: 'loop_var' clause is not a string" % (self._action,)
|
|
|
|
)
|
|
|
|
if not isidentifier(loop_var):
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: 'loop_var' value '%s' is not a valid identifier"
|
|
|
|
% (self._action, loop_var)
|
|
|
|
)
|
|
|
|
self._loop = loop
|
|
|
|
self._loop_var = loop_var
|
|
|
|
elif "loop_var" in record:
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: 'loop_var' clause found without 'loop'" % (self._action,)
|
|
|
|
)
|
2022-09-18 10:06:19 +02:00
|
|
|
# Extract local variables
|
|
|
|
self._vars = self.parse_vars(record)
|
|
|
|
# Cache the list of variables to save before execution
|
|
|
|
save = list(self._vars.keys())
|
|
|
|
if self._loop is not None:
|
|
|
|
save.append(self._loop_var)
|
|
|
|
self._save = tuple(save)
|
2022-09-17 12:22:40 +02:00
|
|
|
# Handle instructions that may only be executed once
|
|
|
|
if record.get("run_once", False):
|
|
|
|
self._executed_once = False
|
2022-09-02 18:00:22 +02:00
|
|
|
# Process action-specific fields
|
|
|
|
self.parse_action(record)
|
|
|
|
|
2022-09-18 10:06:19 +02:00
|
|
|
def parse_vars(self, record):
|
|
|
|
"""Parse local variable definitions from the record.
|
|
|
|
|
|
|
|
This method checks for a ``vars`` section in the YAML data, and extracts
|
|
|
|
it if it exists.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
record: the YAML data for the instruction
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
a dictionnary that contains the variable definitions
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
AnsibleParserError: when the ``vars`` entry is invalid or contains \
|
|
|
|
invalid definitions
|
|
|
|
"""
|
|
|
|
if "vars" not in record:
|
|
|
|
return {}
|
|
|
|
if not isinstance(record["vars"], dict):
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: 'vars' should be a dictionnary" % (self._action,)
|
|
|
|
)
|
|
|
|
for k, v in record["vars"].items():
|
|
|
|
if not isinstance(k, string_types):
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: vars identifiers must be strings" % (self._action,)
|
|
|
|
)
|
|
|
|
if not isidentifier(k):
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: '%s' is not a valid identifier" % (self._action, k)
|
|
|
|
)
|
|
|
|
return record["vars"]
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
def parse_group_name(self, record, name):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Parse a field containing the name of a group, or a template.
|
|
|
|
|
|
|
|
This helper method may be used by implementations to extract either a
|
|
|
|
group name or a template from a field. If the string cannot possibly be
|
|
|
|
a Jinja template, it will be stripped of extra spaces then checked for
|
|
|
|
invalid characters.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
record: the dictionnary that contains the instruction
|
|
|
|
name: the name of the field to read
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
a tuple consisting of a boolean that indicates whether the string
|
|
|
|
may be a template or not, and the string itself.
|
|
|
|
"""
|
2022-09-02 18:00:22 +02:00
|
|
|
if name not in record:
|
|
|
|
raise AnsibleParserError("%s: missing '%s' field" % (self._action, name))
|
|
|
|
group = record[name]
|
|
|
|
if not isinstance(group, string_types):
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: '%s' field must be a string" % (self._action, name)
|
|
|
|
)
|
|
|
|
may_be_template = self._templar.is_possibly_template(group)
|
|
|
|
if not may_be_template:
|
|
|
|
group = group.strip()
|
|
|
|
if C.INVALID_VARIABLE_NAMES.findall(group):
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: invalid group name '%s' in field '%s'"
|
|
|
|
% (self._action, group, name)
|
|
|
|
)
|
|
|
|
return may_be_template, group
|
|
|
|
|
2022-09-04 22:44:06 +02:00
|
|
|
@abc.abstractmethod
|
2022-09-02 18:00:22 +02:00
|
|
|
def parse_action(self, record):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Parse the instruction-specific fields.
|
|
|
|
|
|
|
|
This method must be overridden to read all necessary data from the input
|
|
|
|
record and configure the instruction.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
record: the dictionnary that contains the instruction
|
|
|
|
"""
|
2022-09-02 18:00:22 +02:00
|
|
|
raise NotImplementedError
|
|
|
|
|
2022-09-07 21:24:07 +02:00
|
|
|
def run_for(self, host_name, variables):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Execute the instruction for a given host.
|
|
|
|
|
|
|
|
This method is the entry point for instruction execution. Depending on
|
|
|
|
whether an iteration clause is present or not, it will either call
|
2022-09-17 12:06:21 +02:00
|
|
|
:py:meth:`run_iteration` directly or evaluate the loop data then run it
|
|
|
|
once for each item, after setting the loop variable.
|
2022-09-04 23:44:02 +02:00
|
|
|
|
|
|
|
Args:
|
|
|
|
host_name: the name of the host to execute the instruction for
|
2022-09-07 21:24:07 +02:00
|
|
|
variables: the variable storage instance
|
2022-09-04 23:44:02 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
``True`` if execution must continue, ``False`` if it must be
|
|
|
|
interrupted
|
|
|
|
"""
|
2022-09-17 12:22:40 +02:00
|
|
|
if self._executed_once is True:
|
|
|
|
return True
|
|
|
|
if self._executed_once is False:
|
|
|
|
self._executed_once = True
|
2022-09-18 10:06:19 +02:00
|
|
|
# Save previous loop and local variables state
|
|
|
|
variables._script_stack_push(self._save)
|
2022-09-04 22:54:03 +02:00
|
|
|
try:
|
2022-09-18 10:06:19 +02:00
|
|
|
# Instructions without loops
|
|
|
|
if self._loop is None:
|
|
|
|
self._display.vvvv("%s : running action %s" % (host_name, self._action))
|
|
|
|
return self.run_iteration(host_name, variables)
|
2022-09-04 22:54:03 +02:00
|
|
|
# Loop over all values
|
2022-09-07 21:24:07 +02:00
|
|
|
for value in self.evaluate_loop(host_name, variables):
|
2022-09-04 22:54:03 +02:00
|
|
|
self._display.vvvv(
|
|
|
|
"%s : running action %s for item %s"
|
|
|
|
% (host_name, self._action, repr(value))
|
|
|
|
)
|
2022-09-07 21:24:07 +02:00
|
|
|
variables[self._loop_var] = value
|
2022-09-17 12:06:21 +02:00
|
|
|
if not self.run_iteration(host_name, variables):
|
2022-09-04 22:54:03 +02:00
|
|
|
return False
|
|
|
|
return True
|
|
|
|
finally:
|
|
|
|
# Restore loop variable state
|
2022-09-17 10:10:18 +02:00
|
|
|
variables._script_stack_pop()
|
2022-09-02 18:00:22 +02:00
|
|
|
|
2022-09-17 12:06:21 +02:00
|
|
|
def run_iteration(self, host_name, variables):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Check the condition if it exists, then run the instruction.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
host_name: the name of the host to execute the instruction for
|
2022-09-07 21:24:07 +02:00
|
|
|
variables: the variable storage instance
|
2022-09-04 23:44:02 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
``True`` if execution must continue, ``False`` if it must be
|
|
|
|
interrupted
|
|
|
|
"""
|
2022-09-18 10:06:19 +02:00
|
|
|
self.compute_locals(host_name, variables)
|
2022-09-07 21:24:07 +02:00
|
|
|
if self.evaluate_condition(host_name, variables):
|
|
|
|
rv = self.execute_action(host_name, variables)
|
2022-09-04 11:35:07 +02:00
|
|
|
if not rv:
|
|
|
|
self._display.vvvvv(
|
|
|
|
"%s : action %s returned False, stopping"
|
|
|
|
% (host_name, self._action)
|
|
|
|
)
|
2022-09-02 18:00:22 +02:00
|
|
|
else:
|
2022-09-04 11:35:07 +02:00
|
|
|
rv = True
|
|
|
|
return rv
|
2022-09-02 18:00:22 +02:00
|
|
|
|
|
|
|
def evaluate_condition(self, host_name, variables):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Evaluate the condition for an instruction's execution.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
host_name: the name of the host to execute the instruction for
|
2022-09-07 21:24:07 +02:00
|
|
|
variables: the variable storage instance
|
2022-09-04 23:44:02 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
``True`` if there is no conditional clause for this instruction, or
|
|
|
|
if there is one and it evaluated to a truthy value; ``False``
|
|
|
|
otherwise.
|
|
|
|
"""
|
2022-09-02 18:00:22 +02:00
|
|
|
if self._condition is None:
|
|
|
|
return True
|
|
|
|
t = self._templar
|
|
|
|
template = "%s%s%s" % (
|
|
|
|
t.environment.variable_start_string,
|
|
|
|
self._condition,
|
|
|
|
t.environment.variable_end_string,
|
|
|
|
)
|
2022-09-04 11:35:07 +02:00
|
|
|
rv = boolean(t.template(template, disable_lookups=False))
|
|
|
|
self._display.vvvvv(
|
|
|
|
"host %s, action %s, condition %s evaluating to %s"
|
|
|
|
% (host_name, self._action, repr(self._condition), repr(rv))
|
|
|
|
)
|
|
|
|
return rv
|
2022-09-02 18:00:22 +02:00
|
|
|
|
2022-09-18 10:06:19 +02:00
|
|
|
def compute_locals(self, host_name, variables):
|
|
|
|
"""Compute local variables.
|
|
|
|
|
|
|
|
This method iterates through all local variable definitions and runs
|
|
|
|
them through the templar.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
host_name: the name of the host the instruction is being executed for
|
|
|
|
variables: the variable storage instance
|
|
|
|
"""
|
|
|
|
self._templar.available_variables = variables
|
|
|
|
for key, value in self._vars.items():
|
|
|
|
result = self._templar.template(value)
|
|
|
|
variables[key] = result
|
|
|
|
self._display.vvvv("- set local variable %s to %s" % (key, result))
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
def evaluate_loop(self, host_name, variables):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Evaluate the values to iterate over when a ``loop`` is defined.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
host_name: the name of the host to execute the instruction for
|
2022-09-07 21:24:07 +02:00
|
|
|
variables: the variable storage instance
|
2022-09-04 23:44:02 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
the list of items to iterate over
|
|
|
|
"""
|
2022-09-04 11:35:07 +02:00
|
|
|
self._display.vvvvv(
|
|
|
|
"host %s, action %s, evaluating loop template %s"
|
|
|
|
% (host_name, self._action, repr(self._loop))
|
|
|
|
)
|
2022-09-02 18:00:22 +02:00
|
|
|
self._templar.available_variables = variables
|
|
|
|
value = self._templar.template(self._loop, disable_lookups=False)
|
|
|
|
if not isinstance(value, list):
|
|
|
|
raise AnsibleRuntimeError(
|
|
|
|
"template '%s' did not evaluate to a list" % (self._loop,)
|
|
|
|
)
|
|
|
|
return value
|
|
|
|
|
|
|
|
def get_templated_group(self, variables, may_be_template, name, must_exist=False):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Extract a group name from its source, optionally ensure it exists, \
|
|
|
|
then return it.
|
|
|
|
|
|
|
|
Args:
|
2022-09-07 21:24:07 +02:00
|
|
|
variables: the variable storage instance
|
2022-09-04 23:44:02 +02:00
|
|
|
may_be_template: a flag that indicates whether the name should be \
|
|
|
|
processed with the templar.
|
|
|
|
name: the name or its template
|
|
|
|
must_exist: a flag that, if ``True``, will cause an exception to \
|
|
|
|
be raised if the group does not exist.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
the name of the group
|
|
|
|
"""
|
2022-09-02 18:00:22 +02:00
|
|
|
if may_be_template:
|
|
|
|
self._templar.available_variables = variables
|
|
|
|
real_name = self._templar.template(name)
|
|
|
|
if not isinstance(name, string_types):
|
|
|
|
raise AnsibleRuntimeError(
|
|
|
|
"%s: '%s' did not coalesce into a string" % (self._action, name)
|
|
|
|
)
|
|
|
|
real_name = real_name.strip()
|
|
|
|
if C.INVALID_VARIABLE_NAMES.findall(real_name):
|
|
|
|
raise AnsibleRuntimeError(
|
|
|
|
"%s: '%s' is not a valid group name" % (self._action, real_name)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
real_name = name
|
|
|
|
if must_exist and real_name not in self._inventory.groups:
|
|
|
|
raise AnsibleRuntimeError(
|
|
|
|
"%s: group '%s' does not exist" % (self._action, real_name)
|
|
|
|
)
|
|
|
|
return real_name
|
|
|
|
|
2022-09-04 22:44:06 +02:00
|
|
|
@abc.abstractmethod
|
2022-09-07 21:24:07 +02:00
|
|
|
def execute_action(self, host_name, variables):
|
2022-09-04 23:44:02 +02:00
|
|
|
"""Execute the instruction.
|
|
|
|
|
|
|
|
This method must be overridden to implement the actual action of the
|
|
|
|
instruction.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
host_name: the name of the host to execute the instruction for
|
|
|
|
merged_vars: the variable cache, with local script variables \
|
|
|
|
taking precedence over host facts.
|
|
|
|
host_vars: the host's facts, as a mapping
|
|
|
|
script_vars: the current script variables, as a mapping
|
|
|
|
|
|
|
|
Return:
|
|
|
|
``True`` if the script's execution should continue, ``False`` if
|
|
|
|
it should be interrupted.
|
|
|
|
"""
|
2022-09-04 22:44:06 +02:00
|
|
|
raise NotImplementedError
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
|
|
|
|
class RciCreateGroup(RcInstruction):
|
2022-09-17 12:01:06 +02:00
|
|
|
"""``create_group`` instruction implementation."""
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def __init__(self, inventory, templar, display):
|
2022-09-04 11:50:42 +02:00
|
|
|
super().__init__(inventory, templar, display, "create_group")
|
2022-09-03 10:40:46 +02:00
|
|
|
self._group_mbt = None
|
|
|
|
self._group_name = None
|
|
|
|
self._parent_mbt = None
|
|
|
|
self._parent_name = None
|
|
|
|
self._add_host = None
|
2022-09-02 18:00:22 +02:00
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def repr_instruction_only(self):
|
|
|
|
output = "%s(group=%s" % (self._action, repr(self._group_name))
|
|
|
|
if self._parent_name is not None:
|
|
|
|
output += ",parent=" + repr(self._parent_name)
|
|
|
|
output += ",add_host=" + repr(self._add_host) + ")"
|
|
|
|
return output
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
def parse_action(self, record):
|
2022-09-03 10:40:46 +02:00
|
|
|
assert self._group_mbt is None and self._group_name is None
|
|
|
|
assert self._parent_mbt is None and self._parent_name is None
|
|
|
|
assert self._add_host is None
|
|
|
|
self._add_host = record.get("add_host", False)
|
|
|
|
self._group_mbt, self._group_name = self.parse_group_name(record, "group")
|
|
|
|
if "parent" in record:
|
|
|
|
self._parent_mbt, self._parent_name = self.parse_group_name(
|
|
|
|
record, "parent"
|
|
|
|
)
|
2022-09-02 18:00:22 +02:00
|
|
|
|
2022-09-07 21:24:07 +02:00
|
|
|
def execute_action(self, host_name, variables):
|
2022-09-03 10:40:46 +02:00
|
|
|
assert not (
|
|
|
|
self._group_mbt is None
|
|
|
|
or self._group_name is None
|
|
|
|
or self._add_host is None
|
|
|
|
)
|
|
|
|
if self._parent_name is not None:
|
|
|
|
parent = self.get_templated_group(
|
2022-09-07 21:24:07 +02:00
|
|
|
variables, self._parent_mbt, self._parent_name, must_exist=True
|
2022-09-03 10:40:46 +02:00
|
|
|
)
|
2022-09-07 21:24:07 +02:00
|
|
|
name = self.get_templated_group(variables, self._group_mbt, self._group_name)
|
2022-09-02 18:00:22 +02:00
|
|
|
self._inventory.add_group(name)
|
2022-09-04 11:35:07 +02:00
|
|
|
self._display.vvv("- created group %s" % (name,))
|
2022-09-03 10:40:46 +02:00
|
|
|
if self._parent_name is not None:
|
|
|
|
self._inventory.add_child(parent, name)
|
2022-09-04 11:35:07 +02:00
|
|
|
self._display.vvv("- added group %s to %s" % (name, parent))
|
2022-09-03 10:40:46 +02:00
|
|
|
if self._add_host:
|
|
|
|
self._inventory.add_child(name, host_name)
|
2022-09-04 11:35:07 +02:00
|
|
|
self._display.vvv("- added host %s to %s" % (host_name, name))
|
2022-09-02 18:00:22 +02:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
class RciAddHost(RcInstruction):
|
2022-09-17 12:01:06 +02:00
|
|
|
"""``add_host`` instruction implementation."""
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def __init__(self, inventory, templar, display):
|
2022-09-04 11:50:42 +02:00
|
|
|
super().__init__(inventory, templar, display, "add_host")
|
2022-09-02 18:00:22 +02:00
|
|
|
self._may_be_template = None
|
|
|
|
self._group = None
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def repr_instruction_only(self):
|
|
|
|
return "%s(group=%s)" % (self._action, repr(self._group))
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
def parse_action(self, record):
|
|
|
|
assert self._may_be_template is None and self._group is None
|
|
|
|
self._may_be_template, self._group = self.parse_group_name(record, "group")
|
|
|
|
|
2022-09-07 21:24:07 +02:00
|
|
|
def execute_action(self, host_name, variables):
|
2022-09-02 18:00:22 +02:00
|
|
|
assert not (self._may_be_template is None or self._group is None)
|
|
|
|
name = self.get_templated_group(
|
2022-09-07 21:24:07 +02:00
|
|
|
variables, self._may_be_template, self._group, must_exist=True
|
2022-09-02 18:00:22 +02:00
|
|
|
)
|
|
|
|
self._inventory.add_child(name, host_name)
|
2022-09-04 11:35:07 +02:00
|
|
|
self._display.vvv("- added host %s to %s" % (host_name, name))
|
2022-09-02 18:00:22 +02:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
class RciAddChild(RcInstruction):
|
2022-09-17 12:01:06 +02:00
|
|
|
"""``add_child`` instruction implementation."""
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def __init__(self, inventory, templar, display):
|
2022-09-04 11:50:42 +02:00
|
|
|
super().__init__(inventory, templar, display, "add_child")
|
2022-09-02 18:00:22 +02:00
|
|
|
self._group_mbt = None
|
|
|
|
self._group_name = None
|
|
|
|
self._child_mbt = None
|
|
|
|
self._child_name = None
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def repr_instruction_only(self):
|
|
|
|
return "%s(group=%s, child=%s)" % (
|
|
|
|
self._action,
|
|
|
|
repr(self._group_name),
|
|
|
|
repr(self._child_name),
|
|
|
|
)
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
def parse_action(self, record):
|
|
|
|
assert self._group_mbt is None and self._group_name is None
|
|
|
|
assert self._child_mbt is None and self._child_name is None
|
|
|
|
self._group_mbt, self._group_name = self.parse_group_name(record, "group")
|
|
|
|
self._child_mbt, self._child_name = self.parse_group_name(record, "child")
|
|
|
|
|
2022-09-07 21:24:07 +02:00
|
|
|
def execute_action(self, host_name, variables):
|
2022-09-02 18:00:22 +02:00
|
|
|
assert not (self._group_mbt is None or self._group_name is None)
|
|
|
|
assert not (self._child_mbt is None or self._child_name is None)
|
|
|
|
group = self.get_templated_group(
|
2022-09-07 21:24:07 +02:00
|
|
|
variables, self._group_mbt, self._group_name, must_exist=True
|
2022-09-02 18:00:22 +02:00
|
|
|
)
|
|
|
|
child = self.get_templated_group(
|
2022-09-07 21:24:07 +02:00
|
|
|
variables, self._child_mbt, self._child_name, must_exist=True
|
2022-09-02 18:00:22 +02:00
|
|
|
)
|
|
|
|
self._inventory.add_child(group, child)
|
2022-09-04 11:35:07 +02:00
|
|
|
self._display.vvv("- added group %s to %s" % (child, group))
|
2022-09-02 18:00:22 +02:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
class RciSetVarOrFact(RcInstruction):
|
2022-09-17 12:01:06 +02:00
|
|
|
"""Implementation of the ``set_fact`` and ``set_var`` instructions."""
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def __init__(self, inventory, templar, display, is_fact):
|
2022-09-02 18:00:22 +02:00
|
|
|
action = "set_" + ("fact" if is_fact else "var")
|
2022-09-04 11:50:42 +02:00
|
|
|
super().__init__(inventory, templar, display, action)
|
2022-09-02 18:00:22 +02:00
|
|
|
self._is_fact = is_fact
|
|
|
|
self._var_name = None
|
|
|
|
self._name_may_be_template = None
|
|
|
|
self._var_value = None
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def repr_instruction_only(self):
|
|
|
|
return "%s(name=%s, value=%s)" % (
|
|
|
|
self._action,
|
|
|
|
repr(self._var_name),
|
|
|
|
repr(self._var_value),
|
|
|
|
)
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
def parse_action(self, record):
|
|
|
|
assert (
|
|
|
|
self._var_name is None
|
|
|
|
and self._name_may_be_template is None
|
|
|
|
and self._var_value is None
|
|
|
|
)
|
|
|
|
if "name" not in record:
|
|
|
|
raise AnsibleParserError("%s: missing 'name' field" % (self._action,))
|
|
|
|
name = record["name"]
|
|
|
|
if not isinstance(name, string_types):
|
|
|
|
raise AnsibleParserError("%s: 'name' must be a string" % (self._action,))
|
|
|
|
if "value" not in record:
|
|
|
|
raise AnsibleParserError("%s: missing 'value' field" % (self._action,))
|
|
|
|
nmbt = self._templar.is_possibly_template(name)
|
|
|
|
if not (nmbt or isidentifier(name)):
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: '%s' is not a valid variable name" % (self._action, name)
|
|
|
|
)
|
|
|
|
self._name_may_be_template = nmbt
|
|
|
|
self._var_name = name
|
|
|
|
self._var_value = record["value"]
|
|
|
|
|
2022-09-07 21:24:07 +02:00
|
|
|
def execute_action(self, host_name, variables):
|
2022-09-02 18:00:22 +02:00
|
|
|
assert not (
|
|
|
|
self._var_name is None
|
|
|
|
or self._name_may_be_template is None
|
|
|
|
or self._var_value is None
|
|
|
|
)
|
2022-09-07 21:24:07 +02:00
|
|
|
self._templar.available_variables = variables
|
2022-09-02 18:00:22 +02:00
|
|
|
if self._name_may_be_template:
|
|
|
|
name = self._templar.template(self._var_name)
|
|
|
|
if not isinstance(name, string_types):
|
|
|
|
raise AnsibleRuntimeError(
|
|
|
|
"%s: '%s' did not coalesce into a string"
|
|
|
|
% (self._action, self._var_name)
|
|
|
|
)
|
|
|
|
if not isidentifier(name):
|
|
|
|
raise AnsibleRuntimeError(
|
|
|
|
"%s: '%s' is not a valid variable name" % (self._action, name)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
name = self._var_name
|
|
|
|
value = self._templar.template(self._var_value)
|
|
|
|
if self._is_fact:
|
|
|
|
self._inventory.set_variable(host_name, name, value)
|
2022-09-07 21:24:07 +02:00
|
|
|
variables._set_host_var(name, value)
|
2022-09-02 18:00:22 +02:00
|
|
|
else:
|
2022-09-07 21:24:07 +02:00
|
|
|
variables[name] = value
|
2022-09-04 11:35:07 +02:00
|
|
|
self._display.vvv(
|
|
|
|
"- set %s %s to %s"
|
|
|
|
% ("fact" if self._is_fact else "var", name, repr(value))
|
|
|
|
)
|
2022-09-02 18:00:22 +02:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
class RciStop(RcInstruction):
|
2022-09-17 12:01:06 +02:00
|
|
|
"""``stop`` instruction implementation."""
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def __init__(self, inventory, templar, display):
|
|
|
|
super().__init__(inventory, templar, display, "stop")
|
2022-09-02 18:00:22 +02:00
|
|
|
|
|
|
|
def parse_action(self, record):
|
|
|
|
pass
|
|
|
|
|
2022-09-07 21:24:07 +02:00
|
|
|
def execute_action(self, host_name, variables):
|
2022-09-04 11:35:07 +02:00
|
|
|
self._display.vvv("- stopped execution")
|
2022-09-02 18:00:22 +02:00
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
class RciFail(RcInstruction):
|
2022-09-17 12:01:06 +02:00
|
|
|
"""``fail`` instruction implementation."""
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def __init__(self, inventory, templar, display):
|
2022-09-04 11:50:42 +02:00
|
|
|
super().__init__(inventory, templar, display, "fail")
|
2022-09-02 18:00:22 +02:00
|
|
|
self._message = None
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def repr_instruction_only(self):
|
|
|
|
if self._message is None:
|
|
|
|
return "%s()" % (self._action,)
|
|
|
|
else:
|
|
|
|
return "%s(%s)" % (self._action, self._message)
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
def parse_action(self, record):
|
|
|
|
self._message = record.get("msg", None)
|
|
|
|
|
2022-09-07 21:24:07 +02:00
|
|
|
def execute_action(self, host_name, variables):
|
2022-09-02 18:00:22 +02:00
|
|
|
if self._message is None:
|
|
|
|
message = "fail requested (%s)" % (host_name,)
|
|
|
|
else:
|
2022-09-07 21:24:07 +02:00
|
|
|
self._templar.available_variables = variables
|
2022-09-02 18:00:22 +02:00
|
|
|
message = self._templar.template(self._message)
|
2022-09-04 11:35:07 +02:00
|
|
|
self._display.vvv("- failed with message %s" % (message,))
|
2022-09-02 18:00:22 +02:00
|
|
|
raise AnsibleRuntimeError(message)
|
|
|
|
|
|
|
|
|
2022-09-02 20:26:36 +02:00
|
|
|
class RciBlock(RcInstruction):
|
2022-09-17 12:01:06 +02:00
|
|
|
"""``block`` instruction implementation."""
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def __init__(self, inventory, templar, display):
|
2022-09-04 11:50:42 +02:00
|
|
|
super().__init__(inventory, templar, display, "block")
|
2022-09-02 20:26:36 +02:00
|
|
|
self._block = None
|
|
|
|
self._rescue = None
|
|
|
|
self._always = None
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def repr_instruction_only(self):
|
2022-09-18 10:13:51 +02:00
|
|
|
return "%s(block=%s, rescue=%s, always=%s)" % (
|
2022-09-04 11:35:07 +02:00
|
|
|
self._action,
|
|
|
|
repr(self._block),
|
|
|
|
repr(self._rescue),
|
|
|
|
repr(self._always),
|
|
|
|
)
|
|
|
|
|
|
|
|
def dump_instruction(self):
|
|
|
|
output = ["%s(...):" % (self._action,)]
|
2022-09-17 12:01:06 +02:00
|
|
|
self.dump_section(output, "block", self._block)
|
|
|
|
self.dump_section(output, "rescue", self._rescue)
|
|
|
|
self.dump_section(output, "always", self._always)
|
2022-09-04 11:35:07 +02:00
|
|
|
return output
|
|
|
|
|
2022-09-17 12:01:06 +02:00
|
|
|
def dump_section(self, output, section_name, section_contents):
|
|
|
|
"""Dump one of the sections.
|
|
|
|
|
|
|
|
This method is used to create the dump that corresponds to one of the
|
|
|
|
``block``, ``rescue`` or ``always`` lists of instructions.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
output: a list of strings to append to
|
|
|
|
block_name: the name of the section being dumped
|
|
|
|
block_contents: the list of instructions in this section
|
|
|
|
"""
|
|
|
|
if not section_contents:
|
2022-09-04 11:35:07 +02:00
|
|
|
return
|
2022-09-17 12:01:06 +02:00
|
|
|
output.append(" " + section_name + ":")
|
|
|
|
for pos, instr in enumerate(section_contents):
|
2022-09-04 11:35:07 +02:00
|
|
|
if pos != 0:
|
|
|
|
output.append("")
|
|
|
|
output.extend(" " + s for s in instr.dump())
|
|
|
|
|
2022-09-02 20:26:36 +02:00
|
|
|
def parse_action(self, record):
|
|
|
|
assert (
|
|
|
|
self._block is None
|
|
|
|
and self._rescue is None
|
|
|
|
and self._always is None
|
|
|
|
)
|
|
|
|
if "block" not in record:
|
|
|
|
raise AnsibleParserError("%s: missing 'block' field" % (self._action,))
|
|
|
|
self._block = self.parse_block(record, "block")
|
|
|
|
if "rescue" in record:
|
|
|
|
self._rescue = self.parse_block(record, "rescue")
|
|
|
|
else:
|
|
|
|
self._rescue = []
|
|
|
|
if "always" in record:
|
|
|
|
self._always = self.parse_block(record, "always")
|
|
|
|
else:
|
|
|
|
self._always = []
|
|
|
|
|
|
|
|
def parse_block(self, record, key):
|
2022-09-17 12:01:06 +02:00
|
|
|
"""Parse the contents of one of the instruction lists.
|
|
|
|
|
|
|
|
This method will extract the instructions for one of the ``block``,
|
|
|
|
``rescue`` and ``always`` sections. The corresponding key must exist
|
|
|
|
in the YAML data when the method is called. It will ensure that it is
|
|
|
|
a list before reading the instructions it contains.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
record: the record of the ``block`` instruction
|
|
|
|
key: the section to read (``block``, ``rescue`` or ``always``)
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
the list of instructions in the section.
|
|
|
|
"""
|
2022-09-02 20:26:36 +02:00
|
|
|
if not isinstance(record[key], list):
|
|
|
|
raise AnsibleParserError(
|
|
|
|
"%s: '%s' field must contain a list of instructions"
|
|
|
|
% (self._action, key)
|
|
|
|
)
|
|
|
|
instructions = []
|
|
|
|
for record in record[key]:
|
|
|
|
instructions.append(
|
2022-09-04 11:35:07 +02:00
|
|
|
parse_instruction(self._inventory, self._templar, self._display, record)
|
2022-09-02 20:26:36 +02:00
|
|
|
)
|
|
|
|
return instructions
|
|
|
|
|
2022-09-07 21:24:07 +02:00
|
|
|
def execute_action(self, host_name, variables):
|
2022-09-02 20:26:36 +02:00
|
|
|
assert not (
|
|
|
|
self._block is None
|
|
|
|
or self._rescue is None
|
|
|
|
or self._always is None
|
|
|
|
)
|
|
|
|
try:
|
|
|
|
try:
|
2022-09-18 10:13:51 +02:00
|
|
|
self._display.vvv("- running 'block' instructions")
|
|
|
|
return self.run_section(self._block, host_name, variables)
|
|
|
|
except AnsibleError as e:
|
|
|
|
if not self._rescue:
|
|
|
|
self._display.vvv("- block failed")
|
|
|
|
raise
|
|
|
|
self._display.vvv("- block failed, running 'rescue' instructions")
|
|
|
|
variables["reconstructed_error"] = str(e)
|
|
|
|
return self.run_section(self._rescue, host_name, variables)
|
2022-09-02 20:26:36 +02:00
|
|
|
finally:
|
2022-09-18 10:13:51 +02:00
|
|
|
self._display.vvv("- block exited, running 'always' instructions")
|
|
|
|
self.run_section(self._always, host_name, variables)
|
2022-09-02 20:26:36 +02:00
|
|
|
|
2022-09-17 12:01:06 +02:00
|
|
|
def run_section(self, section, host_name, variables):
|
|
|
|
"""Execute a single section.
|
|
|
|
|
|
|
|
This method executes the sequence of instructions in a single section.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
section: the list of instructions
|
|
|
|
host_name: the name of the host being processed
|
|
|
|
variables: the variable storage area
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
``True`` if the script's execution should continue, ``False`` if it
|
|
|
|
should be interrupted
|
|
|
|
"""
|
|
|
|
for instruction in section:
|
2022-09-07 21:24:07 +02:00
|
|
|
if not instruction.run_for(host_name, variables):
|
2022-09-02 20:26:36 +02:00
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
INSTRUCTIONS = {
|
|
|
|
"add_child": RciAddChild,
|
|
|
|
"add_host": RciAddHost,
|
2022-09-02 20:26:36 +02:00
|
|
|
"block": RciBlock,
|
2022-09-02 18:00:22 +02:00
|
|
|
"create_group": RciCreateGroup,
|
|
|
|
"fail": RciFail,
|
2022-09-04 11:35:07 +02:00
|
|
|
"set_fact": lambda i, t, d: RciSetVarOrFact(i, t, d, True),
|
|
|
|
"set_var": lambda i, t, d: RciSetVarOrFact(i, t, d, False),
|
2022-09-02 18:00:22 +02:00
|
|
|
"stop": RciStop,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-04 11:35:07 +02:00
|
|
|
def parse_instruction(inventory, templar, display, record):
|
2022-09-02 20:26:36 +02:00
|
|
|
action = record["action"]
|
|
|
|
if action not in INSTRUCTIONS:
|
|
|
|
raise AnsibleParserError("Unknown action '%s'" % (action,))
|
2022-09-04 11:35:07 +02:00
|
|
|
instruction = INSTRUCTIONS[action](inventory, templar, display)
|
2022-09-02 20:26:36 +02:00
|
|
|
instruction.parse(record)
|
|
|
|
return instruction
|
|
|
|
|
|
|
|
|
2022-09-02 18:00:22 +02:00
|
|
|
class InventoryModule(BaseInventoryPlugin):
|
|
|
|
"""Constructs groups based on lists of instructions."""
|
|
|
|
|
|
|
|
NAME = "reconstructed"
|
|
|
|
|
|
|
|
def verify_file(self, path):
|
|
|
|
return super().verify_file(path) and path.endswith((".yaml", ".yml"))
|
|
|
|
|
|
|
|
def parse(self, inventory, loader, path, cache=True):
|
|
|
|
super().parse(inventory, loader, path, cache)
|
|
|
|
self._read_config_data(path)
|
2022-09-17 12:01:06 +02:00
|
|
|
# Read the program
|
2022-09-02 18:00:22 +02:00
|
|
|
instr_src = self.get_option("instructions")
|
|
|
|
instructions = []
|
|
|
|
for record in instr_src:
|
2022-09-04 11:35:07 +02:00
|
|
|
instructions.append(
|
|
|
|
parse_instruction(self.inventory, self.templar, self.display, record)
|
|
|
|
)
|
|
|
|
self.dump_program(instructions)
|
2022-09-17 12:01:06 +02:00
|
|
|
# Execute it for each host
|
2022-09-02 18:00:22 +02:00
|
|
|
for host in inventory.hosts:
|
2022-09-04 11:35:07 +02:00
|
|
|
self.display.vvv("executing reconstructed script for %s" % (host,))
|
2022-09-02 18:00:22 +02:00
|
|
|
try:
|
|
|
|
self.exec_for_host(host, instructions)
|
|
|
|
except AnsibleError as e:
|
|
|
|
if self.get_option("strictness") == "full":
|
|
|
|
raise
|
|
|
|
self.display.warning(
|
|
|
|
"reconstructed - error on host %s: %s" % (host, repr(e))
|
|
|
|
)
|
|
|
|
|
|
|
|
def exec_for_host(self, host, instructions):
|
2022-09-17 12:01:06 +02:00
|
|
|
"""Execute the program for a single host.
|
|
|
|
|
|
|
|
This method initialises a variable storage instance from the host's
|
|
|
|
variables then runs the instructions.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
host: the name of the host to execute for
|
|
|
|
instructions: the list of instructions to execute
|
|
|
|
"""
|
2022-09-02 18:00:22 +02:00
|
|
|
host_vars = self.inventory.get_host(host).get_vars()
|
2022-09-07 21:24:07 +02:00
|
|
|
variables = VariableStorage(host_vars)
|
2022-09-02 18:00:22 +02:00
|
|
|
for instruction in instructions:
|
2022-09-07 21:24:07 +02:00
|
|
|
if not instruction.run_for(host, variables):
|
2022-09-02 18:00:22 +02:00
|
|
|
return
|
2022-09-04 11:35:07 +02:00
|
|
|
|
|
|
|
def dump_program(self, instructions):
|
2022-09-17 12:01:06 +02:00
|
|
|
"""Dump the whole program to the log, depending on verbosity level.
|
|
|
|
|
|
|
|
This method will dump the program to the log. If verbosity is at level
|
|
|
|
3, the dump will be written using `repr`. If it is 4 or higher, it will
|
|
|
|
be dumped in a much more readable, albeit longer, form.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
instructions: the list of instructions in the program
|
|
|
|
"""
|
2022-09-04 11:35:07 +02:00
|
|
|
if self.display.verbosity < 4:
|
|
|
|
if self.display.verbosity == 3:
|
|
|
|
self.display.vvv("parsed program: " + repr(instructions))
|
|
|
|
return
|
|
|
|
output = []
|
|
|
|
for pos, instr in enumerate(instructions):
|
|
|
|
if pos:
|
|
|
|
output.append("")
|
|
|
|
output.extend(instr.dump())
|
|
|
|
self.display.vvvv("parsed program:\n\n" + "\n".join(" " + s for s in output))
|