__init__.py 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. """
  2. Health checks for OpenShift clusters.
  3. """
  4. import operator
  5. import os
  6. import time
  7. from abc import ABCMeta, abstractmethod, abstractproperty
  8. from importlib import import_module
  9. from ansible.module_utils import six
  10. from ansible.module_utils.six.moves import reduce # pylint: disable=import-error,redefined-builtin
  11. from ansible.plugins.filter.core import to_bool as ansible_to_bool
  12. class OpenShiftCheckException(Exception):
  13. """Raised when a check encounters a failure condition."""
  14. def __init__(self, name, msg=None):
  15. # msg is for the message the user will see when this is raised.
  16. # name is for test code to identify the error without looking at msg text.
  17. if msg is None: # for parameter backward compatibility
  18. msg = name
  19. name = self.__class__.__name__
  20. self.name = name
  21. super(OpenShiftCheckException, self).__init__(msg)
  22. class OpenShiftCheckExceptionList(OpenShiftCheckException):
  23. """A container for multiple logging errors that may be detected in one check."""
  24. def __init__(self, errors):
  25. self.errors = errors
  26. super(OpenShiftCheckExceptionList, self).__init__(
  27. 'OpenShiftCheckExceptionList',
  28. '\n'.join(str(msg) for msg in errors)
  29. )
  30. # make iterable
  31. def __getitem__(self, index):
  32. return self.errors[index]
  33. @six.add_metaclass(ABCMeta)
  34. class OpenShiftCheck(object):
  35. """
  36. A base class for defining checks for an OpenShift cluster environment.
  37. Expect optional params: method execute_module, dict task_vars, and string tmp.
  38. execute_module is expected to have a signature compatible with _execute_module
  39. from ansible plugins/action/__init__.py, e.g.:
  40. def execute_module(module_name=None, module_args=None, tmp=None, task_vars=None, *args):
  41. This is stored so that it can be invoked in subclasses via check.execute_module("name", args)
  42. which provides the check's stored task_vars and tmp.
  43. """
  44. def __init__(self, execute_module=None, task_vars=None, tmp=None):
  45. self._execute_module = execute_module
  46. self.task_vars = task_vars or {}
  47. self.tmp = tmp
  48. # mainly for testing purposes; see execute_module_with_retries
  49. self._module_retries = 3
  50. self._module_retry_interval = 5 # seconds
  51. # set to True when the check changes the host, for accurate total "changed" count
  52. self.changed = False
  53. @abstractproperty
  54. def name(self):
  55. """The name of this check, usually derived from the class name."""
  56. return "openshift_check"
  57. @property
  58. def tags(self):
  59. """A list of tags that this check satisfy.
  60. Tags are used to reference multiple checks with a single '@tagname'
  61. special check name.
  62. """
  63. return []
  64. @staticmethod
  65. def is_active():
  66. """Returns true if this check applies to the ansible-playbook run."""
  67. return True
  68. @abstractmethod
  69. def run(self):
  70. """Executes a check, normally implemented as a module."""
  71. return {}
  72. @classmethod
  73. def subclasses(cls):
  74. """Returns a generator of subclasses of this class and its subclasses."""
  75. # AUDIT: no-member makes sense due to this having a metaclass
  76. for subclass in cls.__subclasses__(): # pylint: disable=no-member
  77. yield subclass
  78. for subclass in subclass.subclasses():
  79. yield subclass
  80. def execute_module(self, module_name=None, module_args=None):
  81. """Invoke an Ansible module from a check.
  82. Invoke stored _execute_module, normally copied from the action
  83. plugin, with its params and the task_vars and tmp given at
  84. check initialization. No positional parameters beyond these
  85. are specified. If it's necessary to specify any of the other
  86. parameters to _execute_module then that should just be invoked
  87. directly (with awareness of changes in method signature per
  88. Ansible version).
  89. So e.g. check.execute_module("foo", dict(arg1=...))
  90. Return: result hash from module execution.
  91. """
  92. if self._execute_module is None:
  93. raise NotImplementedError(
  94. self.__class__.__name__ +
  95. " invoked execute_module without providing the method at initialization."
  96. )
  97. return self._execute_module(module_name, module_args, self.tmp, self.task_vars)
  98. def execute_module_with_retries(self, module_name, module_args):
  99. """Run execute_module and retry on failure."""
  100. result = {}
  101. tries = 0
  102. while True:
  103. res = self.execute_module(module_name, module_args)
  104. if tries > self._module_retries or not res.get("failed"):
  105. result.update(res)
  106. return result
  107. result["last_failed"] = res
  108. tries += 1
  109. time.sleep(self._module_retry_interval)
  110. def get_var(self, *keys, **kwargs):
  111. """Get deeply nested values from task_vars.
  112. Ansible task_vars structures are Python dicts, often mapping strings to
  113. other dicts. This helper makes it easier to get a nested value, raising
  114. OpenShiftCheckException when a key is not found.
  115. Keyword args:
  116. default:
  117. On missing key, return this as default value instead of raising exception.
  118. convert:
  119. Supply a function to apply to normalize the value before returning it.
  120. None is the default (return as-is).
  121. This function should raise ValueError if the user has provided a value
  122. that cannot be converted, or OpenShiftCheckException if some other
  123. problem needs to be described to the user.
  124. """
  125. if len(keys) == 1:
  126. keys = keys[0].split(".")
  127. try:
  128. value = reduce(operator.getitem, keys, self.task_vars)
  129. except (KeyError, TypeError):
  130. if "default" not in kwargs:
  131. raise OpenShiftCheckException(
  132. "This check expects the '{}' inventory variable to be defined\n"
  133. "in order to proceed, but it is undefined. There may be a bug\n"
  134. "in Ansible, the checks, or their dependencies."
  135. "".format(".".join(map(str, keys)))
  136. )
  137. value = kwargs["default"]
  138. convert = kwargs.get("convert", None)
  139. try:
  140. if convert is None:
  141. return value
  142. elif convert is bool: # interpret bool as Ansible does, instead of python truthiness
  143. return ansible_to_bool(value)
  144. else:
  145. return convert(value)
  146. except ValueError as error: # user error in specifying value
  147. raise OpenShiftCheckException(
  148. 'Cannot convert inventory variable to expected type:\n'
  149. ' "{var}={value}"\n'
  150. '{error}'.format(var=".".join(keys), value=value, error=error)
  151. )
  152. except OpenShiftCheckException: # some other check-specific problem
  153. raise
  154. except Exception as error: # probably a bug in the function
  155. raise OpenShiftCheckException(
  156. 'There is a bug in this check. While trying to convert variable \n'
  157. ' "{var}={value}"\n'
  158. 'the given converter cannot be used or failed unexpectedly:\n'
  159. '{error}'.format(var=".".join(keys), value=value, error=error)
  160. )
  161. @staticmethod
  162. def get_major_minor_version(openshift_image_tag):
  163. """Parse and return the deployed version of OpenShift as a tuple."""
  164. if openshift_image_tag and openshift_image_tag[0] == 'v':
  165. openshift_image_tag = openshift_image_tag[1:]
  166. # map major release versions across releases
  167. # to a common major version
  168. openshift_major_release_version = {
  169. "1": "3",
  170. }
  171. components = openshift_image_tag.split(".")
  172. if not components or len(components) < 2:
  173. msg = "An invalid version of OpenShift was found for this host: {}"
  174. raise OpenShiftCheckException(msg.format(openshift_image_tag))
  175. if components[0] in openshift_major_release_version:
  176. components[0] = openshift_major_release_version[components[0]]
  177. components = tuple(int(x) for x in components[:2])
  178. return components
  179. def find_ansible_mount(self, path):
  180. """Return the mount point for path from ansible_mounts."""
  181. # reorganize list of mounts into dict by path
  182. mount_for_path = {
  183. mount['mount']: mount
  184. for mount
  185. in self.get_var('ansible_mounts')
  186. }
  187. # NOTE: including base cases '/' and '' to ensure the loop ends
  188. mount_targets = set(mount_for_path.keys()) | {'/', ''}
  189. mount_point = path
  190. while mount_point not in mount_targets:
  191. mount_point = os.path.dirname(mount_point)
  192. try:
  193. return mount_for_path[mount_point]
  194. except KeyError:
  195. known_mounts = ', '.join('"{}"'.format(mount) for mount in sorted(mount_for_path))
  196. raise OpenShiftCheckException(
  197. 'Unable to determine mount point for path "{}".\n'
  198. 'Known mount points: {}.'.format(path, known_mounts or 'none')
  199. )
  200. LOADER_EXCLUDES = (
  201. "__init__.py",
  202. "mixins.py",
  203. "logging.py",
  204. )
  205. def load_checks(path=None, subpkg=""):
  206. """Dynamically import all check modules for the side effect of registering checks."""
  207. if path is None:
  208. path = os.path.dirname(__file__)
  209. modules = []
  210. for name in os.listdir(path):
  211. if os.path.isdir(os.path.join(path, name)):
  212. modules = modules + load_checks(os.path.join(path, name), subpkg + "." + name)
  213. continue
  214. if name.endswith(".py") and not name.startswith(".") and name not in LOADER_EXCLUDES:
  215. modules.append(import_module(__package__ + subpkg + "." + name[:-3]))
  216. return modules