mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
de5eae2007
Fixes #10430 Also removed redundant resolution of sudo/su for backwards compatibility which confused the conflict detection code.
940 lines
41 KiB
Python
940 lines
41 KiB
Python
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com>
|
|
#
|
|
# 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/>.
|
|
|
|
#############################################
|
|
|
|
from ansible.utils.template import template
|
|
from ansible import utils
|
|
from ansible import errors
|
|
from ansible.playbook.task import Task
|
|
from ansible.module_utils.splitter import split_args, unquote
|
|
import ansible.constants as C
|
|
import pipes
|
|
import shlex
|
|
import os
|
|
import sys
|
|
import uuid
|
|
|
|
|
|
class Play(object):
|
|
|
|
_pb_common = [
|
|
'accelerate', 'accelerate_ipv6', 'accelerate_port', 'any_errors_fatal', 'become',
|
|
'become_method', 'become_user', 'environment', 'gather_facts', 'handlers', 'hosts',
|
|
'name', 'no_log', 'remote_user', 'roles', 'serial', 'su', 'su_user', 'sudo',
|
|
'sudo_user', 'tags', 'vars', 'vars_files', 'vars_prompt', 'vault_password',
|
|
]
|
|
|
|
__slots__ = _pb_common + [
|
|
'_ds', '_handlers', '_play_hosts', '_tasks', 'any_errors_fatal', 'basedir',
|
|
'default_vars', 'included_roles', 'max_fail_pct', 'playbook', 'remote_port',
|
|
'role_vars', 'transport', 'vars_file_vars',
|
|
]
|
|
|
|
# to catch typos and so forth -- these are userland names
|
|
# and don't line up 1:1 with how they are stored
|
|
VALID_KEYS = frozenset(_pb_common + [
|
|
'connection', 'include', 'max_fail_percentage', 'port', 'post_tasks',
|
|
'pre_tasks', 'role_names', 'tasks', 'user',
|
|
])
|
|
|
|
# *************************************************
|
|
|
|
def __init__(self, playbook, ds, basedir, vault_password=None):
|
|
''' constructor loads from a play datastructure '''
|
|
|
|
for x in ds.keys():
|
|
if not x in Play.VALID_KEYS:
|
|
raise errors.AnsibleError("%s is not a legal parameter of an Ansible Play" % x)
|
|
|
|
# allow all playbook keys to be set by --extra-vars
|
|
self.vars = ds.get('vars', {})
|
|
self.vars_prompt = ds.get('vars_prompt', {})
|
|
self.playbook = playbook
|
|
self.vars = self._get_vars()
|
|
self.vars_file_vars = dict() # these are vars read in from vars_files:
|
|
self.role_vars = dict() # these are vars read in from vars/main.yml files in roles
|
|
self.basedir = basedir
|
|
self.roles = ds.get('roles', None)
|
|
self.tags = ds.get('tags', None)
|
|
self.vault_password = vault_password
|
|
self.environment = ds.get('environment', {})
|
|
|
|
if self.tags is None:
|
|
self.tags = []
|
|
elif type(self.tags) in [ str, unicode ]:
|
|
self.tags = self.tags.split(",")
|
|
elif type(self.tags) != list:
|
|
self.tags = []
|
|
|
|
# make sure we have some special internal variables set, which
|
|
# we use later when loading tasks and handlers
|
|
load_vars = dict()
|
|
load_vars['playbook_dir'] = os.path.abspath(self.basedir)
|
|
if self.playbook.inventory.basedir() is not None:
|
|
load_vars['inventory_dir'] = self.playbook.inventory.basedir()
|
|
if self.playbook.inventory.src() is not None:
|
|
load_vars['inventory_file'] = self.playbook.inventory.src()
|
|
|
|
# We first load the vars files from the datastructure
|
|
# so we have the default variables to pass into the roles
|
|
self.vars_files = ds.get('vars_files', [])
|
|
if not isinstance(self.vars_files, list):
|
|
raise errors.AnsibleError('vars_files must be a list')
|
|
processed_vars_files = self._update_vars_files_for_host(None)
|
|
|
|
# now we load the roles into the datastructure
|
|
self.included_roles = []
|
|
ds = self._load_roles(self.roles, ds)
|
|
|
|
# and finally re-process the vars files as they may have been updated
|
|
# by the included roles, but exclude any which have been processed
|
|
self.vars_files = utils.list_difference(ds.get('vars_files', []), processed_vars_files)
|
|
if not isinstance(self.vars_files, list):
|
|
raise errors.AnsibleError('vars_files must be a list')
|
|
|
|
self._update_vars_files_for_host(None)
|
|
|
|
# template everything to be efficient, but do not pre-mature template
|
|
# tasks/handlers as they may have inventory scope overrides. We also
|
|
# create a set of temporary variables for templating, so we don't
|
|
# trample on the existing vars structures
|
|
_tasks = ds.pop('tasks', [])
|
|
_handlers = ds.pop('handlers', [])
|
|
|
|
temp_vars = utils.merge_hash(self.vars, self.vars_file_vars)
|
|
temp_vars = utils.merge_hash(temp_vars, self.playbook.extra_vars)
|
|
|
|
ds = template(basedir, ds, temp_vars)
|
|
ds['tasks'] = _tasks
|
|
ds['handlers'] = _handlers
|
|
|
|
self._ds = ds
|
|
|
|
hosts = ds.get('hosts')
|
|
if hosts is None:
|
|
raise errors.AnsibleError('hosts declaration is required')
|
|
elif isinstance(hosts, list):
|
|
try:
|
|
hosts = ';'.join(hosts)
|
|
except TypeError,e:
|
|
raise errors.AnsibleError('improper host declaration: %s' % str(e))
|
|
|
|
self.serial = str(ds.get('serial', 0))
|
|
self.hosts = hosts
|
|
self.name = ds.get('name', self.hosts)
|
|
self._tasks = ds.get('tasks', [])
|
|
self._handlers = ds.get('handlers', [])
|
|
self.remote_user = ds.get('remote_user', ds.get('user', self.playbook.remote_user))
|
|
self.remote_port = ds.get('port', self.playbook.remote_port)
|
|
self.transport = ds.get('connection', self.playbook.transport)
|
|
self.remote_port = self.remote_port
|
|
self.any_errors_fatal = utils.boolean(ds.get('any_errors_fatal', 'false'))
|
|
self.accelerate = utils.boolean(ds.get('accelerate', 'false'))
|
|
self.accelerate_port = ds.get('accelerate_port', None)
|
|
self.accelerate_ipv6 = ds.get('accelerate_ipv6', False)
|
|
self.max_fail_pct = int(ds.get('max_fail_percentage', 100))
|
|
self.no_log = utils.boolean(ds.get('no_log', 'false'))
|
|
|
|
# Fail out if user specifies conflicting privelege escalations
|
|
if (ds.get('become') or ds.get('become_user')) and (ds.get('sudo') or ds.get('sudo_user')):
|
|
raise errors.AnsibleError('sudo params ("become", "become_user") and su params ("sudo", "sudo_user") cannot be used together')
|
|
if (ds.get('become') or ds.get('become_user')) and (ds.get('su') or ds.get('su_user')):
|
|
raise errors.AnsibleError('sudo params ("become", "become_user") and su params ("su", "su_user") cannot be used together')
|
|
if (ds.get('sudo') or ds.get('sudo_user')) and (ds.get('su') or ds.get('su_user')):
|
|
raise errors.AnsibleError('sudo params ("sudo", "sudo_user") and su params ("su", "su_user") cannot be used together')
|
|
|
|
# become settings are inherited and updated normally
|
|
self.become = ds.get('become', self.playbook.become)
|
|
self.become_method = ds.get('become_method', self.playbook.become_method)
|
|
self.become_user = ds.get('become_user', self.playbook.become_user)
|
|
|
|
# Make sure current play settings are reflected in become fields
|
|
if 'sudo' in ds:
|
|
self.become=ds['sudo']
|
|
self.become_method='sudo'
|
|
if 'sudo_user' in ds:
|
|
self.become_user=ds['sudo_user']
|
|
elif 'su' in ds:
|
|
self.become=True
|
|
self.become=ds['su']
|
|
if 'su_user' in ds:
|
|
self.become_user=ds['su_user']
|
|
|
|
# gather_facts is not a simple boolean, as None means that a 'smart'
|
|
# fact gathering mode will be used, so we need to be careful here as
|
|
# calling utils.boolean(None) returns False
|
|
self.gather_facts = ds.get('gather_facts', None)
|
|
if self.gather_facts is not None:
|
|
self.gather_facts = utils.boolean(self.gather_facts)
|
|
|
|
load_vars['role_names'] = ds.get('role_names', [])
|
|
|
|
self._tasks = self._load_tasks(self._ds.get('tasks', []), load_vars)
|
|
self._handlers = self._load_tasks(self._ds.get('handlers', []), load_vars)
|
|
|
|
# apply any missing tags to role tasks
|
|
self._late_merge_role_tags()
|
|
|
|
# place holder for the discovered hosts to be used in this play
|
|
self._play_hosts = None
|
|
|
|
# *************************************************
|
|
|
|
def _get_role_path(self, role):
|
|
"""
|
|
Returns the path on disk to the directory containing
|
|
the role directories like tasks, templates, etc. Also
|
|
returns any variables that were included with the role
|
|
"""
|
|
orig_path = template(self.basedir,role,self.vars)
|
|
|
|
role_vars = {}
|
|
if type(orig_path) == dict:
|
|
# what, not a path?
|
|
role_name = orig_path.get('role', None)
|
|
if role_name is None:
|
|
raise errors.AnsibleError("expected a role name in dictionary: %s" % orig_path)
|
|
role_vars = orig_path
|
|
else:
|
|
role_name = utils.role_spec_parse(orig_path)["name"]
|
|
|
|
role_path = None
|
|
|
|
possible_paths = [
|
|
utils.path_dwim(self.basedir, os.path.join('roles', role_name)),
|
|
utils.path_dwim(self.basedir, role_name)
|
|
]
|
|
|
|
if C.DEFAULT_ROLES_PATH:
|
|
search_locations = C.DEFAULT_ROLES_PATH.split(os.pathsep)
|
|
for loc in search_locations:
|
|
loc = os.path.expanduser(loc)
|
|
possible_paths.append(utils.path_dwim(loc, role_name))
|
|
|
|
for path_option in possible_paths:
|
|
if os.path.isdir(path_option):
|
|
role_path = path_option
|
|
break
|
|
|
|
if role_path is None:
|
|
raise errors.AnsibleError("cannot find role in %s" % " or ".join(possible_paths))
|
|
|
|
return (role_path, role_vars)
|
|
|
|
def _build_role_dependencies(self, roles, dep_stack, passed_vars={}, level=0):
|
|
# this number is arbitrary, but it seems sane
|
|
if level > 20:
|
|
raise errors.AnsibleError("too many levels of recursion while resolving role dependencies")
|
|
for role in roles:
|
|
role_path,role_vars = self._get_role_path(role)
|
|
|
|
# save just the role params for this role, which exclude the special
|
|
# keywords 'role', 'tags', and 'when'.
|
|
role_params = role_vars.copy()
|
|
for item in ('role', 'tags', 'when'):
|
|
if item in role_params:
|
|
del role_params[item]
|
|
|
|
role_vars = utils.combine_vars(passed_vars, role_vars)
|
|
|
|
vars = self._resolve_main(utils.path_dwim(self.basedir, os.path.join(role_path, 'vars')))
|
|
vars_data = {}
|
|
if os.path.isfile(vars):
|
|
vars_data = utils.parse_yaml_from_file(vars, vault_password=self.vault_password)
|
|
if vars_data:
|
|
if not isinstance(vars_data, dict):
|
|
raise errors.AnsibleError("vars from '%s' are not a dict" % vars)
|
|
role_vars = utils.combine_vars(vars_data, role_vars)
|
|
|
|
defaults = self._resolve_main(utils.path_dwim(self.basedir, os.path.join(role_path, 'defaults')))
|
|
defaults_data = {}
|
|
if os.path.isfile(defaults):
|
|
defaults_data = utils.parse_yaml_from_file(defaults, vault_password=self.vault_password)
|
|
|
|
# the meta directory contains the yaml that should
|
|
# hold the list of dependencies (if any)
|
|
meta = self._resolve_main(utils.path_dwim(self.basedir, os.path.join(role_path, 'meta')))
|
|
if os.path.isfile(meta):
|
|
data = utils.parse_yaml_from_file(meta, vault_password=self.vault_password)
|
|
if data:
|
|
dependencies = data.get('dependencies',[])
|
|
if dependencies is None:
|
|
dependencies = []
|
|
for dep in dependencies:
|
|
allow_dupes = False
|
|
(dep_path,dep_vars) = self._get_role_path(dep)
|
|
|
|
# save the dep params, just as we did above
|
|
dep_params = dep_vars.copy()
|
|
for item in ('role', 'tags', 'when'):
|
|
if item in dep_params:
|
|
del dep_params[item]
|
|
|
|
meta = self._resolve_main(utils.path_dwim(self.basedir, os.path.join(dep_path, 'meta')))
|
|
if os.path.isfile(meta):
|
|
meta_data = utils.parse_yaml_from_file(meta, vault_password=self.vault_password)
|
|
if meta_data:
|
|
allow_dupes = utils.boolean(meta_data.get('allow_duplicates',''))
|
|
|
|
# if any tags were specified as role/dep variables, merge
|
|
# them into the current dep_vars so they're passed on to any
|
|
# further dependencies too, and so we only have one place
|
|
# (dep_vars) to look for tags going forward
|
|
def __merge_tags(var_obj):
|
|
old_tags = dep_vars.get('tags', [])
|
|
if isinstance(old_tags, basestring):
|
|
old_tags = [old_tags, ]
|
|
if isinstance(var_obj, dict):
|
|
new_tags = var_obj.get('tags', [])
|
|
if isinstance(new_tags, basestring):
|
|
new_tags = [new_tags, ]
|
|
else:
|
|
new_tags = []
|
|
return list(set(old_tags).union(set(new_tags)))
|
|
|
|
dep_vars['tags'] = __merge_tags(role_vars)
|
|
dep_vars['tags'] = __merge_tags(passed_vars)
|
|
|
|
# if tags are set from this role, merge them
|
|
# into the tags list for the dependent role
|
|
if "tags" in passed_vars:
|
|
for included_role_dep in dep_stack:
|
|
included_dep_name = included_role_dep[0]
|
|
included_dep_vars = included_role_dep[2]
|
|
if included_dep_name == dep:
|
|
if "tags" in included_dep_vars:
|
|
included_dep_vars["tags"] = list(set(included_dep_vars["tags"]).union(set(passed_vars["tags"])))
|
|
else:
|
|
included_dep_vars["tags"] = passed_vars["tags"][:]
|
|
|
|
dep_vars = utils.combine_vars(passed_vars, dep_vars)
|
|
dep_vars = utils.combine_vars(role_vars, dep_vars)
|
|
|
|
vars = self._resolve_main(utils.path_dwim(self.basedir, os.path.join(dep_path, 'vars')))
|
|
vars_data = {}
|
|
if os.path.isfile(vars):
|
|
vars_data = utils.parse_yaml_from_file(vars, vault_password=self.vault_password)
|
|
if vars_data:
|
|
dep_vars = utils.combine_vars(dep_vars, vars_data)
|
|
pass
|
|
|
|
defaults = self._resolve_main(utils.path_dwim(self.basedir, os.path.join(dep_path, 'defaults')))
|
|
dep_defaults_data = {}
|
|
if os.path.isfile(defaults):
|
|
dep_defaults_data = utils.parse_yaml_from_file(defaults, vault_password=self.vault_password)
|
|
if 'role' in dep_vars:
|
|
del dep_vars['role']
|
|
|
|
if not allow_dupes:
|
|
if dep in self.included_roles:
|
|
# skip back to the top, since we don't want to
|
|
# do anything else with this role
|
|
continue
|
|
else:
|
|
self.included_roles.append(dep)
|
|
|
|
def _merge_conditional(cur_conditionals, new_conditionals):
|
|
if isinstance(new_conditionals, (basestring, bool)):
|
|
cur_conditionals.append(new_conditionals)
|
|
elif isinstance(new_conditionals, list):
|
|
cur_conditionals.extend(new_conditionals)
|
|
|
|
# pass along conditionals from roles to dep roles
|
|
passed_when = passed_vars.get('when')
|
|
role_when = role_vars.get('when')
|
|
dep_when = dep_vars.get('when')
|
|
|
|
tmpcond = []
|
|
_merge_conditional(tmpcond, passed_when)
|
|
_merge_conditional(tmpcond, role_when)
|
|
_merge_conditional(tmpcond, dep_when)
|
|
|
|
if len(tmpcond) > 0:
|
|
dep_vars['when'] = tmpcond
|
|
|
|
self._build_role_dependencies([dep], dep_stack, passed_vars=dep_vars, level=level+1)
|
|
dep_stack.append([dep, dep_path, dep_vars, dep_params, dep_defaults_data])
|
|
|
|
# only add the current role when we're at the top level,
|
|
# otherwise we'll end up in a recursive loop
|
|
if level == 0:
|
|
self.included_roles.append(role)
|
|
dep_stack.append([role, role_path, role_vars, role_params, defaults_data])
|
|
return dep_stack
|
|
|
|
def _load_role_vars_files(self, vars_files):
|
|
# process variables stored in vars/main.yml files
|
|
role_vars = {}
|
|
for filename in vars_files:
|
|
if os.path.exists(filename):
|
|
new_vars = utils.parse_yaml_from_file(filename, vault_password=self.vault_password)
|
|
if new_vars:
|
|
if type(new_vars) != dict:
|
|
raise errors.AnsibleError("%s must be stored as dictionary/hash: %s" % (filename, type(new_vars)))
|
|
role_vars = utils.combine_vars(role_vars, new_vars)
|
|
|
|
return role_vars
|
|
|
|
def _load_role_defaults(self, defaults_files):
|
|
# process default variables
|
|
default_vars = {}
|
|
for filename in defaults_files:
|
|
if os.path.exists(filename):
|
|
new_default_vars = utils.parse_yaml_from_file(filename, vault_password=self.vault_password)
|
|
if new_default_vars:
|
|
if type(new_default_vars) != dict:
|
|
raise errors.AnsibleError("%s must be stored as dictionary/hash: %s" % (filename, type(new_default_vars)))
|
|
default_vars = utils.combine_vars(default_vars, new_default_vars)
|
|
|
|
return default_vars
|
|
|
|
def _load_roles(self, roles, ds):
|
|
# a role is a name that auto-includes the following if they exist
|
|
# <rolename>/tasks/main.yml
|
|
# <rolename>/handlers/main.yml
|
|
# <rolename>/vars/main.yml
|
|
# <rolename>/library
|
|
# and it auto-extends tasks/handlers/vars_files/module paths as appropriate if found
|
|
|
|
if roles is None:
|
|
roles = []
|
|
if type(roles) != list:
|
|
raise errors.AnsibleError("value of 'roles:' must be a list")
|
|
|
|
new_tasks = []
|
|
new_handlers = []
|
|
role_vars_files = []
|
|
defaults_files = []
|
|
|
|
pre_tasks = ds.get('pre_tasks', None)
|
|
if type(pre_tasks) != list:
|
|
pre_tasks = []
|
|
for x in pre_tasks:
|
|
new_tasks.append(x)
|
|
|
|
# flush handlers after pre_tasks
|
|
new_tasks.append(dict(meta='flush_handlers'))
|
|
|
|
roles = self._build_role_dependencies(roles, [], {})
|
|
|
|
# give each role an uuid and
|
|
# make role_path available as variable to the task
|
|
for idx, val in enumerate(roles):
|
|
this_uuid = str(uuid.uuid4())
|
|
roles[idx][-3]['role_uuid'] = this_uuid
|
|
roles[idx][-3]['role_path'] = roles[idx][1]
|
|
|
|
role_names = []
|
|
|
|
for (role, role_path, role_vars, role_params, default_vars) in roles:
|
|
# special vars must be extracted from the dict to the included tasks
|
|
special_keys = [ "sudo", "sudo_user", "when", "with_items", "su", "su_user", "become", "become_user" ]
|
|
special_vars = {}
|
|
for k in special_keys:
|
|
if k in role_vars:
|
|
special_vars[k] = role_vars[k]
|
|
|
|
task_basepath = utils.path_dwim(self.basedir, os.path.join(role_path, 'tasks'))
|
|
handler_basepath = utils.path_dwim(self.basedir, os.path.join(role_path, 'handlers'))
|
|
vars_basepath = utils.path_dwim(self.basedir, os.path.join(role_path, 'vars'))
|
|
meta_basepath = utils.path_dwim(self.basedir, os.path.join(role_path, 'meta'))
|
|
defaults_basepath = utils.path_dwim(self.basedir, os.path.join(role_path, 'defaults'))
|
|
|
|
task = self._resolve_main(task_basepath)
|
|
handler = self._resolve_main(handler_basepath)
|
|
vars_file = self._resolve_main(vars_basepath)
|
|
meta_file = self._resolve_main(meta_basepath)
|
|
defaults_file = self._resolve_main(defaults_basepath)
|
|
|
|
library = utils.path_dwim(self.basedir, os.path.join(role_path, 'library'))
|
|
|
|
missing = lambda f: not os.path.isfile(f)
|
|
if missing(task) and missing(handler) and missing(vars_file) and missing(defaults_file) and missing(meta_file) and not os.path.isdir(library):
|
|
raise errors.AnsibleError("found role at %s, but cannot find %s or %s or %s or %s or %s or %s" % (role_path, task, handler, vars_file, defaults_file, meta_file, library))
|
|
|
|
if isinstance(role, dict):
|
|
role_name = role['role']
|
|
else:
|
|
role_name = utils.role_spec_parse(role)["name"]
|
|
|
|
role_names.append(role_name)
|
|
if os.path.isfile(task):
|
|
nt = dict(include=pipes.quote(task), vars=role_vars, role_params=role_params, default_vars=default_vars, role_name=role_name)
|
|
for k in special_keys:
|
|
if k in special_vars:
|
|
nt[k] = special_vars[k]
|
|
new_tasks.append(nt)
|
|
if os.path.isfile(handler):
|
|
nt = dict(include=pipes.quote(handler), vars=role_vars, role_params=role_params, role_name=role_name)
|
|
for k in special_keys:
|
|
if k in special_vars:
|
|
nt[k] = special_vars[k]
|
|
new_handlers.append(nt)
|
|
if os.path.isfile(vars_file):
|
|
role_vars_files.append(vars_file)
|
|
if os.path.isfile(defaults_file):
|
|
defaults_files.append(defaults_file)
|
|
if os.path.isdir(library):
|
|
utils.plugins.module_finder.add_directory(library)
|
|
|
|
tasks = ds.get('tasks', None)
|
|
post_tasks = ds.get('post_tasks', None)
|
|
handlers = ds.get('handlers', None)
|
|
vars_files = ds.get('vars_files', None)
|
|
|
|
if type(tasks) != list:
|
|
tasks = []
|
|
if type(handlers) != list:
|
|
handlers = []
|
|
if type(vars_files) != list:
|
|
vars_files = []
|
|
if type(post_tasks) != list:
|
|
post_tasks = []
|
|
|
|
new_tasks.extend(tasks)
|
|
# flush handlers after tasks + role tasks
|
|
new_tasks.append(dict(meta='flush_handlers'))
|
|
new_tasks.extend(post_tasks)
|
|
# flush handlers after post tasks
|
|
new_tasks.append(dict(meta='flush_handlers'))
|
|
|
|
new_handlers.extend(handlers)
|
|
|
|
ds['tasks'] = new_tasks
|
|
ds['handlers'] = new_handlers
|
|
ds['role_names'] = role_names
|
|
|
|
self.role_vars = self._load_role_vars_files(role_vars_files)
|
|
self.default_vars = self._load_role_defaults(defaults_files)
|
|
|
|
return ds
|
|
|
|
# *************************************************
|
|
|
|
def _resolve_main(self, basepath):
|
|
''' flexibly handle variations in main filenames '''
|
|
# these filenames are acceptable:
|
|
mains = (
|
|
os.path.join(basepath, 'main'),
|
|
os.path.join(basepath, 'main.yml'),
|
|
os.path.join(basepath, 'main.yaml'),
|
|
os.path.join(basepath, 'main.json'),
|
|
)
|
|
if sum([os.path.isfile(x) for x in mains]) > 1:
|
|
raise errors.AnsibleError("found multiple main files at %s, only one allowed" % (basepath))
|
|
else:
|
|
for m in mains:
|
|
if os.path.isfile(m):
|
|
return m # exactly one main file
|
|
return mains[0] # zero mains (we still need to return something)
|
|
|
|
# *************************************************
|
|
|
|
def _load_tasks(self, tasks, vars=None, role_params=None, default_vars=None, become_vars=None,
|
|
additional_conditions=None, original_file=None, role_name=None):
|
|
''' handle task and handler include statements '''
|
|
|
|
results = []
|
|
if tasks is None:
|
|
# support empty handler files, and the like.
|
|
tasks = []
|
|
if additional_conditions is None:
|
|
additional_conditions = []
|
|
if vars is None:
|
|
vars = {}
|
|
if role_params is None:
|
|
role_params = {}
|
|
if default_vars is None:
|
|
default_vars = {}
|
|
if become_vars is None:
|
|
become_vars = {}
|
|
|
|
old_conditions = list(additional_conditions)
|
|
|
|
for x in tasks:
|
|
|
|
# prevent assigning the same conditions to each task on an include
|
|
included_additional_conditions = list(old_conditions)
|
|
|
|
if not isinstance(x, dict):
|
|
raise errors.AnsibleError("expecting dict; got: %s, error in %s" % (x, original_file))
|
|
|
|
# evaluate privilege escalation vars for current and child tasks
|
|
included_become_vars = {}
|
|
for k in ["become", "become_user", "become_method", "become_exe"]:
|
|
if k in x:
|
|
included_become_vars[k] = x[k]
|
|
elif k in become_vars:
|
|
included_become_vars[k] = become_vars[k]
|
|
x[k] = become_vars[k]
|
|
|
|
if 'meta' in x:
|
|
if x['meta'] == 'flush_handlers':
|
|
results.append(Task(self, x))
|
|
continue
|
|
|
|
task_vars = vars.copy()
|
|
if original_file:
|
|
task_vars['_original_file'] = original_file
|
|
|
|
if 'include' in x:
|
|
tokens = split_args(str(x['include']))
|
|
included_additional_conditions = list(additional_conditions)
|
|
include_vars = {}
|
|
for k in x:
|
|
if k.startswith("with_"):
|
|
if original_file:
|
|
offender = " (in %s)" % original_file
|
|
else:
|
|
offender = ""
|
|
utils.deprecated("include + with_items is a removed deprecated feature" + offender, "1.5", removed=True)
|
|
elif k.startswith("when_"):
|
|
utils.deprecated("\"when_<criteria>:\" is a removed deprecated feature, use the simplified 'when:' conditional directly", None, removed=True)
|
|
elif k == 'when':
|
|
if isinstance(x[k], (basestring, bool)):
|
|
included_additional_conditions.append(x[k])
|
|
elif type(x[k]) is list:
|
|
included_additional_conditions.extend(x[k])
|
|
elif k in ("include", "vars", "role_params", "default_vars", "sudo", "sudo_user", "role_name", "no_log", "become", "become_user", "su", "su_user"):
|
|
continue
|
|
else:
|
|
include_vars[k] = x[k]
|
|
|
|
# get any role parameters specified
|
|
role_params = x.get('role_params', {})
|
|
|
|
# get any role default variables specified
|
|
default_vars = x.get('default_vars', {})
|
|
if not default_vars:
|
|
default_vars = self.default_vars
|
|
else:
|
|
default_vars = utils.combine_vars(self.default_vars, default_vars)
|
|
|
|
# append the vars defined with the include (from above)
|
|
# as well as the old-style 'vars' element. The old-style
|
|
# vars are given higher precedence here (just in case)
|
|
task_vars = utils.combine_vars(task_vars, include_vars)
|
|
if 'vars' in x:
|
|
task_vars = utils.combine_vars(task_vars, x['vars'])
|
|
|
|
new_role = None
|
|
if 'role_name' in x:
|
|
new_role = x['role_name']
|
|
|
|
mv = task_vars.copy()
|
|
for t in tokens[1:]:
|
|
(k,v) = t.split("=", 1)
|
|
v = unquote(v)
|
|
mv[k] = template(self.basedir, v, mv)
|
|
dirname = self.basedir
|
|
if original_file:
|
|
dirname = os.path.dirname(original_file)
|
|
|
|
# temp vars are used here to avoid trampling on the existing vars structures
|
|
temp_vars = utils.merge_hash(self.vars, self.vars_file_vars)
|
|
temp_vars = utils.merge_hash(temp_vars, mv)
|
|
temp_vars = utils.merge_hash(temp_vars, self.playbook.extra_vars)
|
|
include_file = template(dirname, tokens[0], temp_vars)
|
|
include_filename = utils.path_dwim(dirname, include_file)
|
|
|
|
data = utils.parse_yaml_from_file(include_filename, vault_password=self.vault_password)
|
|
if 'role_name' in x and data is not None:
|
|
for y in data:
|
|
if isinstance(y, dict) and 'include' in y:
|
|
y['role_name'] = new_role
|
|
loaded = self._load_tasks(data, mv, role_params, default_vars, included_become_vars, list(included_additional_conditions), original_file=include_filename, role_name=new_role)
|
|
results += loaded
|
|
elif type(x) == dict:
|
|
task = Task(
|
|
self, x,
|
|
module_vars=task_vars,
|
|
play_vars=self.vars,
|
|
play_file_vars=self.vars_file_vars,
|
|
role_vars=self.role_vars,
|
|
role_params=role_params,
|
|
default_vars=default_vars,
|
|
additional_conditions=list(additional_conditions),
|
|
role_name=role_name
|
|
)
|
|
results.append(task)
|
|
else:
|
|
raise Exception("unexpected task type")
|
|
|
|
for x in results:
|
|
if self.tags is not None:
|
|
x.tags.extend(self.tags)
|
|
|
|
return results
|
|
|
|
# *************************************************
|
|
|
|
def tasks(self):
|
|
''' return task objects for this play '''
|
|
return self._tasks
|
|
|
|
def handlers(self):
|
|
''' return handler objects for this play '''
|
|
return self._handlers
|
|
|
|
# *************************************************
|
|
|
|
def _get_vars(self):
|
|
''' load the vars section from a play, accounting for all sorts of variable features
|
|
including loading from yaml files, prompting, and conditional includes of the first
|
|
file found in a list. '''
|
|
|
|
if self.vars is None:
|
|
self.vars = {}
|
|
|
|
if type(self.vars) not in [dict, list]:
|
|
raise errors.AnsibleError("'vars' section must contain only key/value pairs")
|
|
|
|
vars = {}
|
|
|
|
# translate a list of vars into a dict
|
|
if type(self.vars) == list:
|
|
for item in self.vars:
|
|
if getattr(item, 'items', None) is None:
|
|
raise errors.AnsibleError("expecting a key-value pair in 'vars' section")
|
|
k, v = item.items()[0]
|
|
vars[k] = v
|
|
else:
|
|
vars.update(self.vars)
|
|
|
|
if type(self.vars_prompt) == list:
|
|
for var in self.vars_prompt:
|
|
if not 'name' in var:
|
|
raise errors.AnsibleError("'vars_prompt' item is missing 'name:'")
|
|
|
|
vname = var['name']
|
|
prompt = var.get("prompt", vname)
|
|
default = var.get("default", None)
|
|
private = var.get("private", True)
|
|
|
|
confirm = var.get("confirm", False)
|
|
encrypt = var.get("encrypt", None)
|
|
salt_size = var.get("salt_size", None)
|
|
salt = var.get("salt", None)
|
|
|
|
if vname not in self.playbook.extra_vars:
|
|
vars[vname] = self.playbook.callbacks.on_vars_prompt(
|
|
vname, private, prompt, encrypt, confirm, salt_size, salt, default
|
|
)
|
|
|
|
elif type(self.vars_prompt) == dict:
|
|
for (vname, prompt) in self.vars_prompt.iteritems():
|
|
prompt_msg = "%s: " % prompt
|
|
if vname not in self.playbook.extra_vars:
|
|
vars[vname] = self.playbook.callbacks.on_vars_prompt(
|
|
varname=vname, private=False, prompt=prompt_msg, default=None
|
|
)
|
|
|
|
else:
|
|
raise errors.AnsibleError("'vars_prompt' section is malformed, see docs")
|
|
|
|
if type(self.playbook.extra_vars) == dict:
|
|
vars = utils.combine_vars(vars, self.playbook.extra_vars)
|
|
|
|
return vars
|
|
|
|
# *************************************************
|
|
|
|
def update_vars_files(self, hosts, vault_password=None):
|
|
''' calculate vars_files, which requires that setup runs first so ansible facts can be mixed in '''
|
|
|
|
# now loop through all the hosts...
|
|
for h in hosts:
|
|
self._update_vars_files_for_host(h, vault_password=vault_password)
|
|
|
|
# *************************************************
|
|
|
|
def compare_tags(self, tags):
|
|
''' given a list of tags that the user has specified, return two lists:
|
|
matched_tags: tags were found within the current play and match those given
|
|
by the user
|
|
unmatched_tags: tags that were found within the current play but do not match
|
|
any provided by the user '''
|
|
|
|
# gather all the tags in all the tasks and handlers into one list
|
|
# FIXME: isn't this in self.tags already?
|
|
|
|
all_tags = []
|
|
for task in self._tasks:
|
|
if not task.meta:
|
|
all_tags.extend(task.tags)
|
|
for handler in self._handlers:
|
|
all_tags.extend(handler.tags)
|
|
|
|
# compare the lists of tags using sets and return the matched and unmatched
|
|
all_tags_set = set(all_tags)
|
|
tags_set = set(tags)
|
|
|
|
matched_tags = all_tags_set.intersection(tags_set)
|
|
unmatched_tags = all_tags_set.difference(tags_set)
|
|
|
|
a = set(['always'])
|
|
u = set(['untagged'])
|
|
if 'always' in all_tags_set:
|
|
matched_tags = matched_tags.union(a)
|
|
unmatched_tags = all_tags_set.difference(a)
|
|
|
|
if 'all' in tags_set:
|
|
matched_tags = matched_tags.union(all_tags_set)
|
|
unmatched_tags = set()
|
|
|
|
if 'tagged' in tags_set:
|
|
matched_tags = all_tags_set.difference(u)
|
|
unmatched_tags = u
|
|
|
|
if 'untagged' in tags_set and 'untagged' in all_tags_set:
|
|
matched_tags = matched_tags.union(u)
|
|
unmatched_tags = unmatched_tags.difference(u)
|
|
|
|
return matched_tags, unmatched_tags
|
|
|
|
# *************************************************
|
|
|
|
def _late_merge_role_tags(self):
|
|
# build a local dict of tags for roles
|
|
role_tags = {}
|
|
for task in self._ds['tasks']:
|
|
if 'role_name' in task:
|
|
this_role = task['role_name'] + "-" + task['vars']['role_uuid']
|
|
|
|
if this_role not in role_tags:
|
|
role_tags[this_role] = []
|
|
|
|
if 'tags' in task['vars']:
|
|
if isinstance(task['vars']['tags'], basestring):
|
|
role_tags[this_role] += shlex.split(task['vars']['tags'])
|
|
else:
|
|
role_tags[this_role] += task['vars']['tags']
|
|
|
|
# apply each role's tags to its tasks
|
|
for idx, val in enumerate(self._tasks):
|
|
if getattr(val, 'role_name', None) is not None:
|
|
this_role = val.role_name + "-" + val.module_vars['role_uuid']
|
|
if this_role in role_tags:
|
|
self._tasks[idx].tags = sorted(set(self._tasks[idx].tags + role_tags[this_role]))
|
|
|
|
# *************************************************
|
|
|
|
def _update_vars_files_for_host(self, host, vault_password=None):
|
|
|
|
def generate_filenames(host, inject, filename):
|
|
|
|
""" Render the raw filename into 3 forms """
|
|
|
|
# filename2 is the templated version of the filename, which will
|
|
# be fully rendered if any variables contained within it are
|
|
# non-inventory related
|
|
filename2 = template(self.basedir, filename, self.vars)
|
|
|
|
# filename3 is the same as filename2, but when the host object is
|
|
# available, inventory variables will be expanded as well since the
|
|
# name is templated with the injected variables
|
|
filename3 = filename2
|
|
if host is not None:
|
|
filename3 = template(self.basedir, filename2, inject)
|
|
|
|
# filename4 is the dwim'd path, but may also be mixed-scope, so we use
|
|
# both play scoped vars and host scoped vars to template the filepath
|
|
if utils.contains_vars(filename3) and host is not None:
|
|
inject.update(self.vars)
|
|
filename4 = template(self.basedir, filename3, inject)
|
|
filename4 = utils.path_dwim(self.basedir, filename4)
|
|
else:
|
|
filename4 = utils.path_dwim(self.basedir, filename3)
|
|
|
|
return filename2, filename3, filename4
|
|
|
|
|
|
def update_vars_cache(host, data, target_filename=None):
|
|
|
|
""" update a host's varscache with new var data """
|
|
|
|
self.playbook.VARS_CACHE[host] = utils.combine_vars(self.playbook.VARS_CACHE.get(host, {}), data)
|
|
if target_filename:
|
|
self.playbook.callbacks.on_import_for_host(host, target_filename)
|
|
|
|
def process_files(filename, filename2, filename3, filename4, host=None):
|
|
|
|
""" pseudo-algorithm for deciding where new vars should go """
|
|
|
|
data = utils.parse_yaml_from_file(filename4, vault_password=self.vault_password)
|
|
if data:
|
|
if type(data) != dict:
|
|
raise errors.AnsibleError("%s must be stored as a dictionary/hash" % filename4)
|
|
if host is not None:
|
|
target_filename = None
|
|
if utils.contains_vars(filename2):
|
|
if not utils.contains_vars(filename3):
|
|
target_filename = filename3
|
|
else:
|
|
target_filename = filename4
|
|
update_vars_cache(host, data, target_filename=target_filename)
|
|
else:
|
|
self.vars_file_vars = utils.combine_vars(self.vars_file_vars, data)
|
|
# we did process this file
|
|
return True
|
|
# we did not process this file
|
|
return False
|
|
|
|
# Enforce that vars_files is always a list
|
|
if type(self.vars_files) != list:
|
|
self.vars_files = [ self.vars_files ]
|
|
|
|
# Build an inject if this is a host run started by self.update_vars_files
|
|
if host is not None:
|
|
inject = {}
|
|
inject.update(self.playbook.inventory.get_variables(host, vault_password=vault_password))
|
|
inject.update(self.playbook.SETUP_CACHE.get(host, {}))
|
|
inject.update(self.playbook.VARS_CACHE.get(host, {}))
|
|
else:
|
|
inject = None
|
|
|
|
processed = []
|
|
for filename in self.vars_files:
|
|
if type(filename) == list:
|
|
# loop over all filenames, loading the first one, and failing if none found
|
|
found = False
|
|
sequence = []
|
|
for real_filename in filename:
|
|
filename2, filename3, filename4 = generate_filenames(host, inject, real_filename)
|
|
sequence.append(filename4)
|
|
if os.path.exists(filename4):
|
|
found = True
|
|
if process_files(filename, filename2, filename3, filename4, host=host):
|
|
processed.append(filename)
|
|
elif host is not None:
|
|
self.playbook.callbacks.on_not_import_for_host(host, filename4)
|
|
if found:
|
|
break
|
|
if not found and host is not None:
|
|
raise errors.AnsibleError(
|
|
"%s: FATAL, no files matched for vars_files import sequence: %s" % (host, sequence)
|
|
)
|
|
else:
|
|
# just one filename supplied, load it!
|
|
filename2, filename3, filename4 = generate_filenames(host, inject, filename)
|
|
if utils.contains_vars(filename4):
|
|
continue
|
|
if process_files(filename, filename2, filename3, filename4, host=host):
|
|
processed.append(filename)
|
|
|
|
return processed
|