sanity_checks.py 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. """
  2. Ansible action plugin to ensure inventory variables are set
  3. appropriately and no conflicting options have been provided.
  4. """
  5. import json
  6. import re
  7. from ansible.plugins.action import ActionBase
  8. from ansible import errors
  9. # pylint: disable=import-error,no-name-in-module
  10. from ansible.module_utils.six.moves.urllib.parse import urlparse
  11. # Valid values for openshift_deployment_type
  12. VALID_DEPLOYMENT_TYPES = ('origin', 'openshift-enterprise')
  13. # Tuple of variable names and default values if undefined.
  14. NET_PLUGIN_LIST = (('openshift_use_openshift_sdn', True),
  15. ('openshift_use_flannel', False),
  16. ('openshift_use_nuage', False),
  17. ('openshift_use_contiv', False),
  18. ('openshift_use_calico', False),
  19. ('openshift_use_kuryr', False))
  20. ENTERPRISE_TAG_REGEX_ERROR = """openshift_image_tag must be in the format
  21. v#.#[.#[.#]]. Examples: v1.2, v3.4.1, v3.5.1.3,
  22. v3.5.1.3.4, v1.2-1, v1.2.3-4, v1.2.3-4.5, v1.2.3-4.5.6
  23. You specified openshift_image_tag={}"""
  24. ORIGIN_TAG_REGEX_ERROR = """openshift_image_tag must be in the format
  25. v#.#[.#-optional.#]. Examples: v1.2.3, v3.5.1-alpha.1
  26. You specified openshift_image_tag={}"""
  27. ORIGIN_TAG_REGEX = {'re': '(^v?\\d+\\.\\d+.*)',
  28. 'error_msg': ORIGIN_TAG_REGEX_ERROR}
  29. ENTERPRISE_TAG_REGEX = {'re': '(^v\\d+\\.\\d+(\\.\\d+)*(-\\d+(\\.\\d+)*)?$)',
  30. 'error_msg': ENTERPRISE_TAG_REGEX_ERROR}
  31. IMAGE_TAG_REGEX = {'origin': ORIGIN_TAG_REGEX,
  32. 'openshift-enterprise': ENTERPRISE_TAG_REGEX}
  33. PKG_VERSION_REGEX_ERROR = """openshift_pkg_version must be in the format
  34. -[optional.release]. Examples: -3.6.0, -3.7.0-0.126.0.git.0.9351aae.el7 -3.11*
  35. You specified openshift_pkg_version={}"""
  36. PKG_VERSION_REGEX = {'re': '(^-.*)',
  37. 'error_msg': PKG_VERSION_REGEX_ERROR}
  38. RELEASE_REGEX_ERROR = """openshift_release must be in the format
  39. v#[.#[.#]]. Examples: v3.9, v3.10.0
  40. You specified openshift_release={}"""
  41. RELEASE_REGEX = {'re': '(^v?\\d+(\\.\\d+(\\.\\d+)?)?$)',
  42. 'error_msg': RELEASE_REGEX_ERROR}
  43. STORAGE_KIND_TUPLE = (
  44. 'openshift_loggingops_storage_kind',
  45. 'openshift_logging_storage_kind',
  46. 'openshift_metrics_storage_kind',
  47. 'openshift_prometheus_alertbuffer_storage_kind',
  48. 'openshift_prometheus_alertmanager_storage_kind',
  49. 'openshift_prometheus_storage_kind')
  50. IMAGE_POLICY_CONFIG_VAR = "openshift_master_image_policy_config"
  51. ALLOWED_REGISTRIES_VAR = "openshift_master_image_policy_allowed_registries_for_import"
  52. REMOVED_VARIABLES = (
  53. # TODO(michaelgugino): Remove in 3.12
  54. ('oreg_auth_credentials_replace', 'Removed: Credentials are now always updated'),
  55. ('oreg_url_master', 'oreg_url'),
  56. ('oreg_url_node', 'oreg_url'),
  57. ('openshift_cockpit_deployer_prefix', 'openshift_cockpit_deployer_image'),
  58. ('openshift_cockpit_deployer_basename', 'openshift_cockpit_deployer_image'),
  59. ('openshift_cockpit_deployer_version', 'openshift_cockpit_deployer_image'),
  60. ('openshift_hosted_logging_elasticsearch_pvc_prefix', 'openshift_logging_es_pvc_prefix'),
  61. ('logging_ops_hostname', 'openshift_logging_kibana_ops_hostname'),
  62. ('openshift_hosted_logging_ops_hostname', 'openshift_logging_kibana_ops_hostname'),
  63. ('openshift_hosted_logging_elasticsearch_cluster_size', 'logging_elasticsearch_cluster_size'),
  64. ('openshift_hosted_logging_elasticsearch_ops_cluster_size', 'logging_elasticsearch_ops_cluster_size'),
  65. ('openshift_hosted_logging_storage_kind', 'openshift_logging_storage_kind'),
  66. ('openshift_hosted_logging_storage_host', 'openshift_logging_storage_host'),
  67. ('openshift_hosted_logging_storage_labels', 'openshift_logging_storage_labels'),
  68. ('openshift_hosted_logging_storage_volume_size', 'openshift_logging_storage_volume_size'),
  69. ('openshift_hosted_loggingops_storage_kind', 'openshift_loggingops_storage_kind'),
  70. ('openshift_hosted_loggingops_storage_host', 'openshift_loggingops_storage_host'),
  71. ('openshift_hosted_loggingops_storage_labels', 'openshift_loggingops_storage_labels'),
  72. ('openshift_hosted_loggingops_storage_volume_size', 'openshift_loggingops_storage_volume_size'),
  73. ('openshift_hosted_logging_enable_ops_cluster', 'openshift_logging_use_ops'),
  74. ('openshift_hosted_logging_image_pull_secret', 'openshift_logging_image_pull_secret'),
  75. ('openshift_hosted_logging_hostname', 'openshift_logging_kibana_hostname'),
  76. ('openshift_hosted_logging_kibana_nodeselector', 'openshift_logging_kibana_nodeselector'),
  77. ('openshift_hosted_logging_kibana_ops_nodeselector', 'openshift_logging_kibana_ops_nodeselector'),
  78. ('openshift_hosted_logging_journal_source', 'openshift_logging_fluentd_journal_source'),
  79. ('openshift_hosted_logging_journal_read_from_head', 'openshift_logging_fluentd_journal_read_from_head'),
  80. ('openshift_hosted_logging_fluentd_nodeselector_label', 'openshift_logging_fluentd_nodeselector'),
  81. ('openshift_hosted_logging_elasticsearch_instance_ram', 'openshift_logging_es_memory_limit'),
  82. ('openshift_hosted_logging_elasticsearch_nodeselector', 'openshift_logging_es_nodeselector'),
  83. ('openshift_hosted_logging_elasticsearch_ops_nodeselector', 'openshift_logging_es_ops_nodeselector'),
  84. ('openshift_hosted_logging_elasticsearch_ops_instance_ram', 'openshift_logging_es_ops_memory_limit'),
  85. ('openshift_hosted_logging_storage_access_modes', 'openshift_logging_storage_access_modes'),
  86. ('openshift_hosted_logging_master_public_url', 'openshift_logging_master_public_url'),
  87. ('openshift_hosted_logging_deployer_prefix', 'openshift_logging_image_prefix'),
  88. ('openshift_hosted_logging_deployer_version', 'openshift_logging_image_version'),
  89. ('openshift_hosted_logging_deploy', 'openshift_logging_install_logging'),
  90. ('openshift_hosted_logging_curator_nodeselector', 'openshift_logging_curator_nodeselector'),
  91. ('openshift_hosted_logging_curator_ops_nodeselector', 'openshift_logging_curator_ops_nodeselector'),
  92. ('openshift_hosted_metrics_storage_access_modes', 'openshift_metrics_storage_access_modes'),
  93. ('openshift_hosted_metrics_storage_host', 'openshift_metrics_storage_host'),
  94. ('openshift_hosted_metrics_storage_nfs_directory', 'openshift_metrics_storage_nfs_directory'),
  95. ('openshift_hosted_metrics_storage_volume_name', 'openshift_metrics_storage_volume_name'),
  96. ('openshift_hosted_metrics_storage_volume_size', 'openshift_metrics_storage_volume_size'),
  97. ('openshift_hosted_metrics_storage_labels', 'openshift_metrics_storage_labels'),
  98. ('openshift_hosted_metrics_deployer_prefix', 'openshift_metrics_image_prefix'),
  99. ('openshift_hosted_metrics_deployer_version', 'openshift_metrics_image_version'),
  100. ('openshift_hosted_metrics_deploy', 'openshift_metrics_install_metrics'),
  101. ('openshift_hosted_metrics_storage_kind', 'openshift_metrics_storage_kind'),
  102. ('openshift_hosted_metrics_public_url', 'openshift_metrics_hawkular_hostname'),
  103. )
  104. # JSON_FORMAT_VARIABLES does not intende to cover all json variables, but
  105. # complicated json variables in hosts.example are covered.
  106. JSON_FORMAT_VARIABLES = (
  107. 'openshift_builddefaults_json',
  108. 'openshift_buildoverrides_json',
  109. 'openshift_master_admission_plugin_config',
  110. 'openshift_master_audit_config',
  111. 'openshift_crio_docker_gc_node_selector',
  112. 'openshift_master_image_policy_allowed_registries_for_import',
  113. 'openshift_master_image_policy_config',
  114. 'openshift_master_oauth_templates',
  115. 'container_runtime_extra_storage',
  116. 'openshift_additional_repos',
  117. 'openshift_master_identity_providers',
  118. 'openshift_master_htpasswd_users',
  119. 'openshift_additional_projects',
  120. 'openshift_hosted_routers',
  121. 'openshift_node_open_ports',
  122. 'openshift_master_open_ports',
  123. )
  124. def to_bool(var_to_check):
  125. """Determine a boolean value given the multiple
  126. ways bools can be specified in ansible."""
  127. # http://yaml.org/type/bool.html
  128. yes_list = (True, 1, "True", "1", "true", "TRUE",
  129. "Yes", "yes", "Y", "y", "YES",
  130. "on", "ON", "On")
  131. return var_to_check in yes_list
  132. def check_for_removed_vars(hostvars, host):
  133. """Fails if removed variables are found"""
  134. found_removed = []
  135. for item in REMOVED_VARIABLES:
  136. if item in hostvars[host]:
  137. found_removed.append(item)
  138. if found_removed:
  139. msg = "Found removed variables: "
  140. for item in found_removed:
  141. msg += "{} is replaced by {}; ".format(item[0], item[1])
  142. raise errors.AnsibleModuleError(msg)
  143. return None
  144. class ActionModule(ActionBase):
  145. """Action plugin to execute sanity checks."""
  146. def template_var(self, hostvars, host, varname):
  147. """Retrieve a variable from hostvars and template it.
  148. If undefined, return None type."""
  149. # We will set the current host and variable checked for easy debugging
  150. # if there are any unhandled exceptions.
  151. # pylint: disable=W0201
  152. self.last_checked_var = varname
  153. # pylint: disable=W0201
  154. self.last_checked_host = host
  155. res = hostvars[host].get(varname)
  156. if res is None:
  157. return None
  158. return self._templar.template(res)
  159. def check_openshift_deployment_type(self, hostvars, host):
  160. """Ensure a valid openshift_deployment_type is set"""
  161. openshift_deployment_type = self.template_var(hostvars, host,
  162. 'openshift_deployment_type')
  163. if openshift_deployment_type not in VALID_DEPLOYMENT_TYPES:
  164. type_strings = ", ".join(VALID_DEPLOYMENT_TYPES)
  165. msg = "openshift_deployment_type must be defined and one of {}".format(type_strings)
  166. raise errors.AnsibleModuleError(msg)
  167. return openshift_deployment_type
  168. def get_allowed_registries(self, hostvars, host):
  169. """Returns a list of configured allowedRegistriesForImport as a list of patterns"""
  170. allowed_registries_for_import = self.template_var(hostvars, host, ALLOWED_REGISTRIES_VAR)
  171. if allowed_registries_for_import is None:
  172. image_policy_config = self.template_var(hostvars, host, IMAGE_POLICY_CONFIG_VAR)
  173. if not image_policy_config:
  174. return image_policy_config
  175. if isinstance(image_policy_config, str):
  176. try:
  177. image_policy_config = json.loads(image_policy_config)
  178. except Exception:
  179. raise errors.AnsibleModuleError(
  180. "{} is not a valid json string".format(IMAGE_POLICY_CONFIG_VAR))
  181. if not isinstance(image_policy_config, dict):
  182. raise errors.AnsibleModuleError(
  183. "expected dictionary for {}, not {}".format(
  184. IMAGE_POLICY_CONFIG_VAR, type(image_policy_config)))
  185. detailed = image_policy_config.get("allowedRegistriesForImport", None)
  186. if not detailed:
  187. return detailed
  188. if not isinstance(detailed, list):
  189. raise errors.AnsibleModuleError("expected list for {}['{}'], not {}".format(
  190. IMAGE_POLICY_CONFIG_VAR, "allowedRegistriesForImport",
  191. type(allowed_registries_for_import)))
  192. try:
  193. return [i["domainName"] for i in detailed]
  194. except Exception:
  195. raise errors.AnsibleModuleError(
  196. "each item of allowedRegistriesForImport must be a dictionary with 'domainName' key")
  197. if not isinstance(allowed_registries_for_import, list):
  198. raise errors.AnsibleModuleError("expected list for {}, not {}".format(
  199. IMAGE_POLICY_CONFIG_VAR, type(allowed_registries_for_import)))
  200. return allowed_registries_for_import
  201. def check_whitelisted_registries(self, hostvars, host):
  202. """Ensure defined registries are whitelisted"""
  203. allowed = self.get_allowed_registries(hostvars, host)
  204. if allowed is None:
  205. return
  206. unmatched_registries = []
  207. for regvar in (
  208. "oreg_url"
  209. "openshift_cockpit_deployer_prefix",
  210. "openshift_metrics_image_prefix",
  211. "openshift_logging_image_prefix",
  212. "openshift_service_catalog_image_prefix",
  213. "openshift_docker_insecure_registries"):
  214. value = self.template_var(hostvars, host, regvar)
  215. if not value:
  216. continue
  217. if isinstance(value, list):
  218. registries = value
  219. else:
  220. registries = [value]
  221. for reg in registries:
  222. if not any(is_registry_match(reg, pat) for pat in allowed):
  223. unmatched_registries.append((regvar, reg))
  224. if unmatched_registries:
  225. registry_list = ", ".join(["{}:{}".format(n, v) for n, v in unmatched_registries])
  226. raise errors.AnsibleModuleError(
  227. "registry hostnames of the following image prefixes are not whitelisted by image"
  228. " policy configuration: {}".format(registry_list))
  229. def check_python_version(self, hostvars, host, distro):
  230. """Ensure python version is 3 for Fedora and python 2 for others"""
  231. ansible_python = self.template_var(hostvars, host, 'ansible_python')
  232. if distro == "Fedora":
  233. if ansible_python['version']['major'] != 3:
  234. msg = "openshift-ansible requires Python 3 for {};".format(distro)
  235. msg += " For information on enabling Python 3 with Ansible,"
  236. msg += " see https://docs.ansible.com/ansible/python_3_support.html"
  237. raise errors.AnsibleModuleError(msg)
  238. else:
  239. if ansible_python['version']['major'] != 2:
  240. msg = "openshift-ansible requires Python 2 for {};".format(distro)
  241. def check_image_tag_format(self, hostvars, host, openshift_deployment_type):
  242. """Ensure openshift_image_tag is formatted correctly"""
  243. openshift_image_tag = self.template_var(hostvars, host, 'openshift_image_tag')
  244. if not openshift_image_tag or openshift_image_tag == 'latest':
  245. return None
  246. regex_to_match = IMAGE_TAG_REGEX[openshift_deployment_type]['re']
  247. res = re.match(regex_to_match, str(openshift_image_tag))
  248. if res is None:
  249. msg = IMAGE_TAG_REGEX[openshift_deployment_type]['error_msg']
  250. msg = msg.format(str(openshift_image_tag))
  251. raise errors.AnsibleModuleError(msg)
  252. def check_pkg_version_format(self, hostvars, host):
  253. """Ensure openshift_pkg_version is formatted correctly"""
  254. openshift_pkg_version = self.template_var(hostvars, host, 'openshift_pkg_version')
  255. if not openshift_pkg_version:
  256. return None
  257. regex_to_match = PKG_VERSION_REGEX['re']
  258. res = re.match(regex_to_match, str(openshift_pkg_version))
  259. if res is None:
  260. msg = PKG_VERSION_REGEX['error_msg']
  261. msg = msg.format(str(openshift_pkg_version))
  262. raise errors.AnsibleModuleError(msg)
  263. def check_release_format(self, hostvars, host):
  264. """Ensure openshift_release is formatted correctly"""
  265. openshift_release = self.template_var(hostvars, host, 'openshift_release')
  266. if not openshift_release:
  267. return None
  268. regex_to_match = RELEASE_REGEX['re']
  269. res = re.match(regex_to_match, str(openshift_release))
  270. if res is None:
  271. msg = RELEASE_REGEX['error_msg']
  272. msg = msg.format(str(openshift_release))
  273. raise errors.AnsibleModuleError(msg)
  274. def network_plugin_check(self, hostvars, host):
  275. """Ensure only one type of network plugin is enabled"""
  276. res = []
  277. # Loop through each possible network plugin boolean, determine the
  278. # actual boolean value, and append results into a list.
  279. for plugin, default_val in NET_PLUGIN_LIST:
  280. res_temp = self.template_var(hostvars, host, plugin)
  281. if res_temp is None:
  282. res_temp = default_val
  283. res.append(to_bool(res_temp))
  284. if sum(res) not in (0, 1):
  285. plugin_str = list(zip([x[0] for x in NET_PLUGIN_LIST], res))
  286. msg = "Host Checked: {} Only one of must be true. Found: {}".format(host, plugin_str)
  287. raise errors.AnsibleModuleError(msg)
  288. def check_hostname_vars(self, hostvars, host):
  289. """Checks to ensure openshift_hostname
  290. and openshift_public_hostname
  291. conform to the proper length of 63 characters or less"""
  292. for varname in ('openshift_public_hostname', 'openshift_hostname'):
  293. var_value = self.template_var(hostvars, host, varname)
  294. if var_value and len(var_value) > 63:
  295. msg = '{} must be 63 characters or less'.format(varname)
  296. raise errors.AnsibleModuleError(msg)
  297. def check_session_auth_secrets(self, hostvars, host):
  298. """Checks session_auth_secrets is correctly formatted"""
  299. sas = self.template_var(hostvars, host,
  300. 'openshift_master_session_auth_secrets')
  301. ses = self.template_var(hostvars, host,
  302. 'openshift_master_session_encryption_secrets')
  303. # This variable isn't mandatory, only check if set.
  304. if sas is None and ses is None:
  305. return None
  306. if not (
  307. issubclass(type(sas), list) and issubclass(type(ses), list)
  308. ) or len(sas) != len(ses):
  309. raise errors.AnsibleModuleError(
  310. 'Expects openshift_master_session_auth_secrets and '
  311. 'openshift_master_session_encryption_secrets are equal length lists')
  312. for secret in sas:
  313. if len(secret) < 32:
  314. raise errors.AnsibleModuleError(
  315. 'Invalid secret in openshift_master_session_auth_secrets. '
  316. 'Secrets must be at least 32 characters in length.')
  317. for secret in ses:
  318. if len(secret) not in [16, 24, 32]:
  319. raise errors.AnsibleModuleError(
  320. 'Invalid secret in openshift_master_session_encryption_secrets. '
  321. 'Secrets must be 16, 24, or 32 characters in length.')
  322. return None
  323. def check_unsupported_nfs_configs(self, hostvars, host):
  324. """Fails if nfs storage is in use for any components. This check is
  325. ignored if openshift_enable_unsupported_configurations=True"""
  326. enable_unsupported = self.template_var(
  327. hostvars, host, 'openshift_enable_unsupported_configurations')
  328. if to_bool(enable_unsupported):
  329. return None
  330. for storage in STORAGE_KIND_TUPLE:
  331. kind = self.template_var(hostvars, host, storage)
  332. if kind == 'nfs':
  333. raise errors.AnsibleModuleError(
  334. 'nfs is an unsupported type for {}. '
  335. 'openshift_enable_unsupported_configurations=True must'
  336. 'be specified to continue with this configuration.'
  337. ''.format(storage))
  338. return None
  339. def check_htpasswd_provider(self, hostvars, host):
  340. """Fails if openshift_master_identity_providers contains an entry of
  341. kind HTPasswdPasswordIdentityProvider and
  342. openshift_master_manage_htpasswd is False"""
  343. manage_pass = self.template_var(
  344. hostvars, host, 'openshift_master_manage_htpasswd')
  345. if to_bool(manage_pass):
  346. # If we manage the file, we can just generate in the new path.
  347. return None
  348. idps = self.template_var(
  349. hostvars, host, 'openshift_master_identity_providers')
  350. if not idps:
  351. # If we don't find any identity_providers, nothing for us to do.
  352. return None
  353. old_keys = ('file', 'fileName', 'file_name', 'filename')
  354. if not isinstance(idps, list):
  355. raise errors.AnsibleModuleError("| not a list")
  356. for idp in idps:
  357. if idp['kind'] == 'HTPasswdPasswordIdentityProvider':
  358. for old_key in old_keys:
  359. if old_key in idp is not None:
  360. raise errors.AnsibleModuleError(
  361. 'openshift_master_identity_providers contains a '
  362. 'provider of kind==HTPasswdPasswordIdentityProvider '
  363. 'and {} is set. Please migrate your htpasswd '
  364. 'files to /etc/origin/master/htpasswd and update your '
  365. 'existing master configs, and remove the {} key'
  366. 'before proceeding.'.format(old_key, old_key))
  367. def validate_json_format_vars(self, hostvars, host):
  368. """Fails if invalid json format are found"""
  369. found_invalid_json = []
  370. for var in JSON_FORMAT_VARIABLES:
  371. if var in hostvars[host]:
  372. json_var = self.template_var(hostvars, host, var)
  373. try:
  374. json.loads(json_var)
  375. except ValueError:
  376. found_invalid_json.append([var, json_var])
  377. except BaseException:
  378. pass
  379. if found_invalid_json:
  380. msg = "Found invalid json format variables:\n"
  381. for item in found_invalid_json:
  382. msg += " {} specified in {} is invalid json format\n".format(item[1], item[0])
  383. raise errors.AnsibleModuleError(msg)
  384. return None
  385. def check_for_oreg_password(self, hostvars, host, odt):
  386. """Ensure oreg_password is defined when using registry.redhat.io"""
  387. reg_to_check = 'registry.redhat.io'
  388. err_msg = ("oreg_auth_user and oreg_auth_password must be provided when"
  389. "deploying openshift-enterprise")
  390. err_msg2 = ("oreg_auth_user and oreg_auth_password must be provided when using"
  391. "{}".format(reg_to_check))
  392. oreg_password = self.template_var(hostvars, host, 'oreg_auth_password')
  393. if oreg_password is not None:
  394. # A password is defined, so we're good to go.
  395. return None
  396. oreg_url = self.template_var(hostvars, host, 'oreg_url')
  397. if oreg_url is not None:
  398. if reg_to_check in oreg_url:
  399. raise errors.AnsibleModuleError(err_msg2)
  400. elif odt == 'openshift-enterprise':
  401. # We're not using an oreg_url, we're using default enterprise
  402. # registry. We require oreg_auth_user and oreg_auth_password
  403. raise errors.AnsibleModuleError(err_msg)
  404. def run_checks(self, hostvars, host):
  405. """Execute the hostvars validations against host"""
  406. distro = self.template_var(hostvars, host, 'ansible_distribution')
  407. odt = self.check_openshift_deployment_type(hostvars, host)
  408. self.check_whitelisted_registries(hostvars, host)
  409. self.check_python_version(hostvars, host, distro)
  410. self.check_image_tag_format(hostvars, host, odt)
  411. self.check_pkg_version_format(hostvars, host)
  412. self.check_release_format(hostvars, host)
  413. self.network_plugin_check(hostvars, host)
  414. self.check_hostname_vars(hostvars, host)
  415. self.check_session_auth_secrets(hostvars, host)
  416. self.check_unsupported_nfs_configs(hostvars, host)
  417. self.check_htpasswd_provider(hostvars, host)
  418. check_for_removed_vars(hostvars, host)
  419. self.validate_json_format_vars(hostvars, host)
  420. self.check_for_oreg_password(hostvars, host, odt)
  421. def run(self, tmp=None, task_vars=None):
  422. result = super(ActionModule, self).run(tmp, task_vars)
  423. # self.task_vars holds all in-scope variables.
  424. # Ignore settting self.task_vars outside of init.
  425. # pylint: disable=W0201
  426. self.task_vars = task_vars or {}
  427. # pylint: disable=W0201
  428. self.last_checked_host = "none"
  429. # pylint: disable=W0201
  430. self.last_checked_var = "none"
  431. # self._task.args holds task parameters.
  432. # check_hosts is a parameter to this plugin, and should provide
  433. # a list of hosts.
  434. check_hosts = self._task.args.get('check_hosts')
  435. if not check_hosts:
  436. msg = "check_hosts is required"
  437. raise errors.AnsibleModuleError(msg)
  438. # We need to access each host's variables
  439. hostvars = self.task_vars.get('hostvars')
  440. if not hostvars:
  441. msg = hostvars
  442. raise errors.AnsibleModuleError(msg)
  443. # We loop through each host in the provided list check_hosts
  444. for host in check_hosts:
  445. try:
  446. self.run_checks(hostvars, host)
  447. except Exception as uncaught_e:
  448. msg = "last_checked_host: {}, last_checked_var: {};"
  449. msg = msg.format(self.last_checked_host, self.last_checked_var)
  450. msg += str(uncaught_e)
  451. raise errors.AnsibleModuleError(msg)
  452. result["changed"] = False
  453. result["failed"] = False
  454. result["msg"] = "Sanity Checks passed"
  455. return result
  456. def is_registry_match(item, pattern):
  457. """returns True if the registry matches the given whitelist pattern
  458. Unlike in OpenShift, the comparison is done solely on hostname part
  459. (excluding the port part) since the latter is much more difficult due to
  460. vague definition of port defaulting based on insecure flag. Moreover, most
  461. of the registries will be listed without the port and insecure flag.
  462. """
  463. item = "schema://" + item.split('://', 1)[-1]
  464. return is_match(urlparse(item).hostname, pattern.rsplit(':', 1)[0])
  465. # taken from https://leetcode.com/problems/wildcard-matching/discuss/17845/python-dp-solution
  466. # (the same source as for openshift/origin/pkg/util/strings/wildcard.go)
  467. def is_match(item, pattern):
  468. """implements DP algorithm for string matching"""
  469. length = len(item)
  470. if len(pattern) - pattern.count('*') > length:
  471. return False
  472. matches = [True] + [False] * length
  473. for i in pattern:
  474. if i != '*':
  475. for index in reversed(range(length)):
  476. matches[index + 1] = matches[index] and (i == item[index] or i == '?')
  477. else:
  478. for index in range(1, length + 1):
  479. matches[index] = matches[index - 1] or matches[index]
  480. matches[0] = matches[0] and i == '*'
  481. return matches[-1]