aos_version.py 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. #!/usr/bin/python
  2. """
  3. Ansible module for yum-based systems determining if multiple releases
  4. of an OpenShift package are available, and if the release requested
  5. (if any) is available down to the given precision.
  6. For Enterprise, multiple releases available suggest that multiple repos
  7. are enabled for the different releases, which may cause installation
  8. problems. With Origin, however, this is a normal state of affairs as
  9. all the releases are provided in a single repo with the expectation that
  10. only the latest can be installed.
  11. Code in the openshift_version role contains a lot of logic to pin down
  12. the exact package and image version to use and so does some validation
  13. of release availability already. Without duplicating all that, we would
  14. like the user to have a helpful error message if we detect things will
  15. not work out right. Note that if openshift_release is not specified in
  16. the inventory, the version comparison checks just pass.
  17. """
  18. from ansible.module_utils.basic import AnsibleModule
  19. # NOTE: because of the dependency on yum (Python 2-only), this module does not
  20. # work under Python 3. But since we run unit tests against both Python 2 and
  21. # Python 3, we use six for cross compatibility in this module alone:
  22. from ansible.module_utils.six import string_types
  23. YUM_IMPORT_EXCEPTION = None
  24. DNF_IMPORT_EXCEPTION = None
  25. PKG_MGR = None
  26. try:
  27. import yum # pylint: disable=import-error
  28. PKG_MGR = "yum"
  29. except ImportError as err:
  30. YUM_IMPORT_EXCEPTION = err
  31. try:
  32. import dnf # pylint: disable=import-error
  33. PKG_MGR = "dnf"
  34. except ImportError as err:
  35. DNF_IMPORT_EXCEPTION = err
  36. class AosVersionException(Exception):
  37. """Base exception class for package version problems"""
  38. def __init__(self, message, problem_pkgs=None):
  39. Exception.__init__(self, message)
  40. self.problem_pkgs = problem_pkgs
  41. def main():
  42. """Entrypoint for this Ansible module"""
  43. module = AnsibleModule(
  44. argument_spec=dict(
  45. package_list=dict(type="list", required=True),
  46. ),
  47. supports_check_mode=True
  48. )
  49. if YUM_IMPORT_EXCEPTION and DNF_IMPORT_EXCEPTION:
  50. module.fail_json(
  51. msg="aos_version module could not import yum or dnf: %s %s" %
  52. (YUM_IMPORT_EXCEPTION, DNF_IMPORT_EXCEPTION)
  53. )
  54. # determine the packages we will look for
  55. package_list = module.params['package_list']
  56. if not package_list:
  57. module.fail_json(msg="package_list must not be empty")
  58. # generate set with only the names of expected packages
  59. expected_pkg_names = [p["name"] for p in package_list]
  60. # gather packages that require a multi_minor_release check
  61. multi_minor_pkgs = [p for p in package_list if p["check_multi"]]
  62. # generate list of packages with a specified (non-empty) version
  63. # should look like a version string with possibly many segments e.g. "3.4.1"
  64. versioned_pkgs = [p for p in package_list if p["version"]]
  65. # get the list of packages available and complain if anything is wrong
  66. try:
  67. pkgs = _retrieve_available_packages(expected_pkg_names)
  68. if versioned_pkgs:
  69. _check_precise_version_found(pkgs, _to_dict(versioned_pkgs))
  70. _check_higher_version_found(pkgs, _to_dict(versioned_pkgs))
  71. if multi_minor_pkgs:
  72. _check_multi_minor_release(pkgs, _to_dict(multi_minor_pkgs))
  73. except AosVersionException as excinfo:
  74. module.fail_json(msg=str(excinfo))
  75. module.exit_json(changed=False)
  76. def _to_dict(pkg_list):
  77. return {pkg["name"]: pkg for pkg in pkg_list}
  78. def _retrieve_available_packages(expected_pkgs):
  79. # The openshift excluder prevents unintended updates to openshift
  80. # packages by setting yum excludes on those packages. See:
  81. # https://wiki.centos.org/SpecialInterestGroup/PaaS/OpenShift-Origin-Control-Updates
  82. # Excludes are then disabled during an install or upgrade, but
  83. # this check will most likely be running outside either. When we
  84. # attempt to determine what packages are available via yum they may
  85. # be excluded. So, for our purposes here, disable excludes to see
  86. # what will really be available during an install or upgrade.
  87. if PKG_MGR == "yum":
  88. # search for package versions available for openshift pkgs
  89. yb = yum.YumBase() # pylint: disable=invalid-name
  90. yb.conf.disable_excludes = ['all']
  91. try:
  92. pkgs = yb.pkgSack.returnPackages(patterns=expected_pkgs)
  93. except yum.Errors.PackageSackError as excinfo:
  94. # you only hit this if *none* of the packages are available
  95. raise AosVersionException('\n'.join([
  96. 'Unable to find any OpenShift packages.',
  97. 'Check your subscription and repo settings.',
  98. str(excinfo),
  99. ]))
  100. elif PKG_MGR == "dnf":
  101. dbase = dnf.Base() # pyling: disable=invalid-name
  102. dbase.conf.disable_excludes = ['all']
  103. dbase.read_all_repos()
  104. dbase.fill_sack(load_system_repo=False, load_available_repos=True)
  105. dquery = dbase.sack.query()
  106. aquery = dquery.available()
  107. pkgs = list(aquery.filter(name=expected_pkgs))
  108. return pkgs
  109. class PreciseVersionNotFound(AosVersionException):
  110. """Exception for reporting packages not available at given version"""
  111. def __init__(self, not_found):
  112. msg = ['Not all of the required packages are available at their requested version']
  113. msg += ['{}:{} '.format(pkg["name"], pkg["version"]) for pkg in not_found]
  114. msg += ['Please check your subscriptions and enabled repositories.']
  115. AosVersionException.__init__(self, '\n'.join(msg), not_found)
  116. def _check_precise_version_found(pkgs, expected_pkgs_dict):
  117. # see if any packages couldn't be found at requested release version
  118. # we would like to verify that the latest available pkgs have however specific a version is given.
  119. # so e.g. if there is a package version 3.4.1.5 the check passes; if only 3.4.0, it fails.
  120. pkgs_precise_version_found = set()
  121. for pkg in pkgs:
  122. if pkg.name not in expected_pkgs_dict:
  123. continue
  124. expected_pkg_versions = expected_pkgs_dict[pkg.name]["version"]
  125. if isinstance(expected_pkg_versions, string_types):
  126. expected_pkg_versions = [expected_pkg_versions]
  127. for expected_pkg_version in expected_pkg_versions:
  128. # does the version match, to the precision requested?
  129. # and, is it strictly greater, at the precision requested?
  130. match_version = '.'.join(pkg.version.split('.')[:expected_pkg_version.count('.') + 1])
  131. if match_version == expected_pkg_version:
  132. pkgs_precise_version_found.add(pkg.name)
  133. not_found = []
  134. for name, pkg in expected_pkgs_dict.items():
  135. if name not in pkgs_precise_version_found:
  136. not_found.append(pkg)
  137. if not_found:
  138. raise PreciseVersionNotFound(not_found)
  139. class FoundHigherVersion(AosVersionException):
  140. """Exception for reporting that a higher version than requested is available"""
  141. def __init__(self, higher_found):
  142. msg = ['Some required package(s) are available at a version',
  143. 'that is higher than requested']
  144. msg += [' ' + name for name in higher_found]
  145. msg += ['This will prevent installing the version you requested.']
  146. msg += ['Please check your enabled repositories or adjust openshift_release.']
  147. AosVersionException.__init__(self, '\n'.join(msg), higher_found)
  148. def _check_higher_version_found(pkgs, expected_pkgs_dict):
  149. expected_pkg_names = list(expected_pkgs_dict)
  150. # see if any packages are available in a version higher than requested
  151. higher_version_for_pkg = {}
  152. for pkg in pkgs:
  153. if pkg.name not in expected_pkg_names:
  154. continue
  155. expected_pkg_versions = expected_pkgs_dict[pkg.name]["version"]
  156. if isinstance(expected_pkg_versions, string_types):
  157. expected_pkg_versions = [expected_pkg_versions]
  158. # NOTE: the list of versions is assumed to be sorted so that the highest
  159. # desirable version is the last.
  160. highest_desirable_version = expected_pkg_versions[-1]
  161. req_release_arr = [int(segment) for segment in highest_desirable_version.split(".")]
  162. version = [int(segment) for segment in pkg.version.split(".")]
  163. too_high = version[:len(req_release_arr)] > req_release_arr
  164. higher_than_seen = version > higher_version_for_pkg.get(pkg.name, [])
  165. if too_high and higher_than_seen:
  166. higher_version_for_pkg[pkg.name] = version
  167. if higher_version_for_pkg:
  168. higher_found = []
  169. for name, version in higher_version_for_pkg.items():
  170. higher_found.append(name + '-' + '.'.join(str(segment) for segment in version))
  171. raise FoundHigherVersion(higher_found)
  172. class FoundMultiRelease(AosVersionException):
  173. """Exception for reporting multiple minor releases found for same package"""
  174. def __init__(self, multi_found):
  175. msg = ['Multiple minor versions of these packages are available']
  176. msg += [' ' + name for name in multi_found]
  177. msg += ["There should only be one OpenShift release repository enabled at a time."]
  178. AosVersionException.__init__(self, '\n'.join(msg), multi_found)
  179. def _check_multi_minor_release(pkgs, expected_pkgs_dict):
  180. # see if any packages are available in more than one minor version
  181. pkgs_by_name_version = {}
  182. for pkg in pkgs:
  183. # keep track of x.y (minor release) versions seen
  184. minor_release = '.'.join(pkg.version.split('.')[:2])
  185. if pkg.name not in pkgs_by_name_version:
  186. pkgs_by_name_version[pkg.name] = set()
  187. pkgs_by_name_version[pkg.name].add(minor_release)
  188. multi_found = []
  189. for name in expected_pkgs_dict:
  190. if name in pkgs_by_name_version and len(pkgs_by_name_version[name]) > 1:
  191. multi_found.append(name)
  192. if multi_found:
  193. raise FoundMultiRelease(multi_found)
  194. if __name__ == '__main__':
  195. main()