2019-04-05 20:05:06 +00:00
|
|
|
"""Review candidates."""
|
2019-04-02 14:34:03 +00:00
|
|
|
|
|
|
|
import codecs
|
2019-04-03 15:42:46 +00:00
|
|
|
import copy
|
2019-04-02 14:34:03 +00:00
|
|
|
import os
|
|
|
|
import re
|
|
|
|
from distutils.version import LooseVersion
|
|
|
|
|
2021-01-30 16:54:38 +00:00
|
|
|
from ansible.plugins.loader import module_loader
|
|
|
|
|
2019-04-10 14:09:37 +00:00
|
|
|
from ansiblelater import LOG
|
|
|
|
from ansiblelater import utils
|
2019-04-04 13:35:47 +00:00
|
|
|
from ansiblelater.logger import flag_extra
|
2021-01-30 15:52:48 +00:00
|
|
|
from ansiblelater.standard import SingleStandards
|
|
|
|
from ansiblelater.standard import StandardBase
|
2019-04-02 14:34:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Candidate(object):
|
|
|
|
"""
|
|
|
|
Meta object for all files which later has to process.
|
|
|
|
|
|
|
|
Each file passed to later will be classified by type and
|
|
|
|
bundled with necessary meta informations for rule processing.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, filename, settings={}, standards=[]):
|
|
|
|
self.path = filename
|
|
|
|
self.binary = False
|
|
|
|
self.vault = False
|
|
|
|
self.filetype = type(self).__name__.lower()
|
|
|
|
self.expected_version = True
|
2021-01-09 12:16:08 +00:00
|
|
|
self.faulty = False
|
2021-01-30 15:52:48 +00:00
|
|
|
self.config = settings.config
|
|
|
|
self.settings = settings
|
2019-04-02 14:34:03 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
with codecs.open(filename, mode="rb", encoding="utf-8") as f:
|
|
|
|
if f.readline().startswith("$ANSIBLE_VAULT"):
|
|
|
|
self.vault = True
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
self.binary = True
|
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
def _get_version(self):
|
2019-04-11 11:00:36 +00:00
|
|
|
path = self.path
|
2019-04-02 14:34:03 +00:00
|
|
|
version = None
|
2021-02-01 19:27:00 +00:00
|
|
|
config_version = self.config["rules"]["version"].strip()
|
|
|
|
|
|
|
|
if config_version:
|
|
|
|
version_config_re = re.compile(r"([\d.]+)")
|
|
|
|
match = version_config_re.match(config_version)
|
|
|
|
if match:
|
|
|
|
version = match.group(1)
|
2019-04-02 14:34:03 +00:00
|
|
|
|
2019-04-11 11:00:36 +00:00
|
|
|
if not self.binary:
|
|
|
|
if isinstance(self, RoleFile):
|
|
|
|
parentdir = os.path.dirname(os.path.abspath(self.path))
|
|
|
|
while parentdir != os.path.dirname(parentdir):
|
|
|
|
meta_file = os.path.join(parentdir, "meta", "main.yml")
|
|
|
|
if os.path.exists(meta_file):
|
|
|
|
path = meta_file
|
|
|
|
break
|
|
|
|
parentdir = os.path.dirname(parentdir)
|
|
|
|
|
2021-02-01 19:27:00 +00:00
|
|
|
version_file_re = re.compile(r"^# Standards:\s*([\d.]+)")
|
2019-04-11 11:00:36 +00:00
|
|
|
with codecs.open(path, mode="rb", encoding="utf-8") as f:
|
|
|
|
for line in f:
|
2021-02-01 19:27:00 +00:00
|
|
|
match = version_file_re.match(line)
|
2019-04-11 11:00:36 +00:00
|
|
|
if match:
|
|
|
|
version = match.group(1)
|
2019-04-02 14:34:03 +00:00
|
|
|
|
|
|
|
if not version:
|
2019-04-03 15:42:46 +00:00
|
|
|
version = utils.standards_latest(self.standards)
|
2019-04-02 14:34:03 +00:00
|
|
|
if self.expected_version:
|
|
|
|
if isinstance(self, RoleFile):
|
2019-04-11 13:56:20 +00:00
|
|
|
LOG.warning(
|
2020-04-11 14:20:41 +00:00
|
|
|
"{name} {path} is in a role that contains a meta/main.yml without a "
|
|
|
|
"declared standards version. "
|
|
|
|
"Using latest standards version {version}".format(
|
|
|
|
name=type(self).__name__, path=self.path, version=version
|
|
|
|
)
|
2020-04-05 12:33:43 +00:00
|
|
|
)
|
2019-04-02 14:34:03 +00:00
|
|
|
else:
|
2019-04-11 13:56:20 +00:00
|
|
|
LOG.warning(
|
2020-04-11 14:20:41 +00:00
|
|
|
"{name} {path} does not present standards version. "
|
|
|
|
"Using latest standards version {version}".format(
|
|
|
|
name=type(self).__name__, path=self.path, version=version
|
|
|
|
)
|
2020-04-05 12:33:43 +00:00
|
|
|
)
|
2019-04-05 12:02:14 +00:00
|
|
|
else:
|
2020-04-05 12:33:43 +00:00
|
|
|
LOG.info(
|
2020-04-11 14:20:41 +00:00
|
|
|
"{name} {path} declares standards version {version}".format(
|
|
|
|
name=type(self).__name__, path=self.path, version=version
|
|
|
|
)
|
2020-04-05 12:33:43 +00:00
|
|
|
)
|
2019-04-02 14:34:03 +00:00
|
|
|
|
|
|
|
return version
|
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
def _filter_standards(self):
|
2019-04-03 15:42:46 +00:00
|
|
|
target_standards = []
|
2021-01-30 15:52:48 +00:00
|
|
|
includes = self.config["rules"]["filter"]
|
|
|
|
excludes = self.config["rules"]["exclude_filter"]
|
2019-04-03 15:42:46 +00:00
|
|
|
|
2019-04-17 10:33:23 +00:00
|
|
|
if len(includes) == 0:
|
2021-01-30 15:52:48 +00:00
|
|
|
includes = [s.sid for s in self.standards]
|
2019-04-17 10:33:23 +00:00
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
for standard in self.standards:
|
|
|
|
if standard.sid in includes and standard.sid not in excludes:
|
2019-04-17 10:33:23 +00:00
|
|
|
target_standards.append(standard)
|
2019-04-03 15:42:46 +00:00
|
|
|
|
|
|
|
return target_standards
|
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
def review(self, lines=None):
|
2019-04-02 14:34:03 +00:00
|
|
|
errors = 0
|
2021-01-30 15:52:48 +00:00
|
|
|
self.standards = SingleStandards(self.config["rules"]["standards"]).rules
|
|
|
|
self.version = self._get_version()
|
2019-04-02 14:34:03 +00:00
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
for standard in self._filter_standards():
|
2019-04-03 15:42:46 +00:00
|
|
|
if type(self).__name__.lower() not in standard.types:
|
2019-04-02 14:34:03 +00:00
|
|
|
continue
|
2019-04-15 15:26:02 +00:00
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
result = standard.check(self, self.config)
|
2019-04-02 14:34:03 +00:00
|
|
|
|
|
|
|
if not result:
|
2021-01-30 16:50:40 +00:00
|
|
|
LOG.error(
|
|
|
|
"Standard '{id}' returns an empty result object. Check failed!".format(
|
|
|
|
id=standard.sid
|
|
|
|
)
|
2020-04-05 12:33:43 +00:00
|
|
|
)
|
2021-01-30 16:50:40 +00:00
|
|
|
continue
|
2020-04-05 12:33:43 +00:00
|
|
|
|
|
|
|
labels = {
|
|
|
|
"tag": "review",
|
2021-01-30 15:52:48 +00:00
|
|
|
"standard": standard.description,
|
2020-04-05 12:33:43 +00:00
|
|
|
"file": self.path,
|
|
|
|
"passed": True
|
|
|
|
}
|
2019-04-03 15:42:46 +00:00
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
if standard.sid and standard.sid.strip():
|
|
|
|
labels["sid"] = standard.sid
|
2019-04-05 10:23:18 +00:00
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
for err in result.errors:
|
2019-04-03 15:42:46 +00:00
|
|
|
err_labels = copy.copy(labels)
|
|
|
|
err_labels["passed"] = False
|
2021-01-30 15:52:48 +00:00
|
|
|
if isinstance(err, StandardBase.Error):
|
2019-04-03 15:42:46 +00:00
|
|
|
err_labels.update(err.to_dict())
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
if not standard.version:
|
2020-04-05 12:33:43 +00:00
|
|
|
LOG.warning(
|
2021-01-30 15:52:48 +00:00
|
|
|
"{sid}Best practice '{description}' not met:\n{path}:{error}".format(
|
|
|
|
sid=self._format_id(standard.sid),
|
|
|
|
description=standard.description,
|
2020-04-05 12:33:43 +00:00
|
|
|
path=self.path,
|
|
|
|
error=err
|
|
|
|
),
|
|
|
|
extra=flag_extra(err_labels)
|
|
|
|
)
|
2019-04-03 15:42:46 +00:00
|
|
|
elif LooseVersion(standard.version) > LooseVersion(self.version):
|
2020-04-05 12:33:43 +00:00
|
|
|
LOG.warning(
|
2021-01-30 15:52:48 +00:00
|
|
|
"{sid}Future standard '{description}' not met:\n{path}:{error}".format(
|
|
|
|
sid=self._format_id(standard.sid),
|
|
|
|
description=standard.description,
|
2020-04-05 12:33:43 +00:00
|
|
|
path=self.path,
|
|
|
|
error=err
|
|
|
|
),
|
|
|
|
extra=flag_extra(err_labels)
|
|
|
|
)
|
2019-04-02 14:34:03 +00:00
|
|
|
else:
|
2021-10-10 15:00:44 +00:00
|
|
|
msg = "{sid}Standard '{description}' not met:\n{path}:{error}".format(
|
|
|
|
sid=self._format_id(standard.sid),
|
|
|
|
description=standard.description,
|
|
|
|
path=self.path,
|
|
|
|
error=err
|
2020-04-05 12:33:43 +00:00
|
|
|
)
|
2021-10-10 15:00:44 +00:00
|
|
|
|
|
|
|
if standard.sid not in self.config["rules"]["warning_filter"]:
|
|
|
|
LOG.error(msg, extra=flag_extra(err_labels))
|
|
|
|
errors = errors + 1
|
|
|
|
else:
|
|
|
|
LOG.warning(msg, extra=flag_extra(err_labels))
|
2019-04-02 14:34:03 +00:00
|
|
|
|
2019-04-15 15:26:02 +00:00
|
|
|
return errors
|
|
|
|
|
2021-01-30 15:52:48 +00:00
|
|
|
@staticmethod
|
|
|
|
def classify(filename, settings={}, standards=[]):
|
|
|
|
parentdir = os.path.basename(os.path.dirname(filename))
|
|
|
|
basename = os.path.basename(filename)
|
|
|
|
|
|
|
|
if parentdir in ["tasks"]:
|
|
|
|
return Task(filename, settings, standards)
|
|
|
|
if parentdir in ["handlers"]:
|
|
|
|
return Handler(filename, settings, standards)
|
|
|
|
if parentdir in ["vars", "defaults"]:
|
|
|
|
return RoleVars(filename, settings, standards)
|
|
|
|
if "group_vars" in filename.split(os.sep):
|
|
|
|
return GroupVars(filename, settings, standards)
|
|
|
|
if "host_vars" in filename.split(os.sep):
|
|
|
|
return HostVars(filename, settings, standards)
|
2021-10-10 20:14:01 +00:00
|
|
|
if parentdir in ["meta"] and "main" in basename:
|
2021-01-30 15:52:48 +00:00
|
|
|
return Meta(filename, settings, standards)
|
2021-10-10 20:14:01 +00:00
|
|
|
if parentdir in ["meta"] and "argument_specs" in basename:
|
|
|
|
return ArgumentSpecs(filename, settings, standards)
|
2021-01-30 15:52:48 +00:00
|
|
|
if (
|
|
|
|
parentdir in ["library", "lookup_plugins", "callback_plugins", "filter_plugins"]
|
|
|
|
or filename.endswith(".py")
|
|
|
|
):
|
|
|
|
return Code(filename, settings, standards)
|
2021-02-12 15:48:45 +00:00
|
|
|
if basename == "inventory" or basename == "hosts" or parentdir in ["inventories"]:
|
2021-01-30 15:52:48 +00:00
|
|
|
return Inventory(filename, settings, standards)
|
|
|
|
if "rolesfile" in basename or "requirements" in basename:
|
|
|
|
return Rolesfile(filename, settings, standards)
|
|
|
|
if "Makefile" in basename:
|
|
|
|
return Makefile(filename, settings, standards)
|
|
|
|
if "templates" in filename.split(os.sep) or basename.endswith(".j2"):
|
|
|
|
return Template(filename, settings, standards)
|
|
|
|
if "files" in filename.split(os.sep):
|
|
|
|
return File(filename, settings, standards)
|
|
|
|
if basename.endswith(".yml") or basename.endswith(".yaml"):
|
|
|
|
return Playbook(filename, settings, standards)
|
|
|
|
if "README" in basename:
|
|
|
|
return Doc(filename, settings, standards)
|
|
|
|
return None
|
|
|
|
|
2019-04-05 10:23:18 +00:00
|
|
|
def _format_id(self, standard_id):
|
|
|
|
if standard_id and standard_id.strip():
|
|
|
|
standard_id = "[{id}] ".format(id=standard_id.strip())
|
|
|
|
|
|
|
|
return standard_id
|
|
|
|
|
2020-04-05 12:33:43 +00:00
|
|
|
def __repr__(self): # noqa
|
2020-04-11 14:20:41 +00:00
|
|
|
return "{name} ({path})".format(name=type(self).__name__, path=self.path)
|
2019-04-02 14:34:03 +00:00
|
|
|
|
2020-04-05 12:33:43 +00:00
|
|
|
def __getitem__(self, item): # noqa
|
2019-04-02 14:34:03 +00:00
|
|
|
return self.__dict__.get(item)
|
|
|
|
|
|
|
|
|
|
|
|
class RoleFile(Candidate):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible role file."""
|
2020-04-05 12:33:43 +00:00
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
def __init__(self, filename, settings={}, standards=[]):
|
|
|
|
super(RoleFile, self).__init__(filename, settings, standards)
|
|
|
|
|
2019-04-03 15:42:46 +00:00
|
|
|
parentdir = os.path.dirname(os.path.abspath(filename))
|
|
|
|
while parentdir != os.path.dirname(parentdir):
|
|
|
|
role_modules = os.path.join(parentdir, "library")
|
|
|
|
if os.path.exists(role_modules):
|
|
|
|
module_loader.add_directory(role_modules)
|
|
|
|
break
|
|
|
|
parentdir = os.path.dirname(parentdir)
|
2019-04-02 14:34:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Playbook(Candidate):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible playbook."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Task(RoleFile):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible task file."""
|
2020-04-05 12:33:43 +00:00
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
def __init__(self, filename, settings={}, standards=[]):
|
|
|
|
super(Task, self).__init__(filename, settings, standards)
|
|
|
|
self.filetype = "tasks"
|
|
|
|
|
|
|
|
|
|
|
|
class Handler(RoleFile):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible handler file."""
|
2020-04-05 12:33:43 +00:00
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
def __init__(self, filename, settings={}, standards=[]):
|
|
|
|
super(Handler, self).__init__(filename, settings, standards)
|
|
|
|
self.filetype = "handlers"
|
|
|
|
|
|
|
|
|
|
|
|
class Vars(Candidate):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible vars file."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Unversioned(Candidate):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as unversioned file."""
|
2020-04-05 12:33:43 +00:00
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
def __init__(self, filename, settings={}, standards=[]):
|
|
|
|
super(Unversioned, self).__init__(filename, settings, standards)
|
|
|
|
self.expected_version = False
|
|
|
|
|
|
|
|
|
|
|
|
class InventoryVars(Unversioned):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible inventory vars."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class HostVars(InventoryVars):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible host vars."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class GroupVars(InventoryVars):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible group vars."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class RoleVars(RoleFile):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible role vars."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Meta(RoleFile):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible meta file."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
2021-10-10 20:14:01 +00:00
|
|
|
class ArgumentSpecs(RoleFile):
|
|
|
|
"""Object classified as Ansible roles argument specs file."""
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
class Inventory(Unversioned):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible inventory file."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Code(Unversioned):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as code file."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Template(RoleFile):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible template file."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Doc(Unversioned):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as documentation file."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Makefile(Unversioned):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as makefile."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class File(RoleFile):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as generic file."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class Rolesfile(Unversioned):
|
2020-04-05 12:54:39 +00:00
|
|
|
"""Object classified as Ansible roles file."""
|
|
|
|
|
2019-04-02 14:34:03 +00:00
|
|
|
pass
|