From 4362305e46fa51482a3976d91eeebb95be394629 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 30 Jan 2021 17:42:42 +0100 Subject: [PATCH] feat: add rule CheckMissingFilePermission --- .../rules/CheckMissingFilePermission.py | 108 ++++++++++++++++++ docs/content/included_rules/_index.md | 1 + 2 files changed, 109 insertions(+) create mode 100644 ansiblelater/rules/CheckMissingFilePermission.py diff --git a/ansiblelater/rules/CheckMissingFilePermission.py b/ansiblelater/rules/CheckMissingFilePermission.py new file mode 100644 index 0000000..000c497 --- /dev/null +++ b/ansiblelater/rules/CheckMissingFilePermission.py @@ -0,0 +1,108 @@ +# Copyright (c) 2020 Sorin Sbarnea +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. +from ansiblelater.standard import StandardBase + + +class CheckMissingFilePermission(StandardBase): + + sid = "ANSIBLE0018" + description = "File permissions unset or incorrect" + helptext = ( + "`mode` parameter should set permissions explicitly (e.g. `mode: 0644`) " + "to avoid unexpected file permissions" + ) + version = "0.2" + types = ["playbook", "task", "handler"] + + _modules = { + "archive", + "assemble", + "copy", + "file", + "replace", + "template", + } + _create_modules = { + "blockinfile": False, + "htpasswd": True, + "ini_file": True, + "lineinfile": False, + } + _preserve_modules = ( + "copy", + "template", + ) + + def check(self, candidate, settings): + tasks, errors = self.get_normalized_tasks(candidate, settings) + + if not errors: + for task in tasks: + if not self._check_mode(task): + errors.append( + self.Error( + task["__line__"], + self.helptext.format( + preserve_modules=", ".join(self._preserve_modules) + ) + ) + ) + + return self.Result(candidate.path, errors) + + def _check_mode(self, task): + module = task["action"]["__ansible_module__"] + mode = task["action"].get("mode", None) + + if module not in self._modules and \ + module not in self._create_modules: + return False + + if mode == "preserve" and module not in self._preserve_modules: + return True + + if module in self._create_modules: + create = task["action"].get("create", self._create_modules[module]) + return create and mode is None + + # A file that doesn"t exist cannot have a mode + if task["action"].get("state", None) == "absent": + return False + + # A symlink always has mode 0o777 + if task["action"].get("state", None) == "link": + return False + + # Recurse on a directory does not allow for an uniform mode + if task["action"].get("recurse", None): + return False + + # The file module does not create anything when state==file (default) + if module == "file" and \ + task["action"].get("state", "file") == "file": + return False + + # replace module is the only one that has a valid default preserve + # behavior, but we want to trigger rule if user used incorrect + # documentation and put "preserve", which is not supported. + if module == "replace" and mode is None: + return False + + return mode is None diff --git a/docs/content/included_rules/_index.md b/docs/content/included_rules/_index.md index d632c9a..fa5c3ce 100644 --- a/docs/content/included_rules/_index.md +++ b/docs/content/included_rules/_index.md @@ -32,3 +32,4 @@ Reviews are nothing without some rules or standards against which to review. ans | CheckBecomeUser | ANSIBLE0015 | `become` should be always used combined with `become_user`. | | | CheckFilterSeparation | ANSIBLE0016 | Jinja2 filters should be separated with spaces. | | | CheckCommandInsteadOfArgument | ANSIBLE0017 | Commands should not be used in place of module arguments. | | +| CheckMissingFilePermission | ANSIBLE0018 | File permissions unset or incorrect. | |